/* Landing rebuild: performance-driven, dark + accent — scope to .landing-rebuild */

.landing-rebuild {
    --landing-bg: #000000;
    --landing-surface: #000000;
    --landing-surface-2: #000000;
    --landing-accent: #3dd68c;
    --landing-accent-dim: rgba(61, 214, 140, 0.15);
    --landing-accent-glow: rgba(61, 214, 140, 0.45);
    --neon-mint: rgba(61, 214, 140, 0.9);
    --neon-cyan: rgba(34, 211, 238, 0.75);
    --neon-violet: rgba(167, 139, 250, 0.45);
    --landing-text: #f0f4f8;
    --landing-muted: #8b9aab;
    --landing-border: rgba(255, 255, 255, 0.08);
    background: var(--landing-bg);
    color: var(--landing-text);
}

html {
    background: #000000;
}

.landing-rebuild .marketing-header {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 214, 140, 0.18);
    box-shadow:
        0 1px 0 rgba(34, 211, 238, 0.12),
        0 0 40px rgba(61, 214, 140, 0.06);
}

.landing-rebuild .marketing-brand {
    color: var(--landing-text);
}

.landing-rebuild .marketing-brand img {
    filter: drop-shadow(0 0 12px rgba(61, 214, 140, 0.4))
        drop-shadow(0 0 24px rgba(34, 211, 238, 0.15));
}

.landing-rebuild .marketing-btn-ghost {
    border-color: rgba(61, 214, 140, 0.35);
    color: var(--landing-text);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-rebuild .marketing-btn-ghost:hover {
    border-color: rgba(61, 214, 140, 0.55);
    box-shadow:
        0 0 24px rgba(61, 214, 140, 0.15),
        0 0 40px rgba(167, 139, 250, 0.08);
}

.landing-rebuild .marketing-btn-primary {
    background: linear-gradient(135deg, #2eb574 0%, var(--landing-accent) 100%);
    color: #041208;
    font-weight: 700;
    box-shadow:
        0 0 20px rgba(61, 214, 140, 0.45),
        0 0 40px rgba(34, 211, 238, 0.2),
        0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.landing-rebuild .marketing-btn-primary:hover {
    filter: brightness(1.08);
    box-shadow:
        0 0 28px rgba(61, 214, 140, 0.55),
        0 0 56px rgba(34, 211, 238, 0.28),
        0 0 1px rgba(255, 255, 255, 0.45) inset;
}

.landing-rebuild .marketing-footer {
    border-top-color: var(--landing-border);
    color: var(--landing-muted);
}

.landing-rebuild .marketing-footer a:hover {
    color: var(--landing-accent);
}

/* —— Hero —— */
.landing-hero {
    position: relative;
    flex: 0 0 auto;
    min-height: calc(100svh - 5.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(3rem, 7vw, 5rem);
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: -35% 15% auto;
    height: 75%;
    background: radial-gradient(
        ellipse 90% 60% at 50% 0%,
        rgba(61, 214, 140, 0.14) 0%,
        rgba(34, 211, 238, 0.06) 42%,
        transparent 68%
    );
    pointer-events: none;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: auto -20% -15%;
    height: 45%;
    background: radial-gradient(
        ellipse 70% 80% at 50% 100%,
        rgba(167, 139, 250, 0.07) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.landing-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.landing-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--landing-accent);
    margin: 0 0 1rem;
}

.landing-headline {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    max-width: 22ch;
    color: #ffffff;
    text-shadow:
        0 0 24px rgba(61, 214, 140, 0.45),
        0 0 48px rgba(34, 211, 238, 0.22),
        0 0 96px rgba(61, 214, 140, 0.12),
        0 1px 0 rgba(0, 0, 0, 0.85);
}

.landing-subhead {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--landing-muted);
    line-height: 1.5;
    margin: 0;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-subhead--hero {
    font-size: clamp(1.08rem, 2.4vw, 1.3rem);
    color: var(--landing-text);
    line-height: 1.55;
    max-width: 38rem;
    text-shadow:
        0 0 20px rgba(34, 211, 238, 0.12),
        0 0 40px rgba(61, 214, 140, 0.06);
}

.landing-position {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--landing-text);
    font-weight: 600;
    margin: 0 0 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.landing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-cta:active {
    transform: scale(0.98);
}

.landing-cta-primary {
    background: linear-gradient(135deg, #2eb574 0%, var(--landing-accent) 100%);
    color: #041208;
    box-shadow:
        0 4px 32px rgba(61, 214, 140, 0.5),
        0 0 40px rgba(34, 211, 238, 0.25),
        0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.landing-cta-primary:hover {
    box-shadow:
        0 6px 40px rgba(61, 214, 140, 0.55),
        0 0 56px rgba(34, 211, 238, 0.32),
        0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.landing-cta-secondary {
    background: rgba(0, 0, 0, 0.65);
    color: var(--landing-text);
    border: 1px solid rgba(61, 214, 140, 0.35);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-cta-secondary:hover {
    border-color: rgba(61, 214, 140, 0.65);
    box-shadow:
        0 0 32px rgba(61, 214, 140, 0.2),
        0 0 48px rgba(167, 139, 250, 0.12);
}

/* Hero product visual (below CTAs, below the fold on most viewports) */
.landing-hero-visual {
    width: 100%;
    max-width: 22rem;
    margin-top: clamp(0.5rem, 2vw, 1rem);
}

.landing-hero-visual-frame {
    border-radius: 14px;
    border: 1px solid rgba(61, 214, 140, 0.35);
    background: var(--landing-surface);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 0 32px rgba(61, 214, 140, 0.15),
        0 0 64px rgba(34, 211, 238, 0.08),
        0 0 0 1px rgba(34, 211, 238, 0.12) inset;
    overflow: hidden;
    text-align: left;
}

.landing-hero-visual-chrome {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.75rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid var(--landing-border);
}

.landing-hero-visual-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.landing-hero-visual-dot:nth-child(1) {
    background: #f87171;
}
.landing-hero-visual-dot:nth-child(2) {
    background: #fbbf24;
}
.landing-hero-visual-dot:nth-child(3) {
    background: #4ade80;
}

.landing-hero-visual-url {
    margin-left: auto;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--landing-muted);
    opacity: 0.85;
}

.landing-hero-visual-body {
    padding: 1.1rem 1rem 1.25rem;
}

.landing-hero-visual-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.landing-hero-visual-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--landing-muted);
}

.landing-hero-visual-badge {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: var(--landing-accent-dim);
    color: var(--landing-accent);
}

.landing-hero-visual-timer {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 8vw, 2.75rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: var(--landing-text);
    line-height: 1;
}

.landing-hero-visual-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.landing-hero-visual-stat {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.5rem;
    border-radius: 10px;
    background: var(--landing-surface-2);
    border: 1px solid var(--landing-border);
    text-align: center;
}

.landing-hero-visual-stat-n {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--landing-accent);
    line-height: 1.2;
}

.landing-hero-visual-stat-l {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--landing-muted);
}

.landing-hero-visual-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.landing-hero-visual-bar span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2eb574, var(--landing-accent));
}

/* —— Featured clips (below the fold) —— */
.landing-video-feature {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
    margin-top: 0;
    border-top: 1px solid var(--landing-border);
}

.landing-video-feature-title {
    text-align: center;
    margin: 0 0 1rem;
    padding: 0 1.25rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--landing-muted);
}

/* —— How it works —— */
.landing-how-it-works {
    padding: clamp(2rem, 5vw, 3rem) 1.5rem;
    max-width: 36rem;
    margin: 0 auto;
    border-top: 1px solid var(--landing-border);
}

.landing-how-title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--landing-text);
}

.landing-how-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--landing-muted);
    line-height: 1.65;
    font-size: clamp(0.98rem, 2.2vw, 1.05rem);
}

.landing-how-list li {
    margin-bottom: 0.5rem;
}

/* Marketing home: override global styles.css .landing-how-it-works (cream bg) + neon card */
.landing-rebuild .landing-how-it-works {
    background: rgba(0, 0, 0, 0.5);
    max-width: min(36rem, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 1.75rem);
    border-radius: 18px;
    border: 1px solid rgba(61, 214, 140, 0.35);
    border-top: 1px solid rgba(61, 214, 140, 0.35);
    box-shadow:
        0 0 48px rgba(61, 214, 140, 0.08),
        0 0 96px rgba(34, 211, 238, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.landing-rebuild .landing-how-title {
    margin: 0 0 1.35rem;
    text-align: center;
    font-size: clamp(1.2rem, 3.2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow:
        0 0 28px rgba(61, 214, 140, 0.35),
        0 0 56px rgba(34, 211, 238, 0.12);
}

.landing-rebuild .landing-how-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: howstep;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.landing-rebuild .landing-how-list li {
    counter-increment: howstep;
    position: relative;
    margin: 0;
    padding: 0.95rem 1rem 0.95rem 3.35rem;
    line-height: 1.45;
    font-size: clamp(0.98rem, 2.2vw, 1.06rem);
    font-weight: 600;
    color: rgba(241, 245, 249, 0.95);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-rebuild .landing-how-list li::before {
    content: counter(howstep);
    position: absolute;
    left: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    color: #041208;
    background: linear-gradient(145deg, #2eb574 0%, var(--landing-accent) 100%);
    border-radius: 10px;
    box-shadow:
        0 0 18px rgba(61, 214, 140, 0.45),
        0 0 1px rgba(255, 255, 255, 0.35) inset;
}

/* —— Product clarity —— */
.landing-product-clear {
    padding: 0 1.5rem clamp(2.5rem, 5vw, 3.5rem);
    max-width: 32rem;
    margin: 0 auto;
}

.landing-product-clear-title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--landing-text);
}

.landing-product-clear-body {
    color: var(--landing-muted);
    line-height: 1.6;
    font-size: clamp(0.98rem, 2.2vw, 1.08rem);
}

.landing-product-lead {
    margin: 0 0 0.75rem;
    font-weight: 700;
    color: var(--landing-text);
}

.landing-product-desk {
    margin: 0.75rem 0;
    font-weight: 800;
    color: var(--landing-accent);
}

.landing-rebuild .landing-product-clear {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.35rem, 4vw, 1.75rem) clamp(2.75rem, 6vw, 3.5rem);
    max-width: min(32rem, calc(100% - 2rem));
    border-radius: 18px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    background: rgba(0, 0, 0, 0.35);
    box-shadow:
        0 0 40px rgba(34, 211, 238, 0.06),
        0 0 80px rgba(167, 139, 250, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.landing-rebuild .landing-product-clear-title {
    margin: 0 0 1.1rem;
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    color: #ffffff;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.2);
}

.landing-rebuild .landing-product-clear-body {
    color: rgba(203, 213, 225, 0.95);
}

.landing-rebuild .landing-product-lead {
    font-size: clamp(1.02rem, 2.4vw, 1.12rem);
    color: #f8fafc;
}

.landing-rebuild .landing-product-desk {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: #86efac;
    text-shadow:
        0 0 24px rgba(61, 214, 140, 0.55),
        0 0 48px rgba(34, 211, 238, 0.2);
}

.landing-rebuild .landing-product-score {
    color: #f1f5f9;
    text-shadow: 0 0 16px rgba(61, 214, 140, 0.15);
}

.landing-rebuild .landing-product-rules {
    margin: 1rem 0;
    padding-left: 1.15rem;
    border-left: 3px solid rgba(61, 214, 140, 0.45);
}

.landing-rebuild .landing-product-rules li {
    margin-bottom: 0.4rem;
    color: rgba(226, 232, 240, 0.92);
}

.landing-product-rules {
    margin: 0.75rem 0;
    padding-left: 1.2rem;
}

.landing-product-score {
    margin: 1rem 0 0;
    font-weight: 800;
    color: var(--landing-text);
}

/* —— More clips block —— */
.marketing-reel-more-head {
    text-align: center;
    padding: 1.5rem 1.25rem 1rem;
    max-width: 40rem;
    margin: 0 auto;
}

.marketing-reel-more-title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--landing-text);
}

.marketing-reel-more-sub {
    margin: 0;
    font-size: 0.88rem;
    color: var(--landing-muted);
    line-height: 1.4;
}

/* —— Sections shared —— */
.landing-section {
    padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.landing-section-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.landing-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--landing-accent);
    margin: 0 0 0.5rem;
}

.landing-section-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
}

/* —— How it works —— */
.landing-how {
    background: #000000;
    border-top: 1px solid var(--landing-border);
}

.landing-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .landing-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.landing-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    background: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 14px;
}

.landing-step-num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--landing-accent-dim);
    color: var(--landing-accent);
    font-weight: 800;
    border-radius: 10px;
    font-size: 0.95rem;
}

.landing-step-text {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

.landing-how-tagline {
    margin: 1.5rem 0 0;
    font-size: 1rem;
    color: var(--landing-muted);
    text-align: center;
}

/* —— Why different —— */
.landing-why {
    border-top: 1px solid var(--landing-border);
}

.landing-grid-why {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .landing-grid-why {
        grid-template-columns: repeat(2, 1fr);
    }
}

.landing-why-item {
    display: flex;
    gap: 0.85rem;
    padding: 1.1rem 1.2rem;
    background: var(--landing-surface);
    border-radius: 12px;
    border: 1px solid var(--landing-border);
}

.landing-why-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.landing-why-copy {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
}

.landing-why-copy strong {
    color: var(--landing-text);
}

.landing-why-closing {
    margin: 1.5rem 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: var(--landing-text);
}

/* —— Game mock (visual, minimal text) —— */
.landing-show {
    background: #000000;
    border-top: 1px solid var(--landing-border);
}

.landing-game-panel {
    display: grid;
    gap: 1rem;
}

@media (min-width: 900px) {
    .landing-game-panel {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.landing-game-card {
    background: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.06);
}

.landing-game-card--glow {
    border-color: rgba(61, 214, 140, 0.25);
    box-shadow: 0 0 40px var(--landing-accent-dim);
}

.landing-xp-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.landing-xp-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--landing-muted);
}

.landing-xp-level {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--landing-accent);
}

.landing-xp-track {
    height: 10px;
    background: var(--landing-surface-2);
    border-radius: 999px;
    overflow: hidden;
}

.landing-xp-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #2eb574, var(--landing-accent));
    box-shadow: 0 0 12px var(--landing-accent-glow);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-game-card.is-visible .landing-xp-fill {
    width: 72%;
}

.landing-streak-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--landing-border);
}

.landing-streak-fire {
    font-size: 2rem;
    line-height: 1;
}

.landing-streak-meta {
    flex: 1;
}

.landing-streak-value {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.landing-streak-label {
    font-size: 0.8rem;
    color: var(--landing-muted);
}

.landing-session-bar {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--landing-surface-2);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.landing-session-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.landing-session-time {
    font-size: 0.8rem;
    color: var(--landing-accent);
    font-weight: 700;
}

.landing-phone-alert {
    margin-top: 0.65rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.65rem;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border-radius: 8px;
    font-weight: 600;
}

.landing-reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    padding: 1.5rem;
}

.landing-reward-badge {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--landing-surface-2), var(--landing-surface));
    border: 2px solid var(--landing-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 24px var(--landing-accent-dim);
}

.landing-reward-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--landing-muted);
    margin: 0 0 0.35rem;
}

.landing-reward-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
}

/* —— Urgency —— */
.landing-urgency {
    text-align: center;
    border-top: 1px solid var(--landing-border);
    background: #000000;
}

.landing-urgency-text {
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 0.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-urgency-sub {
    margin: 0;
    color: var(--landing-muted);
    font-size: 1rem;
}

/* —— Final CTA —— */
.landing-cta-block {
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem;
    border-top: 1px solid var(--landing-border);
    background: #000000;
}

.landing-cta-block .landing-cta-primary {
    margin-top: 1.25rem;
}

.landing-cta-line {
    margin: 0 0 0.25rem;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 800;
}

.landing-cta-sub {
    margin: 0 0 1.25rem;
    color: var(--landing-muted);
    font-size: 1rem;
}

.landing-cta--xl {
    padding: 1.1rem 1.5rem;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    max-width: 100%;
    text-align: center;
    line-height: 1.25;
}

.landing-cta-block--hard .landing-cta-line {
    margin-bottom: 0.35rem;
}

/* —— Problem (tension) —— */
.landing-problem {
    border-top: 1px solid var(--landing-border);
    background: #000000;
}

.landing-problem-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.landing-problem-item {
    margin: 0;
    padding: 1.1rem 1.2rem 1.1rem 1rem;
    border-left: 4px solid #f97316;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 0 12px 12px 0;
    font-size: clamp(1.02rem, 2.4vw, 1.15rem);
    font-weight: 600;
    line-height: 1.45;
}

.landing-problem-kicker {
    margin: 1.5rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--landing-accent);
    text-align: center;
}

/* —— System (machine) —— */
.landing-system {
    border-top: 1px solid var(--landing-border);
}

.landing-system-lead {
    margin: -0.5rem 0 1.5rem;
    color: var(--landing-muted);
    font-size: 1rem;
}

.landing-machine {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-machine-step {
    flex: 1 1 140px;
    max-width: 220px;
    padding: 1.1rem 1rem;
    background: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-machine-step--out {
    border-color: rgba(61, 214, 140, 0.35);
    box-shadow: 0 0 20px var(--landing-accent-dim);
}

.landing-machine-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--landing-muted);
    margin-bottom: 0.4rem;
}

.landing-machine-text {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--landing-text);
}

.landing-machine-join {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    color: var(--landing-accent);
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .landing-machine {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-machine-step {
        max-width: none;
    }

    .landing-machine-join {
        width: 100%;
        padding: 0.25rem 0;
        transform: rotate(90deg);
    }
}

/* —— Proof —— */
.landing-proof {
    border-top: 1px solid var(--landing-border);
    background: #000000;
}

.landing-proof-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .landing-proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-stat-card--wide {
        grid-column: 1 / -1;
    }
}

.landing-stat-card {
    padding: 1.35rem 1.25rem;
    background: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 14px;
    text-align: center;
}

.landing-stat-value {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--landing-accent);
    line-height: 1.1;
}

.landing-stat-value--sm {
    font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.landing-stat-caption {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--landing-text);
}

.landing-stat-note {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--landing-muted);
}

.landing-clip-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .landing-clip-row {
        grid-template-columns: 1.4fr 1fr;
        align-items: stretch;
    }
}

.landing-clip-frame {
    aspect-ratio: 16 / 10;
    max-height: 220px;
    background: #000000;
    border: 1px dashed var(--landing-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--landing-muted);
}

.landing-clip-play {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--landing-accent-dim);
    color: var(--landing-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding-left: 0.2rem;
}

.landing-clip-label {
    font-size: 0.8rem;
    text-align: center;
    padding: 0 1rem;
}

.landing-output-card {
    padding: 1.25rem;
    background: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-output-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--landing-muted);
    margin-bottom: 0.65rem;
}

.landing-output-lines {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.85rem;
    color: var(--landing-accent);
    font-weight: 600;
}

.landing-disclaimer {
    margin: 1.25rem 0 0;
    font-size: 0.75rem;
    color: var(--landing-muted);
    text-align: center;
}

/* —— Addiction loop —— */
.landing-addiction {
    border-top: 1px solid var(--landing-border);
}

.landing-pressure-list {
    margin: 0 0 2rem;
    padding: 0 0 0 1.25rem;
    max-width: 40rem;
}

.landing-pressure-list li {
    margin-bottom: 0.65rem;
    line-height: 1.5;
    color: var(--landing-muted);
}

.landing-pressure-list li strong {
    color: var(--landing-text);
}

.landing-game-panel--tight {
    margin-top: 0;
}

[data-theme="light"] .landing-rebuild {
    --landing-bg: #f6f8fa;
    --landing-surface: #ffffff;
    --landing-surface-2: #eef1f5;
    --landing-text: #0f172a;
    --landing-muted: #64748b;
    --landing-border: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .landing-rebuild .marketing-header {
    background: rgba(246, 248, 250, 0.9);
}

[data-theme="light"] .landing-proof {
    background: #eef1f5;
}

[data-theme="light"] .landing-cta-primary,
[data-theme="light"] .landing-rebuild .marketing-btn-primary {
    color: #04210f;
}

/* Always black marketing canvas — global theme defaults to light but this page stays dark */
body.marketing-site.landing-rebuild {
    --landing-bg: #000000;
    --landing-surface: #000000;
    --landing-surface-2: #000000;
    --landing-text: #f0f4f8;
    --landing-muted: #8b9aab;
    --landing-border: rgba(255, 255, 255, 0.08);
    background: #000000;
    color: var(--landing-text);
}

body.marketing-site.landing-rebuild .marketing-header {
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid rgba(61, 214, 140, 0.18);
    box-shadow:
        0 1px 0 rgba(34, 211, 238, 0.12),
        0 0 40px rgba(61, 214, 140, 0.06);
}

body.marketing-site.landing-rebuild .landing-proof {
    background: #000000;
}

@media (prefers-reduced-motion: reduce) {
    .landing-headline,
    .landing-subhead--hero {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }

    .landing-hero::before,
    .landing-hero::after {
        opacity: 0.35;
    }

    .landing-rebuild .marketing-brand img {
        filter: none;
    }
}
