:root {
    --bg: #07101f;
    --bg-2: #0a1630;
    --panel: rgba(9, 24, 47, 0.72);
    --border: rgba(106, 181, 255, 0.22);
    --border-strong: rgba(106, 181, 255, 0.34);
    --text: #ebf4ff;
    --muted: #8ea9cc;
    --accent: #20d5ff;
    --accent-2: #52f3ad;
    --gold: #ffd166;
    --danger: #ff6f7d;
    --shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
    --shadow-deep: 0 36px 90px rgba(0, 0, 0, 0.55);
    --radius: 24px;
    --container: 1200px;
    --mx: 0;
    --my: 0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
code { font-family: "SFMono-Regular", Consolas, monospace; font-size: 0.95em; }

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background:
        radial-gradient(920px 580px at 9% -4%, rgba(32, 213, 255, 0.25), transparent 66%),
        radial-gradient(860px 560px at 96% 2%, rgba(82, 243, 173, 0.16), transparent 64%),
        radial-gradient(760px 520px at 72% 40%, rgba(255, 209, 102, 0.10), transparent 66%),
        linear-gradient(180deg, #091429 0%, #07101f 52%, #08152a 100%);
}

.page-bg::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        conic-gradient(from 132deg at 50% 48%, transparent 0 18%, rgba(32, 213, 255, 0.08) 21%, transparent 27% 58%, rgba(82, 243, 173, 0.08) 62%, transparent 72%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 42%);
    filter: blur(10px);
    opacity: 0.76;
    transform: translate3d(calc(var(--mx) * 16px), calc(var(--my) * 12px), 0) rotate(0.001deg);
    animation: bg-breathe 18s ease-in-out infinite alternate;
}

.page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.18;
    mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
}

.market-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    perspective: 900px;
    transform-style: preserve-3d;
}

.market-backdrop::before {
    content: "";
    position: absolute;
    inset: 12% -8% auto;
    height: 56%;
    background:
        linear-gradient(115deg, transparent 0 36%, rgba(32, 213, 255, 0.14) 36.3% 36.8%, transparent 37.2% 100%),
        linear-gradient(70deg, transparent 0 55%, rgba(82, 243, 173, 0.10) 55.3% 55.8%, transparent 56.2% 100%),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.075) 34px 36px, transparent 36px 78px);
    opacity: 0.34;
    transform: rotate(-7deg) translate3d(calc(var(--mx) * -18px), calc(var(--my) * -10px), 0);
    mask-image: linear-gradient(90deg, transparent, black 14%, black 84%, transparent);
}

.market-token {
    --depth: 1;
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(173, 222, 255, 0.22);
    color: rgba(232, 246, 255, 0.72);
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.40), transparent 22%),
        linear-gradient(145deg, rgba(25, 56, 95, 0.88), rgba(6, 18, 37, 0.46));
    box-shadow:
        inset 0 1px 18px rgba(255, 255, 255, 0.10),
        inset 0 -18px 30px rgba(1, 7, 18, 0.28),
        0 22px 54px rgba(0, 0, 0, 0.34),
        0 0 36px rgba(32, 213, 255, 0.12);
    font-family: "Sora", sans-serif;
    font-size: calc(var(--size) * 0.18);
    font-weight: 800;
    letter-spacing: -0.04em;
    opacity: 0.56;
    transform:
        translate3d(calc(var(--mx) * var(--depth) * -24px), calc(var(--my) * var(--depth) * -18px), 0)
        rotateX(62deg)
        rotateZ(var(--tilt));
    animation: token-float var(--duration) ease-in-out var(--delay) infinite alternate;
}

.market-token::before { content: attr(data-symbol); }

.market-token::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 22px rgba(82, 243, 173, 0.08);
}

.market-token:nth-child(2n) {
    border-color: rgba(82, 243, 173, 0.24);
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 22%),
        linear-gradient(145deg, rgba(22, 78, 72, 0.80), rgba(5, 18, 34, 0.48));
    box-shadow:
        inset 0 1px 18px rgba(255, 255, 255, 0.11),
        inset 0 -18px 30px rgba(1, 7, 18, 0.30),
        0 24px 58px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(82, 243, 173, 0.13);
}

.market-token:nth-child(3n) {
    border-color: rgba(255, 209, 102, 0.26);
    color: rgba(255, 235, 183, 0.76);
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.42), transparent 22%),
        linear-gradient(145deg, rgba(93, 69, 26, 0.82), rgba(8, 17, 33, 0.50));
    box-shadow:
        inset 0 1px 18px rgba(255, 255, 255, 0.12),
        inset 0 -18px 30px rgba(1, 7, 18, 0.30),
        0 24px 58px rgba(0, 0, 0, 0.36),
        0 0 44px rgba(255, 209, 102, 0.12);
}

.container {
    width: min(var(--container), calc(100vw - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(5, 13, 24, 0.78);
    border-bottom: 1px solid rgba(106, 181, 255, 0.14);
}

.site-header-inner,
.panel-head,
.signal-card-top,
.proof-overview-top,
.proof-card-head,
.pricing-topline,
.site-footer-inner,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-header-inner { min-height: 78px; }

.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Sora", sans-serif;
}

.brand-mark, .footer-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #062133;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(140deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 28px rgba(32, 213, 255, 0.28);
    flex-shrink: 0;
}

.brand-text { font-size: 1.06rem; }
.brand-text strong { color: var(--accent); }

.menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(10, 26, 49, 0.72);
}

.lang-btn {
    min-width: 42px;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.is-active {
    color: #041d31;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.menu a {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.94rem;
    transition: color 0.2s ease;
}

.menu a:hover { color: var(--text); }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(10, 26, 49, 0.88);
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: #d6e8ff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn-sm { font-size: 0.9rem; padding: 10px 16px; }
.btn-lg { font-size: 1rem; padding: 14px 24px; }

.btn-primary {
    color: #041d31;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 34px rgba(32, 213, 255, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 18px 42px rgba(32, 213, 255, 0.34), 0 0 34px rgba(82, 243, 173, 0.16);
}

.btn-ghost {
    color: #d8e7ff;
    background: rgba(11, 29, 53, 0.72);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: rgba(148, 215, 255, 0.40);
    box-shadow: 0 16px 34px rgba(2, 8, 20, 0.34);
}

.btn-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.section { padding: 86px 0; }
.section-tight { padding: 54px 0; }
.section-alt {
    background: linear-gradient(180deg, rgba(10, 24, 47, 0.36), rgba(7, 16, 31, 0.58));
    border-top: 1px solid rgba(106, 181, 255, 0.08);
    border-bottom: 1px solid rgba(106, 181, 255, 0.08);
}

.section-head { margin-bottom: 34px; }
.section-kicker,
.hero-proof-label,
.card-kicker,
.step-num {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker { margin: 0 0 8px; }

.section-head h2,
.hero-copy h1,
.bento-card h3,
.step-card h3,
.proof-card h3,
.proof-overview h3,
.pricing-card-main h3,
.final-cta-copy h2,
.signal-pair {
    font-family: "Sora", sans-serif;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0;
}

.section-head h2 { margin-bottom: 12px; font-size: clamp(1.9rem, 4vw, 3.4rem); }
.section-sub,
.hero-sub,
.hero-note,
.bento-card p,
.step-card p,
.proof-card p,
.proof-overview p,
.pricing-summary,
.pricing-note,
.pricing-variants,
.final-cta-copy p,
.faq-grid p { color: var(--muted); }

[data-reveal] {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    transition: opacity 0.62s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); }

.hero {
    position: relative;
    padding: 88px 0 54px;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 8% 0 auto;
    height: 68%;
    background:
        radial-gradient(ellipse at 78% 22%, rgba(32, 213, 255, 0.16), transparent 44%),
        radial-gradient(ellipse at 88% 58%, rgba(82, 243, 173, 0.10), transparent 46%);
    transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 8px), 0);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    max-width: 12ch;
}

.hero-sub { max-width: 64ch; font-size: 1.06rem; margin: 0; }
.hero-note { max-width: 56ch; font-size: 0.95rem; margin: 0; }

.eyebrow-row, .hero-points, .hero-cta, .pricing-actions, .final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eyebrow-row { align-items: center; margin-bottom: 18px; }
.eyebrow-pill,
.hero-points span,
.signal-tags span,
.proof-chip,
.pricing-badge,
.status-badge,
.pricing-seats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(10, 26, 49, 0.74);
    color: #d9ebff;
    font-size: 0.84rem;
    font-weight: 700;
}

.eyebrow-text { color: var(--muted); font-size: 0.92rem; }
.hero-cta {
    position: relative;
    margin: 28px 0 16px;
    padding-top: 18px;
}

.hero-cta::before,
.pricing-actions::before,
.final-cta-actions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(120, 192, 255, 0.22), rgba(120, 192, 255, 0.04));
}

.hero-points { margin-top: 18px; }

.hero-panel,
.proof-overview,
.proof-card,
.pricing-card-main,
.final-cta-card,
.bento-card,
.step-card,
.faq-grid details {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(15, 35, 68, 0.82), rgba(8, 18, 37, 0.84));
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero-panel::before,
.proof-overview::before,
.proof-card::before,
.pricing-card-main::before,
.final-cta-card::before,
.bento-card::before,
.step-card::before,
.faq-grid details::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 40%, transparent 100%);
    pointer-events: none;
}

.hero-panel, .pricing-card-main { border-radius: 30px; padding: 28px; }
.hero-panel {
    display: grid;
    gap: 18px;
    isolation: isolate;
    box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: perspective(1100px) rotateX(calc(var(--my) * -1.1deg)) rotateY(calc(var(--mx) * 1.4deg));
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at calc(50% + var(--mx) * 24%) calc(34% + var(--my) * 18%), rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(115deg, transparent 0 46%, rgba(32, 213, 255, 0.10) 50%, transparent 56% 100%);
    opacity: 0.72;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: panel-sheen 7s ease-in-out infinite alternate;
}

.hero-panel > *,
.pricing-card-main > *,
.bento-card > *,
.proof-card > *,
.proof-overview > *,
.dev-strip > *,
.pricing-card-addon > *,
.faq-grid details > * {
    position: relative;
    z-index: 1;
}

.bento-card:hover,
.proof-card:hover,
.pricing-card-main:hover,
.pricing-card-addon:hover,
.dev-strip:hover,
.faq-grid details:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.46), 0 0 34px rgba(32, 213, 255, 0.08);
}

.bento-card, .step-card, .proof-card, .proof-overview, .final-cta-card, .faq-grid details {
    border-radius: 28px;
    padding: 24px;
}

.panel-stream { display: inline-flex; align-items: center; gap: 10px; color: #d7e7ff; font-weight: 700; }
.panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 18px rgba(32, 213, 255, 0.62);
}
.live-badge {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-card {
    position: relative;
    overflow: hidden;
    margin: 20px 0 16px;
    border: 1px solid rgba(120, 192, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(8, 27, 54, 0.90), rgba(4, 14, 31, 0.78)),
        radial-gradient(circle at top right, rgba(255, 111, 125, 0.12), transparent 42%);
    border-radius: 24px;
    padding: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 58px rgba(0, 0, 0, 0.28);
}

.signal-card::before {
    content: "";
    position: absolute;
    left: -30%;
    right: -30%;
    top: 58%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(32, 213, 255, 0.55), rgba(82, 243, 173, 0.35), transparent);
    opacity: 0.7;
    transform: rotate(-8deg);
    animation: signal-scan 4.8s ease-in-out infinite;
}

.signal-card > * {
    position: relative;
    z-index: 1;
}

.signal-pair { font-size: 1.4rem; }
.signal-meta { color: var(--muted); font-size: 0.9rem; }
.signal-side {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 111, 125, 0.16);
    color: #ff9ca7;
    font-weight: 800;
}

.signal-levels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.signal-level {
    border-radius: 18px;
    border: 1px solid rgba(120, 192, 255, 0.12);
    background: rgba(255,255,255,0.03);
    padding: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.signal-level span { display: block; color: var(--muted); font-size: 0.84rem; margin-bottom: 4px; }
.signal-level strong { font-size: 1.05rem; }
.signal-level-danger strong { color: #ff9ca7; }
.signal-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.hero-proof-card {
    border-radius: 22px;
    border: 1px solid rgba(120, 192, 255, 0.14);
    background: rgba(255,255,255,0.04);
    padding: 18px;
}
.hero-proof-card p { margin: 8px 0 0; color: var(--muted); }

.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 20px;
}

.bento-card h3 { margin: 10px 0; font-size: 1.5rem; }

.card-list, .pricing-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.card-list li, .pricing-list li { position: relative; padding-left: 18px; }
.card-list li::before, .pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.next-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dev-strip {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 24px 26px;
    background: linear-gradient(180deg, rgba(15, 35, 68, 0.82), rgba(8, 18, 37, 0.84));
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dev-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 40%, transparent 100%);
    pointer-events: none;
}

.dev-strip h2 {
    margin: 10px 0 12px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.dev-strip p {
    margin: 0;
    color: var(--muted);
    max-width: 72ch;
}

.proof-overview { margin-bottom: 22px; }
.proof-stats, .proof-grid, .stream-grid, .recent-grid {
    display: grid;
    gap: 16px;
}

.proof-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.proof-stat {
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(120, 192, 255, 0.12);
    padding: 18px;
}

.proof-stat strong {
    display: block;
    font-size: 1.8rem;
    font-family: "Sora", sans-serif;
}

.proof-stat span { color: var(--muted); }

.status-badge.status-ok { border-color: rgba(82,243,173,0.32); color: #bcffdb; }
.status-badge.status-warn { border-color: rgba(255,201,98,0.32); color: #ffd98a; }
.status-badge.status-danger { border-color: rgba(255,111,125,0.32); color: #ffb5be; }

.proof-grid { grid-template-columns: 1.1fr 0.9fr; }
.stream-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.stream-item, .recent-item {
    border-radius: 20px;
    border: 1px solid rgba(120, 192, 255, 0.12);
    background: rgba(255,255,255,0.04);
    padding: 18px;
}

.stream-item-head, .recent-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.stream-item-head h4, .recent-item-head strong { margin: 0; font-size: 1rem; }
.stream-item p, .recent-item p, .recent-item-meta { margin: 0; color: var(--muted); }
.stream-item-metrics { display: grid; gap: 8px; margin-top: 12px; }
.stream-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
}
.stream-metric strong, .recent-pnl { color: var(--text); font-weight: 800; }
.recent-pnl.positive { color: #87ffc1; }
.recent-pnl.negative { color: #ff9ca7; }

.empty-state {
    color: var(--muted);
    border-radius: 18px;
    border: 1px dashed rgba(120, 192, 255, 0.16);
    padding: 18px;
}

.pricing-shell { display: grid; grid-template-columns: minmax(0, 760px); gap: 18px; }
.pricing-card-addon {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 24px;
    padding: 22px;
    background: rgba(10, 18, 32, 0.74);
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.18);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.pricing-card-addon::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(125, 211, 252, 0.13), transparent 44%);
}
.pricing-card-addon > * { position: relative; z-index: 1; }
.pricing-badge.muted { color: var(--muted); border-color: rgba(148, 163, 184, 0.24); background: rgba(148, 163, 184, 0.08); }
.pricing-list.compact { margin-top: 14px; gap: 8px; }
.pricing-price {
    margin-top: 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: -0.04em;
}
.pricing-summary { margin: 12px 0 0; max-width: 58ch; }
.pricing-foot { margin-top: 18px; display: grid; gap: 10px; }
.pricing-actions,
.final-cta-actions {
    position: relative;
    margin-top: 22px;
    padding-top: 18px;
}

.menu .btn-sm { min-height: 42px; }
.pricing-timer { margin-top: 16px; color: var(--accent); font-weight: 700; }

.faq-layout { display: grid; gap: 24px; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-grid details summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.faq-grid details summary::-webkit-details-marker { display: none; }
.faq-grid details p { margin: 14px 0 0; }

.final-cta { padding: 0 0 88px; }
.final-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.final-cta-copy h2 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 12ch; margin-bottom: 10px; }
.final-cta-copy p { margin: 0; }
.final-cta-actions { justify-content: flex-end; }

.site-footer {
    border-top: 1px solid rgba(106, 181, 255, 0.12);
    background: rgba(6, 15, 29, 0.85);
    padding: 28px 0 20px;
}

.site-footer-inner { margin-bottom: 14px; }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-weight: 700;
}

.footer-bottom {
    padding-top: 14px;
    border-top: 1px solid rgba(106, 181, 255, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
}

@keyframes bg-breathe {
    0% { transform: translate3d(calc(var(--mx) * 16px), calc(var(--my) * 12px), 0) rotate(-2deg) scale(1); }
    100% { transform: translate3d(calc(var(--mx) * 16px), calc(var(--my) * 12px), 0) rotate(3deg) scale(1.06); }
}

@keyframes token-float {
    0% {
        transform:
            translate3d(calc(var(--mx) * var(--depth) * -24px), calc(var(--my) * var(--depth) * -18px), 0)
            rotateX(62deg)
            rotateZ(var(--tilt))
            translateY(0);
    }
    100% {
        transform:
            translate3d(calc(var(--mx) * var(--depth) * -24px), calc(var(--my) * var(--depth) * -18px), 0)
            rotateX(62deg)
            rotateZ(calc(var(--tilt) + 8deg))
            translateY(var(--drift));
    }
}

@keyframes panel-sheen {
    0% { opacity: 0.48; transform: translateX(-2%); }
    100% { opacity: 0.82; transform: translateX(2%); }
}

@keyframes signal-scan {
    0%, 100% { transform: translateY(-34px) rotate(-8deg); opacity: 0; }
    35%, 70% { opacity: 0.72; }
    50% { transform: translateY(34px) rotate(-8deg); opacity: 0.92; }
}

@media (max-width: 1080px) {
    .hero-grid, .proof-grid, .final-cta-card, .bento-grid, .next-grid { grid-template-columns: 1fr; }
    .steps-grid, .proof-stats, .faq-grid, .stream-grid { grid-template-columns: 1fr; }
    .final-cta-actions { justify-content: flex-start; }
    .market-token { opacity: 0.34; }
}

@media (max-width: 860px) {
    .menu-toggle { display: flex; }
    .menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 24px;
        left: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 20px;
        background: rgba(7, 20, 39, 0.96);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .menu.is-open { display: flex; }
    .menu a, .menu .btn { width: 100%; }
    .header-actions { gap: 10px; }
    .lang-switch { margin-left: auto; }
}

@media (max-width: 640px) {
    .container { width: min(var(--container), calc(100vw - 28px)); }
    .site-header-inner { min-height: 72px; }
    .hero { padding-top: 54px; }
    .hero::before { opacity: 0.7; }
    .hero-panel { transform: none; }
    .market-token:nth-child(n+7) { display: none; }
    .hero-copy h1, .section-head h2, .final-cta-copy h2 { max-width: none; }
    .hero-panel, .proof-overview, .proof-card, .pricing-card-main, .final-cta-card, .bento-card, .step-card, .faq-grid details {
        border-radius: 22px;
        padding: 20px;
    }
    .signal-levels { grid-template-columns: 1fr; }
    .pricing-actions, .hero-cta, .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .pricing-actions .btn, .hero-cta .btn, .final-cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
    .market-backdrop { display: none; }
    .hero-panel { transform: none; }
}
