:root {
    color-scheme: dark;
    --ink: #090711;
    --panel: #141027;
    --panel-soft: #1c1633;
    --cream: #fffaf0;
    --muted: #c7bfd7;
    --mint: #76e3cf;
    --gold: #ffd56a;
    --violet: #a768ff;
    --pink: #ff739d;
    --line: rgba(255, 255, 255, 0.14);
    --max: 1180px;
    font-family: Inter, ui-rounded, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--ink);
    color: var(--cream);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 12% 8%, rgba(108, 52, 183, 0.18), transparent 31rem),
        radial-gradient(circle at 90% 18%, rgba(31, 162, 151, 0.12), transparent 29rem),
        var(--ink);
    color: var(--cream);
    line-height: 1.65;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 20;
    padding: 0.7rem 1rem;
    transform: translateY(-150%);
    border-radius: 999px;
    background: var(--cream);
    color: var(--ink);
    font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 7, 17, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-inner {
    width: min(calc(100% - 2.5rem), var(--max));
    margin-inline: auto;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.brand img {
    width: 42px;
    height: 58px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 2vw, 1.5rem);
    font-size: 0.91rem;
    font-weight: 750;
}

.site-nav a { text-decoration: none; color: var(--muted); }
.site-nav .button-primary { color: #071411; }
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--cream); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 52px;
    padding: 0.85rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.button-primary {
    border-color: var(--mint);
    background: var(--mint);
    color: #071411;
}

.button-quiet { background: rgba(255, 255, 255, 0.04); }
.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.hero::after {
    content: "";
    position: absolute;
    width: 31rem;
    height: 31rem;
    right: -12rem;
    top: -16rem;
    border: 1px solid rgba(118, 227, 207, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(167, 104, 255, 0.025);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6.5rem);
}

.kicker {
    margin: 0 0 1rem;
    color: var(--mint);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
    line-height: 1.02;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 800px;
    margin-bottom: 1.35rem;
    font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 { font-size: clamp(2.15rem, 5vw, 4.5rem); }
h3 { font-size: 1.45rem; }

.hero-copy {
    max-width: 670px;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.press-room-hero {
    padding-block: clamp(3rem, 6vw, 5rem);
}

.press-room-hero h1 {
    font-size: clamp(3rem, 5.4vw, 5rem);
}

.press-room-hero .hero-copy {
    font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-visual {
    position: relative;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 2.1rem;
    background: var(--panel);
    box-shadow: 0 2.4rem 7rem rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transform: rotate(1.2deg);
}

.hero-visual img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.hero-visual figcaption {
    padding: 1rem 1.25rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.stem-cover-visual img {
    max-height: 600px;
    object-fit: contain;
    background: radial-gradient(circle at 50% 36%, rgba(167, 104, 255, 0.18), transparent 60%), #05030c;
}

.truth-strip {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.truth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.truth-grid div {
    min-height: 132px;
    padding: 1.55rem;
    border-right: 1px solid var(--line);
}

.truth-grid div:last-child { border-right: 0; }
.truth-grid span { display: block; color: var(--gold); font-size: 1.35rem; font-weight: 950; }
.truth-grid small { color: var(--muted); }

.game-fit-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 8% 0%, rgba(118, 227, 207, 0.08), transparent 24rem),
        radial-gradient(circle at 92% 100%, rgba(167, 104, 255, 0.08), transparent 26rem),
        #090713;
}
.game-fit-shell { display: grid; gap: clamp(1.4rem, 3vw, 2rem); }
.game-fit-heading { display: grid; grid-template-columns: minmax(260px, 0.65fr) minmax(320px, 1fr); gap: clamp(1rem, 5vw, 4rem); align-items: end; }
.game-fit-heading .kicker { grid-column: 1 / -1; margin-bottom: -0.65rem; }
.game-fit-heading h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.game-fit-heading > p:last-child { max-width: 660px; margin: 0; color: var(--muted); font-size: 1.04rem; }
.game-fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.game-fit-card { padding: clamp(1.3rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: 1.5rem; background: rgba(255,255,255,0.03); }
.game-fit-card > span { display: block; margin-bottom: 1.2rem; font-size: 0.72rem; font-weight: 950; letter-spacing: 0.12em; }
.game-fit-yes > span { color: var(--mint); }
.game-fit-no > span { color: var(--gold); }
.game-fit-card ul { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.game-fit-card li { position: relative; padding-left: 1.65rem; color: var(--cream); line-height: 1.5; }
.game-fit-card li::before { position: absolute; left: 0; top: 0.05rem; color: var(--mint); font-weight: 950; content: "◇"; }
.game-fit-no li::before { color: var(--gold); content: "—"; }
.game-fit-device { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 0.75rem 1rem; align-items: center; padding: 1rem 1.15rem; border: 1px solid rgba(118, 227, 207, 0.28); border-radius: 1rem; background: rgba(118, 227, 207, 0.06); }
.game-fit-device strong { color: var(--mint); }
.game-fit-device span { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.game-fit-device .text-link { white-space: nowrap; }

.content-section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.content-section.alt { background: rgba(255, 255, 255, 0.025); }

.updates-hero .hero-visual img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.signal-log-section {
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
}

.signal-timeline {
    position: relative;
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.signal-timeline::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 50%;
    width: 1px;
    background: linear-gradient(var(--mint), rgba(167, 104, 255, 0.2));
}

.signal-entry {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: rgba(14, 11, 30, 0.96);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.signal-entry::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border: 4px solid var(--ink);
    border-radius: 50%;
    background: var(--mint);
    transform: translate(-50%, -50%);
    box-sizing: content-box;
}

.signal-entry-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: var(--panel);
}

.signal-entry-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.signal-entry-image figcaption {
    padding: 0.8rem 1rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.signal-entry-space-visual {
    position: relative;
    display: grid;
    min-height: 310px;
    margin: 0;
    place-content: center;
    gap: 0.15rem;
    overflow: hidden;
    border: 1px solid rgba(118, 227, 207, 0.28);
    border-radius: 1.35rem;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 213, 106, 0.16), transparent 9%),
        radial-gradient(circle at 50% 42%, rgba(167, 104, 255, 0.27), transparent 31%),
        linear-gradient(145deg, #100927, #06050d 68%);
    text-align: center;
}

.signal-entry-space-visual > strong,
.signal-entry-space-visual > em {
    position: relative;
    z-index: 2;
    color: var(--mint);
    font-size: clamp(1.05rem, 2.4vw, 1.7rem);
    font-style: normal;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.signal-entry-space-visual > em {
    color: var(--gold);
    font-size: 1.05rem;
}

.signal-entry-space-visual figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 4, 12, 0.74);
    color: var(--muted);
    font-size: 0.72rem;
}

.signal-entry-space-orbits,
.signal-entry-space-orbits i {
    position: absolute;
    top: 42%;
    left: 50%;
    border: 1px solid rgba(118, 227, 207, 0.24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.signal-entry-space-orbits {
    width: min(260px, 74%);
    aspect-ratio: 1;
    box-shadow: 0 0 70px rgba(167, 104, 255, 0.16);
}

.signal-entry-space-orbits::before {
    content: "";
    position: absolute;
    inset: 38%;
    border-radius: 50%;
    background: radial-gradient(circle at 36% 32%, #fff7d0, var(--gold) 13%, #8d49ff 36%, #170733 72%);
    box-shadow: 0 0 32px rgba(167, 104, 255, 0.82);
}

.signal-entry-space-orbits i:nth-child(1) { width: 76%; height: 76%; }
.signal-entry-space-orbits i:nth-child(2) { width: 50%; height: 50%; border-color: rgba(167, 104, 255, 0.42); }
.signal-entry-space-orbits i:nth-child(3) { width: 28%; height: 28%; border-color: rgba(255, 213, 106, 0.36); }

.signal-entry-space-orbits span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 16px currentColor;
}

.signal-entry-space-orbits span:nth-of-type(1) { top: 10%; left: 25%; }
.signal-entry-space-orbits span:nth-of-type(2) { top: 49%; right: -4px; background: var(--gold); }
.signal-entry-space-orbits span:nth-of-type(3) { bottom: 7%; left: 34%; background: #a768ff; }

.signal-entry-no-media {
    display: grid;
    min-height: 270px;
    place-content: center;
    gap: 0.65rem;
    padding: 2rem;
    border: 1px solid rgba(118, 227, 207, 0.2);
    border-radius: 1.35rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(118, 227, 207, 0.13), transparent 36%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 18px),
        #090713;
    text-align: center;
}

.signal-entry-no-media span {
    color: var(--mint);
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 950;
    letter-spacing: 0.12em;
}

.signal-entry-no-media small { color: var(--muted); }

.signal-entry-copy { padding: clamp(0.5rem, 2vw, 1.2rem); }
.signal-entry-copy h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.6rem); }
.signal-entry-copy h2 a { text-decoration: none; }
.signal-entry-copy h2 a:hover,
.signal-entry-copy h2 a:focus-visible { color: var(--mint); }
.signal-entry-copy ul { margin: 1.3rem 0 1.6rem; padding-left: 1.2rem; color: var(--muted); }
.signal-entry-copy li + li { margin-top: 0.55rem; }

.signal-entry-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--mint);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.signal-entry-meta time { color: var(--gold); }
.signal-entry-latest { border-color: rgba(118, 227, 207, 0.42); }

.release-page {
    background:
        radial-gradient(circle at 78% 8%, rgba(118, 227, 207, 0.13), transparent 31rem),
        radial-gradient(circle at 12% 30%, rgba(167, 104, 255, 0.16), transparent 34rem),
        var(--ink);
}

.release-article-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
    border-bottom: 1px solid var(--line);
}

.release-article-hero::after {
    position: absolute;
    right: -8rem;
    bottom: -13rem;
    width: 33rem;
    height: 33rem;
    border: 1px solid rgba(118, 227, 207, 0.2);
    border-radius: 47% 53% 64% 36%;
    box-shadow: 0 0 0 5rem rgba(167, 104, 255, 0.025);
    content: "";
    transform: rotate(24deg);
}

.release-article-hero .section-inner { position: relative; z-index: 1; }
.release-article-hero h1 { max-width: 980px; }

.release-back {
    display: inline-block;
    margin-bottom: clamp(2.4rem, 6vw, 4.5rem);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
}

.release-back:hover,
.release-back:focus-visible { color: var(--mint); }

.release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    margin: 0 0 1.8rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.release-meta span {
    padding-left: 1.2rem;
    border-left: 1px solid var(--line);
    color: var(--mint);
}

.release-detail-section {
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 56px 56px;
}

.release-detail-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(2rem, 7vw, 6rem);
}

.release-detail-visual > * {
    margin: 0;
    min-height: 340px;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.release-detail-copy > ul {
    display: grid;
    gap: 1.1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.release-detail-copy > ul li {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    color: var(--cream);
}

.release-detail-copy > ul li::before {
    position: absolute;
    top: 1.15rem;
    left: 1.2rem;
    display: grid;
    width: 1.5rem;
    height: 1.5rem;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: #071411;
    font-size: 0.72rem;
    font-weight: 950;
    content: "✓";
}

.release-evidence-note {
    margin-top: 1.5rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 213, 106, 0.3);
    border-radius: 1.2rem;
    background: rgba(255, 213, 106, 0.055);
}

.release-evidence-note strong {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
}

.release-evidence-note p { margin-bottom: 0.6rem; color: var(--muted); font-size: 0.9rem; }
.release-evidence-note p:last-child { margin-bottom: 0; }

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}

.section-lead { color: var(--muted); font-size: 1.1rem; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    min-height: 210px;
    padding: 1.7rem;
    border: 1px solid var(--line);
    border-radius: 1.45rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
}

.card-number {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 0.85rem;
    background: rgba(118, 227, 207, 0.12);
    color: var(--mint);
    font-weight: 950;
}

.card p,
.source-note p,
.faq-list p { color: var(--muted); }

.proof-frame {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(1.3rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: var(--panel);
}

.proof-frame img {
    width: 100%;
    max-height: 670px;
    border-radius: 1.2rem;
    object-fit: contain;
    background: #05030c;
}

.concept-visual {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 390px;
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 2.8rem);
    border: 1px solid rgba(118, 227, 207, 0.24);
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at 50% 42%, rgba(167, 104, 255, 0.25), transparent 35%),
        linear-gradient(145deg, #05030c, #15102b);
    text-align: center;
}

.concept-visual::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(118, 227, 207, 0.17);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(167, 104, 255, 0.035), 0 0 0 84px rgba(118, 227, 207, 0.025);
}

.concept-visual span,
.concept-visual strong,
.concept-visual i,
.concept-visual small { position: relative; z-index: 1; }

.concept-visual span {
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(118, 227, 207, 0.28);
    border-radius: 999px;
    color: var(--mint);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
}

.concept-visual strong {
    color: var(--cream);
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    letter-spacing: -0.02em;
}

.concept-visual i { color: var(--gold); font-style: normal; font-weight: 950; }
.concept-visual small { flex-basis: 100%; margin-top: 1rem; color: #afa5bf; font-size: 0.65rem; font-weight: 850; letter-spacing: 0.12em; }

.signal-contact-visual strong,
.apollo-source-visual strong { flex-basis: 100%; }

.beacon-choice-visual strong,
.studio-build-visual strong,
.creature-journey-visual strong { color: var(--gold); }

.science-method-visual strong { padding: 0.75rem 0.9rem; border-radius: 999px; background: var(--gold); color: #151008; }
.gene-spectrum-grid .card-number,
.playable-value-grid .card-number { width: auto; padding-inline: 0.8rem; }

.label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: var(--mint);
    color: #081410;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.source-note {
    margin-top: 1.4rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--gold);
    background: rgba(255, 213, 106, 0.055);
}

.press-embed-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.press-embed-preview {
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid rgba(122, 234, 216, 0.22);
    border-radius: 28px;
    background: radial-gradient(circle at 35% 25%, rgba(140, 75, 255, 0.18), transparent 60%), #0c0918;
    box-shadow: 0 24px 70px rgba(3, 2, 10, 0.28);
}

.press-embed-preview a,
.press-embed-preview img { display: block; width: 100%; }
.press-embed-preview a { border-radius: 20px; }
.press-embed-preview a:focus-visible { outline: 3px solid var(--mint); outline-offset: 6px; }

.embed-code-label {
    display: block;
    margin: 1.4rem 0 0.55rem;
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.embed-code {
    width: 100%;
    resize: vertical;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(4, 3, 12, 0.7);
    color: #ddd5eb;
    font: 0.76rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.embed-code:focus { outline: 2px solid var(--mint); outline-offset: 2px; }

@media (max-width: 780px) {
    .press-embed-layout { grid-template-columns: 1fr; }
}

.text-link { color: var(--mint); font-weight: 850; text-underline-offset: 0.25em; }

.faq-list { display: grid; gap: 0.8rem; }

details {
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: var(--panel-soft);
    padding: 1rem 1.2rem;
}

summary { cursor: pointer; font-weight: 900; }
details p { margin: 0.9rem 0 0; }

.final-cta {
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(167, 104, 255, 0.24), transparent 34rem),
        #100b20;
}

.final-cta p { color: var(--muted); font-size: 1.1rem; }
.final-cta .hero-actions { justify-content: center; }

.studio-first-minute { scroll-margin-top: 82px; }
.studio-first-minute-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
}
.studio-first-minute-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(118, 227, 207, 0.34);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 92% 8%, rgba(167, 104, 255, 0.22), transparent 18rem),
        linear-gradient(145deg, rgba(118, 227, 207, 0.09), rgba(255, 255, 255, 0.025));
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}
.studio-first-minute-steps {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.studio-first-minute-steps li {
    display: grid;
    grid-template-columns: 3.1rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: rgba(9, 7, 17, 0.55);
}
.studio-first-minute-steps li > span {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    background: var(--mint);
    color: #071411;
    font-size: 0.72rem;
    font-weight: 950;
}
.studio-first-minute-steps strong { display: block; font-size: 1.05rem; }
.studio-first-minute-steps p { margin: 0.3rem 0 0; color: var(--muted); }
.studio-first-minute-card .hero-actions { margin-top: 1.2rem; }
.studio-first-minute-boundary { margin: 1rem 0 0; color: var(--muted); font-size: 0.84rem; }
.studio-first-minute-boundary strong { color: var(--gold); }

.help-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr); align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.help-hero h1 { font-size: clamp(3.2rem, 6.5vw, 6rem); }
.help-signal { padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid rgba(118, 227, 207, 0.34); border-radius: 2rem; background: linear-gradient(150deg, rgba(118, 227, 207, 0.1), rgba(167, 104, 255, 0.1)); box-shadow: 0 2rem 6rem rgba(0,0,0,0.35); transform: rotate(1deg); }
.help-signal ol { display: grid; gap: 0.75rem; margin: 0; padding: 0; list-style: none; }
.help-signal li { display: grid; grid-template-columns: 3.2rem minmax(0, 1fr); gap: 1rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: 1.2rem; background: rgba(9, 7, 17, 0.55); }
.help-signal li > span { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--mint); color: #071411; font-size: 0.72rem; font-weight: 950; }
.help-signal strong, .help-signal small { display: block; }
.help-signal small { margin-top: 0.22rem; color: var(--muted); line-height: 1.45; }
.help-heading { max-width: 880px; margin-bottom: clamp(2.2rem, 5vw, 4rem); }
.help-control-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.help-control-grid .card { min-height: 290px; }
.help-key { display: inline-flex; min-height: 2.8rem; align-items: center; margin-bottom: 2.3rem; padding: 0.45rem 0.75rem; border: 1px solid rgba(118, 227, 207, 0.48); border-radius: 0.65rem; background: rgba(118, 227, 207, 0.08); color: var(--mint); font-size: 0.74rem; font-weight: 950; letter-spacing: 0.08em; box-shadow: inset 0 -3px 0 rgba(118, 227, 207, 0.1); }
.help-fix-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; margin: 0; padding: 0; list-style: none; }
.help-fix-list li { min-height: 280px; padding: 1.4rem; border: 1px solid var(--line); border-radius: 1.35rem; background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.012)); }
.help-fix-list li > span { display: block; margin-bottom: 3.4rem; color: var(--mint); font-size: 0.7rem; font-weight: 950; letter-spacing: 0.12em; }
.help-fix-list strong { display: block; font-size: 1.2rem; }
.help-fix-list p { margin: 0.55rem 0 0; color: var(--muted); }
.help-boundary { margin-top: 1rem; padding: 1.25rem 1.4rem; border: 1px solid rgba(255, 213, 106, 0.28); border-left: 4px solid var(--gold); border-radius: 1rem; background: rgba(255, 213, 106, 0.055); }
.help-boundary strong { color: var(--gold); }
.help-boundary p { margin: 0.35rem 0 0; color: var(--muted); }

.story-hero h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); }
.story-hero .hero-visual { transform: rotate(-1deg); }
.story-hero .hero-visual img { aspect-ratio: 16 / 9; object-fit: cover; }
.story-spoiler-note { margin: 1.1rem 0 0; color: #9f96b1; font-size: 0.86rem; }
.story-section-heading { max-width: 800px; margin-bottom: clamp(2.2rem, 5vw, 4rem); }
.story-section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }

.story-path {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.story-path li {
    min-height: 295px;
    padding: 1.6rem 1.35rem;
    border: 1px solid var(--line);
    border-right: 0;
    background: linear-gradient(155deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
}

.story-path li:first-child { border-radius: 1.5rem 0 0 1.5rem; }
.story-path li:last-child { border-right: 1px solid var(--line); border-radius: 0 1.5rem 1.5rem 0; }
.story-path li > span { display: block; margin-bottom: 3.7rem; color: var(--mint); font-weight: 950; letter-spacing: 0.12em; }
.story-path strong { display: block; margin-bottom: 0.7rem; font-size: 1.15rem; line-height: 1.25; }
.story-path p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.realm-story-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
}

.realm-story-grid figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    background: var(--panel);
}

.realm-story-grid img { width: 100%; aspect-ratio: 390 / 844; object-fit: cover; background: #030207; }
.realm-story-grid figcaption { min-height: 132px; padding: 1rem; }
.realm-story-grid figcaption span { display: block; color: var(--mint); font-size: 0.72rem; font-weight: 950; }
.realm-story-grid figcaption strong { display: block; margin: 0.3rem 0; line-height: 1.25; }
.realm-story-grid figcaption small { display: block; color: var(--muted); line-height: 1.45; }
.story-proof-note { margin: 1.4rem 0 0; color: var(--muted); font-size: 0.88rem; }
.story-proof-note a { color: var(--mint); font-weight: 850; }
.story-choice-frame img { object-fit: contain; }
.story-choice-frame details { margin-top: 1.4rem; }

.playable-hero h1 { font-size: clamp(3.3rem, 7vw, 6.5rem); }
.playable-trust-line { margin: 1.15rem 0 0; color: var(--gold); font-size: 0.92rem; font-weight: 850; }
.playable-video {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(118, 227, 207, 0.32);
    border-radius: 2rem;
    background: #05030c;
    box-shadow: 0 2.4rem 7rem rgba(0, 0, 0, 0.5);
}
.playable-video-screen { display: grid; place-items: center; min-height: 0; aspect-ratio: 16 / 9; background: radial-gradient(circle, #1b1740, #05030c 68%); }
.playable-video video { display: block; width: 100%; height: 100%; object-fit: cover; background: #030207; }
.playable-video figcaption { display: grid; gap: 0.25rem; padding: 1rem 1.2rem; color: var(--muted); font-size: 0.84rem; }
.playable-video figcaption strong { color: var(--mint); font-size: 0.73rem; letter-spacing: 0.1em; }
.playable-journey { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; margin: 0; padding: 0; list-style: none; }
.playable-journey li { min-height: 230px; padding: 1.5rem; border: 1px solid var(--line); border-radius: 1.4rem; background: linear-gradient(150deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)); }
.playable-journey span { display: block; margin-bottom: 2.5rem; color: var(--mint); font-weight: 950; letter-spacing: 0.12em; }
.playable-journey strong { display: block; margin-bottom: 0.6rem; font-size: 1.18rem; }
.playable-journey p { margin: 0; color: var(--muted); }
.playable-proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.85rem; }
.playable-proof-grid figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 1.35rem; background: var(--panel); }
.playable-proof-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; background: #030207; }
.playable-proof-grid figcaption { min-height: 130px; padding: 1rem; }
.playable-proof-grid figcaption span { display: block; color: var(--mint); font-size: 0.7rem; font-weight: 950; letter-spacing: 0.1em; }
.playable-proof-grid figcaption strong { display: block; margin: 0.3rem 0; }
.playable-proof-grid figcaption small { color: var(--muted); }
.playable-links { display: grid; justify-items: start; gap: 0.75rem; margin-top: 1.5rem; }
.playable-art-boundary img { max-height: 520px; object-fit: cover; }
.playable-social-note { margin: 1rem 0 0; color: #9188a3; font-size: 0.78rem; }

.play-intent-section {
    scroll-margin-top: 82px;
    background:
        radial-gradient(circle at 8% 12%, rgba(167, 104, 255, 0.16), transparent 28rem),
        radial-gradient(circle at 92% 82%, rgba(118, 227, 207, 0.1), transparent 30rem),
        #0d0919;
}
.play-intent-hero { padding-block: clamp(2.4rem, 4.5vw, 4.5rem); }
.play-intent-hero::after { opacity: 0.7; }
.play-intent-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: end;
    margin-bottom: clamp(1.6rem, 3vw, 2.8rem);
}
.play-intent-heading h1,
.play-intent-heading h2 { max-width: 760px; margin-bottom: 0; }
.play-intent-heading h1 { font-size: clamp(3.25rem, 6vw, 5.5rem); }
.play-intent-heading > div > p:not(.kicker) { max-width: 620px; margin-bottom: 0.35rem; color: var(--muted); font-size: 1.08rem; }
.play-intent-direct { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1rem; margin-top: 1.3rem; }
.play-intent-direct .button { flex: 0 0 auto; }
.play-intent-direct small { max-width: 25rem; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.play-intent-choice-prompt { margin: 0 0 1rem; color: var(--muted); font-size: 0.92rem; }
.play-intent-choice-prompt strong { color: var(--cream); font-size: 1.02rem; }
.play-intent-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.play-intent-card {
    position: relative;
    min-height: 240px;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: 1.45rem;
    background: linear-gradient(155deg, rgba(255,255,255,0.065), rgba(255,255,255,0.014));
    color: var(--cream);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.play-intent-card::after {
    content: "→";
    position: absolute;
    right: 1.35rem;
    bottom: 1.15rem;
    color: var(--mint);
    font-size: 1.45rem;
    font-weight: 950;
}
.play-intent-card > span { display: block; margin-bottom: 2.4rem; color: var(--mint); font-size: 0.68rem; font-weight: 950; letter-spacing: 0.12em; }
.play-intent-card strong { display: block; margin-bottom: 0.75rem; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.08; letter-spacing: -0.035em; }
.play-intent-card small { display: block; max-width: 25ch; padding-right: 1rem; color: var(--muted); font-size: 0.86rem; line-height: 1.55; }
.play-intent-card:hover,
.play-intent-card:focus-visible { transform: translateY(-4px); border-color: rgba(118, 227, 207, 0.55); outline: none; }
.play-intent-card.active { border-color: var(--mint); background: linear-gradient(155deg, rgba(118, 227, 207, 0.14), rgba(167, 104, 255, 0.08)); box-shadow: 0 1.2rem 3.2rem rgba(0,0,0,0.22); }
.play-intent-answer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr) minmax(220px, auto);
    gap: 2rem;
    align-items: start;
    margin-top: 1rem;
    padding: clamp(1.35rem, 4vw, 2.35rem);
    border: 1px solid rgba(118, 227, 207, 0.38);
    border-radius: 1.5rem;
    background: linear-gradient(110deg, rgba(118, 227, 207, 0.09), rgba(167, 104, 255, 0.08));
}
.play-intent-answer[hidden] { display: none; }
.play-intent-answer h3 { margin-bottom: 0.65rem; font-size: clamp(1.65rem, 3vw, 2.55rem); }
.play-intent-answer p:not(.kicker) { max-width: 760px; margin-bottom: 0; color: var(--muted); }
.play-intent-mission { padding-left: 1.5rem; border-left: 1px solid rgba(118, 227, 207, 0.32); }
.play-intent-mission h4 { margin: 0 0 1rem; color: var(--cream); font-size: 1.15rem; line-height: 1.2; }
.play-intent-mission ol { display: grid; gap: 0.65rem; margin: 0; padding: 0; list-style: none; }
.play-intent-mission li { display: grid; grid-template-columns: 2.1rem minmax(0, 1fr); gap: 0.7rem; align-items: start; }
.play-intent-mission li > span { display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border: 1px solid rgba(118, 227, 207, 0.45); border-radius: 50%; color: var(--mint); font-size: 0.66rem; font-weight: 950; }
.play-intent-mission li > strong { padding-top: 0.35rem; color: var(--cream); font-size: 0.84rem; line-height: 1.4; }
.play-intent-finish { margin-top: 0.9rem !important; padding-top: 0.8rem; border-top: 1px solid var(--line); font-size: 0.8rem; line-height: 1.45; }
.play-intent-finish strong { color: var(--gold); }
.play-intent-answer .button { min-width: 220px; }
.play-intent-answer-actions { display: grid; gap: 0.65rem; min-width: 240px; }
.play-intent-answer-actions .button { width: 100%; justify-content: center; }
.play-intent-share-status { min-height: 1.2rem; color: var(--mint) !important; font-size: 0.78rem; font-weight: 800; text-align: center; }
.play-intent-grid > .play-intent-answer { margin-top: 0; }
.play-intent-skip { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin-top: 1.1rem; color: var(--muted); }
.play-intent-skip > span { color: var(--cream); font-weight: 850; }
.play-intent-skip > a:not(.button) { color: var(--mint); font-weight: 850; }
.play-intent-section .returning-player-note {
    width: fit-content;
    max-width: 700px;
    margin: 1.1rem 0 0;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(118, 227, 207, 0.42);
    border-radius: 16px;
    background: rgba(118, 227, 207, 0.08);
    color: var(--cream);
}
.play-intent-section .returning-player-note[hidden] { display: none; }
.play-intent-section .returning-player-note strong { color: var(--mint); }
.play-intent-noscript { margin-top: 1rem; padding: 1rem; border-left: 3px solid var(--gold); background: rgba(255,213,106,0.06); }
.play-intent-noscript a { color: var(--mint); font-weight: 900; }

.install-game-card {
    padding-block: clamp(1.1rem, 2.6vw, 2rem);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 78% 50%, rgba(167, 104, 255, 0.14), transparent 24rem),
        #090713;
}
.install-game-card[hidden] { display: none; }
.install-game-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
    gap: clamp(1.5rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(1.3rem, 3vw, 2rem);
    border: 1px solid rgba(118, 227, 207, 0.3);
    border-radius: 1.4rem;
    background: linear-gradient(120deg, rgba(118, 227, 207, 0.07), rgba(167, 104, 255, 0.07));
}
.install-game-shell h2 { margin-bottom: 0.6rem; font-size: clamp(1.8rem, 3.6vw, 3.1rem); }
.install-game-shell p:not(.kicker) { max-width: 780px; margin: 0; color: var(--muted); }
.install-game-boundary { margin-top: 0.65rem !important; color: #9f96b1 !important; font-size: 0.82rem; }
.install-game-action { display: grid; gap: 0.7rem; justify-items: stretch; }
.install-game-action .button { width: 100%; justify-content: center; }
.install-game-action [data-install-status] { min-height: 1.2rem; color: var(--mint); font-size: 0.76rem; text-align: center; }

.hatch-challenge-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(118, 227, 207, 0.13), transparent 26rem),
        radial-gradient(circle at 90% 80%, rgba(167, 104, 255, 0.16), transparent 32rem),
        #0d0919;
}
.hatch-challenge-shell { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.hatch-challenge-copy h1,
.hatch-challenge-copy h2 { max-width: 780px; font-size: clamp(2.8rem, 5.2vw, 5.1rem); }
.hatch-challenge-page .hatch-challenge-section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.hatch-challenge-page .hatch-challenge-copy h1 { margin-bottom: 1.25rem; }
.hatch-challenge-copy .section-lead { max-width: 680px; }
.hatch-challenge-boundary { max-width: 680px; padding: 1rem 1.15rem; border-left: 3px solid var(--gold); background: rgba(255, 213, 106, 0.06); color: var(--muted); }
.hatch-challenge-boundary strong { color: var(--gold); }
.hatch-challenge-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; max-width: 680px; }
.hatch-challenge-start { grid-column: 1 / -1; }
.hatch-challenge-actions .button { justify-content: center; }
.hatch-challenge-copy > .playable-share-status { min-height: 1.25rem; margin: 0.65rem 0 0; text-align: left; }
.hatch-challenge-copy > .hatch-challenge-boundary { margin-top: 0.35rem; }
.hatch-challenge-steps { display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none; }
.hatch-challenge-steps li { display: grid; grid-template-columns: 4.4rem minmax(0, 1fr); gap: 1.2rem; align-items: center; min-height: 128px; padding: 1.25rem; border: 1px solid var(--line); border-radius: 1.35rem; background: linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.014)); }
.hatch-challenge-steps li:nth-child(2) { margin-left: clamp(0rem, 4vw, 3rem); border-color: rgba(118, 227, 207, 0.36); }
.hatch-challenge-steps li > span { display: grid; place-items: center; width: 4.4rem; height: 4.4rem; border: 1px solid rgba(118, 227, 207, 0.44); border-radius: 50%; color: var(--mint); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.08em; }
.hatch-challenge-steps strong { display: block; margin-bottom: 0.3rem; color: var(--cream); font-size: 1.2rem; }
.hatch-challenge-steps p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.hatch-ingredient-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hatch-ingredient-grid .card { min-height: 275px; }

.educator-hero { padding-block: clamp(3.2rem, 5vw, 5rem); }
.educator-hero h1 { font-size: clamp(3.1rem, 5.4vw, 5.4rem); }
.educator-hero .hero-visual { transform: rotate(-0.7deg); }
.educator-hero .hero-visual img { aspect-ratio: 16 / 9; object-fit: contain; background: #05030c; }
.educator-hero .hero-visual figcaption strong { color: var(--mint); letter-spacing: 0.06em; }
.educator-trust { margin: 1.1rem 0 0; color: var(--gold); font-size: 0.88rem; font-weight: 850; }
.educator-heading { max-width: 850px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.educator-heading h2 { margin-bottom: 1rem; }
.educator-mission {
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(118, 227, 207, 0.09), transparent 42rem);
    background-size: 58px 58px, 58px 58px, auto;
}
.mission-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.mission-steps li { min-height: 320px; padding: 1.45rem; border: 1px solid var(--line); border-radius: 1.35rem; background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.012)); }
.mission-steps li:nth-child(2),
.mission-steps li:nth-child(4) { transform: translateY(1.25rem); }
.mission-steps span { display: block; margin-bottom: 3.2rem; color: var(--mint); font-size: 0.67rem; font-weight: 950; letter-spacing: 0.1em; }
.mission-steps strong { display: block; margin-bottom: 0.65rem; font-size: 1.18rem; line-height: 1.25; }
.mission-steps p { margin: 0; color: var(--muted); font-size: 0.91rem; }
.quick-route { display: grid; gap: 0.9rem; }
.quick-route article { display: grid; grid-template-columns: 3.2rem minmax(0, 1fr); gap: 1rem; align-items: start; padding: 1.25rem; border: 1px solid var(--line); border-radius: 1.25rem; background: var(--panel); }
.quick-route article > span { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--mint); color: #071411; font-size: 1.3rem; font-weight: 950; }
.quick-route strong { display: block; margin-bottom: 0.35rem; font-size: 1.2rem; }
.quick-route p { margin: 0; color: var(--muted); }
.educator-resource-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; }
.educator-resource-card { display: grid; grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.08fr); overflow: hidden; min-height: 520px; border: 1px solid var(--line); border-radius: 1.7rem; background: var(--panel); }
.educator-resource-card > img { width: 100%; height: 100%; min-height: 520px; padding: 1rem; object-fit: contain; object-position: center; background: radial-gradient(circle at 50% 35%, rgba(167, 104, 255, 0.18), transparent 65%), #05030c; }
.educator-resource-card > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(1.4rem, 3vw, 2.2rem); }
.educator-resource-card h3 { margin-bottom: 0.8rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.educator-resource-card p { color: var(--muted); }
.educator-resource-card .button { margin-top: auto; }
.educator-resource-card > .resource-signal-mark {
    display: grid;
    min-height: 520px;
    place-items: center;
    padding: 1rem;
    background:
        radial-gradient(circle, rgba(118, 227, 207, 0.24), transparent 42%),
        repeating-radial-gradient(circle, rgba(167, 104, 255, 0.12) 0 1px, transparent 2px 24px),
        #05030c;
    color: var(--mint);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 950;
    letter-spacing: 0.08em;
}
.educator-boundaries .card { min-height: 245px; }
.playable-share-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    padding-top: clamp(2rem, 4vw, 3.6rem);
    padding-bottom: clamp(2rem, 4vw, 3.6rem);
}
.playable-share-card h2 { max-width: 760px; margin-bottom: 1rem; }
.playable-share-card p { max-width: 690px; color: var(--muted); }
.playable-share-actions { display: grid; justify-items: stretch; gap: 0.75rem; }
.playable-share-actions .button { width: 100%; justify-content: center; }
.playable-share-status { min-height: 1.35rem; margin: 0.25rem 0 0; color: var(--mint) !important; font-size: 0.86rem; font-weight: 800; text-align: center; }

.creature-showcase-hero { padding-block: clamp(3.8rem, 7vw, 6.4rem); }
.creature-showcase-hero .hero-grid {
    grid-template-columns: minmax(310px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(2.2rem, 5vw, 4.5rem);
}
.creature-showcase-hero h1 { font-size: clamp(3.2rem, 6.6vw, 6.4rem); }
.creature-showcase-hero .hero-visual { transform: rotate(0.6deg); }
.creature-showcase-hero .hero-visual img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.creature-showcase-hero .hero-visual figcaption strong {
    color: var(--mint);
    letter-spacing: 0.08em;
}
.showcase-boundary {
    margin: 1.35rem 0 0;
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--gold);
    background: rgba(255, 213, 106, 0.06);
    color: var(--muted);
    font-size: 0.86rem;
}
.creature-showcase-section {
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(118, 227, 207, 0.1), transparent 42rem);
    background-size: 56px 56px, 56px 56px, auto;
}
.creature-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.creature-specimen {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid var(--line);
    border-color: color-mix(in srgb, var(--specimen) 48%, transparent);
    border-radius: 1.7rem;
    background: #0b0815;
    background:
        radial-gradient(circle at 50% 27%, color-mix(in srgb, var(--specimen) 22%, transparent), transparent 34%),
        linear-gradient(155deg, rgba(255,255,255,0.055), rgba(255,255,255,0.014)),
        #0b0815;
    box-shadow: inset 0 1px rgba(255,255,255,0.06), 0 1.3rem 3.5rem rgba(0,0,0,0.22);
}
.creature-specimen::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 4rem color-mix(in srgb, var(--specimen) 9%, transparent);
    pointer-events: none;
}
.creature-specimen-visual {
    display: grid;
    place-items: center;
    min-height: 230px;
    padding: 1.2rem 1rem 0.45rem;
}
.creature-specimen-visual img {
    width: auto;
    height: 180px;
    image-rendering: pixelated;
    filter: drop-shadow(0 1.1rem 1.5rem rgba(0,0,0,0.45));
}
.creature-specimen-copy { padding: 0.4rem 1.25rem 1.35rem; }
.creature-specimen-copy > span {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--mint);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.11em;
}
.creature-specimen-copy h3 { margin-bottom: 0.7rem; font-size: 1.5rem; }
.creature-specimen-copy p { margin-bottom: 1rem; color: var(--muted); font-size: 0.9rem; }
.creature-specimen-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.creature-specimen-copy li {
    padding: 0.28rem 0.55rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #ddd5eb;
    font-size: 0.68rem;
    font-weight: 800;
}

/* Project Beacon creature field guide */
.creature-field-guide-page {
    background:
        radial-gradient(circle at 20% 6%, rgba(89, 47, 168, 0.3), transparent 34rem),
        radial-gradient(circle at 88% 16%, rgba(27, 142, 138, 0.18), transparent 34rem),
        #07050d;
}
.field-guide-hero { padding-bottom: clamp(4rem, 8vw, 7rem); }
.field-guide-hero h1 { font-size: clamp(3.4rem, 7.2vw, 7.2rem); }
.field-guide-hero .hero-visual {
    border-color: rgba(167, 104, 255, 0.4);
    box-shadow: 0 2.8rem 8rem rgba(54, 15, 107, 0.48);
}
.field-boundary { padding: clamp(4rem, 8vw, 7rem) 0; }
.field-boundary-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.7rem, 5vw, 4rem);
    border: 1px solid rgba(118, 227, 207, 0.35);
    border-radius: 2rem;
    background:
        linear-gradient(120deg, rgba(118, 227, 207, 0.08), transparent 45%),
        var(--panel);
}
.field-boundary-card::after {
    content: "FIELD RECORD // SOURCE BOUND";
    position: absolute;
    right: 1.5rem;
    top: 1.3rem;
    color: rgba(255,255,255,0.17);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}
.field-boundary-card h2 { max-width: 850px; margin-bottom: 1.5rem; }
.field-boundary-card > p:not(.kicker) { max-width: 900px; color: var(--muted); font-size: 1.03rem; }
.field-route {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    overflow: hidden;
}
.field-route a {
    min-width: 0;
    padding: 1rem 0.8rem;
    border-right: 1px solid var(--line);
    background: rgba(255,255,255,0.025);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 850;
}
.field-route a:last-child { border-right: 0; }
.field-route a:hover,
.field-route a:focus-visible { background: rgba(118, 227, 207, 0.09); color: var(--cream); }
.field-route span { display: block; margin-bottom: 0.25rem; color: var(--mint); font-size: 0.66rem; letter-spacing: 0.12em; }
.field-realm {
    position: relative;
    padding: clamp(4rem, 9vw, 8rem) 0;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 90% 10%, rgba(167, 104, 255, 0.12), transparent 30rem),
        linear-gradient(180deg, rgba(255,255,255,0.018), transparent 35%);
}
.field-realm:nth-of-type(even) {
    background:
        radial-gradient(circle at 8% 20%, rgba(118, 227, 207, 0.1), transparent 30rem),
        linear-gradient(180deg, rgba(255,255,255,0.018), transparent 35%);
}
.field-realm-header {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.field-realm-number {
    padding: 0.6rem 0;
    border-block: 1px solid var(--mint);
    color: var(--mint);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.14em;
}
.field-realm-header h2 { margin-bottom: 0; }
.field-realm-context {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.3rem;
    margin-bottom: 1.3rem;
}
.field-realm-context figure,
.field-realm-signal,
.field-realm-truth {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    overflow: hidden;
    background: var(--panel);
}
.field-realm-signal {
    display: grid;
    min-height: 330px;
    place-content: center;
    gap: 0.65rem;
    padding: 2rem;
    background:
        radial-gradient(circle at center, rgba(118, 227, 207, 0.18), transparent 34%),
        repeating-radial-gradient(circle at center, rgba(167, 104, 255, 0.1) 0 1px, transparent 2px 35px),
        #070511;
    text-align: center;
}
.field-realm-signal span,
.field-realm-signal small { color: var(--mint); font-size: 0.67rem; font-weight: 950; letter-spacing: 0.13em; }
.field-realm-signal strong { color: var(--cream); font-size: clamp(2rem, 5vw, 4.8rem); line-height: 0.95; }
.field-realm-signal small { color: var(--gold); }
.field-realm-context figure { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.field-realm-context figure img { width: 100%; height: 330px; object-fit: cover; object-position: center top; }
.field-realm-context figcaption {
    display: grid;
    place-items: center;
    width: 56px;
    padding: 0.8rem 0.4rem;
    border-left: 1px solid var(--line);
    color: #9e95af;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1.25;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.field-realm-truth { display: grid; align-content: center; padding: clamp(1.5rem, 4vw, 3.1rem); }
.field-realm-truth span,
.field-finale-card > span {
    color: var(--gold);
    font-size: 0.69rem;
    font-weight: 950;
    letter-spacing: 0.15em;
}
.field-realm-truth p { margin: 0.5rem 0 1.5rem; color: var(--muted); font-size: 1.05rem; }
.field-realm-truth p:last-child { margin-bottom: 0; color: var(--cream); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 800; line-height: 1.4; }
.field-sighting-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; }
.field-sighting {
    display: grid;
    grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.38fr);
    overflow: hidden;
    min-height: 480px;
    border: 1px solid color-mix(in srgb, var(--creature-colour) 44%, var(--line));
    border-radius: 1.6rem;
    background: #0b0815;
    box-shadow: inset 0 1px rgba(255,255,255,0.05);
}
.field-sighting-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 3rem 1rem 1.5rem;
    border-right: 1px solid var(--line);
    background:
        radial-gradient(circle, color-mix(in srgb, var(--creature-colour) 25%, transparent), transparent 55%),
        linear-gradient(165deg, rgba(255,255,255,0.04), transparent);
}
.field-sighting-glyph {
    position: relative;
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--creature-colour) 60%, white);
    border-radius: 50%;
    box-shadow: 0 0 45px color-mix(in srgb, var(--creature-colour) 28%, transparent);
}
.field-sighting-glyph i { position: absolute; inset: 16%; border: 1px solid color-mix(in srgb, var(--creature-colour) 75%, white); border-radius: 46% 54% 62% 38%; transform: rotate(24deg); }
.field-sighting-glyph i:nth-child(2) { inset: 28%; transform: rotate(91deg); }
.field-sighting-glyph i:nth-child(3) { inset: 40%; transform: rotate(151deg); }
.field-sighting-glyph strong { position: relative; color: var(--cream); font-size: 2rem; }
.field-sighting-visual > small { max-width: 150px; color: #8f85a2; font-size: 0.65rem; line-height: 1.4; text-align: center; }
.field-sighting-id {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--mint);
    font-size: 0.59rem;
    font-weight: 950;
    letter-spacing: 0.09em;
}
.field-sighting-copy { padding: 1.6rem; }
.field-story-label { margin-bottom: 0.45rem; color: var(--pink); font-size: 0.65rem; font-weight: 950; letter-spacing: 0.14em; }
.field-sighting-copy h3 { margin-bottom: 0.3rem; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.field-species { margin-bottom: 0.8rem; color: var(--mint); font-weight: 850; }
.field-traits { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0 0 1.2rem; padding: 0; list-style: none; }
.field-traits li { padding: 0.22rem 0.48rem; border: 1px solid var(--line); border-radius: 999px; color: #d9d1e8; font-size: 0.64rem; font-weight: 800; }
.field-sighting-copy > p:not(.field-story-label):not(.field-species) { color: var(--muted); font-size: 0.91rem; }
.field-sighting-copy blockquote { margin: 1.2rem 0 0; padding: 0.9rem 1rem; border-left: 3px solid var(--gold); background: rgba(255,213,106,0.06); color: #e9e0c8; font-size: 0.82rem; }
.field-guide-finale { border-top: 1px solid var(--line); }
.field-finale-card { display: grid; gap: 1rem; align-content: center; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid rgba(118,227,207,0.3); border-radius: 1.7rem; background: linear-gradient(145deg, rgba(118,227,207,0.1), rgba(167,104,255,0.08)); }
.field-finale-card p { margin: 0; font-size: 1.2rem; font-weight: 750; }
.field-text-link { color: var(--muted); font-weight: 800; text-align: center; }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { padding: 2.5rem 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem 1.3rem; margin: 1.5rem 0; }
.footer-links a { color: var(--muted); }
.footer-inner small { color: #9188a3; }

.analytics-choice {
    position: fixed;
    z-index: 30;
    right: 1rem;
    bottom: 1rem;
    width: min(390px, calc(100% - 2rem));
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: #18122b;
    box-shadow: 0 1.2rem 4rem rgba(0,0,0,0.45);
}

.analytics-choice p { margin-bottom: 0.8rem; color: var(--muted); font-size: 0.9rem; }
.analytics-actions { display: flex; gap: 0.55rem; }
.analytics-actions button {
    min-height: 42px;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--cream);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}
.analytics-actions button:first-child { background: var(--mint); color: #071411; }

@media (max-width: 860px) {
    .help-hero-grid { grid-template-columns: 1fr; }
    .help-signal { transform: none; }
    .help-control-grid, .help-fix-list { grid-template-columns: 1fr; }
    .help-control-grid .card, .help-fix-list li { min-height: 0; }
    .help-fix-list li > span { margin-bottom: 1.5rem; }
    .site-nav a:not(.button) { display: none; }
    .hero-grid,
    .split,
    .proof-frame,
    .release-detail-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 620px; transform: none; }
    .release-detail-visual { max-width: 620px; }
    .truth-grid { grid-template-columns: repeat(2, 1fr); }
    .truth-grid div:nth-child(2) { border-right: 0; }
    .truth-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .game-fit-heading { grid-template-columns: 1fr; gap: 0.75rem; }
    .game-fit-heading .kicker { grid-column: auto; margin-bottom: 0; }
    .game-fit-device { grid-template-columns: 1fr; }
    .game-fit-device .text-link { white-space: normal; }
    .story-path { grid-template-columns: 1fr; gap: 0.7rem; }
    .story-path li { min-height: auto; border: 1px solid var(--line); border-radius: 1.2rem !important; }
    .story-path li > span { margin-bottom: 1.3rem; }
    .realm-story-grid { grid-template-columns: repeat(3, 1fr); }
    .playable-journey { grid-template-columns: repeat(2, 1fr); }
    .playable-proof-grid { grid-template-columns: repeat(2, 1fr); }
    .playable-video-screen { min-height: auto; }
    .playable-share-card { grid-template-columns: 1fr; }
    .studio-first-minute-shell { grid-template-columns: 1fr; }
    .playable-share-actions { max-width: 440px; }
    .play-intent-heading { grid-template-columns: 1fr; gap: 1rem; }
    .play-intent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .play-intent-answer { grid-template-columns: 1fr; }
    .play-intent-mission { padding-top: 1.25rem; padding-left: 0; border-top: 1px solid rgba(118, 227, 207, 0.32); border-left: 0; }
    .play-intent-answer-actions { width: min(100%, 440px); }
    .install-game-shell { grid-template-columns: 1fr; }
    .install-game-action { width: min(100%, 440px); }
    .hatch-challenge-shell { grid-template-columns: 1fr; }
    .hatch-challenge-actions { max-width: 520px; }
    .hatch-ingredient-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .signal-entry { grid-template-columns: 1fr; }
    .signal-entry::before,
    .signal-timeline::before { display: none; }
    .creature-showcase-hero .hero-grid { grid-template-columns: 1fr; }
    .creature-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .field-route { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .field-route a:nth-child(3) { border-right: 0; }
    .field-route a:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
    .field-realm-context { grid-template-columns: 1fr; }
    .field-sighting-grid { grid-template-columns: 1fr; }
    .mission-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mission-steps li:nth-child(2),
    .mission-steps li:nth-child(4) { transform: none; }
    .educator-resource-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .header-inner,
    .section-inner,
    .footer-inner { width: min(calc(100% - 1.5rem), var(--max)); }
    .brand span { font-size: 0.78rem; }
    .site-nav .button { min-height: 44px; padding: 0.7rem 1rem; }
    .hero { padding-top: 3.5rem; }
    .hero-grid { gap: 2.1rem; }
    .card-grid { grid-template-columns: 1fr; }
    .truth-grid { grid-template-columns: 1fr; }
    .truth-grid div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .truth-grid div:last-child { border-bottom: 0; }
    .game-fit-grid { grid-template-columns: 1fr; }
    .realm-story-grid { grid-template-columns: repeat(2, 1fr); }
    .playable-journey,
    .playable-proof-grid { grid-template-columns: 1fr; }
    .play-intent-grid { grid-template-columns: 1fr; }
    .play-intent-direct { align-items: stretch; }
    .play-intent-direct .button,
    .play-intent-direct small { width: 100%; }
    .play-intent-direct .button { justify-content: center; }
    .play-intent-card { min-height: 230px; }
    .play-intent-card > span { margin-bottom: 2.3rem; }
    .play-intent-answer-actions { width: 100%; }
    .play-intent-answer .button { width: 100%; }
    .play-intent-skip { align-items: stretch; }
    .play-intent-skip > span,
    .play-intent-skip > a:not(.button) { width: 100%; }
    .play-intent-skip .button { width: 100%; }
    .hatch-challenge-actions .button { width: 100%; }
    .hatch-challenge-actions { grid-template-columns: 1fr; }
    .hatch-challenge-start { grid-column: auto; }
    .hatch-challenge-page .hatch-challenge-section { padding-block: 2.8rem; }
    .hatch-challenge-page .hatch-challenge-copy h1 { max-width: 100%; font-size: clamp(2.45rem, 11vw, 2.8rem); }
    .hatch-challenge-steps li,
    .hatch-challenge-steps li:nth-child(2) { margin-left: 0; }
    .hatch-ingredient-grid { grid-template-columns: 1fr; }
    .creature-showcase-grid { grid-template-columns: 1fr; }
    .creature-specimen { min-height: 0; }
    .creature-specimen-visual { min-height: 210px; }
    .field-boundary-card::after { display: none; }
    .field-route { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .field-route a,
    .field-route a:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .field-route a:nth-child(even) { border-right: 0; }
    .field-route a:nth-last-child(-n+2) { border-bottom: 0; }
    .field-realm-header { grid-template-columns: 1fr; gap: 0.8rem; }
    .field-realm-number { width: 110px; }
    .field-realm-context figure { grid-template-columns: 1fr; }
    .field-realm-context figure img { height: 300px; }
    .field-realm-context figcaption { width: auto; border-top: 1px solid var(--line); border-left: 0; writing-mode: initial; transform: none; }
    .field-sighting { grid-template-columns: 1fr; min-height: 0; }
    .field-sighting-visual { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
    .field-sighting-visual img { max-width: 180px; max-height: 190px; }
    .mission-steps { grid-template-columns: 1fr; }
    .mission-steps li { min-height: 0; }
    .mission-steps span { margin-bottom: 1.5rem; }
    .educator-resource-card { grid-template-columns: 1fr; min-height: 0; }
    .educator-resource-card > img { min-height: 0; max-height: 520px; object-fit: contain; }
    .educator-resource-card > .resource-signal-mark { min-height: 290px; }
    .concept-visual { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .button:hover,
    .button:focus-visible,
    .play-intent-card:hover,
    .play-intent-card:focus-visible { transform: none; }
}
