:root {
    --bg: #07080c;
    --bg-2: #0b0d13;
    --elevated: #12151d;
    --card: #161a24;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f3f5f7;
    --muted: #9aa3b5;
    --accent: #c8f542;
    --accent-2: #8dff6a;
    --accent-ink: #10140a;
    --accent-soft: rgba(200, 245, 66, 0.12);
    --danger: #ff6b7a;
    --discord: #5865f2;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    --radius: 20px;
    --nav-h: 72px;
    --max: 1180px;
    --font: "DM Sans", system-ui, sans-serif;
    --display: "Outfit", "DM Sans", system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 18px);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font-family: inherit; }

.skip-link {
    position: absolute;
    left: 12px;
    top: -40px;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 8px 14px;
    border-radius: 8px;
    z-index: 2000;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus { top: 12px; }

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.center { text-align: center; }
.mt { margin-top: 24px; }

/* ---------- NAV ---------- */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(7, 8, 12, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    color: var(--text);
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.03em;
    font-size: 1.05rem;
}

.nav-brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line-strong);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
}

nav a:hover,
.nav-logo {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

nav a:focus-visible,
button:focus-visible,
.cta-button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.nav-cta {
    border: 1px solid var(--line-strong);
    color: var(--text) !important;
}

.nav-cta-primary {
    background: var(--accent) !important;
    color: var(--accent-ink) !important;
    font-weight: 700;
    border: 0;
}

.nav-cta-primary:hover { filter: brightness(1.05); }

.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: #12151c;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 8px;
    box-shadow: var(--shadow);
    z-index: 1001;
}

.dropdown-content a {
    display: flex;
    width: 100%;
    color: var(--text);
    padding: 10px 12px;
    border-radius: 10px;
}

.dropdown-content a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 2px 7px;
    border-radius: 999px;
}

.mobile-menu-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
}

/* ---------- TICKER ---------- */
.marquee {
    background: #090b10;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.marquee-track span {
    padding: 11px 48px 11px 0;
    white-space: nowrap;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee .highlight {
    color: var(--accent);
    font-weight: 700;
}

/* ---------- HERO ---------- */
#hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 64px;
    background:
        radial-gradient(900px 420px at 82% -8%, rgba(200, 245, 66, 0.16), transparent 55%),
        radial-gradient(700px 380px at 0% 110%, rgba(88, 101, 242, 0.18), transparent 50%),
        var(--bg);
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at 70% 20%, black, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

#hero h1,
.hero-copy h1 {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5.2vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.96;
    margin-bottom: 18px;
    color: #fff;
}

.hero-copy p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 540px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 480px;
}

.hero-stats div {
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
}

.hero-stats strong {
    display: block;
    font-family: var(--display);
    font-size: 1.45rem;
    letter-spacing: -0.04em;
    color: #fff;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.82rem;
}

.hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.channel-card {
    background: rgba(18, 21, 29, 0.88);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    text-decoration: none;
    color: var(--text);
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.channel-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 245, 66, 0.35);
    background: #171b25;
}

.channel-card i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 16px;
}

.channel-card h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

.channel-card p {
    color: var(--muted);
    font-size: 0.86rem;
    margin: 0;
}

/* ---------- SECTIONS ---------- */
section {
    padding: 88px 0;
    position: relative;
}

.band { background: var(--bg-2); }

section h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.15;
}

section h2 i {
    color: var(--accent);
    font-size: 0.78em;
}

section h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 650;
    margin-bottom: 10px;
}

section p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 720px;
}

section a:not(.cta-button):not(.channel-card):not(.lane):not(.nav-cta):not(.nav-cta-primary) {
    color: var(--accent);
    text-decoration: none;
}

.lane p,
.feature-card p,
.step p {
    max-width: none;
}

.section-head {
    margin-bottom: 36px;
    max-width: 720px;
}

.section-head.wide { max-width: none; }

.section-head p { margin-bottom: 0; }

.lede {
    font-size: 1.08rem !important;
    color: var(--muted) !important;
}

.split-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 36px;
}

.split-head .section-head { margin-bottom: 0; }

/* ---------- BUTTONS / CARDS ---------- */
.cta-button,
a.cta-button,
button.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.cta-button.secondary,
a.cta-button.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}

.cta-button.ghost,
a.cta-button.ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid var(--line);
}

.cta-button.discord {
    background: var(--discord);
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
}

.feature-card p,
.feature-card li { color: var(--muted); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 22px;
    color: var(--muted);
}

.check-list li {
    display: flex;
    gap: 10px;
    padding: 6px 0;
}

.check-list i { color: var(--accent); margin-top: 4px; }

.icon-lg {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.panel {
    background: var(--elevated);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
}

.panel.accent {
    background:
        radial-gradient(500px 180px at 100% 0%, rgba(200,245,66,0.12), transparent 60%),
        var(--elevated);
}

/* ---------- LANES / BENTO ---------- */
.lanes {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-areas:
        "sports stocks crypto"
        "sports cards  crypto";
    gap: 14px;
}

.lane {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 210px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.lane:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 245, 66, 0.28);
}

.lane.span-2 {
    grid-area: sports;
    background:
        radial-gradient(420px 220px at 100% 0%, rgba(200,245,66,0.1), transparent 60%),
        var(--card);
}

#stock-investing { grid-area: stocks; }
#crypto-investing { grid-area: crypto; }
#trading-cards { grid-area: cards; }

.lane .tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.lane h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.lane p { margin-bottom: 18px; }

.lane .go {
    margin-top: auto;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ---------- STEPS ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    counter-reset: step;
}

.step {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.step::before {
    counter-increment: step;
    content: "0" counter(step);
    display: block;
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 14px;
}

/* ---------- WINS / SLIDER ---------- */
.proof-grid.slider-only {
    grid-template-columns: 1fr;
}

.proof-grid.slider-only .slider {
    max-width: 900px;
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #090b10;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #090b10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: 1px solid var(--line);
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 1rem;
}

.prev { left: 16px; }
.next { right: 16px; }

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 0;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    border: 0;
}

.indicator.active { background: var(--accent); transform: scale(1.2); }

.stat-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-tile {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
}

.stat-tile strong,
.stat-tile .num {
    display: block;
    font-family: var(--display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 4px;
}

.stat-tile span { color: var(--muted); font-size: 0.85rem; }

.data-source-indicator,
.performance-notice {
    grid-column: 1 / -1;
    text-align: center;
    padding: 10px 12px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 10px;
    font-size: 0.85rem;
}

.performance-notice { color: var(--muted); background: rgba(255,255,255,0.04); }
.performance-notice a { color: var(--accent); }

/* ---------- COMPARISON ---------- */
.compare-wrap { overflow-x: auto; }

.compare {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.compare th,
.compare td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.compare th {
    background: #10131a;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compare th.premium,
.compare td.premium {
    background: rgba(200, 245, 66, 0.06);
    color: var(--text);
}

.compare td { color: var(--muted); }
.compare td:first-child { color: var(--text); }
.yes { color: var(--accent); }
.no { color: var(--danger); }

.plans-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.plans-grid {
    display: grid;
    gap: 16px;
}

.plan-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 245, 66, 0.3);
}

.plan-media {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200,245,66,0.12), rgba(88,101,242,0.12));
    display: grid;
    place-items: center;
    position: relative;
}

.plan-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.plan-media i { font-size: 3rem; color: var(--accent); opacity: 0.7; }

.plan-price {
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 8px 0 4px;
}

.plan-cta {
    width: 100%;
    margin-top: 16px;
    background: var(--accent);
    color: var(--accent-ink);
    border: 0;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    cursor: pointer;
}

/* ---------- WIDGETS ---------- */
.tool-widget {
    display: none;
    margin-top: 28px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.tool-widget-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.iframe-frame {
    width: 100%;
    height: 800px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.iframe-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- DYNAMIC CONTENT ---------- */
.discord-msg {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-left: 4px solid var(--discord);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.discord-msg:last-child { margin-bottom: 0; }

.discord-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.discord-head img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
}

.discord-head strong { color: #fff; display: block; }
.discord-head time { color: var(--muted); font-size: 0.82rem; }
.discord-body { color: var(--text); line-height: 1.75; }
.discord-embed {
    background: rgba(88, 101, 242, 0.1);
    border-left: 4px solid var(--discord);
    border-radius: 10px;
    padding: 14px;
    margin-top: 10px;
}

.discord-mention {
    background: rgba(88, 101, 242, 0.2);
    color: #8b93ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.discord-body a { color: var(--accent); }

.quote-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
}

.quote-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 14px;
}

.quote-card strong { color: var(--accent); }
.quote-win { color: var(--accent-2); font-size: 0.85rem; margin-top: 4px; }

#testimonials.is-hidden { display: none; }

/* ---------- FINAL CTA / FOOTER ---------- */
#final-cta {
    padding: 28px 0 96px;
}

.final-band {
    background:
        radial-gradient(600px 200px at 100% 0%, rgba(200,245,66,0.16), transparent 60%),
        var(--elevated);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.final-band h2 { margin-bottom: 8px; }
.final-band p { margin-bottom: 0; }

footer {
    background: #08090d;
    color: var(--muted);
    padding: 64px 0 28px;
    border-top: 1px solid var(--line);
}

footer h3 {
    color: #fff;
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: 1rem;
}

footer a {
    color: var(--muted);
    text-decoration: none;
}

footer a:hover { color: var(--accent); }

footer ul { list-style: none; }
footer li { margin-bottom: 8px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 1000;
    background: var(--accent);
    color: var(--accent-ink);
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* ---------- EXIT INTENT ---------- */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-card {
    background: var(--elevated);
    border: 1px solid var(--line-strong);
    color: var(--text);
    padding: 36px;
    border-radius: 22px;
    max-width: 460px;
    text-align: center;
    position: relative;
}

.exit-card h2 {
    font-family: var(--display);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: var(--text);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.code-chip {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 8px;
    margin: 8px 0 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .hero-grid,
    .footer-grid,
    .proof-grid,
    .plans-layout,
    .final-band,
    .split-head,
    .steps {
        grid-template-columns: 1fr;
    }
    .lanes {
        grid-template-columns: 1fr;
        grid-template-areas:
            "sports"
            "stocks"
            "crypto"
            "cards";
    }
    .hero-panel { max-width: 520px; }
    .stat-stack { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .wrap { width: calc(100% - 28px); }
    section { padding: 64px 0; }
    .mobile-menu-toggle { display: grid; place-items: center; }
    .nav-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0c0e14;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        max-height: calc(100vh - var(--nav-h));
        overflow: auto;
    }
    .nav-container.active { display: flex; }
    .nav-links,
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        width: 100%;
    }
    nav a {
        width: 100%;
        padding: 12px 10px;
    }
    .nav-container .dropdown-content {
        position: static;
        display: none;
        background: #10131a;
        box-shadow: none;
        margin-top: 4px;
    }
    .nav-container .dropdown.active .dropdown-content { display: block; }
    #hero { padding: 48px 0 40px; }
    .hero-copy h1 { font-size: 2.4rem; }
    .final-band { padding: 28px; }
}

@media (max-width: 480px) {
    .hero-stats,
    .hero-panel,
    .stat-stack { grid-template-columns: 1fr; }
}
