/* Oraculus landing — Oracle Terminal style.
 * Pixel headlines (Press Start 2P) + mono body (JetBrains Mono),
 * phosphor/neon palette, scanlines, CRT glow, pixel borders.
 * No frameworks. All effects pure CSS / SVG. */

:root {
    /* Backgrounds */
    --bg-deep: #0a0a14;
    --bg-soft: #11131e;
    --bg-card: #161928;
    --bg-card-lift: #1d2138;

    /* Text */
    --fg: #e8eafc;
    --fg-muted: #7a82a0;
    --fg-dim: #4a5070;

    /* Phosphor / neon accents */
    --phosphor: #39ff14;     /* live data, OK state */
    --magenta: #ff2e9c;      /* champion, featured */
    --cyan: #00f0ff;         /* decisions, links */
    --gold: #c9a04a;         /* brand */
    --gold-bright: #ffd76e;
    --amber: #ffb700;        /* warnings, hover */
    --red: #ff3860;          /* errors, drawdown */

    /* Pixel borders */
    --border: #2a2f50;
    --border-bright: #3a4070;

    /* Common */
    --max-width: 1100px;

    color-scheme: dark;
    font-synthesis: none;
    -webkit-text-size-adjust: 100%;
}

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

html { overflow-x: hidden; }
html, body {
    background: var(--bg-deep);
    color: var(--fg);
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* PARALLAX BACKGROUND LAYERS ------------------------------------------------- */
/* Two fixed layers behind everything; main content scrolls over them. The
   layers themselves have subtle pixel/grid patterns and stay still while the
   user scrolls, creating depth without performance cost. */
.parallax-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}
.parallax-bg-stars {
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(57,255,20,0.4), transparent 50%),
        radial-gradient(1px 1px at 80% 20%, rgba(0,240,255,0.5), transparent 50%),
        radial-gradient(2px 2px at 40% 70%, rgba(255,46,156,0.35), transparent 50%),
        radial-gradient(1px 1px at 70% 85%, rgba(201,160,74,0.5), transparent 50%),
        radial-gradient(1px 1px at 15% 90%, rgba(0,240,255,0.4), transparent 50%),
        radial-gradient(2px 2px at 90% 50%, rgba(180,140,255,0.4), transparent 50%),
        radial-gradient(1px 1px at 50% 10%, rgba(57,255,20,0.4), transparent 50%);
    background-size: 100% 100vh;
    opacity: 0.7;
}
.parallax-bg-grid {
    background-image:
        linear-gradient(rgba(122,130,160,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122,130,160,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Radial vignette so the grid fades at edges */
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* AURORA — slow color drift for cyberpunk depth */
.parallax-bg-aurora {
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255, 46, 156, 0.10), transparent),
        radial-gradient(ellipse 50% 50% at 75% 60%, rgba(0, 240, 255, 0.09), transparent),
        radial-gradient(ellipse 70% 30% at 50% 90%, rgba(57, 255, 20, 0.07), transparent),
        radial-gradient(ellipse 40% 60% at 10% 70%, rgba(180, 140, 255, 0.08), transparent);
    animation: aurora-drift 30s ease-in-out infinite alternate;
    mix-blend-mode: screen;
    opacity: 0.9;
}

@keyframes aurora-drift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-3%, 2%) scale(1.05); }
    66%  { transform: translate(3%, -2%) scale(0.98); }
    100% { transform: translate(-1%, 3%) scale(1.03); }
}

/* SCANLINES OVERLAY ---------------------------------------------------------- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 50%, transparent 50%);
    background-size: 100% 3px;
    pointer-events: none;
    z-index: 9999;
}

/* CRT vignette (corners slightly darker) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    box-shadow: inset 0 0 200px rgba(0,0,0,0.6);
    pointer-events: none;
    z-index: 9998;
}

/* TYPOGRAPHY ---------------------------------------------------------------- */
h1, h2, h3, .brand-name, .plan h3 {
    font-family: 'Press Start 2P', monospace;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--fg);
}

h1 { font-size: 22px; line-height: 1.5; }
h1 .h1-lead,
h1 .h1-cont {
    display: block;
    font-size: 22px;
    line-height: 1.5;
}
h1 .h1-lead { color: var(--fg); margin-bottom: 4px; }
h1 .h1-cont { color: var(--fg); }
h1 .h1-cont.accent {
    color: var(--magenta);
    text-shadow: 0 0 14px var(--magenta), 0 0 28px rgba(255,46,156,0.4);
}
h2 { font-size: 20px; line-height: 1.4; }
h3 { font-size: 14px; line-height: 1.4; }
h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

p, li, span, a { font-family: 'JetBrains Mono', monospace; }

a { color: var(--cyan); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-bright); text-decoration: none; text-shadow: 0 0 6px currentColor; }

.accent { color: var(--gold); text-shadow: 0 0 8px rgba(201,160,74,0.5); }

/* HEADER -------------------------------------------------------------------- */
header {
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}
.brand:hover { text-decoration: none; }
.brand-mark, .brand-mark-img {
    width: 28px;
    height: 28px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 6px rgba(201,160,74,0.8));
    animation: pulse-glow 4s ease-in-out infinite;
}
.brand-name {
    color: var(--fg);
    text-shadow: 0 0 6px rgba(232,234,252,0.3);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    margin-left: auto;
    font-size: 12px;
}
.nav-links a {
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}
.nav-links a:hover { color: var(--phosphor); text-shadow: 0 0 6px var(--phosphor); }

/* PIXEL BUTTONS ------------------------------------------------------------- */
.btn, .nav-cta {
    display: inline-block;
    padding: 12px 22px;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid;
    border-radius: 0;            /* pixel = no rounded corners */
    cursor: pointer;
    transition: all .12s steps(2);
    text-align: center;
}
.btn-primary, .nav-cta {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
}
.btn-primary:hover, .nav-cta:hover {
    background: transparent;
    color: var(--gold-bright);
    text-shadow: 0 0 8px var(--gold-bright);
    box-shadow: 0 0 0 1px var(--gold-bright), 0 0 16px rgba(255,215,110,0.4);
    text-decoration: none;
    transform: translate(-1px, -1px);
}
.btn-secondary {
    background: transparent;
    color: var(--fg);
    border-color: var(--border-bright);
}
.btn-secondary:hover {
    color: var(--phosphor);
    border-color: var(--phosphor);
    text-shadow: 0 0 8px var(--phosphor);
    box-shadow: 0 0 16px rgba(57,255,20,0.25);
    text-decoration: none;
    transform: translate(-1px, -1px);
}

/* HERO ---------------------------------------------------------------------- */
.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px 24px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero h1 {
    margin-bottom: 28px;
    color: var(--fg);
    text-shadow: 0 0 12px rgba(232,234,252,0.25);
}
.hero h1 .accent {
    color: var(--magenta);
    text-shadow: 0 0 12px var(--magenta), 0 0 24px rgba(255,46,156,0.4);
}
.lead {
    font-size: 15px;
    color: var(--fg-muted);
    margin-bottom: 28px;
    max-width: 560px;
}
.lead strong { color: var(--phosphor); font-weight: 700; text-shadow: 0 0 6px rgba(57,255,20,0.5); }

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.hero-disclaimer {
    font-size: 12px;
    color: var(--fg-muted);
    border-left: 3px solid var(--amber);
    padding: 8px 12px;
    max-width: 560px;
    background: rgba(255,183,0,0.04);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DRAGON STAGE — central pixel dragon eye with concentric rings */
.dragon-stage {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-dragon {
    width: 240px;
    height: 240px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    position: relative;
    z-index: 4;
    filter:
        drop-shadow(0 0 12px rgba(180, 140, 255, 0.5))
        drop-shadow(0 0 24px rgba(46, 229, 184, 0.3));
    animation: dragon-breathe 6s ease-in-out infinite;
}
.dragon-ring {
    position: absolute;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}
.dragon-ring-1 {
    width: 260px;
    height: 260px;
    border-color: var(--phosphor);
    opacity: 0.25;
    animation: ring-rotate 30s linear infinite;
}
.dragon-ring-2 {
    width: 300px;
    height: 300px;
    border-color: var(--magenta);
    opacity: 0.15;
    border-style: dashed;
    animation: ring-rotate 45s linear infinite reverse;
}
.dragon-ring-3 {
    width: 340px;
    height: 340px;
    border-color: var(--gold);
    opacity: 0.12;
    border-style: dotted;
    animation: ring-rotate 60s linear infinite;
}

.hero-eyebrow {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--phosphor);
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    text-shadow: 0 0 6px var(--phosphor);
}
.cursor {
    display: inline-block;
    color: var(--phosphor);
    animation: terminal-blink 1s steps(2) infinite;
}

/* SECTIONS ------------------------------------------------------------------ */
.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 24px;
}
.section-alt,
.section-cyan,
.section-gold,
.section-amber,
.section-phosphor,
.section-magenta {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    position: relative;
}
.section-alt > *,
.section-cyan > *,
.section-gold > *,
.section-amber > *,
.section-phosphor > *,
.section-magenta > * {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 1;
}
/* Sections each get a distinct hue, with a corner accent + soft fill,
 * for the cyberpunk "neighborhood feel" the operator asked for. */
.section-alt      { background: var(--bg-soft); }
.section-cyan {
    background:
        radial-gradient(circle 600px at 80% -10%, rgba(0,240,255,0.15), transparent 70%),
        radial-gradient(circle 500px at 10% 100%, rgba(0,240,255,0.08), transparent 70%),
        var(--bg-soft);
}
.section-gold {
    background:
        radial-gradient(circle 700px at 20% -10%, rgba(201,160,74,0.16), transparent 70%),
        radial-gradient(circle 400px at 100% 50%, rgba(255,215,110,0.10), transparent 70%),
        var(--bg-soft);
}
.section-amber {
    background:
        radial-gradient(circle 700px at 50% -20%, rgba(255,183,0,0.18), transparent 65%),
        radial-gradient(circle 500px at 20% 110%, rgba(255,90,0,0.10), transparent 65%),
        radial-gradient(circle 400px at 90% 80%, rgba(255,46,156,0.08), transparent 65%),
        var(--bg-soft);
}
.section-phosphor {
    background:
        radial-gradient(circle 700px at 30% -20%, rgba(57,255,20,0.16), transparent 65%),
        radial-gradient(circle 500px at 90% 100%, rgba(46,229,184,0.12), transparent 65%),
        var(--bg-soft);
}
.section-magenta {
    background:
        radial-gradient(circle 600px at 80% -10%, rgba(255,46,156,0.18), transparent 70%),
        radial-gradient(circle 500px at 10% 90%, rgba(180,140,255,0.12), transparent 70%),
        var(--bg-soft);
}

.section h2 {
    margin-bottom: 14px;
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(0,240,255,0.4);
}
.section-cyan h2     { color: var(--cyan); text-shadow: 0 0 14px rgba(0,240,255,0.5); }
.section-gold h2     { color: var(--gold-bright); text-shadow: 0 0 14px rgba(255,215,110,0.5); }
.section-amber h2    { color: var(--amber); text-shadow: 0 0 14px rgba(255,183,0,0.6); }
.section-phosphor h2 { color: var(--phosphor); text-shadow: 0 0 14px rgba(57,255,20,0.6); }
.section-magenta h2  { color: var(--magenta); text-shadow: 0 0 14px rgba(255,46,156,0.6); }
.section-lead {
    color: var(--fg-muted);
    margin-bottom: 36px;
    max-width: 720px;
    font-size: 14px;
}

/* STEPS --------------------------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.step {
    padding: 24px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    position: relative;
    transition: all .2s ease;
}
.step:hover {
    border-color: var(--phosphor);
    box-shadow: 0 0 0 1px var(--phosphor), 0 0 24px rgba(57,255,20,0.15);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--phosphor);
    color: var(--bg-deep);
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    margin-bottom: 14px;
    box-shadow: 0 0 12px rgba(57,255,20,0.5);
}
.step h3 {
    color: var(--fg);
    margin-bottom: 10px;
    font-size: 12px;
}
.step p { color: var(--fg-muted); font-size: 13px; }
.step p strong { color: var(--phosphor); text-shadow: 0 0 4px var(--phosphor); }

/* ARCHETYPES ---------------------------------------------------------------- */
.archetypes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.archetype {
    text-align: center;
    padding: 22px 16px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    transition: all .2s ease;
    cursor: pointer;
    font: inherit;
    color: inherit;
    width: 100%;
    display: block;
    /* For button reset (we use <button> now for a11y + click) */
}
.archetype:hover,
.archetype:focus-visible,
.archetype[aria-expanded="true"] {
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 1px var(--gold-bright), 0 0 22px rgba(255,215,110,0.25);
    transform: translate(-1px, -1px);
}
.archetype:hover .arch-sprite-wrap img,
.archetype:focus-visible .arch-sprite-wrap img,
.archetype[aria-expanded="true"] .arch-sprite-wrap img {
    filter: drop-shadow(0 0 8px rgba(255,215,110,0.7));
}
/* Hide tease + show detail on hover/focus/expanded */
.archetype .arch-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .2s ease, margin-top .25s ease;
    margin-top: 0;
}
.archetype:hover .arch-detail,
.archetype:focus-visible .arch-detail,
.archetype[aria-expanded="true"] .arch-detail {
    max-height: 220px;
    opacity: 1;
    margin-top: 10px;
}
.archetype .arch-tease {
    color: var(--fg-muted);
    font-size: 12px;
    font-style: italic;
    margin: 0;
    transition: opacity .2s ease;
}
.archetype:hover .arch-tease,
.archetype[aria-expanded="true"] .arch-tease {
    opacity: 0.55;
}
.archetype .arch-detail p {
    font-size: 13px;
    color: var(--fg);
    line-height: 1.55;
    text-align: left;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
}
.arch-sprite-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 14px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 2px solid var(--border);
    transition: all .2s ease;
}
.arch-sprite-wrap img {
    width: 64px;
    height: 64px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    transition: filter .2s ease;
}
.archetype:hover .arch-sprite-wrap,
.archetype:focus-visible .arch-sprite-wrap,
.archetype[aria-expanded="true"] .arch-sprite-wrap {
    border-color: var(--gold-bright);
    box-shadow: inset 0 0 14px rgba(255,215,110,0.2);
}
.archetype h4 {
    color: var(--gold-bright);
    text-shadow: 0 0 6px rgba(201,160,74,0.5);
    margin-bottom: 6px;
}
.archetype h4 {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.archetype p { font-size: 11px; color: var(--fg-muted); line-height: 1.45; }

/* METRICS ------------------------------------------------------------------- */
.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 36px 0 22px;
}
.metric {
    padding: 22px 18px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    text-align: center;
}
.metric-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.metric-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    color: var(--phosphor);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 10px var(--phosphor);
}
.placeholder-note {
    color: var(--fg-muted);
    font-size: 12px;
    text-align: center;
}
.placeholder-note code {
    background: var(--bg-card);
    padding: 2px 6px;
    color: var(--cyan);
    font-size: 11px;
    border: 1px solid var(--border);
}

/* PRICING ------------------------------------------------------------------- */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}
.plan {
    padding: 28px 22px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .2s ease;
}
.plan:hover { border-color: var(--border-bright); }
.plan-featured {
    border-color: var(--magenta);
    box-shadow:
        0 0 0 1px var(--magenta),
        0 0 28px rgba(255,46,156,0.25),
        inset 0 0 20px rgba(255,46,156,0.06);
}
.plan-badge {
    position: absolute;
    top: -14px;
    right: 16px;
    background: var(--magenta);
    color: var(--bg-deep);
    padding: 5px 12px;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    box-shadow: 0 0 12px rgba(255,46,156,0.5);
}
.plan h3 {
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--fg);
}
.plan-featured h3 { color: var(--magenta); text-shadow: 0 0 8px var(--magenta); }
.plan-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 30px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 18px;
    line-height: 1.15;
}
.plan-price small {
    font-size: 11px;
    font-weight: 400;
    color: var(--fg-muted);
    display: block;
    margin-top: 6px;
}
.plan-period {
    font-size: 13px;
    color: var(--fg-muted);
    font-weight: 400;
}
.plan ul {
    list-style: none;
    margin: 0 0 22px 0;
    flex: 1;
}
.plan li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 13px;
    color: var(--fg-muted);
}
.plan li:last-child { border: none; }
.plan li strong { color: var(--fg); }
.pricing-note {
    margin-top: 36px;
    text-align: center;
    color: var(--fg-muted);
    font-size: 13px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-note strong { color: var(--phosphor); }

/* COUNCIL STAGE — interactive round table + info panel --------------------- */
.council-stage {
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1080px;
}

.round-table {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
    border: 2px dashed rgba(201,160,74,0.35);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(201,160,74,0.08), transparent 70%);
}
.round-table::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(201,160,74,0.18);
    border-radius: 50%;
    pointer-events: none;
}
.rt-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}
.rt-center img {
    width: 110px;
    height: 110px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter:
        drop-shadow(0 0 14px rgba(180,140,255,0.8))
        drop-shadow(0 0 28px rgba(255,46,156,0.4));
    animation: dragon-breathe 6s ease-in-out infinite;
}
.rt-center-label {
    margin-top: 10px;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--gold-bright);
    letter-spacing: 0.15em;
    text-shadow: 0 0 8px var(--gold);
    line-height: 1.6;
}

.rt-seat {
    position: absolute;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border-bright);
    border-radius: 50%;
    transition: all .25s ease;
    cursor: pointer;
    padding: 0;
}
.rt-seat img {
    width: 60px;
    height: 60px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    transition: filter .2s ease;
}
.rt-seat:hover,
.rt-seat:focus-visible {
    border-color: var(--gold-bright);
    box-shadow: 0 0 18px rgba(255,215,110,0.5);
    transform: scale(1.08);
    z-index: 10;
}
.rt-seat:hover img,
.rt-seat:focus-visible img {
    filter: drop-shadow(0 0 8px rgba(255,215,110,0.7));
}
.rt-seat.pinned {
    border-color: var(--magenta);
    box-shadow: 0 0 22px rgba(255,46,156,0.6), inset 0 0 12px rgba(255,46,156,0.15);
    z-index: 11;
}
.rt-seat.pinned img {
    filter: drop-shadow(0 0 10px rgba(255,46,156,0.7));
}

/* 8 seats positioned at compass + diagonals.
 * Each seat is anchored at the visual edge of the circle, then offset back
 * by half its width/height so the center of the seat sits on the ring. */
.rt-seat-0 { top: -38px; left: 50%; margin-left: -38px; }       /* N */
.rt-seat-1 { top: 50%; right: -38px; margin-top: -38px; }       /* E */
.rt-seat-2 { bottom: -38px; left: 50%; margin-left: -38px; }    /* S */
.rt-seat-3 { top: 50%; left: -38px; margin-top: -38px; }        /* W */
.rt-seat-4 { top: 10%; right: 10%; }                            /* NE */
.rt-seat-5 { bottom: 10%; right: 10%; }                         /* SE */
.rt-seat-6 { bottom: 10%; left: 10%; }                          /* SW */
.rt-seat-7 { top: 10%; left: 10%; }                             /* NW */

/* INFO PANEL --------------------------------------------------------------- */
.council-panel {
    background: var(--bg-card);
    border: 2px solid var(--border);
    padding: 32px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.council-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--magenta), var(--cyan));
    opacity: 0.7;
}

/* Default state — prompt */
.cp-default {
    text-align: center;
}
.cp-prompt {
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--phosphor);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    text-shadow: 0 0 8px rgba(57,255,20,0.5);
}
.cp-default p {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.cp-default p strong { color: var(--fg); }
.cp-hint {
    margin-top: 18px !important;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    font-size: 12px !important;
    font-style: italic;
}

/* Detail state — shows the selected archetype */
.cp-detail {
    text-align: center;
}
.cp-sprite-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 2px solid var(--gold-bright);
    box-shadow: 0 0 24px rgba(201,160,74,0.3), inset 0 0 14px rgba(255,215,110,0.1);
}
.cp-sprite {
    width: 96px;
    height: 96px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 8px rgba(255,215,110,0.5));
}
.cp-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 18px;
    color: var(--gold-bright);
    text-shadow: 0 0 10px var(--gold-bright);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.cp-tease {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--magenta);
    letter-spacing: 0.1em;
    text-shadow: 0 0 6px rgba(255,46,156,0.4);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.cp-detail-text {
    font-size: 14px;
    color: var(--fg);
    line-height: 1.6;
    text-align: left;
    padding: 14px 18px;
    background: rgba(10,10,20,0.5);
    border-left: 3px solid var(--gold-bright);
}

/* LIFECYCLE ---------------------------------------------------------------- */
.lifecycle {
    margin: 48px auto;
    max-width: var(--max-width);
}
.lifecycle h3 {
    font-size: 14px;
    color: var(--gold-bright);
    text-shadow: 0 0 8px rgba(255,215,110,0.4);
    text-align: center;
    margin-bottom: 28px;
}
.lifecycle-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 14px;
    align-items: stretch;
}
.lifecycle-step {
    padding: 22px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-top: 3px solid var(--phosphor);
}
.ls-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--phosphor);
    color: var(--bg-deep);
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    margin-bottom: 12px;
}
.lifecycle-step h4 {
    color: var(--phosphor);
    font-size: 11px;
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(57,255,20,0.4);
}
.lifecycle-step p {
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.5;
}
.lifecycle-step p strong { color: var(--gold-bright); }
.ls-arrow {
    align-self: center;
    color: var(--phosphor);
    font-size: 20px;
    text-shadow: 0 0 8px var(--phosphor);
    animation: arrow-pulse 2s ease-in-out infinite;
}

/* REGIME TABLE ------------------------------------------------------------- */
.regime-grid {
    margin: 36px auto 0;
    max-width: var(--max-width);
}
.regime-grid h3 {
    font-size: 14px;
    color: var(--cyan);
    text-shadow: 0 0 8px rgba(0,240,255,0.4);
    text-align: center;
    margin-bottom: 14px;
}
.regime-lead {
    color: var(--fg-muted);
    font-size: 13px;
    text-align: center;
    max-width: 660px;
    margin: 0 auto 24px;
}
.regime-lead strong { color: var(--fg); }
.regime-table {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--border);
}
.regime-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 14px 20px;
    border-bottom: 1px dashed var(--border);
    align-items: center;
    transition: background .15s ease;
}
.regime-row:last-child { border-bottom: none; }
.regime-row:hover { background: rgba(0,240,255,0.04); }
.regime-cell {
    font-size: 13px;
    color: var(--fg);
}
.regime-arch {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--gold-bright);
    letter-spacing: 0.05em;
    text-align: right;
    text-shadow: 0 0 6px rgba(201,160,74,0.4);
}

/* MANIFESTO (Por qué Oraculus existe) -------------------------------------- */
.manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}
.manifesto-claim {
    padding: 26px 24px;
    background: rgba(22, 25, 40, 0.7);
    border: 2px solid var(--border);
    border-left: 4px solid var(--amber);
    backdrop-filter: blur(2px);
    transition: all .2s ease;
}
.manifesto-claim:hover {
    border-color: var(--amber);
    border-left-color: var(--gold-bright);
    box-shadow: 0 0 0 1px rgba(255,183,0,0.5), 0 0 24px rgba(255,183,0,0.15);
    transform: translate(-1px, -1px);
}
.manifesto-claim h3 {
    font-size: 13px;
    color: var(--amber);
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(255,183,0,0.4);
}
.manifesto-claim p {
    font-size: 14px;
    color: var(--fg);
    line-height: 1.6;
}
.manifesto-claim p strong {
    color: var(--gold-bright);
}
.manifesto-tagline {
    margin: 40px auto 0;
    max-width: 780px;
    text-align: center;
    padding: 28px 28px;
    background:
        radial-gradient(ellipse at center, rgba(255,183,0,0.12), transparent 70%),
        var(--bg-card);
    border: 2px solid var(--amber);
    box-shadow: 0 0 28px rgba(255,183,0,0.15);
}
.manifesto-tagline p {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: var(--fg);
    line-height: 1.85;
    margin: 0;
}
.manifesto-tagline strong {
    color: var(--gold-bright);
    text-shadow: 0 0 8px var(--gold-bright);
}
.manifesto-call {
    margin-top: 18px !important;
    padding-top: 16px;
    border-top: 1px dashed rgba(255,183,0,0.4);
    font-size: 11px !important;
    color: var(--amber) !important;
    letter-spacing: 0.05em;
}
.manifesto-call strong {
    color: var(--phosphor) !important;
    text-shadow: 0 0 10px var(--phosphor) !important;
}

/* SECTION FOOT --------------------------------------------------------------- */
.section-foot {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: var(--fg-muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-foot strong { color: var(--fg); }

/* GAIN STAGE (visualization with chart + amount toggle + grid) ------------- */
.gain-stage {
    margin: 36px 0 24px;
    padding: 30px;
    background:
        radial-gradient(ellipse at top, rgba(57,255,20,0.05), transparent 60%),
        var(--bg-card);
    border: 2px solid var(--border);
    position: relative;
}
.gain-stage::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, transparent 49%, rgba(57,255,20,0.04) 50%, transparent 51%);
    background-size: 8px 8px;
    pointer-events: none;
    z-index: 0;
}
.gain-stage > * { position: relative; z-index: 1; }

.gain-input-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--fg-muted);
}
.gain-label {
    color: var(--fg-muted);
    font-size: 14px;
}

.gain-input-toggle {
    display: inline-flex;
    border: 2px solid var(--border-bright);
    background: var(--bg-deep);
}
.gain-amount-btn {
    background: transparent;
    color: var(--fg-muted);
    border: none;
    padding: 12px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s steps(2);
    border-right: 1px solid var(--border-bright);
}
.gain-amount-btn:last-child { border-right: none; }
.gain-amount-btn:hover {
    color: var(--cyan);
    text-shadow: 0 0 6px var(--cyan);
    background: rgba(0,240,255,0.06);
}
.gain-amount-btn.active {
    background: var(--magenta);
    color: var(--bg-deep);
    text-shadow: none;
    box-shadow: inset 0 0 12px rgba(255,255,255,0.2);
}

.gain-headline {
    text-align: center;
    margin-bottom: 28px;
}
.gain-headline-period {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--fg-muted);
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.gain-headline-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 64px;
    font-weight: 700;
    color: var(--magenta);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow:
        0 0 16px var(--magenta),
        0 0 32px rgba(255,46,156,0.5);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.gain-headline-sub {
    font-size: 12px;
    color: var(--fg-muted);
    font-style: italic;
}
.info-toggle {
    cursor: pointer;
    color: var(--cyan);
    font-style: normal;
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: color .15s ease;
}
.info-toggle:hover { color: var(--phosphor); text-shadow: 0 0 6px var(--phosphor); }
.info-detail {
    margin-top: 14px;
    padding: 14px 18px;
    background: rgba(10,10,20,0.7);
    border: 1px dashed var(--cyan);
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.6;
    text-align: left;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.info-detail strong { color: var(--cyan); }

.gain-chart-wrap {
    margin: 0 auto 24px;
    max-width: 720px;
}
.gain-chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
}
.legend-medio { color: var(--phosphor); text-shadow: 0 0 6px var(--phosphor); }
.legend-pro   { color: var(--magenta); text-shadow: 0 0 6px var(--magenta); }
.gain-chart {
    width: 100%;
    height: 240px;
    background: rgba(10,10,20,0.5);
    border: 1px solid var(--border);
}
.gain-bar {
    transition: all .3s ease;
}

.gain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 8px;
}
.gain-cell {
    text-align: center;
    padding: 14px 12px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-top: 2px solid var(--magenta);
}
.gain-cell span {
    display: block;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--fg-muted);
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}
.gain-cell strong {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--magenta);
    text-shadow: 0 0 6px rgba(255,46,156,0.3);
    font-variant-numeric: tabular-nums;
}

.calc-disclaimer {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-left: 3px solid var(--amber);
    font-size: 12px;
    color: var(--fg-muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.calc-disclaimer strong { color: var(--amber); }

/* GAIN MINIMUM SUGGESTION ---------------------------------------------------- */
.gain-minimum {
    margin: 28px auto 0;
    padding: 22px 26px;
    max-width: 760px;
    background:
        radial-gradient(ellipse at left, rgba(57,255,20,0.10), transparent 70%),
        var(--bg-card);
    border: 2px solid var(--phosphor);
    box-shadow: 0 0 24px rgba(57,255,20,0.15);
}
.gain-minimum-label {
    display: block;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: var(--phosphor);
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    text-shadow: 0 0 6px var(--phosphor);
}
.gain-minimum p {
    margin: 0;
    font-size: 14px;
    color: var(--fg);
    line-height: 1.6;
}
.gain-minimum strong { color: var(--phosphor); }
.gain-minimum-value {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 18px !important;
    color: var(--gold-bright) !important;
    text-shadow: 0 0 8px var(--gold-bright) !important;
}

/* REWARDS PROGRAM ----------------------------------------------------------- */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.reward-card {
    padding: 28px 22px;
    background: rgba(22,25,40,0.7);
    border: 2px solid var(--border);
    backdrop-filter: blur(2px);
    text-align: center;
    transition: all .2s ease;
    position: relative;
}
.reward-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--phosphor), var(--magenta));
    opacity: 0.6;
}
.reward-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 0 1px var(--cyan), 0 0 24px rgba(0,240,255,0.2);
    transform: translate(-1px, -1px);
}
.reward-sprite-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 2px solid var(--border-bright);
}
.reward-sprite-wrap img {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
.reward-card h3 {
    font-size: 12px;
    margin-bottom: 12px;
    color: var(--cyan);
    text-shadow: 0 0 8px rgba(0,240,255,0.4);
}
.reward-card p {
    font-size: 13px;
    color: var(--fg-muted);
    line-height: 1.55;
}
.reward-card p strong { color: var(--phosphor); }

/* SUITE ROADMAP ------------------------------------------------------------- */
.suite-roadmap {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px dashed var(--border);
}
.suite-roadmap h3 {
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0,240,255,0.4);
}
.suite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.suite-item {
    padding: 18px 16px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    position: relative;
}
.suite-status {
    display: inline-block;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
    padding: 4px 8px;
    margin-bottom: 12px;
}
.suite-now {
    border-color: var(--phosphor);
}
.suite-now .suite-status {
    background: var(--phosphor);
    color: var(--bg-deep);
}
.suite-soon .suite-status {
    background: transparent;
    color: var(--fg-muted);
    border: 1px solid var(--border-bright);
}
.suite-item h4 {
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--fg);
}
.suite-item p {
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.45;
}

/* FAQ ----------------------------------------------------------------------- */
details {
    background: var(--bg-card);
    border: 2px solid var(--border);
    margin-bottom: 10px;
    padding: 18px 22px;
}
details[open] { border-color: var(--cyan); }
details summary {
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    list-style: none;
    position: relative;
    padding-right: 32px;
    color: var(--fg);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
    content: '[+]';
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    color: var(--cyan);
    text-shadow: 0 0 6px var(--cyan);
}
details[open] summary::after { content: '[-]'; }
details p { margin-top: 12px; color: var(--fg-muted); font-size: 13px; }
details p strong { color: var(--phosphor); }

/* CTA ----------------------------------------------------------------------- */
.section-cta {
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(255,46,156,0.08), transparent 70%),
        var(--bg-soft);
    padding: 64px 24px;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}
.section-cta h2 { margin-bottom: 12px; color: var(--magenta); }
.section-cta p { color: var(--fg-muted); margin-bottom: 28px; font-size: 14px; }
.waitlist {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}
.waitlist input {
    flex: 1;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--fg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}
.waitlist input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 1px var(--cyan), 0 0 14px rgba(0,240,255,0.25);
}
.cta-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--fg-muted);
}

/* FOOTER -------------------------------------------------------------------- */
footer {
    background: var(--bg-deep);
    border-top: 2px solid var(--border);
    padding: 40px 24px 20px;
}
.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border);
}
.footer-grid strong {
    color: var(--gold);
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
}
.footer-grid ul {
    list-style: none;
    margin-top: 10px;
}
.footer-grid li { margin-bottom: 5px; }
.footer-grid a { color: var(--fg-muted); font-size: 12px; }
.footer-grid a:hover { color: var(--phosphor); }
.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    color: var(--fg-dim);
    font-size: 11px;
}

/* ANIMATIONS ---------------------------------------------------------------- */
@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(201,160,74,0.7)); }
    50%      { filter: drop-shadow(0 0 12px rgba(255,215,110,0.95)); }
}

@keyframes terminal-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes dragon-breathe {
    0%, 100% {
        filter:
            drop-shadow(0 0 12px rgba(180, 140, 255, 0.5))
            drop-shadow(0 0 24px rgba(46, 229, 184, 0.3));
        transform: scale(1);
    }
    50% {
        filter:
            drop-shadow(0 0 18px rgba(180, 140, 255, 0.8))
            drop-shadow(0 0 36px rgba(255, 46, 156, 0.4));
        transform: scale(1.03);
    }
}

@keyframes ring-rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%      { transform: translateY(4px); opacity: 1; }
}

/* RESPONSIVE ---------------------------------------------------------------- */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px 32px;
    }
    .hero h1 { font-size: 18px; }
    h2 { font-size: 16px; }
    .steps, .archetypes, .metrics, .pricing, .suite-grid, .gain-grid, .manifesto, .rewards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dragon-stage { width: 280px; height: 280px; }
    .hero-dragon { width: 200px; height: 200px; }
    .dragon-ring-1 { width: 220px; height: 220px; }
    .dragon-ring-2 { width: 250px; height: 250px; }
    .dragon-ring-3 { width: 280px; height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .gain-headline-value { font-size: 44px; }
    .gain-amount-btn { padding: 10px 14px; font-size: 13px; }
    h1, h1 .h1-lead, h1 .h1-cont { font-size: 16px; line-height: 1.5; }
    /* Lifecycle collapses to 2-col with arrows hidden */
    .lifecycle-steps {
        grid-template-columns: 1fr 1fr;
    }
    .ls-arrow { display: none; }
    /* Council stage stacks vertically on tablet */
    .council-stage {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .council-panel { min-height: 240px; }
    .round-table { max-width: 420px; }
    .rt-center img { width: 88px; height: 88px; }
    .rt-seat { width: 64px; height: 64px; }
    .rt-seat img { width: 48px; height: 48px; }
    .rt-seat-0, .rt-seat-2 { margin-left: -32px; }
    .rt-seat-1, .rt-seat-3 { margin-top: -32px; }
    .rt-seat-0, .rt-seat-2 { top: auto; bottom: auto; }
    .rt-seat-0 { top: -32px; }
    .rt-seat-2 { bottom: -32px; }
    .rt-seat-1 { right: -32px; }
    .rt-seat-3 { left: -32px; }
}
@media (max-width: 560px) {
    .steps, .archetypes, .metrics, .pricing, .suite-grid, .gain-grid, .manifesto, .rewards-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .waitlist { flex-direction: column; }
    .gain-input-toggle { width: 100%; }
    .gain-amount-btn { flex: 1; padding: 12px 10px; font-size: 12px; }
    .hero h1, h1 .h1-lead, h1 .h1-cont { font-size: 14px; }
    .section { padding: 40px 20px; }
    .gain-stage { padding: 20px 18px; }
    .gain-headline-value { font-size: 34px; }
    .manifesto-tagline p { font-size: 10px; line-height: 1.7; }
    .lifecycle-steps { grid-template-columns: 1fr; }
    .round-table { max-width: 320px; }
    .rt-seat { width: 52px; height: 52px; }
    .rt-seat img { width: 40px; height: 40px; }
    .rt-seat-0, .rt-seat-2 { margin-left: -26px; }
    .rt-seat-1, .rt-seat-3 { margin-top: -26px; }
    .rt-seat-0 { top: -26px; }
    .rt-seat-2 { bottom: -26px; }
    .rt-seat-1 { right: -26px; }
    .rt-seat-3 { left: -26px; }
    .cp-sprite-wrap { width: 96px; height: 96px; }
    .cp-sprite { width: 72px; height: 72px; }
    .cp-name { font-size: 14px; }
}

/* REDUCED MOTION ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    .brand-mark-img,
    .hero-dragon,
    .dragon-ring,
    .cursor,
    .parallax-bg-aurora,
    .calc-arrow {
        animation: none;
    }
}
