/* ===== 基础样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0B0B10;
    --surface: #11151B;
    --text: #E8ECF1;
    --muted: #9AA4B2;
    --primary: #F4C84A;
    --secondary: #2DD4FF;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --border: #1A2130;
}

body {
    font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: 
        radial-gradient(ellipse 1200px 800px at center top, rgba(244, 200, 74, 0.08) 0%, rgba(244, 200, 74, 0.02) 40%, transparent 70%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Mono font for code and numerals */
code, pre, .code-content, .code-language, .token-percent {
    font-family: 'Geist Mono', 'Monaco', 'Courier New', monospace;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header 样式 ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

section {
    position: relative;
    z-index: 1;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-spaced {
    margin-left: 48px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* ===== 按钮样式 ===== */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
    font-weight: 600;
}

.btn-primary:hover {
    background: #f5d563;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    color: var(--text);
    border-color: var(--text);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ===== Back to Top 按钮 ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(244, 200, 74, 0.3);
}

.back-to-top:hover {
    background: #f5d563;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 200, 74, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ===== Hero 部分 ===== */
.hero {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(244, 200, 74, 0.1);
    border: 1px solid rgba(244, 200, 74, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-main-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text);
}

.hero-subtitle-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--text);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-title strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-description {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.hero-description strong {
    color: var(--text);
    font-weight: 600;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

/* ===== Features 部分 ===== */
.features {
    padding: 100px 0;
    background: var(--bg);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text);
}

.section-title-with-icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.section-title-with-icon:hover .section-icon {
    transform: scale(1.1);
}

.section-icon svg {
    width: 100%;
    height: 100%;
}

.section-title-left {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text);
    line-height: 1.3;
}

.section-header-left {
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(244, 200, 74, 0.15);
    transform: translateY(-2px);
}

.feature-card-numbered {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.2s;
}

.feature-card-numbered:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(244, 200, 74, 0.15);
    transform: translateY(-2px);
}

.feature-number {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(45, 212, 255, 0.1);
    border-radius: 6px;
    display: inline-block;
}

.feature-title-lg {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.feature-icon svg {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.05);
}

.feature-icon-large {
    display: block;
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-icon-large svg {
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-icon-large {
    transform: scale(1.1);
}

.feature-icon-emoji {
    display: block;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-emoji {
    transform: scale(1.1);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-description {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.feature-description strong {
    color: var(--text);
    font-weight: 700;
}

.inline-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.inline-link:hover {
    color: var(--secondary);
}

.inline-link::after {
    content: ' ↗';
    font-size: 0.85em;
    opacity: 0.7;
}

/* ===== Integration 部分 ===== */
.integration {
    padding: 100px 0;
}

.integration-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.integration-item {
    text-align: center;
}

.integration-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.integration-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(244, 200, 74, 0.15) 0%, rgba(244, 200, 74, 0.05) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.integration-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.integration-description {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Code Section 部分 ===== */
.code-section {
    padding: 100px 0;
    background: var(--bg);
}

.code-block {
    max-width: 800px;
    margin: 0 auto 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.code-language {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.code-copy {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.code-copy:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.code-content {
    padding: 24px;
    margin: 0;
    overflow-x: auto;
}

.code-content code {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}

.code-note {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CTA Section 部分 ===== */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.2s;
}

.cta-content:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(244, 200, 74, 0.15);
    transform: translateY(-2px);
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
}

.cta-subtitle strong {
    color: var(--text);
    font-weight: 700;
}

/* ===== Footer 样式 ===== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 600;
}

.footer-description {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 600px;
}

.footer-links-inline {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-links-inline a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links-inline a:hover {
    color: var(--secondary);
}

.footer-copyright {
    font-size: 14px;
    color: var(--muted);
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ===== How it Works 部分 ===== */
.how-it-works {
    padding: 100px 0;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.flow-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.2s;
}

.flow-step:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.step-text {
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

.step-text code {
    color: var(--secondary);
    background: rgba(45, 212, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.why-matters {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.2s;
}

.why-matters:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(244, 200, 74, 0.15);
    transform: translateY(-2px);
}

.arch-icon {
    display: inline-block;
    margin-bottom: 16px;
}

.arch-icon svg {
    transition: transform 0.3s ease;
}

.why-matters:hover .arch-icon svg {
    transform: scale(1.05);
}

.arch-icon-large {
    display: block;
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.arch-icon-large svg {
    width: 100%;
    height: 100%;
}

.why-matters:hover .arch-icon-large {
    transform: scale(1.1);
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.why-matters p strong, .why-matters h4 strong {
    color: var(--text);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    color: var(--muted);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.benefits-list li strong {
    color: var(--text);
    font-weight: 700;
}

.benefits-list-large {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list-large li {
    color: var(--muted);
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
    font-size: 16px;
}

.benefits-list-large li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
    font-size: 20px;
}

/* ===== Facilitator 部分 ===== */
.facilitator {
    padding: 100px 0;
    background: var(--bg);
}

.info-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    transition: all 0.2s;
}

.info-box:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(244, 200, 74, 0.15);
    transform: translateY(-2px);
}

.info-box p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.info-box p strong, .info-box li strong {
    color: var(--text);
    font-weight: 700;
}

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet-list li {
    color: var(--muted);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 20px;
}

.bullet-list li strong {
    color: var(--text);
    font-weight: 700;
}

.bullet-list code {
    color: var(--secondary);
    background: rgba(45, 212, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.setup-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.setup-text {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.code-example {
    background: rgba(45, 212, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
}

.code-example code {
    color: var(--secondary);
    font-size: 14px;
}

/* ===== Servers 部分 ===== */
.servers {
    padding: 100px 0;
}

.merchant-controls {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.merchant-controls p {
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Modules 部分 ===== */
.modules {
    padding: 100px 0;
    background: var(--bg);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.module-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.module-box p {
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Dev Infra 部分 ===== */
.dev-infra {
    padding: 100px 0;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.dev-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
}

.dev-box:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.dev-box p {
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Primer 部分 ===== */
.primer {
    padding: 100px 0;
    background: var(--bg);
}

.primer-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.2s;
}

.primer-content:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(244, 200, 74, 0.15);
    transform: translateY(-2px);
}

.primer-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 32px;
}

.primer-text strong {
    color: var(--text);
    font-weight: 700;
}

.primer-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.primer-text code {
    color: var(--secondary);
    background: rgba(45, 212, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 15px;
}

.benefits-box {
    background: rgba(45, 212, 255, 0.05);
    border: 1px solid rgba(45, 212, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
}

/* ===== Tokenomics 部分 ===== */
.tokenomics {
    padding: 100px 0;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 48px;
    font-style: italic;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
}

.token-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
}

.token-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.token-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.token-percent {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

/* ===== CTA Section 部分 (额外样式) ===== */
.cta-subtitle {
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer 额外样式 ===== */
.contact-email {
    margin-top: 16px;
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.contact-email a:hover {
    color: var(--secondary);
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-main-title {
        font-size: 48px;
    }
    
    .hero-subtitle-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .dev-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-title-left {
        font-size: 28px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }
    
    .primer-content {
        padding: 32px 24px;
    }
    
    .info-box,
    .setup-box,
    .merchant-controls,
    .module-box {
        padding: 24px;
    }
    
    .why-matters {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .header-actions .btn-secondary {
        display: none;
    }
    
    .hero-main-title {
        font-size: 36px;
    }
    
    .hero-subtitle-title {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn-large {
        width: 100%;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-numbered {
        padding: 24px;
    }
}

