/* ============================================================
   Aurora — Terminal de Sinais
   Direção visual: instrumento de mercado, não card de SaaS genérico.
   Tipografia mono para tudo que é dado (preço, hora, percentual);
   grotesk de alto contraste para voz/headline; ticker real no topo.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
    /* Paleta: papel quente sobre carvão, sinal em âmbar, confirmação em menta */
    --void: #0a0b0d;
    --panel: #131519;
    --panel-hover: #191c21;
    --paper: #f2ede1;
    --paper-dim: #a39d8f;
    --paper-mute: #6b6660;

    --gold: #f0b429;
    --gold-dim: #8a661c;
    --mint: #34d399;
    --mint-dim: #1f6e4e;
    --rose: #e5626a;

    --line: rgba(242, 237, 225, 0.09);
    --line-strong: rgba(240, 180, 41, 0.4);

    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 14px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--paper);
    background-color: var(--void);
    background-image: radial-gradient(circle at 12% 8%, rgba(240, 180, 41, 0.06), transparent 30%),
                       radial-gradient(circle at 88% 42%, rgba(52, 211, 153, 0.05), transparent 28%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Skip link (acessibilidade) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--gold);
    color: var(--void);
    padding: 0.75rem 1.25rem;
    border-radius: var(--r-sm);
    font-weight: 600;
    z-index: 2000;
    transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; }

.mono { font-family: var(--font-mono); }

/* ============ TICKER — assinatura visual ============ */
.ticker-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 34px;
    background: var(--void);
    border-bottom: 1px solid var(--line);
    z-index: 1100;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker-scroll 38s linear infinite;
    padding-left: 100%;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--paper-dim);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.ticker-item .pair { color: var(--paper); font-weight: 500; }
.ticker-item .up { color: var(--mint); }
.ticker-item .down { color: var(--rose); }

/* Header */
.header {
    position: fixed;
    top: 34px;
    left: 0; right: 0;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    z-index: 1000;
}

.nav { padding: 1rem 0; }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--paper);
}

.logo-badge {
    font-family: var(--font-mono);
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.15rem 0.5rem;
    border-radius: var(--r-sm);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-links { display: flex; align-items: center; gap: 2.25rem; }

.nav-link {
    color: var(--paper-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.2s var(--ease);
}

.nav-link:hover { color: var(--gold); }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: var(--paper);
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    font-size: 1.1rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--r-md);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
    cursor: pointer;
    border: none;
    font-size: 0.92rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--void);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(240, 180, 41, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240, 180, 41, 0.35);
    background: #ffc94a;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--paper);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 1.15rem 2.25rem;
    font-size: 1.02rem;
}

/* ============ HERO ============ */
.hero { padding: 200px 0 100px; position: relative; }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 1.75rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--gold);
    padding: 0.45rem 1rem;
    border-radius: var(--r-sm);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    width: fit-content;
}

.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--mint);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.08;
    color: var(--paper);
    letter-spacing: -0.02em;
}

.highlight { color: var(--gold); }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--paper-dim);
    line-height: 1.7;
    max-width: 54ch;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--paper);
    display: block;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--paper-mute);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-cta { display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; }

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--paper-mute);
    font-size: 0.85rem;
}

/* Hero visual — candlestick real, não mockup de glass card */
.hero-visual { position: relative; }

.trading-chart {
    background: var(--panel);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    padding: 1.75rem 1.75rem 1.25rem;
    width: 100%;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
}

.asset-name { font-weight: 600; font-size: 1.05rem; color: var(--paper); }
.asset-price { font-size: 0.85rem; color: var(--paper-dim); margin-left: 0.75rem; }

.asset-change.positive {
    background: rgba(52, 211, 153, 0.12);
    color: var(--mint);
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: 0.8rem;
}

.chart-svg { width: 100%; height: auto; display: block; }
.chart-svg .candle-up { fill: var(--mint); color: var(--mint); }
.chart-svg .candle-down { fill: var(--paper-mute); color: var(--paper-mute); }
.chart-svg .signal-candle { fill: var(--gold); }
.chart-svg .grid-line { stroke: var(--line); stroke-width: 1; }
.chart-svg .signal-ring {
    animation: signal-pulse 2.2s ease-out infinite;
    transform-origin: center;
}

@keyframes signal-pulse {
    0% { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(2.6); opacity: 0; }
}

.signal-callout {
    margin-top: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--gold);
    background: rgba(240, 180, 41, 0.08);
    border: 1px solid rgba(240, 180, 41, 0.25);
    border-radius: var(--r-sm);
    padding: 0.65rem 0.9rem;
}

.signal-callout .confirm { color: var(--mint); margin-left: auto; font-size: 0.75rem; }

/* ============ Section shell ============ */
section { padding: 7.5rem 0; }

.section-header { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }

.section-eyebrow {
    font-family: var(--font-mono);
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.85rem;
}

.section-header h2 { font-size: 2.4rem; font-weight: 700; color: var(--paper); margin-bottom: 0.85rem; }
.section-header p { color: var(--paper-dim); font-size: 1.05rem; }

/* ============ Features ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--panel);
    padding: 2.1rem;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    background: var(--panel-hover);
}

.feature-index {
    font-family: var(--font-mono);
    color: var(--gold-dim);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-card:hover .feature-index { color: var(--gold); }

.feature-index i { font-size: 1rem; }

.feature-card h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 0.65rem; color: var(--paper); }
.feature-card p { color: var(--paper-dim); font-size: 0.94rem; }

/* ============ How it works ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step {
    padding: 2.4rem 2rem;
    background: var(--panel);
    border-radius: var(--r-md);
    border: 1px solid var(--line);
}

.step-number {
    font-family: var(--font-mono);
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: block;
}

.step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--paper); }
.step p { color: var(--paper-dim); font-size: 0.95rem; }

/* ============ Demo (vídeo) ============ */
.video-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.video-frame {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.video-frame-bar {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--line);
}

.video-frame-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--line-strong);
    opacity: 0.6;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(240, 180, 41, 0.08), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.06), transparent 40%),
        repeating-linear-gradient(0deg, rgba(242, 237, 225, 0.03) 0, rgba(242, 237, 225, 0.03) 1px, transparent 1px, transparent 32px),
        repeating-linear-gradient(90deg, rgba(242, 237, 225, 0.03) 0, rgba(242, 237, 225, 0.03) 1px, transparent 1px, transparent 32px);
}

.video-play-btn {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--void);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(240, 180, 41, 0.1), 0 10px 30px rgba(240, 180, 41, 0.25);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.video-play-btn i { margin-left: 4px; }

.video-play-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 0 14px rgba(240, 180, 41, 0.14), 0 12px 34px rgba(240, 180, 41, 0.3);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1.1rem;
    background: rgba(10, 11, 13, 0.75);
    color: var(--paper);
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
}

.video-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

/* ============ Páginas internas (termos, privacidade, suporte) ============ */
.page-hero {
    padding: 170px 0 3.5rem;
    border-bottom: 1px solid var(--line);
}

.page-hero .section-header { margin-bottom: 0; text-align: left; max-width: 720px; }
.page-hero .updated-at {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--paper-mute);
    margin-top: 0.5rem;
    display: block;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 0 6rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--paper);
    margin: 2.75rem 0 1rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--paper);
    margin: 1.75rem 0 0.75rem;
}

.legal-content p {
    color: var(--paper-dim);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    color: var(--paper-dim);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0 0 1.25rem 1.3rem;
}

.legal-content li { margin-bottom: 0.5rem; }

.legal-content strong { color: var(--paper); font-weight: 600; }

.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.legal-callout {
    background: rgba(240, 180, 41, 0.06);
    border: 1px solid rgba(240, 180, 41, 0.25);
    border-radius: var(--r-md);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.legal-callout p { color: var(--paper); margin-bottom: 0; font-size: 0.94rem; }
.legal-callout p:last-child { margin-bottom: 0; }

.legal-toc {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
}

.legal-toc h2 { margin: 0 0 0.9rem; font-size: 1rem; }
.legal-toc ol { margin: 0 0 0 1.2rem; }
.legal-toc a { color: var(--paper-dim); text-decoration: none; }
.legal-toc a:hover { color: var(--gold); }

/* Suporte */
.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.support-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 2rem 1.75rem;
    text-align: center;
}

.support-card .support-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(240, 180, 41, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 1.1rem;
}

.support-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--paper); margin-bottom: 0.5rem; }
.support-card p { color: var(--paper-dim); font-size: 0.9rem; margin-bottom: 1.1rem; }

.support-hours {
    max-width: 800px;
    margin: 3.5rem auto 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    color: var(--paper-mute);
    font-size: 0.9rem;
}

.support-hours i { color: var(--mint); }

@media (max-width: 992px) {
    .support-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 140px 0 2.5rem; }
    .legal-content { padding: 3.5rem 0 4rem; }
}

/* ============ Pricing ============ */
.pricing-card {
    background: var(--panel);
    border-radius: var(--r-lg);
    border: 1px solid var(--line-strong);
    max-width: 460px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.6);
}

.pricing-header {
    background: rgba(240, 180, 41, 0.04);
    border-bottom: 1px solid var(--line);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
}

.pricing-header h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1.4rem; color: var(--paper); }

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.9rem;
    font-family: var(--font-mono);
}

.currency { font-size: 1.3rem; font-weight: 500; color: var(--paper-dim); margin-top: 0.6rem; }
.amount { font-size: 4.4rem; font-weight: 600; line-height: 1; color: var(--gold); }
.period { font-size: 1.1rem; color: var(--paper-dim); align-self: flex-end; margin-bottom: 0.6rem; }

.pricing-subtitle { color: var(--paper-dim); font-size: 0.92rem; }

.pricing-features { padding: 2.2rem 2.5rem; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.05rem;
    font-size: 0.98rem;
    color: var(--paper);
}

.feature-item i { color: var(--mint); font-size: 1rem; width: 18px; }

.pricing-cta { padding: 0 2.5rem 2.5rem; text-align: center; }
.pricing-cta .btn { width: 100%; }

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--paper-mute);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.risk-note {
    max-width: 460px;
    margin: 1.25rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--paper-mute);
    line-height: 1.6;
}

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: border-color 0.2s var(--ease);
}

.faq-item:hover { border-color: rgba(242, 237, 225, 0.18); }

.faq-question {
    padding: 1.35rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h4 { font-size: 1.05rem; font-weight: 600; margin: 0; color: var(--paper); }
.faq-question i { color: var(--gold); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 1.75rem 1.35rem;
    display: none;
    color: var(--paper-dim);
    border-top: 1px solid var(--line);
    margin-top: 0.4rem;
    padding-top: 1.35rem;
    font-size: 0.96rem;
}

/* ============ Footer ============ */
.footer { background: #060708; border-top: 1px solid var(--line); padding: 4.5rem 0 2rem; }

.footer-content { display: grid; grid-template-columns: 1.2fr 2fr; gap: 4rem; margin-bottom: 3rem; }

.footer-brand h3 { font-family: var(--font-display); font-weight: 700; color: var(--paper); margin-bottom: 0.85rem; }
.footer-brand p { color: var(--paper-mute); font-size: 0.92rem; max-width: 34ch; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.footer-section h4 { color: var(--paper); font-weight: 600; font-size: 0.92rem; margin-bottom: 1.1rem; }

.footer-section a {
    color: var(--paper-mute);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
    transition: color 0.2s var(--ease);
}

.footer-section a:hover { color: var(--gold); }

.footer-disclaimer {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
    margin-bottom: 2rem;
    color: var(--paper-mute);
    font-size: 0.8rem;
    line-height: 1.7;
    max-width: 90ch;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--paper-mute);
    font-size: 0.85rem;
}

/* Reveal on scroll */
section, .feature-card, .step {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

section.fade-in-up, .feature-card.fade-in-up, .step.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    section, .feature-card, .step { opacity: 1; transform: none; }
}

/* ============ Responsivo ============ */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
    .hero-badge { margin: 0 auto; }
    .hero-cta { align-items: center; }
    .hero-title { font-size: 2.75rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-links { justify-items: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }

    .nav-links.mobile-menu-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--void);
        padding: 1.75rem 2rem 2.25rem;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.mobile-menu-open .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    .ticker-bar { height: 30px; }
    .header { top: 30px; }
    .hero { padding: 150px 0 70px; }
    .section-header h2 { font-size: 1.9rem; }
    .features-grid { grid-template-columns: 1fr; }
    .amount { font-size: 3.4rem; }
    section { padding: 5rem 0; }
}