/* ============================================================
   SP ARCADE THEME — main.css
   ============================================================ */

/* ── Google Fonts loaded via functions.php ── */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Theme tokens ── */
[data-theme="dark"] {
    --bg:       #08080f;
    --bg2:      #0e0e1c;
    --text:     #e8e8f8;
    --text2:    #8888aa;
    --dim:      #252535;
    --muted:    #55556a;
    --card-bg:  #0e0e1c;
    --scanline: rgba(0,0,0,0.13);
    --ep-hover: rgba(0,255,136,0.04);
    --logo-filter:       invert(1) brightness(2);
    --logo-filter-chabo: invert(1) brightness(10);
}
[data-theme="light"] {
    --bg:       #f5f5ef;
    --bg2:      #ffffff;
    --text:     #111118;
    --text2:    #444455;
    --dim:      #ddddd0;
    --muted:    #aaaaaa;
    --card-bg:  #ffffff;
    --scanline: rgba(0,0,0,0.03);
    --ep-hover: rgba(0,0,0,0.03);
    --logo-filter:       none;
    --logo-filter-chabo: none;
}

/* Neon colours never change */
:root {
    --neon-green:  #00ff88;
    --neon-pink:   #ff0090;
    --neon-yellow: #ffe600;
    --neon-blue:   #00cfff;
    --neon-purple: #cc00ff;
    --neon-orange: #ff6b00;
}

/* Smooth bg/text transitions only */
body, nav, .card, .ep, .week, .tcard, .vent, .val, .who, .tf,
.qf-box, .nl-form input, .price-box, .about-cta, .ct, .nl,
.pricing, .course-hero, .press, .hs-bar, .score-strip, .proof,
.week-body, .tl-content, .ep-list, .card-grid, .val-grid,
.vent-grid, .tcard-grid, .who-grid, .tf-grid, footer {
    transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}

/* ── Base ── */
body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scanlines overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 2px,
        var(--scanline) 2px, var(--scanline) 4px
    );
    pointer-events: none;
    z-index: 9998;
}

/* ── Floating arcade elements ── */
.floaters {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.floater {
    position: absolute;
    opacity: 0;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
    5%   { opacity: .5; }
    90%  { opacity: .25; }
    100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}
.f1  { left:5%;  animation-duration:12s; animation-delay:0s;   font-size:1.2rem; }
.f2  { left:14%; animation-duration:15s; animation-delay:2s;   font-size:1.6rem; }
.f3  { left:24%; animation-duration:10s; animation-delay:5s;   font-size:1rem; }
.f4  { left:36%; animation-duration:14s; animation-delay:1s;   font-size:1.8rem; }
.f5  { left:48%; animation-duration:11s; animation-delay:3.5s; font-size:1.3rem; }
.f6  { left:58%; animation-duration:16s; animation-delay:.5s;  font-size:1.1rem; }
.f7  { left:68%; animation-duration:13s; animation-delay:4s;   font-size:1.5rem; }
.f8  { left:78%; animation-duration:9s;  animation-delay:6s;   font-size:1rem; }
.f9  { left:88%; animation-duration:17s; animation-delay:1.5s; font-size:1.4rem; }
.f10 { left:93%; animation-duration:12s; animation-delay:7s;   font-size:1.2rem; }
.f11 { left:30%; animation-duration:8s;  animation-delay:8s;   font-size:1.6rem; }
.f12 { left:42%; animation-duration:11s; animation-delay:2.5s; font-size:1.3rem; }

/* ── Marquee ── */
.marquee-wrap {
    background: var(--neon-pink);
    overflow: hidden;
    padding: 5px 0;
    border-top: 2px solid var(--neon-yellow);
    border-bottom: 2px solid var(--neon-yellow);
    position: relative;
    z-index: 10;
}
.marquee {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee span {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #000;
    letter-spacing: .1em;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Nav ── */
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--dim);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 1rem;
}
.nav-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
    text-decoration: none;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links a {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--muted);
    padding: .6rem .8rem;
    letter-spacing: .04em;
    transition: color .15s;
    text-decoration: none;
    display: block;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--bg2);
    border: 1px solid var(--dim);
    padding: 7px 12px;
    cursor: pointer;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--neon-yellow);
    letter-spacing: .05em;
    white-space: nowrap;
    box-shadow: 0 0 6px var(--neon-yellow);
    transition: background .35s, border-color .35s;
}
.theme-toggle:hover { box-shadow: 0 0 12px var(--neon-yellow); }
.nav-cta {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    padding: 10px 14px;
    background: transparent;
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-pink);
    transition: all .15s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.nav-cta:hover { background: var(--neon-pink); color: #000; }

/* ── Buttons ── */
.btn-g {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-green);
    transition: all .15s;
    letter-spacing: .05em;
    display: inline-block;
    text-decoration: none;
}
.btn-g:hover { background: var(--neon-green); color: #000; }
.btn-p {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    padding: 14px 20px;
    background: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 14px var(--neon-pink);
    transition: all .15s;
    letter-spacing: .05em;
    display: inline-block;
    text-decoration: none;
}
.btn-p:hover { opacity: .85; }
.buy-btn-link { display: block; }
.buy-btn {
    width: 100%;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    letter-spacing: .08em;
    padding: 18px;
    background: var(--neon-pink);
    color: #fff;
    border: none;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: opacity .15s;
    box-shadow: 0 0 20px var(--neon-pink);
    display: block;
}
.buy-btn:hover { opacity: .88; }

/* ── High score bar ── */
.hs-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: .65rem 2rem;
    background: var(--bg2);
    border-bottom: 1px solid var(--dim);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.hs-item {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--muted);
    display: flex;
    gap: .5rem;
    align-items: center;
}
.hs-item span {
    color: var(--neon-yellow);
    text-shadow: 0 0 6px var(--neon-yellow);
}

/* ── Hero ── */
.hero-section { padding: 0 2rem; }
.hero-wrap {
    padding: 5rem 0 4rem;
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--neon-green);
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px var(--neon-green);
}
.hero-h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    color: var(--text);
}
.hl {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow), 0 0 25px var(--neon-yellow);
}
.hero-p {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Avatar */
.avatar-box {
    width: 220px;
    height: 270px;
    background: var(--bg2);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green), inset 0 0 20px rgba(0,255,136,.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}
.avatar-init {
    font-family: 'Press Start 2P', monospace;
    font-size: 2rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}
.avatar-lbl {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: var(--muted);
    text-align: center;
    line-height: 1.8;
}
.avatar-img { width: 100%; height: 100%; object-fit: cover; }
.avatar-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--neon-yellow);
}
.avatar-corner.tl { top:-2px; left:-2px; }
.avatar-corner.tr { top:-2px; right:-2px; }
.avatar-corner.bl { bottom:-2px; left:-2px; }
.avatar-corner.br { bottom:-2px; right:-2px; }
.avatar-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 3px,
        rgba(0,255,136,.03) 3px, rgba(0,255,136,.03) 4px
    );
    pointer-events: none;
}
.blink {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: var(--neon-yellow);
    text-align: center;
    animation: blink 1s step-end infinite;
    margin-top: 8px;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── Score strip ── */
.score-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 2rem;
    background: var(--bg2);
    border-bottom: 1px solid var(--dim);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.score-num {
    font-family: 'Press Start 2P', monospace;
    font-size: 20px;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow);
    text-align: center;
    line-height: 1.4;
}
.score-lbl {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: var(--muted);
    margin-top: 6px;
    text-align: center;
    letter-spacing: .05em;
}

/* ── Venture Banner ── */
.venture-banner {
    background: var(--bg);
    border-top: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0,255,136,.15), inset 0 0 30px rgba(0,255,136,.03);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.venture-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg, var(--neon-green) 0, var(--neon-green) 6px,
        transparent 6px, transparent 10px
    );
    opacity: .4;
}
.banner-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--neon-green);
    text-shadow: 0 0 6px var(--neon-green);
    letter-spacing: .15em;
    text-align: center;
    padding: .75rem 0 0;
    opacity: .7;
}
.banner-track {
    display: flex;
    gap: 0;
    padding: .75rem 0 1rem;
    animation: bannerScroll 18s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.banner-track:hover { animation-play-state: paused; }
@keyframes bannerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.venture-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 0 3.5rem;
    border-right: 1px solid var(--dim);
    flex-shrink: 0;
}
.venture-logo {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}
.logo-nifty  { filter: var(--logo-filter); height: 50px; }
.logo-chabo  { filter: var(--logo-filter-chabo); height: 36px; }
.logo-snorp  { height: 44px; filter: none; }
.venture-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--muted);
    letter-spacing: .12em;
}
.banner-sep {
    display: inline-flex;
    align-items: center;
    padding: 0 1rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow);
    flex-shrink: 0;
    opacity: .6;
    border-right: 1px solid var(--dim);
}

/* ── Pixel divider ── */
.px-div {
    height: 4px;
    background: repeating-linear-gradient(
        90deg, var(--neon-green) 0, var(--neon-green) 8px,
        transparent 8px, transparent 12px
    );
    max-width: 900px;
    margin: 0 auto;
    opacity: .5;
}

/* ── Sections ── */
.section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.section-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--neon-green);
    letter-spacing: .1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--neon-green);
    display: flex;
    align-items: center;
}
.section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -.02em;
    line-height: 1.15;
}
.section-lead {
    color: var(--text2);
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.all-link {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--neon-green);
    text-shadow: 0 0 6px var(--neon-green);
    text-decoration: none;
}

/* ── Cards ── */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 1.5rem;
    border: 1px solid var(--dim);
}
.card {
    background: var(--card-bg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
}
.card:nth-child(1)::before { background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); }
.card:nth-child(2)::before { background: var(--neon-pink);  box-shadow: 0 0 8px var(--neon-pink); }
.card:nth-child(3)::before { background: var(--neon-blue);  box-shadow: 0 0 8px var(--neon-blue); }
.card:nth-child(4)::before { background: var(--neon-yellow);box-shadow: 0 0 8px var(--neon-yellow); }
.card-num {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--muted);
    margin-bottom: .75rem;
    letter-spacing: .1em;
}
.card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.card p  { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── Episode list ── */
.ep-list { border: 1px solid var(--dim); background: var(--card-bg); }
.ep {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--dim);
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
    color: inherit;
}
.ep:last-child { border-bottom: none; }
.ep:hover { background: var(--ep-hover); }
.ep-n {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--neon-green);
    text-align: center;
    text-shadow: 0 0 6px var(--neon-green);
}
.ep-play {
    width: 36px; height: 36px;
    border: 1px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--neon-green);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--neon-green);
    transition: all .15s;
}
.ep:hover .ep-play { background: var(--neon-green); color: #000; }
.ep-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.ep-sub   { font-size: 13px; color: var(--muted); }
.ep-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    padding: 2px 8px;
    border: 1px solid var(--dim);
    color: var(--muted);
    display: inline-block;
    margin-top: 5px;
}
.ep-dur {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--muted);
    text-align: right;
    white-space: nowrap;
    margin-top: 5px;
}

/* ── Course teaser ── */
.course-teaser {
    background: var(--card-bg);
    border-top: 2px solid var(--neon-pink);
    border-bottom: 2px solid var(--neon-pink);
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}
.ct-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}
.ct-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--neon-pink);
    letter-spacing: .1em;
    margin-bottom: .75rem;
    text-shadow: 0 0 8px var(--neon-pink);
}
.ct-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; letter-spacing: -.02em; }
.ct-content p  { color: var(--text2); font-size: 14px; line-height: 1.75; max-width: 400px; margin-bottom: 1.5rem; }
.price-box {
    text-align: center;
    border: 1px solid var(--neon-yellow);
    padding: 1.5rem 2rem;
    box-shadow: 0 0 15px rgba(255,230,0,.2);
    background: var(--bg);
    flex-shrink: 0;
}
.pw {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 8px;
}
.pn {
    font-family: 'Press Start 2P', monospace;
    font-size: 22px;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
    margin-bottom: .5rem;
}
.pp {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: var(--muted);
    margin-bottom: 1rem;
}

/* ── Newsletter ── */
.nl {
    background: var(--card-bg);
    padding: 3.5rem 2rem;
    border-top: 2px solid var(--neon-blue);
    position: relative;
    z-index: 2;
}
.nl-inner { max-width: 500px; margin: 0 auto; text-align: center; }
.nl-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--neon-blue);
    letter-spacing: .1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--neon-blue);
}
.nl h2 { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; letter-spacing: -.02em; }
.nl p  { font-size: 14px; color: var(--text2); margin-bottom: 1.75rem; line-height: 1.7; }
.nl-form { display: flex; max-width: 380px; margin: 0 auto; }
.nl-form input {
    flex: 1;
    padding: 13px 16px;
    background: var(--bg);
    border: 1px solid var(--neon-blue);
    border-right: none;
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    outline: none;
}
.nl-form input::placeholder { color: var(--muted); }
.nl-form button {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    padding: 13px 16px;
    background: var(--neon-blue);
    color: #000;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

/* ── About page ── */
.about-hero-wrap { padding: 0 2rem; }
.about-hero {
    padding: 4rem 0 3rem;
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}
.a-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--neon-green);
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 8px var(--neon-green);
    display: block;
}
.about-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    color: var(--text);
}
.about-content h1 em {
    font-style: normal;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
}
.about-lead { font-size: 1.05rem; color: var(--text); line-height: 1.85; margin-bottom: 1rem; font-weight: 500; }
.about-body { font-size: .95rem; color: var(--text2); line-height: 1.85; margin-bottom: 1rem; }
.about-btns { display: flex; gap: 1rem; margin-top: 1.75rem; flex-wrap: wrap; }

.photo-frame {
    width: 240px;
    height: 300px;
    background: var(--bg2);
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink), inset 0 0 20px rgba(255,0,144,.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.photo-init { font-family: 'Press Start 2P', monospace; font-size: 2rem; color: var(--neon-pink); text-shadow: 0 0 15px var(--neon-pink); }
.photo-lbl  { font-family: 'Press Start 2P', monospace; font-size: 6px; color: var(--muted); text-align: center; line-height: 1.8; }
.photo-scan { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,0,144,.04) 3px, rgba(255,0,144,.04) 4px); pointer-events: none; }
.photo-corner { position: absolute; width: 14px; height: 14px; background: var(--neon-yellow); }
.photo-corner.tl { top:-2px; left:-2px; }
.photo-corner.tr { top:-2px; right:-2px; }
.photo-corner.bl { bottom:-2px; left:-2px; }
.photo-corner.br { bottom:-2px; right:-2px; }
.about-photo-img { width: 100%; height: 100%; object-fit: cover; }

.qf-box { margin-top: 1.5rem; border: 1px solid var(--dim); background: var(--bg); }
.qf { display: flex; justify-content: space-between; align-items: center; padding: .7rem 1rem; border-bottom: 1px solid var(--dim); }
.qf:last-child { border-bottom: none; }
.qf-l { font-family: 'Press Start 2P', monospace; font-size: 6px; color: var(--muted); letter-spacing: .08em; }
.qf-v { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--neon-green); text-shadow: 0 0 6px var(--neon-green); }

.press {
    border-top: 1px solid var(--dim);
    border-bottom: 1px solid var(--dim);
    background: var(--bg2);
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}
.press-lbl { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); margin-bottom: 1rem; }
.press-logos { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.pl { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--dim); letter-spacing: .05em; }

/* Timeline */
.tl { padding: 0 2rem; max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.tl-row { display: grid; grid-template-columns: 72px 24px 1fr; gap: 0 1.25rem; margin-bottom: 2rem; }
.tl-yr { font-family: 'Press Start 2P', monospace; font-size: 9px; color: var(--neon-yellow); text-shadow: 0 0 8px var(--neon-yellow); padding-top: 3px; text-align: right; line-height: 1.4; }
.tl-mid { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 14px; height: 14px; background: var(--neon-yellow); box-shadow: 0 0 10px var(--neon-yellow); flex-shrink: 0; margin-top: 3px; }
.tl-line { width: 2px; flex: 1; background: repeating-linear-gradient(180deg, var(--dim) 0, var(--dim) 4px, transparent 4px, transparent 8px); min-height: 36px; margin-top: 4px; }
.tl-row:last-child .tl-line { display: none; }
.tl-t { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.tl-d { font-size: 14px; color: var(--text2); line-height: 1.7; }
.tl-b { font-family: 'Press Start 2P', monospace; font-size: 7px; padding: 3px 10px; border: 1px solid var(--neon-green); color: var(--neon-green); display: inline-block; margin-top: 8px; box-shadow: 0 0 6px var(--neon-green); }

/* Values */
.val-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; margin-top: 1.5rem; border: 1px solid var(--dim); }
.val { background: var(--card-bg); padding: 1.5rem; position: relative; overflow: hidden; }
.val-n { font-family: 'Press Start 2P', monospace; font-size: 2rem; color: var(--dim); position: absolute; bottom: 8px; right: 12px; line-height: 1; }
.val-icon { font-size: 16px; margin-bottom: .75rem; display: block; }
.val-t { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.val-d { font-size: 13px; color: var(--text2); line-height: 1.65; position: relative; z-index: 1; }

/* Ventures */
.vent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.vent { padding: 1.5rem; background: var(--card-bg); border: 1px solid var(--dim); position: relative; }
.vent:nth-child(1) { border-top: 2px solid var(--neon-green); }
.vent:nth-child(2) { border-top: 2px solid var(--neon-pink); }
.vent:nth-child(3) { border-top: 2px solid var(--neon-blue); }
.vent:nth-child(4) { border-top: 2px solid var(--neon-yellow); }
.vs { font-family: 'Press Start 2P', monospace; font-size: 7px; padding: 3px 8px; display: inline-block; margin-bottom: .75rem; }
.vs.active { border: 1px solid var(--neon-green); color: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.vs.placeholder { border: 1px solid var(--dim); color: var(--muted); }
.vn { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.vd { font-size: 13px; color: var(--text2); line-height: 1.65; }
.vy { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); margin-top: .75rem; }

.about-cta {
    background: var(--card-bg);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 2px solid var(--neon-purple);
    position: relative;
    z-index: 2;
}
.about-cta h2 { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; letter-spacing: -.02em; }
.about-cta p  { font-size: 15px; color: var(--text2); max-width: 440px; margin: 0 auto 2rem; line-height: 1.75; }

/* ── Course page ── */
.course-hero {
    background: var(--card-bg);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--neon-pink);
}
.course-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,0,144,.08) 0%, transparent 70%);
    pointer-events: none;
}
.c-eyebrow { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--neon-pink); letter-spacing: .1em; margin-bottom: 1.5rem; text-shadow: 0 0 8px var(--neon-pink); }
.course-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--text); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.course-hero h1 em { font-style: normal; color: var(--neon-pink); text-shadow: 0 0 12px var(--neon-pink); }
.c-sub { font-size: 1.05rem; color: var(--text2); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; position: relative; z-index: 1; }
.badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; position: relative; z-index: 1; }
.badge { font-family: 'Press Start 2P', monospace; font-size: 7px; padding: 5px 12px; border: 1px solid var(--dim); color: var(--muted); }
.badge.hot { border-color: var(--neon-pink); color: var(--neon-pink); box-shadow: 0 0 8px var(--neon-pink); }
.p-was { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--muted); text-decoration: line-through; margin-bottom: 6px; position: relative; z-index: 1; }
.price-big { font-family: 'Press Start 2P', monospace; font-size: clamp(1.5rem, 4vw, 2.8rem); color: var(--neon-yellow); text-shadow: 0 0 15px var(--neon-yellow), 0 0 30px var(--neon-yellow); position: relative; z-index: 1; line-height: 1.3; }
.price-note { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); margin: 8px 0 1.5rem; position: relative; z-index: 1; }
.course-guar { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); position: relative; z-index: 1; line-height: 1.8; }

.proof { background: var(--bg2); border-bottom: 1px solid var(--dim); padding: 1.25rem 2rem; display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.pf-num { font-family: 'Press Start 2P', monospace; font-size: 18px; color: var(--neon-yellow); text-shadow: 0 0 10px var(--neon-yellow); text-align: center; }
.pf-label { font-family: 'Press Start 2P', monospace; font-size: 6px; color: var(--muted); text-align: center; margin-top: 6px; }

.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.who { padding: 1.5rem; background: var(--card-bg); border: 1px solid var(--dim); }
.who.yes { border-top: 2px solid var(--neon-green); }
.who.no  { border-top: 2px solid var(--neon-pink); }
.who-lbl { font-family: 'Press Start 2P', monospace; font-size: 7px; letter-spacing: .08em; margin-bottom: .75rem; }
.who.yes .who-lbl { color: var(--neon-green); text-shadow: 0 0 6px var(--neon-green); }
.who.no  .who-lbl { color: var(--neon-pink);  text-shadow: 0 0 6px var(--neon-pink); }
.who-item { display: flex; gap: 8px; font-size: 14px; color: var(--text2); margin-bottom: .5rem; line-height: 1.5; }
.wi { font-family: 'Press Start 2P', monospace; font-size: 8px; margin-top: 2px; flex-shrink: 0; }
.who.yes .wi { color: var(--neon-green); }
.who.no  .wi { color: var(--neon-pink); }

.tf-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: center; margin-top: 1.5rem; }
.tf { padding: 1.5rem; border: 1px solid var(--dim); background: var(--card-bg); }
.tf.before { border-left: 2px solid var(--muted); }
.tf.after  { border-left: 2px solid var(--neon-green); box-shadow: 0 0 12px rgba(0,255,136,.08); }
.tf-lbl { font-family: 'Press Start 2P', monospace; font-size: 7px; letter-spacing: .08em; margin-bottom: 1rem; }
.tf.before .tf-lbl { color: var(--muted); }
.tf.after  .tf-lbl { color: var(--neon-green); text-shadow: 0 0 6px var(--neon-green); }
.tf-item { font-size: 14px; line-height: 1.6; margin-bottom: .5rem; display: flex; gap: 8px; color: var(--text2); }
.tf.after .tf-item span { color: var(--neon-green); }
.tf-arrow { font-family: 'Press Start 2P', monospace; font-size: 1rem; color: var(--neon-yellow); text-align: center; text-shadow: 0 0 10px var(--neon-yellow); }

.curriculum { margin-top: 1.5rem; }
.week { border: 1px solid var(--dim); margin-bottom: 2px; background: var(--card-bg); }
.week-hd { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 1rem; padding: 1rem 1.5rem; cursor: pointer; transition: background .15s; }
.week-hd:hover { background: var(--ep-hover); }
.week-num   { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--neon-green); text-shadow: 0 0 6px var(--neon-green); }
.week-title { font-size: 15px; font-weight: 600; color: var(--text); }
.week-tog   { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--muted); }
.week-body  { padding: 0 1.5rem 1rem 6.5rem; display: none; }
.week-body.open { display: block; }
.w-lesson { font-size: 14px; color: var(--text2); padding: 5px 0; border-bottom: 1px solid var(--dim); display: flex; gap: 8px; align-items: center; }
.w-lesson:last-child { border-bottom: none; }
.w-dot { width: 6px; height: 6px; background: var(--neon-green); box-shadow: 0 0 4px var(--neon-green); flex-shrink: 0; }

.tcard-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.tcard { padding: 1.5rem; border: 1px solid var(--dim); background: var(--card-bg); position: relative; }
.tcard::before { content: '"'; font-family: 'Press Start 2P', monospace; font-size: 2rem; color: var(--neon-pink); opacity: .4; position: absolute; top: 10px; left: 16px; line-height: 1; text-shadow: 0 0 8px var(--neon-pink); }
.tcard-text   { font-size: 14px; color: var(--text2); line-height: 1.75; margin-bottom: 1rem; padding-top: 1rem; }
.tcard-author { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--neon-green); text-shadow: 0 0 6px var(--neon-green); }
.tcard-role   { font-size: 12px; color: var(--muted); margin-top: 4px; }

.pricing { background: var(--card-bg); padding: 3.5rem 2rem; text-align: center; border-top: 2px solid var(--neon-yellow); }
.p-inner { max-width: 480px; margin: 0 auto; }
.p-inner h2 { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; letter-spacing: -.02em; }
.p-was   { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--muted); text-decoration: line-through; margin-bottom: 6px; }
.p-now   { font-family: 'Press Start 2P', monospace; font-size: clamp(1.5rem, 4vw, 2.5rem); color: var(--neon-yellow); text-shadow: 0 0 15px var(--neon-yellow); line-height: 1.3; }
.p-period{ font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); margin-top: 8px; margin-bottom: 1.5rem; }
.includes { text-align: left; margin: 1.5rem 0; border-top: 1px solid var(--dim); padding-top: 1.5rem; }
.inc-lbl  { font-family: 'Press Start 2P', monospace; font-size: 7px; letter-spacing: .1em; color: var(--muted); margin-bottom: 1rem; }
.inc-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: .65rem; font-size: 14px; color: var(--text2); }
.inc-check{ color: var(--neon-green); font-family: 'Press Start 2P', monospace; font-size: 8px; flex-shrink: 0; margin-top: 2px; text-shadow: 0 0 6px var(--neon-green); }
.guar { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); line-height: 1.8; }

.faq-list  { }
.faq-item  { border-bottom: 1px solid var(--dim); padding: 1.1rem 0; }
.faq-q { font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--neon-green); }
.faq-tog { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--neon-green); flex-shrink: 0; text-shadow: 0 0 6px var(--neon-green); }
.faq-a { font-size: 14px; color: var(--text2); line-height: 1.8; margin-top: .75rem; display: none; }
.faq-a.open { display: block; }

/* ── Footer ── */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--dim);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.footer-logo { font-family: 'Press Start 2P', monospace; font-size: 10px; color: var(--neon-green); text-shadow: 0 0 8px var(--neon-green); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); text-decoration: none; letter-spacing: .05em; }
.footer-links a:hover { color: var(--neon-green); }
.footer-copy { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-wrap     { grid-template-columns: 1fr; }
    .avatar-box    { display: none; }
    .card-grid     { grid-template-columns: 1fr; }
    .about-hero    { grid-template-columns: 1fr; }
    .about-sidebar { display: none; }
    .ct-inner      { grid-template-columns: 1fr; }
    .price-box     { display: none; }
    .tf-grid       { grid-template-columns: 1fr; }
    .tf-arrow      { display: none; }
    .who-grid      { grid-template-columns: 1fr; }
    .val-grid      { grid-template-columns: 1fr 1fr; }
    .tcard-grid    { grid-template-columns: 1fr; }
    .vent-grid     { grid-template-columns: 1fr; }
    .nav-links     { display: none; }
    .section h2    { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .val-grid      { grid-template-columns: 1fr; }
    .hs-bar        { gap: 1rem; }
    .score-strip   { gap: 1.5rem; }
}
