:root {
    --bg: #000000;
    --accent: #bc13fe;
    --accent-glow: rgba(188, 19, 254, 0.4);
    --secondary: #00f2ff;
    --text-main: #ffffff;
    --text-dim: #999999;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Self-hosted brand font (Orbitron). Google Fonts is blocked by the server CSP (style-src 'self'),
   so the wordmark must be served from our own origin — font-src 'self' covers /orbitron.ttf. */
@font-face {
    font-family: 'Orbitron';
    src: url('/orbitron.ttf') format('truetype');
    font-weight: 400 700;
    font-display: swap;
}

/* Readable, familiar body font: each platform's native UI sans-serif (SF / Segoe / Roboto).
   Covers Latin + Cyrillic + Kazakh; no external dependency, CSP-safe. */
:root {
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-brand: 'Orbitron', var(--font-body);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 50% 30%, rgba(188, 19, 254, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, rgba(188, 19, 254, 0.03) 0%, transparent 40%);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.background-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 100;
    opacity: 0.15;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

header {
    padding: 30px 10%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Language picker: tap the current language → a menu drops down below it. */
.lang-switcher {
    position: relative;
}

.lang-switcher > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-family: var(--font-brand);
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    text-shadow: 0 0 8px var(--accent-glow);
}

.lang-switcher > summary::-webkit-details-marker {
    display: none;
}

.lang-switcher > summary::after {
    content: "▾";
    font-size: 0.7em;
    opacity: 0.8;
}

.lang-switcher[open] > summary::after {
    content: "▴";
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    display: flex;
    flex-direction: column;
    min-width: 110px;
    background: rgba(8, 8, 14, 0.97);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    z-index: 30;
}

.lang-menu a {
    text-decoration: none;
    color: var(--text-dim);
    font-family: var(--font-brand);
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 11px 16px;
    transition: color 0.2s, background 0.2s;
}

.lang-menu a:hover {
    color: #fff;
    background: rgba(188, 19, 254, 0.08);
}

.lang-menu a.active {
    color: var(--accent);
    background: rgba(188, 19, 254, 0.06);
}

.logo {
    font-family: var(--font-brand);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    opacity: 0.85;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 90px 20px 40px;
}

.hero-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Brand wordmark: "Sphyro" in purple Orbitron + white tagline below. */
.brand {
    font-family: var(--font-brand);
    font-size: clamp(2.8rem, 11vw, 5rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    text-shadow: 0 0 18px var(--accent-glow), 0 0 40px rgba(188, 19, 254, 0.25);
    line-height: 1.05;
}

.tagline {
    font-family: var(--font-body);
    color: var(--text-main);
    font-size: clamp(1rem, 4.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.hero-subtext {
    font-size: clamp(0.95rem, 3.6vw, 1.1rem);
    color: var(--text-dim);
    margin-top: 24px;
    max-width: 420px;
    padding: 0 10px;
}

/* --- Scramble Color Layers --- */
.dud-vibrant {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent-glow);
    opacity: 0.9;
}

.dud-cyan {
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.4);
    opacity: 0.7;
}

.dud-ghost {
    color: var(--accent);
    opacity: 0.25;
    filter: blur(0.5px);
}

.dud-spark {
    color: #fff;
    text-shadow: 0 0 12px #fff;
    opacity: 1;
    font-weight: 700;
}

/* Orb sizes to the viewport on small screens (was a fixed 450px → overflowed phones,
   colliding with the title/subtext). min() keeps it square and capped. */
.orb-center {
    position: relative;
    width: min(450px, 78vw);
    height: min(450px, 78vw);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

#neural-atom {
    width: 100%;
    height: 100%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 0 10% 100px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: default;
    position: relative;
    z-index: 2;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.card:hover {
    border-color: var(--accent);
    background: rgba(188, 19, 254, 0.05);
    transform: translateY(-5px) scale(1.02);
}

.security-report {
    padding: 100px 10%;
    background: linear-gradient(to bottom, transparent, rgba(188, 19, 254, 0.03));
}

.report-header {
    text-align: center;
    margin-bottom: 60px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

.sec-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-item p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* --- How it works (free layer vs AI layer) --- */
.how-it-works {
    padding: 90px 10% 30px;
}

.section-title {
    text-align: center;
    font-family: var(--font-brand);
    font-size: 1.4rem;
    margin-bottom: 50px;
}

.layers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.layer-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.layer-card:hover {
    transform: translateY(-4px);
}

.layer-card.pro {
    border-color: var(--accent);
    background: rgba(188, 19, 254, 0.05);
}

.layer-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.layer-card.pro .layer-tag {
    color: var(--accent);
    border-color: var(--accent);
}

.layer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.layer-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.layers-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
    max-width: 640px;
    margin: 34px auto 0;
    font-style: italic;
}

/* --- Growth banner (young project, keeps growing) --- */
.growth-banner {
    text-align: center;
    max-width: 720px;
    margin: 80px auto 30px;
    padding: 30px 32px;
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.07), rgba(0, 242, 255, 0.04));
    position: relative;
    z-index: 2;
}

.growth-banner h3 {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.growth-banner p {
    color: var(--text-dim);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto;
}

/* --- All features (collapsible accordion) --- */
.all-features {
    padding: 10px 10% 40px;
    display: flex;
    justify-content: center;
}

.features-toggle {
    width: 100%;
    max-width: 960px;
}

.features-toggle > summary {
    list-style: none;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-brand);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--accent);
    padding: 16px 24px;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--glass);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.features-toggle > summary::-webkit-details-marker {
    display: none;
}

.features-toggle > summary::after {
    content: " ▾";
    opacity: 0.8;
}

.features-toggle[open] > summary::after {
    content: " ▴";
}

.features-toggle > summary:hover {
    border-color: var(--accent);
    background: rgba(188, 19, 254, 0.05);
}

.features-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 30px;
}

.feature-group h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 12px;
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    color: var(--text-dim);
    font-size: 0.85rem;
    padding: 4px 0 4px 16px;
    position: relative;
}

.feature-group li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
    opacity: 0.6;
}

footer {
    padding: 60px 10%;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.privacy-link {
    color: var(--text-dim);
    text-decoration: none;
}

.privacy-link:hover {
    color: var(--accent);
}

@media (max-width: 900px) {

    .bento-grid,
    .security-grid,
    .layers-grid {
        grid-template-columns: 1fr;
    }

    .features-body {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    header {
        padding: 20px 6%;
    }

    .hero {
        padding: 80px 16px 32px;
    }

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

    .bento-grid {
        padding: 0 6% 70px;
    }

    .card {
        padding: 28px;
    }

    .security-report {
        padding: 70px 6%;
    }

    footer {
        padding: 40px 6%;
    }
}

@media (max-width: 720px) {
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
}

/* --- Privacy / legal pages ---
   These MUST live in the external stylesheet, not an inline <style>: the server CSP is
   `style-src 'self'` (no 'unsafe-inline'), so inline styles are blocked by the browser and the
   page falls back to the landing's absolute header → the title collides with the logo on phones.
   Scoped to body.privacy-page so the landing header (position: absolute) is untouched. */
.privacy-page header {
    position: relative;
}

.privacy-content {
    padding: 30px 8% 90px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-family: var(--font-brand);
    color: var(--accent);
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 30px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.privacy-content h2 {
    font-family: var(--font-brand);
    font-size: 1.2rem;
    margin: 40px 0 20px;
    color: #fff;
    overflow-wrap: break-word;
    word-break: break-word;
}

.privacy-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.privacy-content a {
    color: var(--accent);
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-brand);
    font-size: 0.8rem;
}

.privacy-footer {
    margin-top: 60px;
    font-size: 0.8rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

@media (max-width: 600px) {
    .privacy-content {
        padding: 20px 6% 60px;
    }

    .privacy-content h1 {
        font-size: 1.7rem;
    }
}

/* ── Product showcase: 3D center-stage carousel ─────────────────────────
   Progressive enhancement: without JS the slides are a readable stacked list
   (SEO + no-JS friendly); JS adds .is-enhanced and turns them into a carousel. */
.cx { max-width: 1180px; margin: 30px auto 0; padding: 0 20px 10px; }
.cx-head { text-align: center; margin-bottom: 6px; }
.cx .eyebrow { font-family: var(--font-brand); font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--secondary); opacity: .85; }
.cx-head h2 { font-family: var(--font-brand); font-weight: 700; font-size: clamp(1.6rem, 4.2vw, 2.5rem); line-height: 1.08; margin: 12px 0 0; text-wrap: balance; }

/* phone frame (used in both modes) */
.phone { position: relative; display: inline-block; border-radius: 30px; padding: 9px; background: #07070e; border: 1px solid rgba(255,255,255,0.10); box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03) inset, 0 0 65px -8px var(--glow, rgba(188,19,254,0.35)); transition: box-shadow .5s ease; }
.phone img { display: block; width: 250px; max-width: 70vw; border-radius: 22px; aspect-ratio: 500 / 1111; object-fit: cover; object-position: top; transition: opacity .28s ease; }
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 78px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.16); z-index: 3; }

/* base (no-JS) stacked fallback */
.cx-track { display: flex; flex-direction: column; gap: 42px; align-items: center; margin-top: 30px; }
.cx-slide { display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 340px; text-align: center; }
.cx-text h3 { font-family: var(--font-brand); font-weight: 600; font-size: 1.3rem; margin: 0 0 8px; }
.cx-text p { color: var(--text-dim); margin: 0; line-height: 1.5; font-size: 1rem; }
.cx-caption, .cx-nav, .cx-thumbs, .cx-dots, .cx-swipe { display: none; }

/* ── enhanced carousel ── */
.cx.is-enhanced .cx-caption { display: block; text-align: center; min-height: 96px; max-width: 560px; margin: 22px auto 6px; }
.cx.is-enhanced .cx-caption h3 { font-family: var(--font-brand); font-weight: 600; font-size: clamp(1.25rem, 3vw, 1.7rem); margin: 0 0 8px; transition: color .4s ease; text-wrap: balance; }
.cx.is-enhanced .cx-caption p { margin: 0; color: var(--text-dim); font-size: 1rem; line-height: 1.5; text-wrap: balance; }

.cx.is-enhanced .cx-stage { position: relative; height: 560px; perspective: 1600px; margin: 4px 0 6px; }
.cx.is-enhanced .cx-track { display: block; position: absolute; inset: 0; margin: 0; transform-style: preserve-3d; }
.cx.is-enhanced .cx-slide { position: absolute; top: 0; left: 50%; width: 250px; height: 100%; margin-left: -125px; display: flex; align-items: center; justify-content: center; max-width: none; gap: 0; cursor: pointer; will-change: transform, opacity; transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .55s ease, filter .55s ease; }
.cx.is-enhanced .cx-slide.is-active { cursor: default; }
.cx.is-enhanced .cx-text { display: none; }

.cx-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(18,18,30,0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.10); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.cx.is-enhanced .cx-nav { display: grid; }
.cx-nav:hover { background: rgba(30,30,48,0.85); border-color: rgba(255,255,255,0.28); }
.cx-nav:active { transform: translateY(-50%) scale(.93); }
.cx-nav.prev { left: 6px; } .cx-nav.next { right: 6px; }
.cx-nav:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }

.cx.is-enhanced .cx-thumbs { display: flex; gap: 12px; justify-content: center; align-items: center; min-height: 74px; margin-top: 10px; flex-wrap: wrap; }
.thumb { width: 46px; padding: 0; border-radius: 11px; overflow: hidden; border: 2px solid transparent; background: #07070e; cursor: pointer; opacity: .5; line-height: 0; transition: opacity .25s ease, border-color .25s ease, transform .25s ease; }
.thumb img { width: 100%; aspect-ratio: 500 / 1111; object-fit: cover; object-position: top; display: block; }
.thumb:hover { opacity: .85; transform: translateY(-2px); }
.thumb.is-on { opacity: 1; border-color: var(--glow, var(--accent)); }
.thumb:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }

.cx.is-enhanced .cx-dots { display: flex; gap: 9px; justify-content: center; margin-top: 20px; }
.dot { width: 8px; height: 8px; border-radius: 50%; padding: 0; border: 0; background: rgba(255,255,255,0.22); cursor: pointer; transition: transform .25s ease, background .25s ease, width .25s ease; }
.dot.is-on { width: 24px; border-radius: 5px; background: var(--glow, var(--accent)); }
.dot:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }

.cx.is-enhanced .cx-swipe { display: block; text-align: center; color: #6f6d8c; font-size: 12.5px; margin: 16px 0 0; }

@media (max-width: 720px) {
    .cx.is-enhanced .cx-stage { height: 500px; perspective: 1200px; }
    .cx.is-enhanced .cx-slide { width: 216px; margin-left: -108px; }
    .cx-nav { width: 44px; height: 44px; font-size: 22px; }
    .cx-nav.prev { left: 0; } .cx-nav.next { right: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .cx.is-enhanced .cx-slide, .phone img, .thumb, .dot { transition-duration: .01ms; }
}

/* ── See it in action: self-hosted poster facade → click loads youtube-nocookie ── */
.vx { max-width: 1180px; margin: 62px auto 0; padding: 0 20px; }
.vx .cx-head { text-align: center; margin-bottom: 26px; }
.vx-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.vx-grid::-webkit-scrollbar { display: none; }
.vx-card { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.vx-swipe { display: none; text-align: center; color: #6f6d8c; font-size: 12.5px; margin: 6px 0 0; }
.vx-play { position: relative; display: block; width: 100%; padding: 0; aspect-ratio: 9 / 16; border: 1px solid rgba(255,255,255,0.10); border-radius: 22px; overflow: hidden; cursor: pointer; background: #07070e; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.vx-play img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vx-play::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5)); pointer-events: none; }
.vx-play:hover { transform: translateY(-4px); border-color: rgba(0,242,255,0.4); box-shadow: 0 26px 60px rgba(0,0,0,0.6), 0 0 40px -10px var(--secondary); }
.vx-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 62px; height: 62px; border-radius: 50%; background: rgba(10,10,18,0.55); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.7); display: grid; place-items: center; transition: transform .25s ease, background .25s ease; }
.vx-btn::before { content: ""; margin-left: 4px; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff; }
.vx-play:hover .vx-btn { transform: translate(-50%,-50%) scale(1.1); background: rgba(0,242,255,0.22); }
.vx-play:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }
.vx-frame { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); background: #000; }
.vx-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vx-card figcaption { color: var(--text-dim); font-size: .95rem; line-height: 1.4; text-align: center; }
@media (max-width: 900px) {
    .vx-grid { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px calc(50% - 140px) 20px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .vx-card { flex: 0 0 280px; width: 280px; scroll-snap-align: center; }
    .vx-swipe { display: block; }
}
@media (max-width: 480px) { .vx-card { flex-basis: 78vw; width: 78vw; } .vx-grid { padding: 6px calc(50% - 39vw) 16px; gap: 14px; } }

/* ── Free beta ─────────────────────────────────────────────────────────── */
.hero-cta { display: inline-block; margin-top: 22px; padding: 14px 26px; border-radius: 100px; font-weight: 700; font-size: 1rem; text-decoration: none; color: #fff; background: var(--accent); box-shadow: 0 0 34px -6px var(--accent-glow); transition: transform .15s ease, box-shadow .3s ease; }
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 0 48px -4px var(--accent-glow); }
.hero-cta:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }

.beta { padding: 40px 20px 8px; }
.beta-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.beta .eyebrow { font-family: var(--font-brand); font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--secondary); opacity: .85; }
.beta-title { font-family: var(--font-brand); font-weight: 700; font-size: clamp(1.8rem, 6vw, 2.8rem); margin: 12px 0 10px; }
.beta-sub { color: var(--text-dim); font-size: clamp(1rem, 2.6vw, 1.12rem); line-height: 1.55; max-width: 520px; margin: 0 auto 26px; }
.beta-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 26px 22px; backdrop-filter: blur(8px); text-align: left; }
.beta-h3 { font-family: var(--font-brand); font-weight: 700; font-size: 1.25rem; margin: 0 0 20px; text-align: center; }
.beta-steps { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.beta-step { display: flex; gap: 14px; align-items: flex-start; }
.beta-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-brand); font-weight: 700; font-size: .95rem; color: #000; background: var(--secondary); }
.beta-step strong { display: block; color: var(--text-main); font-size: 1.02rem; margin-bottom: 2px; }
.beta-step p { margin: 0; color: var(--text-dim); font-size: .92rem; line-height: 1.45; }
.beta-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.beta-btn { display: block; text-align: center; padding: 15px 20px; border-radius: 100px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: transform .15s ease, box-shadow .3s ease, border-color .2s ease, color .2s ease; }
.beta-btn.primary { background: var(--accent); color: #fff; box-shadow: 0 0 30px -6px var(--accent-glow); }
.beta-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 0 44px -4px var(--accent-glow); }
.beta-btn.secondary { background: transparent; color: var(--text-main); border: 1px solid var(--glass-border); }
.beta-btn.secondary:hover { border-color: var(--secondary); color: var(--secondary); }
.beta-btn:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }
.beta-note { text-align: center; color: var(--text-dim); font-size: .85rem; line-height: 1.5; margin: 0; }
.beta-note a { color: var(--secondary); }
@media (min-width: 560px) { .beta-actions { flex-direction: row; } .beta-btn { flex: 1; } }


/* About the creator */
.about { max-width: 900px; margin: 0 auto; padding: 46px 20px 6px; }
.about-inner { display: flex; gap: 24px; align-items: center; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 26px 24px; backdrop-filter: blur(8px); }
.about-photo { width: 132px; height: 132px; border-radius: 18px; object-fit: cover; border: 1px solid var(--glass-border); flex-shrink: 0; }
.about .eyebrow { font-family: var(--font-brand); font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--secondary); opacity: .85; }
.about-name { font-family: var(--font-brand); font-weight: 700; font-size: clamp(1.3rem, 4vw, 1.8rem); margin: 8px 0 2px; }
.about-role { color: var(--text-dim); margin: 0 0 10px; font-size: .98rem; }
.about-bio { color: var(--text-dim); line-height: 1.55; margin: 0 0 14px; font-size: 1rem; }
.about-links { display: flex; gap: 14px; flex-wrap: wrap; }
.about-links a { color: var(--secondary); text-decoration: none; font-weight: 600; border: 1px solid var(--glass-border); border-radius: 999px; padding: 7px 16px; transition: border-color .2s ease, color .2s ease; }
.about-links a:hover { border-color: var(--secondary); }
@media (max-width: 560px) { .about-inner { flex-direction: column; text-align: center; } .about-links { justify-content: center; } }
