/* ============================================================
   NEXUS COPIER — "SIGNAL INFRASTRUCTURE" DESIGN SYSTEM
   Dark precision-terminal aesthetic · editorial typography
   Fonts: Clash Display (display) · Switzer (body) · JetBrains Mono (data)
   ============================================================ */

:root {
    /* Palette */
    --ink: #05080F;
    --ink-2: #080D17;
    --panel: #0B121F;
    --panel-2: #0E1626;
    --line: rgba(148, 170, 200, 0.13);
    --line-strong: rgba(148, 170, 200, 0.28);
    --text: #E9EFF8;
    --text-dim: #93A1B5;
    --text-faint: #5C6A7E;
    --cyan: #00A9FF;
    --mint: #46F8D4;
    --red: #FF5C6C;
    --amber: #FFB02E;
    --cyan-soft: rgba(0, 169, 255, 0.12);
    --mint-soft: rgba(70, 248, 212, 0.10);

    /* Type */
    --f-display: 'Clash Display', 'Switzer', sans-serif;
    --f-body: 'Switzer', -apple-system, sans-serif;
    --f-mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Layout */
    --container: 1180px;
    --radius: 14px;
    --header-h: 64px;
    --ticker-h: 34px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-body);
    background: var(--ink);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--cyan); color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
.kicker {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--text-dim);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 0.7rem;
    margin-bottom: 1.1rem;
}
.kicker-center { justify-content: center; }
.k-idx {
    color: var(--cyan);
    border: 1px solid var(--line-strong);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.65rem;
}
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: 0.35; } }

.h2 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.9rem, 4.6vw, 3.1rem);
    line-height: 1.06;
    letter-spacing: -0.015em;
}
.h3 { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.7rem); letter-spacing: -0.01em; }
.h2 em, .final-title em { font-style: normal; }
.em-cyan { color: var(--cyan); }
.em-mint { color: var(--mint); }
.em-red { color: var(--red); }
.em-dim { color: var(--text-faint); }
.t-cyan { color: var(--cyan); font-style: normal; }
.t-mint { color: var(--mint); font-style: normal; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-sub { color: var(--text-dim); margin-top: 1rem; font-size: 1.02rem; max-width: 560px; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    font-family: var(--f-mono); font-weight: 600; font-size: 0.85rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.95rem 1.7rem; border-radius: 9px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-solid {
    background: linear-gradient(120deg, var(--cyan), #0077DF);
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 169, 255, 0.35);
}
.btn-solid:hover { box-shadow: 0 6px 34px rgba(0, 169, 255, 0.55); transform: translateY(-2px); }
.btn-mint {
    background: linear-gradient(120deg, var(--mint), #1FCBA4);
    color: #04241C;
    box-shadow: 0 4px 24px rgba(70, 248, 212, 0.28);
}
.btn-mint:hover { box-shadow: 0 6px 34px rgba(70, 248, 212, 0.45); transform: translateY(-2px); }
.btn-ghost {
    border: 1px solid var(--line-strong);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }
.btn-lg { padding: 1.1rem 2rem; font-size: 0.9rem; }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: wait; }
.link-btn { color: var(--cyan); font-family: var(--f-mono); font-size: 0.82rem; }
.link-btn:hover { text-decoration: underline; }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 950;
    height: var(--ticker-h);
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    display: flex; align-items: center;
}
.ticker-track {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: ticker 38s linear infinite;
    will-change: transform;
}
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item {
    font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em;
    color: var(--text-dim); text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 0.45rem;
}
.ticker-item strong { color: var(--text); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed; top: var(--ticker-h); left: 0; right: 0; z-index: 940;
    height: var(--header-h);
    background: rgba(5, 8, 15, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: top 0.3s ease;
}
.header-inner {
    max-width: var(--container); margin: 0 auto; height: 100%;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { border-radius: 8px; }
.brand-name {
    font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.04em;
}
.brand-name em { font-style: normal; color: var(--cyan); }
.main-nav { display: flex; gap: 1.5rem; }
.main-nav a {
    font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-dim); transition: color 0.15s;
    padding: 0.4rem 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang-switch {
    font-family: var(--f-mono); font-size: 0.72rem; color: var(--text-faint);
    display: flex; gap: 0.35rem;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active { color: var(--cyan); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); transition: transform 0.25s, opacity 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.mobile-panel {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 980;
    width: min(340px, 88vw);
    background: var(--ink-2);
    border-left: 1px solid var(--line);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 5.4rem 1.8rem 1.8rem;
    overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
    font-family: var(--f-display); font-size: 1.35rem; font-weight: 500;
    padding: 0.75rem 0; border-bottom: 1px solid var(--line);
    display: flex; align-items: baseline; gap: 0.9rem;
}
.mn-idx { font-family: var(--f-mono); font-size: 0.65rem; color: var(--cyan); }
.mobile-panel-footer { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-lang { display: flex; gap: 1.2rem; font-family: var(--f-mono); font-size: 0.78rem; color: var(--text-faint); }
.mobile-lang a.active { color: var(--cyan); }
.mobile-overlay {
    position: fixed; inset: 0; z-index: 970; background: rgba(3, 5, 10, 0.7);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    backdrop-filter: blur(3px);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: calc(var(--ticker-h) + var(--header-h) + clamp(3rem, 8vh, 6rem)) 0 clamp(3rem, 7vh, 5rem);
    min-height: 92vh;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 30%, transparent 75%);
    opacity: 0.7;
}
.hero-glow {
    position: absolute; top: -25%; right: -12%;
    width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
    background: radial-gradient(circle, rgba(0, 169, 255, 0.13) 0%, transparent 62%);
    filter: blur(20px);
    pointer-events: none;
}
.hero-layout {
    position: relative;
    display: grid; grid-template-columns: 1.06fr 0.94fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.hero-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(2.6rem, 6.2vw, 4.6rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}
.ht-line { display: block; overflow: hidden; }
.ht-accent { color: var(--cyan); font-family: var(--f-mono); font-weight: 700; letter-spacing: -0.04em; }
.ht-accent small { font-size: 0.5em; color: var(--mint); }
.ht-cursor {
    display: inline-block; width: 0.55em; height: 0.9em; margin-left: 0.12em;
    background: var(--mint); vertical-align: baseline;
    animation: blink 1.1s steps(1) infinite;
}
.hero-sub { color: var(--text-dim); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 520px; margin-bottom: 2rem; }
.hero-sub strong { color: var(--text); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1rem; }
.hero-micro {
    font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.05em;
    color: var(--text-faint); display: flex; flex-wrap: wrap; gap: 1.2rem;
}
.hero-micro span { white-space: nowrap; }

/* Hero live panel */
.hero-panel {
    background: linear-gradient(170deg, var(--panel) 0%, var(--panel-2) 100%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}
.panel-head {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.015);
}
.panel-dots { display: inline-flex; gap: 5px; }
.panel-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.panel-dots i:first-child { background: var(--red); opacity: 0.7; }
.panel-dots i:nth-child(2) { background: var(--amber); opacity: 0.7; }
.panel-dots i:nth-child(3) { background: var(--mint); opacity: 0.7; }
.panel-title { font-family: var(--f-mono); font-size: 0.68rem; color: var(--text-faint); flex: 1; }
.panel-status {
    font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.14em;
    color: var(--mint); display: inline-flex; align-items: center; gap: 0.4rem;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); animation: blink 1.6s infinite; }

/* Wire */
.wire {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 1.4rem 1rem 1rem;
}
.wire-node {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.12em; color: var(--text-dim);
    min-width: 64px;
}
.wire-node img, .wire-node svg { filter: drop-shadow(0 0 10px rgba(0, 169, 255, 0.3)); }
.wire-node-core {
    color: var(--cyan);
}
.wire-node-core svg { color: var(--cyan); }
.wire-svg { flex: 1; height: 24px; min-width: 40px; }
.wire-path { stroke: var(--line-strong); stroke-width: 1.6; stroke-dasharray: 4 5; }
.wire-pulse { fill: var(--cyan); filter: drop-shadow(0 0 6px var(--cyan)); animation: wirepulse 1.8s linear infinite; }
.wire-pulse-2 { fill: var(--mint); filter: drop-shadow(0 0 6px var(--mint)); animation-delay: 0.9s; }
@keyframes wirepulse {
    0% { cx: 0; opacity: 0; }
    8% { opacity: 1; }
    88% { opacity: 1; }
    100% { cx: 120; opacity: 0; }
}

/* Terminal */
.term {
    margin: 0.6rem 1rem 1rem;
    background: rgba(2, 4, 9, 0.75);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 0.85rem 1rem;
    font-family: var(--f-mono);
    font-size: clamp(0.62rem, 1.5vw, 0.73rem);
    line-height: 1.85;
    overflow: hidden;
}
.term p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl-t { color: var(--text-faint); margin-right: 0.5rem; }
.tl-dim { color: var(--text-faint); }
.tl-badge {
    background: var(--mint-soft); color: var(--mint);
    border: 1px solid rgba(70, 248, 212, 0.35);
    border-radius: 4px; padding: 0 0.4rem; margin-left: 0.4rem;
    font-size: 0.9em;
}

.panel-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}
.panel-stats > div {
    padding: 0.85rem 0.5rem;
    text-align: center;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 0.1rem;
}
.panel-stats > div:last-child { border-right: none; }
.panel-stats b { font-family: var(--f-mono); font-size: 1.02rem; color: var(--cyan); font-weight: 700; }
.panel-stats b span { font-size: 1em; letter-spacing: normal; text-transform: none; color: inherit; }
.panel-stats b .ps-unit { font-size: 0.66em; font-weight: 700; opacity: 0.85; }
.panel-stats > div:nth-child(2) b { color: var(--mint); }
.panel-stats > div > span { font-family: var(--f-mono); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }

.hero-scroll {
    position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.25em; color: var(--text-faint);
    animation: floaty 2.6s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateX(-50%) translateY(6px); } }

/* ============================================================
   DEMO
   ============================================================ */
.demo-section { padding-top: clamp(3rem, 6vw, 5rem); }
.demo-frame {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.demo-frame-bar {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.65rem 1rem;
    font-family: var(--f-mono); font-size: 0.66rem; color: var(--text-faint);
    border-bottom: 1px solid var(--line);
}
.demo-video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.demo-caption {
    margin-top: 0.9rem;
    text-align: center;
    font-family: var(--f-mono); font-size: 0.72rem;
    letter-spacing: 0.02em; color: var(--text-faint); font-style: italic;
}

.tech-strip {
    margin-top: 2.2rem;
    display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.9rem 1.3rem;
    background: rgba(255, 255, 255, 0.012);
}
.tech-strip-label { font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--text-faint); }
.tech-strip-items { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; }
.tech-strip-items span {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--f-mono); font-size: 0.74rem; color: var(--text-dim);
}
.tech-strip-items img { opacity: 0.85; }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers-section { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.numbers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.num-cell {
    padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.8rem);
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
}
.num-cell:last-child { border-right: none; }
.num-cell b {
    display: block;
    font-family: var(--f-mono); font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1.1;
}
.num-cell b i { font-style: normal; color: var(--cyan); font-size: 0.55em; }
.num-cell:nth-child(2) b i { color: var(--mint); }
.num-label { display: block; margin-top: 0.5rem; font-size: 0.78rem; color: var(--text-faint); line-height: 1.45; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-section { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.problem-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    background: var(--panel);
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}
.problem-card:hover { border-color: rgba(255, 92, 108, 0.4); transform: translateY(-4px); }
.pc-tag {
    font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.18em;
    padding: 0.25rem 0.55rem; border-radius: 4px;
}
.pc-tag-red { color: var(--red); border: 1px solid rgba(255, 92, 108, 0.4); background: rgba(255, 92, 108, 0.08); }
.problem-card h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.18rem; margin: 1rem 0 0.6rem; }
.problem-card > p { font-size: 0.88rem; color: var(--text-dim); }
.pc-fix {
    margin-top: 1.1rem; padding-top: 1rem;
    border-top: 1px dashed var(--line-strong);
    font-size: 0.85rem; color: var(--text);
}
.pc-fix span {
    display: block;
    font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.18em;
    color: var(--mint); margin-bottom: 0.35rem;
}

/* ============================================================
   PIPELINE
   ============================================================ */
.pipe-steps { display: flex; flex-direction: column; gap: clamp(2.5rem, 6vw, 4.5rem); }
.pipe-step {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}
.pipe-step-rev .pipe-step-media { order: 2; }
.pipe-step-rev .pipe-step-body { order: 1; }
.pipe-step-media {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.pipe-step-media img { width: 100%; cursor: zoom-in; transition: transform 0.4s ease; }
.pipe-step-media:hover img { transform: scale(1.025); }
.pipe-idx {
    font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.22em; color: var(--cyan);
}
.pipe-step-body h3 { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0.6rem 0 0.8rem; }
.pipe-step-body > p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1.1rem; }
.pipe-step-body em { color: var(--text); font-style: italic; }
.pipe-list li {
    position: relative; padding-left: 1.5rem;
    font-size: 0.88rem; color: var(--text); margin-bottom: 0.5rem;
}
.pipe-list li::before {
    content: "▸"; position: absolute; left: 0; color: var(--mint); font-family: var(--f-mono);
}

/* ============================================================
   BENTO FEATURES
   ============================================================ */
.features-section { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.bento-wide { grid-column: span 2; }
.bento-cell {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    background: linear-gradient(170deg, var(--panel) 0%, rgba(11, 18, 31, 0.4) 100%);
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.bento-cell:hover { border-color: rgba(0, 169, 255, 0.45); transform: translateY(-4px); }
.bento-cell::after {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 255, 0.5), transparent);
    opacity: 0; transition: opacity 0.25s;
}
.bento-cell:hover::after { opacity: 1; }
.bc-tag {
    font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.2em;
    color: var(--cyan); border: 1px solid rgba(0, 169, 255, 0.35);
    background: var(--cyan-soft);
    padding: 0.22rem 0.5rem; border-radius: 4px;
}
.bento-cell h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; margin: 0.95rem 0 0.55rem; }
.bento-cell p { font-size: 0.86rem; color: var(--text-dim); }

/* R:R visual */
.rr-visual { margin-top: 1.3rem; }
.rr-bar {
    position: relative; height: 44px;
    border-radius: 7px;
    background: linear-gradient(90deg, rgba(255, 92, 108, 0.18) 0%, rgba(255, 92, 108, 0.18) 18%, rgba(70, 248, 212, 0.07) 18%);
    border: 1px solid var(--line);
    display: flex; align-items: center;
    font-family: var(--f-mono); font-size: 0.6rem;
}
.rr-bar span { position: absolute; top: 50%; transform: translate(-50%, -50%); }
.rr-sl { left: 6%; color: var(--red); }
.rr-entry { left: 18%; color: var(--text); padding: 0.2rem 0.4rem; background: var(--ink); border: 1px solid var(--line-strong); border-radius: 4px; }
.rr-tp {
    left: calc(18% + (var(--i) * 24%));
    color: var(--mint);
    padding: 0.2rem 0.4rem;
    background: rgba(70, 248, 212, 0.1);
    border: 1px solid rgba(70, 248, 212, 0.4);
    border-radius: 4px;
}

/* Multi-account visual */
.ma-visual { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.3rem; flex-wrap: wrap; }
.ma-core {
    font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-align: center;
    color: var(--cyan); border: 1px solid rgba(0, 169, 255, 0.5);
    background: var(--cyan-soft);
    padding: 0.85rem 1rem; border-radius: 9px;
    box-shadow: 0 0 24px rgba(0, 169, 255, 0.18);
}
.ma-links { display: flex; flex-direction: column; gap: 0.45rem; flex: 1; min-width: 200px; }
.ma-acc {
    font-family: var(--f-mono); font-size: 0.66rem; color: var(--text-dim);
    border: 1px solid var(--line); border-radius: 6px;
    padding: 0.4rem 0.7rem;
    display: flex; justify-content: space-between; gap: 1rem;
    position: relative;
}
.ma-acc::before { content: "—"; color: var(--cyan); margin-right: 0.4rem; }
.ma-acc i { font-style: normal; color: var(--mint); }

/* Feature index */
.feature-index { margin-top: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feature-index-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.05rem 1.4rem;
    font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.015);
    transition: color 0.15s;
}
.feature-index-toggle:hover { color: var(--cyan); }
.feature-index-toggle svg { transition: transform 0.25s; flex-shrink: 0; }
.feature-index-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.feature-index-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.feature-index-body.open { max-height: 1400px; }
.fi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0.1rem 1.6rem;
    padding: 1.2rem 1.4rem 1.5rem;
}
.fi-grid li {
    font-size: 0.8rem; color: var(--text-dim);
    padding: 0.32rem 0 0.32rem 1.2rem; position: relative;
    border-bottom: 1px dotted var(--line);
}
.fi-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-size: 0.72rem; }

/* ============================================================
   ANALYZER
   ============================================================ */
.analyzer-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }
.analyzer-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.az-shot {
    border: 1px solid var(--line-strong); border-radius: 11px; overflow: hidden;
    background: var(--panel); cursor: zoom-in;
    transition: transform 0.25s, border-color 0.25s;
}
.az-shot:hover { transform: translateY(-3px); border-color: var(--cyan); }
.az-shot-main { grid-column: span 2; }
.az-shot img { width: 100%; }
.az-shot figcaption {
    font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-faint); padding: 0.55rem 0.8rem;
    border-top: 1px solid var(--line);
}
.analyzer-facts { display: flex; flex-direction: column; gap: 0.9rem; }
.az-fact {
    border: 1px solid var(--line); border-left: 3px solid var(--line-strong);
    border-radius: 9px; padding: 1.1rem 1.3rem;
    background: rgba(255, 255, 255, 0.012);
}
.az-fact-hl { border-left-color: var(--mint); }
.az-fact h3 { font-family: var(--f-display); font-size: 1.02rem; font-weight: 600; margin-bottom: 0.3rem; }
.az-fact p { font-size: 0.84rem; color: var(--text-dim); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gal-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.gal-tab {
    font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.6rem 1.15rem; border-radius: 999px;
    border: 1px solid var(--line-strong); color: var(--text-dim);
    transition: all 0.18s;
}
.gal-tab:hover { color: var(--text); }
.gal-tab.active { background: var(--cyan); border-color: var(--cyan); color: #fff; box-shadow: 0 2px 16px rgba(0, 169, 255, 0.4); }
.gal-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.gal-panel.active { display: grid; animation: fadeup 0.4s ease; }
@keyframes fadeup { from { opacity: 0; transform: translateY(10px); } }
.gal-card {
    border: 1px solid var(--line-strong); border-radius: 11px; overflow: hidden;
    cursor: zoom-in; background: var(--panel);
    transition: transform 0.22s, border-color 0.22s;
}
.gal-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.gal-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.gal-card figcaption {
    font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-faint); padding: 0.55rem 0.85rem; border-top: 1px solid var(--line);
}
.gal-card-solo { grid-column: 1 / -1; max-width: 860px; margin: 0 auto; width: 100%; }
.gal-card-solo img { aspect-ratio: auto; }
.gal-card-video { cursor: default; }
.gal-card-video:hover { transform: translateY(-4px); border-color: var(--cyan); }
.gal-card-video video { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; display: block; background: #000; }
.gal-hint { margin-top: 1.4rem; text-align: center; font-size: 0.82rem; color: var(--text-faint); }

/* ============================================================
   COMPARISON
   ============================================================ */
.vs-table { border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.vs-head, .vs-row {
    display: grid; grid-template-columns: 1.1fr 1.2fr 1fr;
    align-items: stretch;
}
.vs-head {
    font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.18em;
    color: var(--text-faint);
    border-bottom: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.02);
}
.vs-head span, .vs-row span { padding: 0.85rem 1.2rem; display: flex; align-items: center; }
.vs-head .vs-nexus { color: var(--cyan); }
.vs-row { border-bottom: 1px solid var(--line); font-size: 0.86rem; }
.vs-row:last-child { border-bottom: none; }
.vs-row > span:first-child { color: var(--text-dim); }
.vs-row .vs-yes {
    color: var(--text);
    background: linear-gradient(90deg, rgba(0, 169, 255, 0.07), rgba(70, 248, 212, 0.05));
    border-left: 1px solid var(--line); border-right: 1px solid var(--line);
    position: relative;
}
.vs-yes::before { content: "✓"; color: var(--mint); margin-right: 0.6rem; font-weight: 700; }
.vs-no { color: var(--text-faint); }
.vs-no::before { content: "✗"; color: var(--red); margin-right: 0.6rem; opacity: 0.7; }
.vs-more { display: none; }
.vs-table.expanded .vs-more { display: grid; }
.vs-expand {
    width: 100%; padding: 0.95rem;
    font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.16em;
    color: var(--cyan);
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    border-top: 1px solid var(--line-strong);
    background: rgba(0, 169, 255, 0.04);
    transition: background 0.15s;
}
.vs-expand:hover { background: rgba(0, 169, 255, 0.1); }
.vs-expand svg { transition: transform 0.25s; }
.vs-table.expanded .vs-expand svg { transform: rotate(180deg); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }

/* Vertical scrolling columns */
.reviews-vstack {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
    margin-top: 2.6rem;
    max-height: 620px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}
.reviews-vcol { overflow: hidden; }
.reviews-vtrack {
    display: flex; flex-direction: column; gap: 1.1rem;
    animation: reviews-scroll-v 55s linear infinite;
    will-change: transform;
}
.reviews-vcol:nth-child(1) .reviews-vtrack { animation-duration: 60s; }
.reviews-vcol:nth-child(2) .reviews-vtrack { animation-duration: 46s; animation-direction: reverse; }
.reviews-vcol:nth-child(3) .reviews-vtrack { animation-duration: 52s; }
.reviews-vstack:hover .reviews-vtrack { animation-play-state: paused; }
@keyframes reviews-scroll-v { to { transform: translateY(-50%); } }

.review-card {
    border: 1px solid var(--line); border-radius: 12px;
    background: var(--panel);
    padding: 1.3rem 1.4rem;
    display: flex; flex-direction: column; justify-content: space-between; gap: 1.1rem;
}
.review-card p { font-size: 0.92rem; color: var(--text); line-height: 1.55; }
.review-card footer { display: flex; align-items: center; gap: 0.7rem; }
.review-card img { border-radius: 50%; }
.review-card footer span { display: flex; flex-direction: column; flex: 1; line-height: 1.3; }
.review-card footer b { font-size: 0.82rem; }
.review-card footer i { font-style: normal; font-size: 0.7rem; color: var(--text-faint); }
.review-card footer em { font-style: normal; font-size: 0.66rem; color: var(--amber); letter-spacing: 0.1em; }

/* ============================================================
   PRICING
   ============================================================ */
.trial-strip {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    border: 1px solid rgba(70, 248, 212, 0.3);
    background: var(--mint-soft);
    border-radius: 11px;
    padding: 0.9rem 1.3rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
.trial-strip b { color: var(--mint); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: stretch; }
.price-card {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: linear-gradient(175deg, var(--panel) 0%, rgba(11, 18, 31, 0.5) 100%);
    padding: 1.8rem 1.6rem 1.5rem;
    position: relative;
    display: flex; flex-direction: column;
    transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(0, 169, 255, 0.4); }
.price-card-hot {
    border-color: var(--cyan);
    box-shadow: 0 0 0 1px var(--cyan), 0 24px 70px rgba(0, 169, 255, 0.16);
    background: linear-gradient(175deg, #0D1830 0%, var(--panel) 100%);
}
.price-flag {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.2em;
    background: linear-gradient(90deg, var(--cyan), #0077DF);
    color: #fff; padding: 0.3rem 0.9rem; border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 169, 255, 0.4);
}
.price-card h3 { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.24em; color: var(--text-dim); }
.price-card-hot h3 { color: var(--cyan); }
.price-for { font-size: 0.78rem; color: var(--text-faint); margin-top: 0.3rem; }
.price-amount {
    font-family: var(--f-display); font-weight: 600;
    font-size: 3.2rem; letter-spacing: -0.03em; line-height: 1;
    margin: 1.1rem 0 0.2rem;
    display: flex; align-items: baseline; gap: 0.6rem;
}
.price-amount i { font-style: normal; font-size: 0.45em; color: var(--text-dim); }
.price-amount span { font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--text-faint); text-transform: uppercase; }
.price-accounts {
    margin: 1rem 0;
    border: 1px dashed var(--line-strong); border-radius: 8px;
    padding: 0.6rem 0.9rem;
    font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--text-dim);
}
.price-accounts b { color: var(--mint); font-size: 1.05rem; margin-right: 0.3rem; }
.price-feats { flex: 1; margin-bottom: 1.4rem; }
.price-feats li {
    font-size: 0.82rem; color: var(--text-dim);
    padding: 0.36rem 0 0.36rem 1.4rem; position: relative;
    border-bottom: 1px dotted var(--line);
}
.price-feats li:first-child { color: var(--text); font-weight: 500; }
.price-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-size: 0.78rem; }
.price-trust {
    margin-top: 0.8rem; text-align: center;
    font-size: 0.66rem; color: var(--text-faint); letter-spacing: 0.03em;
}
.price-math {
    margin-top: 2rem; text-align: center;
    font-size: 1.02rem; color: var(--text-dim);
}
.price-math b { color: var(--text); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section { padding-top: clamp(2.5rem, 5vw, 4rem); }
.guarantee-box {
    display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap;
    border: 1px solid rgba(70, 248, 212, 0.35);
    border-radius: var(--radius);
    background: linear-gradient(120deg, rgba(70, 248, 212, 0.07), rgba(0, 169, 255, 0.05));
    padding: clamp(1.5rem, 3.5vw, 2.4rem);
}
.g-seal {
    width: 78px; height: 78px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(70, 248, 212, 0.5);
    color: var(--mint);
    box-shadow: 0 0 28px rgba(70, 248, 212, 0.2), inset 0 0 18px rgba(70, 248, 212, 0.08);
}
.guarantee-box > div:nth-child(2) { flex: 1; min-width: 260px; }
.guarantee-box p { color: var(--text-dim); font-size: 0.92rem; margin-top: 0.4rem; max-width: 560px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-side { position: sticky; top: calc(var(--ticker-h) + var(--header-h) + 2rem); }
.faq-contacts { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; }
.faq-contacts a { font-family: var(--f-mono); font-size: 0.78rem; color: var(--cyan); }
.faq-contacts a:hover { text-decoration: underline; }
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
    border: 1px solid var(--line); border-radius: 11px;
    background: var(--panel);
    transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.05rem 1.3rem;
    font-family: var(--f-display); font-weight: 500; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    flex-shrink: 0; width: 22px; height: 22px; position: relative;
    border: 1px solid var(--line-strong); border-radius: 50%;
}
.faq-item summary i::before, .faq-item summary i::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 9px; height: 1.5px; background: var(--cyan);
    transform: translate(-50%, -50%);
    transition: transform 0.25s;
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item p { padding: 0 1.3rem 1.2rem; font-size: 0.88rem; color: var(--text-dim); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-section { padding-bottom: clamp(5rem, 10vw, 8rem); }
.final-box {
    text-align: center;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse 70% 90% at 50% -10%, rgba(0, 169, 255, 0.16), transparent 60%),
        var(--panel);
    position: relative;
    overflow: hidden;
}
.final-title {
    font-family: var(--f-display); font-weight: 600;
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.final-ctas { justify-content: center; }
.final-box .hero-micro { justify-content: center; margin-top: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--ink-2); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand img { border-radius: 10px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.84rem; color: var(--text-faint); max-width: 280px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 9px;
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
    transition: all 0.18s;
}
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); background: var(--cyan-soft); }
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col h4 {
    font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.22em;
    color: var(--text-faint); margin-bottom: 0.5rem;
}
.footer-col a { font-size: 0.86rem; color: var(--text-dim); transition: color 0.15s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 1.4rem 24px calc(1.4rem + 70px);
    text-align: center;
    font-family: var(--f-mono); font-size: 0.66rem; color: var(--text-faint);
    display: flex; flex-direction: column; gap: 0.3rem;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 930;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(5, 8, 15, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    display: none;
    transform: translateY(110%);
    transition: transform 0.3s ease;
}
.mobile-cta.visible { transform: translateY(0); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed; inset: 0; z-index: 990;
    background: rgba(2, 4, 9, 0.92);
    display: none; align-items: center; justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fadein 0.25s ease; }
@keyframes fadein { from { opacity: 0; } }
.lightbox figure { max-width: min(1100px, 94vw); max-height: 88vh; display: flex; flex-direction: column; gap: 0.7rem; }
.lightbox img { max-height: 80vh; width: auto; max-width: 100%; margin: 0 auto; border-radius: 10px; border: 1px solid var(--line-strong); object-fit: contain; }
.lightbox figcaption { text-align: center; font-family: var(--f-mono); font-size: 0.72rem; color: var(--text-dim); }
.lightbox-close, .video-modal-close {
    position: absolute; top: 1.2rem; right: 1.4rem;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--line-strong);
    color: var(--text); font-size: 1rem;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.15s;
    z-index: 2;
}
.lightbox-close:hover, .video-modal-close:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
    position: fixed; inset: 0; z-index: 990;
    background: rgba(2, 4, 9, 0.92);
    display: none; align-items: center; justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
}
.video-modal.open { display: flex; animation: fadein 0.25s ease; }
.video-modal-box {
    width: min(1040px, 96vw);
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: grid; grid-template-columns: 1fr 240px; gap: 1rem;
    position: relative;
    max-height: 90vh;
}
.video-modal-box video { width: 100%; border-radius: 9px; background: #000; aspect-ratio: 16/9; }
.video-playlist { overflow-y: auto; display: flex; flex-direction: column; gap: 0.5rem; max-height: 60vh; }
.vp-item {
    text-align: left;
    border: 1px solid var(--line); border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem; color: var(--text-dim);
    transition: all 0.15s;
    font-family: var(--f-mono);
}
.vp-item:hover { color: var(--text); border-color: var(--line-strong); }
.vp-item.active { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }

/* ============================================================
   STRIPE LOADING MODAL
   ============================================================ */
.stripe-modal {
    position: fixed; inset: 0; z-index: 995;
    background: rgba(2, 4, 9, 0.9);
    display: none; align-items: center; justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
}
.stripe-modal.active { display: flex; animation: fadein 0.25s ease; }
.stripe-modal-box {
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 2.6rem 2.2rem;
    text-align: center;
    max-width: 420px;
}
.stripe-modal-box h3 { font-family: var(--f-display); font-size: 1.3rem; margin: 1.2rem 0 0.5rem; }
.stripe-modal-box p { font-size: 0.86rem; color: var(--text-dim); margin-bottom: 1.2rem; }
.stripe-warn {
    font-family: var(--f-mono); font-size: 0.68rem; color: var(--amber);
    border: 1px solid rgba(255, 176, 46, 0.35); background: rgba(255, 176, 46, 0.08);
    border-radius: 7px; padding: 0.5rem 0.9rem; display: inline-block;
}
.stripe-spinner {
    width: 48px; height: 48px; margin: 0 auto;
    border: 3px solid var(--line-strong); border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading {
    display: inline-block; width: 14px; height: 14px;
    border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
    border-radius: 50%; animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

/* ============================================================
   LEGAL MODALS
   ============================================================ */
.legal-modal {
    position: fixed; inset: 0; z-index: 992;
    background: rgba(2, 4, 9, 0.88);
    display: none; align-items: center; justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
}
.legal-modal.open { display: flex; animation: fadein 0.25s ease; }
.legal-box {
    width: min(860px, 96vw); max-height: 86vh;
    background: var(--panel);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    display: flex; flex-direction: column;
    overflow: hidden;
}
.legal-box header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--line);
}
.legal-box header h3 { font-family: var(--f-display); font-size: 1.2rem; }
.legal-close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--line-strong); color: var(--text-dim);
    transition: all 0.15s;
}
.legal-close:hover { color: var(--red); border-color: var(--red); }
.legal-body { padding: 1.5rem; overflow-y: auto; font-size: 0.88rem; color: var(--text-dim); }
.legal-body h4 { font-family: var(--f-display); color: var(--text); margin: 1.4rem 0 0.5rem; font-size: 1.02rem; }
.legal-body ul { margin: 0.4rem 0 0.6rem 1.4rem; list-style: disc; }
.legal-body li { margin-bottom: 0.25rem; }
.legal-body a { color: var(--cyan); }
.legal-warn { color: var(--red); font-weight: 600; }
.legal-note { color: var(--amber); }
.legal-highlight {
    border: 1px solid rgba(70, 248, 212, 0.4);
    background: var(--mint-soft);
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    margin: 1rem 0 1.4rem;
}
.legal-highlight h4 { margin-top: 0; }

/* ============================================================
   REVEAL (JS-driven; graceful without JS)
   ============================================================ */
[data-reveal] { opacity: 1; }
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.js [data-reveal].revealed { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
    .main-nav { display: none; }
    .nav-burger { display: flex; }
    .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero { min-height: 0; }
    .hero-scroll { display: none; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-wide { grid-column: span 2; }
    .analyzer-layout { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-side { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .num-cell:nth-child(2) { border-right: none; }
    .num-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .fi-grid { grid-template-columns: 1fr 1fr; }
    .reviews-vstack { grid-template-columns: repeat(2, 1fr); }
    .reviews-vcol:nth-child(3) { display: none; }
}

@media (max-width: 760px) {
    .header-actions .btn { display: none; }
    .lang-switch { display: none; }
    .hero-title { font-size: clamp(2rem, 8.6vw, 3rem); }
    .hero-ctas .btn { width: 100%; }
    .problem-grid { grid-template-columns: 1fr; }
    .pipe-step { grid-template-columns: 1fr; gap: 1.2rem; }
    .pipe-step-rev .pipe-step-media { order: 0; }
    .pipe-step-rev .pipe-step-body { order: 1; }
    .bento { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .gal-panel { grid-template-columns: 1fr; }
    .analyzer-shots { grid-template-columns: 1fr; }
    .az-shot-main { grid-column: span 1; }
    .price-grid { grid-template-columns: 1fr; }
    .price-card-hot { order: -1; }
    .vs-head, .vs-row { grid-template-columns: 1fr; }
    .vs-head span:first-child, .vs-row > span:first-child {
        padding-bottom: 0.2rem;
        font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
        color: var(--text-faint);
    }
    .vs-head { display: none; }
    .vs-row { padding: 0.4rem 0; }
    .vs-row span { padding: 0.25rem 1.2rem; }
    .vs-row .vs-yes { border-left: none; border-right: none; background: none; }
    .mobile-cta { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .fi-grid { grid-template-columns: 1fr; }
    .reviews-vstack { grid-template-columns: 1fr; max-height: 540px; }
    .reviews-vcol:nth-child(2) { display: none; }
    .guarantee-box { flex-direction: column; align-items: flex-start; }
    .video-modal-box { grid-template-columns: 1fr; }
    .video-playlist { flex-direction: row; flex-wrap: wrap; max-height: none; }
    .panel-stats { grid-template-columns: repeat(2, 1fr); }
    .panel-stats > div:nth-child(2) { border-right: none; }
    .panel-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .trial-strip { flex-direction: column; align-items: flex-start; }
    .trial-strip .btn { width: 100%; }
    .ticker-item { font-size: 0.62rem; }
    .numbers-grid { grid-template-columns: 1fr; }
    .num-cell { border-right: none; border-bottom: 1px solid var(--line); }
    .num-cell:last-child { border-bottom: none; }
}

@media (max-width: 380px) {
    .container { padding: 0 16px; }
    .wire-node { min-width: 50px; font-size: 0.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .js [data-reveal] { opacity: 1; transform: none; }
}
