@font-face {
    font-family: "Source Serif 4";
    src: url("fonts/source-serif-4-regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif 4";
    src: url("fonts/source-serif-4-semibold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("fonts/open-sans-regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("fonts/open-sans-semibold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    color-scheme: dark;
    --night-950: #050a0f;
    --night-900: #071018;
    --night-850: #09131d;
    --night-800: #0b1722;
    --night-700: #112232;
    --ink: #eee9de;
    --ink-soft: #c5c7c2;
    --ink-muted: #8f999c;
    --gold: #c7a468;
    --gold-bright: #e2c587;
    --gold-deep: #80643c;
    --ice: #88afc3;
    --line: rgba(211, 222, 222, 0.13);
    --line-strong: rgba(199, 164, 104, 0.3);
    --serif: "Source Serif 4", Georgia, serif;
    --sans: "Open Sans", "Segoe UI", sans-serif;
    --header-height: 74px;
    --header-surface: linear-gradient(180deg, rgba(4, 9, 14, 0.99), rgba(6, 14, 21, 0.98));
    --public-hero-content-offset: 54px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    background: var(--night-950);
}

body {
    margin: 0;
    min-width: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 75% 5%, rgba(34, 71, 92, 0.16), transparent 32rem),
        var(--night-950);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: var(--night-950);
    background: var(--gold-bright);
}

a {
    color: inherit;
    text-decoration-color: rgba(199, 164, 104, 0.55);
    text-underline-offset: 0.22em;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    text-wrap: balance;
}

h1:focus {
    outline: none;
}

h1,
h2 {
    letter-spacing: -0.025em;
}

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 4px;
}

.page-width {
    width: min(1220px, calc(100% - 80px));
    margin-inline: auto;
}

.narrow-width {
    width: min(820px, calc(100% - 80px));
    margin-inline: auto;
}

.section-pad {
    padding-block: clamp(82px, 8vw, 120px);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 16px;
    transform: translateY(-150%);
    border: 1px solid var(--gold);
    color: var(--night-950);
    background: var(--gold-bright);
    font-weight: 600;
}

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

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--header-surface);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: grid;
    width: min(1420px, calc(100% - 56px));
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    justify-self: start;
    text-decoration: none;
}

.brand-logo {
    width: 208px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.42));
}

.brand-symbol {
    display: none;
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.42));
}

.brand-header {
    width: 215px;
    height: 100%;
}

.brand-footer {
    width: 240px;
    height: 78px;
}

.brand-footer .brand-logo {
    width: 240px;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.primary-nav a {
    position: relative;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    background: var(--gold);
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-actions .button {
    width: 154px;
    min-width: 154px;
    min-height: 40px;
    padding: 9px 15px;
    font-size: 10px;
}

.header-actions .discord-mark {
    width: 20px;
    height: 15px;
}

.header-cta {
    white-space: nowrap;
}

.mobile-menu {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 24px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    border-color: #d3b474;
    color: #11100c;
    background: linear-gradient(135deg, #e0c17e, #b88d4d);
    box-shadow: 0 12px 34px rgba(140, 99, 44, 0.18);
}

.button-gold:hover {
    background: linear-gradient(135deg, #ebd397, #c99d59);
    box-shadow: 0 16px 40px rgba(140, 99, 44, 0.3);
}

.button-ghost {
    border-color: rgba(226, 197, 135, 0.45);
    color: var(--ink);
    background: rgba(5, 10, 15, 0.58);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.button-ghost:hover {
    border-color: var(--gold-bright);
    background: rgba(12, 24, 34, 0.84);
}

.button-discord {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: #5865f2;
    box-shadow: 0 12px 34px rgba(50, 58, 168, 0.24);
}

.button-discord:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: #6571f5;
    box-shadow: 0 16px 38px rgba(50, 58, 168, 0.34);
}

.discord-button {
    width: 138px;
    min-width: 128px;
    flex: 0 0 auto;
    gap: 12px;
    padding-inline: 18px;
    white-space: nowrap;
}

.discord-mark {
    width: 24px;
    height: 18px;
    flex: 0 0 auto;
}

.button-small {
    min-height: 39px;
    padding: 9px 17px;
    font-size: 10px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span {
    color: var(--gold);
    font-size: 16px;
    transition: transform 180ms ease;
}

.text-link:hover {
    color: var(--ink);
}

.text-link:hover span {
    transform: translateX(3px);
}

.eyebrow,
.section-kicker {
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.eyebrow span {
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.section-kicker {
    margin-bottom: 22px;
}

.landing-hero {
    position: relative;
    min-height: clamp(610px, 72vh, 700px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(5, 10, 15, 0.96) 0%, rgba(5, 10, 15, 0.75) 48%, rgba(5, 10, 15, 0.14) 100%),
        linear-gradient(180deg, #071018 0%, #061019 66%, #071018 100%);
}

.landing-hero::after {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    height: 140px;
    content: "";
    pointer-events: none;
    background: linear-gradient(0deg, #071018 2%, transparent 100%);
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    opacity: 0.9;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 34%, rgba(82, 132, 157, 0.24), transparent 25%),
        radial-gradient(circle at 84% 22%, rgba(202, 160, 82, 0.13), transparent 19%),
        linear-gradient(115deg, transparent 62%, rgba(109, 163, 186, 0.07));
}

.hero-grid {
    position: relative;
    z-index: 4;
    display: grid;
    min-height: clamp(610px, 72vh, 700px);
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    align-items: start;
    gap: 42px;
    padding-top: var(--header-height);
}

.hero-copy {
    position: relative;
    z-index: 4;
    max-width: 650px;
    padding: var(--public-hero-content-offset) 0 54px;
    animation: hero-rise 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy h1 {
    max-width: 650px;
    margin-bottom: 26px;
    font-size: clamp(48px, 4.2vw, 64px);
    line-height: 0.98;
}

.hero-copy h1 em {
    color: var(--gold-bright);
    font-style: normal;
    text-shadow: 0 0 38px rgba(199, 164, 104, 0.13);
}

.hero-lead {
    max-width: 580px;
    margin-bottom: 32px;
    color: var(--ink-soft);
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 24px;
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--ink-muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.availability span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #719b89;
    box-shadow: 0 0 10px rgba(113, 155, 137, 0.7);
}

.hero-art {
    position: absolute;
    top: var(--header-height);
    right: -3vw;
    bottom: 0;
    width: min(55vw, 760px);
    margin: 0;
    overflow: hidden;
    animation: hero-fade 1200ms 120ms ease both;
    mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 88%, transparent 100%), linear-gradient(to bottom, #000 0%, #000 79%, transparent 100%);
    mask-composite: intersect;
}

.hero-art::before {
    position: absolute;
    inset: 6% 8% 20%;
    z-index: -1;
    content: "";
    filter: blur(35px);
    background: radial-gradient(ellipse, rgba(82, 145, 174, 0.25), transparent 65%);
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
    opacity: 0.79;
    filter: saturate(0.82) contrast(1.04);
}

.how-section {
    border-block: 1px solid var(--line);
    background: var(--night-850);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 75px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(42px, 4.5vw, 62px);
    line-height: 1.08;
}

.how-section .section-heading h2 {
    font-size: clamp(38px, 3.6vw, 52px);
}

.section-heading > p {
    max-width: 390px;
    margin: 0 0 7px;
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.8;
}

.story-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    border-block: 1px solid var(--line);
    list-style: none;
}

.story-steps li {
    position: relative;
    min-height: 220px;
    padding: 32px 42px 34px;
    border-right: 1px solid var(--line);
}

.story-steps li:last-child {
    border-right: 0;
}

.step-number {
    display: block;
    margin-bottom: 42px;
    color: var(--gold-deep);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.story-steps h3 {
    margin-bottom: 15px;
    font-size: 27px;
}

.story-steps p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.75;
}

.showcase {
    background:
        radial-gradient(circle at 0% 50%, rgba(44, 83, 101, 0.12), transparent 34rem),
        var(--night-950);
}

.showcase-row {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.4fr);
    align-items: center;
    gap: clamp(50px, 7vw, 105px);
    padding-block: clamp(58px, 6vw, 88px);
    border-bottom: 1px solid var(--line);
}

.showcase-row:first-child {
    padding-top: 0;
}

.showcase-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.showcase-row-reverse {
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.9fr);
}

.showcase-row-reverse .showcase-copy {
    order: 2;
}

.showcase-row-reverse .app-frame {
    order: 1;
}

.showcase-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(38px, 3.7vw, 50px);
    line-height: 1.08;
}

.showcase-copy > p:not(.section-kicker) {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.85;
}

.showcase-copy .resolution-note {
    margin-top: 26px;
    padding: 18px 0 18px 20px;
    border-left: 1px solid var(--gold-deep);
    color: var(--ink-muted);
    background: linear-gradient(90deg, rgba(199, 164, 104, 0.06), transparent 80%);
    font-size: 13px;
    line-height: 1.75;
}

.resolution-note strong {
    color: var(--ink);
    font-weight: 600;
}

.feature-list {
    margin: 28px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.feature-list li {
    position: relative;
    padding: 8px 0 8px 22px;
    color: var(--ink-muted);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.feature-list li::before {
    position: absolute;
    top: 17px;
    left: 0;
    width: 9px;
    height: 1px;
    content: "";
    background: var(--gold);
}

.showcase-detail-link {
    margin-top: 22px;
}

.app-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 176, 127, 0.23);
    border-radius: 7px;
    background: #0a1119;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.46),
        0 0 0 8px rgba(121, 156, 172, 0.025);
}

.app-frame::after {
    position: absolute;
    inset: 31px 0 auto;
    height: 40%;
    content: "";
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 28%);
}

.frame-bar {
    display: flex;
    height: 31px;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: #091019;
}

.frame-bar span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(213, 222, 220, 0.28);
}

.frame-bar span:first-child {
    background: rgba(199, 164, 104, 0.72);
}

.frame-bar em {
    margin-left: auto;
    color: rgba(194, 201, 199, 0.45);
    font-size: 8px;
    font-style: normal;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.app-frame img {
    width: 100%;
    height: auto;
}
.device-showcase {
    min-width: 0;
    margin: 0;
}

.device-showcase__stage {
    position: relative;
    aspect-ratio: 16 / 10;
}

.device-showcase__device {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    background: transparent;
    transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.device-showcase__device:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 7px;
}

.device-showcase__device--desktop {
    z-index: 1;
    top: 3%;
    left: 0;
    width: 91%;
    opacity: 0.7;
    filter: saturate(0.82) brightness(0.77);
    transform: translateY(1.5%) scale(0.985);
    transform-origin: left center;
}

.device-showcase__desktop-frame {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(200, 176, 127, 0.26);
    border-radius: 10px;
    background: #071019;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5), 0 0 0 7px rgba(121, 156, 172, 0.025);
}

.device-showcase__desktop-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.device-showcase__device--mobile {
    z-index: 2;
    right: 1%;
    bottom: 0;
    width: 24%;
    transform-origin: right bottom;
}

.device-showcase__phone-frame {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 6px;
    border: 1px solid rgba(224, 200, 151, 0.42);
    border-radius: 30px;
    background: #03070b;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.62), 0 0 0 2px rgba(255, 255, 255, 0.04) inset;
}

.device-showcase__phone-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    aspect-ratio: 43 / 90;
    object-fit: cover;
}

.device-showcase__phone-camera {
    position: absolute;
    z-index: 2;
    top: 11px;
    left: 50%;
    width: 31%;
    height: 9px;
    border-radius: 999px;
    background: rgba(2, 5, 8, 0.94);
    transform: translateX(-50%);
}

.device-showcase[data-active-device="desktop"] .device-showcase__device--desktop {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: none;
}

.device-showcase[data-active-device="desktop"] .device-showcase__device--mobile {
    z-index: 1;
    opacity: 0.72;
    filter: saturate(0.8) brightness(0.74);
    transform: translate(4%, 2%) scale(0.91);
}

.device-showcase__device:hover {
    z-index: 4;
    opacity: 1;
    filter: none;
    transform: translateY(-1.5%) scale(1.01);
}

.device-showcase__controls {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}

.device-showcase__controls button {
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font: 700 11px/1 var(--sans);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    background: rgba(10, 19, 28, 0.82);
}

.device-showcase__controls button[aria-pressed="true"] {
    border-color: rgba(199, 164, 104, 0.72);
    color: var(--gold-bright);
    background: rgba(199, 164, 104, 0.12);
}

.device-showcase figcaption {
    max-width: 610px;
    margin: 13px auto 0;
    color: var(--ink-muted);
    font: 500 12px/1.6 var(--sans);
    letter-spacing: 0.03em;
    text-align: center;
}

.rhythm-section {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(199, 164, 104, 0.055), transparent 36%),
        var(--night-800);
}

.rhythm-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(58px, 9vw, 130px);
}

.rhythm-heading h2 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(42px, 4.4vw, 59px);
    line-height: 1.06;
}

.rhythm-copy > p {
    max-width: 660px;
    margin-bottom: 38px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.85;
}

.rhythm-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.rhythm-options article {
    padding: 28px 24px 30px 0;
}

.rhythm-options article + article {
    padding-left: 24px;
    border-left: 1px solid var(--line);
}

.rhythm-options h3 {
    margin-bottom: 12px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
}

.rhythm-options p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.7;
}

.live-preview {
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 15% 50%, rgba(86, 143, 169, 0.12), transparent 26rem),
        var(--night-850);
}

.live-preview-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: clamp(60px, 10vw, 150px);
}

.live-preview h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(42px, 4.7vw, 62px);
    line-height: 1.06;
}

.live-preview-inner > p {
    margin: 0 0 7px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.85;
}

.pillars {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(125deg, rgba(42, 77, 95, 0.1), transparent 35%),
        var(--night-800);
}

.compact-heading {
    max-width: 850px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.pillar-grid article {
    padding: 48px 42px 50px;
    border-right: 1px solid var(--line);
}

.pillar-grid article:last-child {
    border-right: 0;
}

.pillar-rune {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 35px;
    place-items: center;
    border: 1px solid var(--line-strong);
    color: var(--gold-bright);
    font-family: var(--serif);
    font-size: 15px;
    background: rgba(199, 164, 104, 0.04);
}

.pillar-grid h3 {
    margin-bottom: 18px;
    font-size: 25px;
}

.pillar-grid p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.8;
}

.credits-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(7, 16, 24, 0.99), rgba(11, 30, 42, 0.96)),
        var(--night-900);
}

.credits-glow {
    position: absolute;
    top: 5%;
    left: -12%;
    width: 44vw;
    height: 44vw;
    opacity: 0.25;
    filter: blur(30px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(105, 157, 179, 0.45), transparent 65%);
}

.credits-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: clamp(65px, 10vw, 150px);
}

.credits-copy h2 {
    margin-bottom: 30px;
    font-size: clamp(42px, 4.5vw, 62px);
    line-height: 1.06;
}

.credits-copy > p:not(.section-kicker) {
    color: var(--ink-soft);
    line-height: 1.85;
}

.credits-note {
    margin-top: 28px;
    padding: 20px 0 0 20px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--gold-deep);
    color: var(--ink-muted) !important;
    font-size: 12px;
}

.credit-principles {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.credit-principles li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 30px 6px;
    border-bottom: 1px solid var(--line);
}

.credit-principles li > span {
    color: var(--gold-deep);
    font-family: var(--serif);
    font-size: 13px;
}

.credit-principles strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
}

.credit-principles p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.7;
}

.closing-cta {
    position: relative;
    display: grid;
    min-height: 620px;
    place-items: center;
    overflow: hidden;
    text-align: center;
}

.closing-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
    filter: saturate(0.72) contrast(1.08);
}

.closing-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--night-900), transparent 26%, rgba(5, 10, 15, 0.18) 55%, var(--night-950) 100%),
        radial-gradient(circle at 50% 49%, rgba(7, 16, 24, 0.12), rgba(5, 10, 15, 0.76) 72%);
}

.closing-content {
    position: relative;
    z-index: 2;
    padding-block: 110px;
}

.closing-content h2 {
    margin-bottom: 25px;
    font-size: clamp(46px, 5vw, 64px);
    line-height: 1.04;
    text-shadow: 0 6px 38px rgba(0, 0, 0, 0.7);
}

.closing-content > p:not(.section-kicker) {
    max-width: 630px;
    margin: 0 auto 36px;
    color: #d2d2cb;
    font-size: 17px;
    line-height: 1.8;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
}

.closing-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.public-page-hero {
    position: relative;
    height: 420px;
    min-height: 420px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--night-950);
}

.public-page-hero-art,
.public-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.public-page-hero-art {
    object-fit: cover;
    object-position: 68% 52%;
    filter: saturate(0.82) contrast(1.07);
}

.public-page-hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 8, 13, 0.98) 4%, rgba(3, 9, 15, 0.9) 36%, rgba(4, 11, 17, 0.3) 70%, rgba(3, 8, 13, 0.58)),
        linear-gradient(0deg, rgba(4, 9, 14, 0.78), transparent 56%);
}

.public-page-hero::after {
    position: absolute;
    z-index: 1;
    inset: auto 0 0;
    height: 150px;
    content: "";
    pointer-events: none;
    background: linear-gradient(0deg, var(--night-950), transparent);
}

.public-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: none;
    height: 100%;
    padding-top: calc(var(--header-height) + var(--public-hero-content-offset));
    padding-bottom: 32px;
}

.public-page-hero h1 {
    max-width: 830px;
    margin-bottom: 20px;
    font-size: clamp(40px, 4.5vw, 56px);
    line-height: 1.02;
}

.public-page-hero-inner > p:not(.eyebrow) {
    max-width: 700px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
}

.download-section {
    background:
        radial-gradient(circle at 50% 0, rgba(44, 83, 101, 0.13), transparent 34rem),
        var(--night-950);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    padding: clamp(30px, 3.2vw, 46px);
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%),
        var(--night-850);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.platform-label {
    min-height: 34px;
    margin-bottom: 30px;
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.download-card h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1.08;
}

.download-card > p:not(.platform-label) {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.8;
}

.download-card-action {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 38px;
    text-align: center;
}

.download-card-action .button {
    width: 100%;
    padding-inline: 16px;
    text-align: center;
}

.download-card-action small {
    overflow-wrap: anywhere;
    color: var(--ink-muted);
    font-size: 10px;
    line-height: 1.6;
}

.download-unavailable {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    color: var(--ink-muted);
    background: rgba(255, 255, 255, 0.025);
    font-size: 11px;
    line-height: 1.45;
}

.download-unavailable strong {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 600;
}

.alpha-notice {
    padding-block: 90px;
    border-block: 1px solid var(--line);
    background: var(--night-800);
}

.alpha-notice-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

.alpha-notice h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: 1.08;
}

.alpha-notice-inner > div:last-child p {
    margin-bottom: 24px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.site-footer {
    padding-top: 80px;
    border-top: 1px solid var(--line);
    background: #05090d;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr 0.8fr;
    gap: 80px;
    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 390px;
    margin: 25px 0 0;
    color: var(--ink-muted);
    font-size: 13px;
}

.footer-links,
.footer-community {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-links > span,
.footer-community > span {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-links a,
.footer-community a:not(.discord-button) {
    color: var(--ink-soft);
    font-size: 12px;
    text-decoration: none;
}

.footer-links a:hover,
.footer-community a:not(.discord-button):hover {
    color: var(--gold-bright);
}

.footer-community p {
    margin-top: 10px;
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.7;
}

.footer-discord {
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 22px;
    border-top: 1px solid var(--line);
    color: #697477;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.message-page {
    min-height: calc(100vh - 320px);
    padding-top: 170px;
    background:
        radial-gradient(circle at 50% 0, rgba(54, 94, 113, 0.15), transparent 30rem),
        var(--night-900);
}

.message-card h1 {
    margin-bottom: 30px;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.04;
}

.message-page {
    display: grid;
    min-height: 78vh;
    place-items: center;
    padding-inline: 30px;
    text-align: center;
}

.message-card {
    max-width: 680px;
}

.message-card > p:not(.section-kicker) {
    color: var(--ink-muted);
    font-size: 17px;
}

.message-rune {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 42px;
    place-items: center;
    transform: rotate(45deg);
    border: 1px solid var(--line-strong);
    color: var(--gold-bright);
    font-family: var(--serif);
}

.message-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 34px;
}

.message-card > .button {
    margin-top: 28px;
}

#blazor-error-ui {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: none;
    max-width: 720px;
    margin-inline: auto;
    padding: 16px 58px 16px 20px;
    border: 1px solid #8f6543;
    color: var(--ink);
    background: #281b17;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
    font-size: 13px;
}

#blazor-error-ui .reload {
    margin-left: 8px;
    color: var(--gold-bright);
}

#blazor-error-ui .dismiss {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    color: var(--ink-soft);
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.works-opening {
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 18% 50%, rgba(91, 144, 168, 0.12), transparent 28rem),
        var(--night-950);
}

.works-opening-grid,
.works-credits-grid,
.help-safety-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.works-opening h2,
.works-credits h2,
.help-safety h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(42px, 4.6vw, 62px);
    line-height: 1.06;
}

.works-opening-grid > p,
.works-credits-grid > div:last-child,
.help-safety-copy {
    margin: 5px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.9;
}

.help-safety-copy > p {
    margin: 0 0 24px;
}

.scene-cycle {
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 75% 0, rgba(54, 101, 125, 0.13), transparent 30rem),
        var(--night-800);
}

.scene-cycle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.scene-cycle-grid article {
    min-height: 310px;
    padding: 40px 32px;
    border-right: 1px solid var(--line);
}

.scene-cycle-grid article:last-child {
    border-right: 0;
}

.cycle-label {
    margin-bottom: 48px;
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scene-cycle-grid h3 {
    margin-bottom: 18px;
    font-size: 27px;
    line-height: 1.15;
}

.scene-cycle-grid article > p:last-child {
    margin: 0;
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.8;
}

.works-feature {
    background: var(--night-950);
}

.works-feature-grid,
.works-return-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.74fr);
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
}

.works-feature-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(40px, 4.4vw, 58px);
    line-height: 1.07;
}

.works-feature-copy > p:not(.section-kicker) {
    color: var(--ink-soft);
    line-height: 1.86;
}

.consequence-section {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(125deg, rgba(43, 85, 105, 0.11), transparent 34%),
        var(--night-800);
}

.consequence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.consequence-grid article {
    min-height: 240px;
    padding: 38px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.consequence-grid h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.consequence-grid p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.8;
}

.works-return {
    background: var(--night-950);
}

.works-return-grid {
    grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1.1fr);
}

.works-credits {
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 85% 40%, rgba(92, 145, 168, 0.12), transparent 28rem),
        var(--night-800);
}

.works-credits-grid .text-link {
    margin-top: 14px;
}

.page-cta {
    text-align: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(73, 127, 151, 0.17), transparent 28rem),
        var(--night-950);
}

.page-cta-inner h2 {
    margin-bottom: 24px;
    font-size: clamp(45px, 5vw, 64px);
    line-height: 1.04;
}

.page-cta-inner > p:not(.section-kicker) {
    max-width: 620px;
    margin: 0 auto 36px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.help-index {
    background:
        radial-gradient(circle at 82% 4%, rgba(62, 111, 135, 0.13), transparent 30rem),
        var(--night-950);
}

.news-archive-section,
.news-article-section {
    background:
        radial-gradient(circle at 82% 0, rgba(60, 112, 137, 0.12), transparent 31rem),
        var(--night-950);
}

.announcement-card {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: clamp(30px, 3.2vw, 44px);
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 45%),
        var(--night-850);
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.2);
}

.announcement-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    content: "";
    background: transparent;
}

.announcement-card-important::before {
    background: var(--gold-bright);
    box-shadow: 0 0 20px rgba(226, 197, 135, 0.32);
}

.announcement-card-meta,
.announcement-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.announcement-card-meta {
    margin-bottom: 26px;
}

.announcement-urgent {
    padding: 4px 8px;
    border: 1px solid rgba(226, 197, 135, 0.42);
    color: var(--gold-bright);
    background: rgba(199, 164, 104, 0.08);
}

.announcement-card h3 {
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    font-size: clamp(29px, 2.8vw, 39px);
    line-height: 1.1;
}

.announcement-card h3 a {
    text-decoration: none;
}

.announcement-card h3 a:hover {
    color: var(--gold-bright);
}

.announcement-card-excerpt {
    margin-bottom: 30px;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.82;
}

.announcement-card .text-link {
    margin-top: auto;
}

.news-state-card {
    border-block: 1px solid var(--line);
}

.news-state-card > p:not(.section-kicker) {
    margin: 0;
    color: var(--ink-muted);
}

.news-archive-inner {
    max-width: 1040px;
}

.news-featured {
    position: relative;
    min-height: 430px;
    padding: clamp(46px, 6vw, 72px);
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 92% 12%, rgba(27, 132, 180, 0.18), transparent 25rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 52%),
        var(--night-850);
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.26);
}

.news-featured::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--gold-bright), rgba(226, 197, 135, 0.05) 72%);
}

.news-featured-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.news-featured .section-kicker {
    margin-bottom: 24px;
}

.news-featured h2 {
    max-width: 760px;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
    font-size: clamp(45px, 5.5vw, 66px);
    line-height: 1.03;
}

.news-featured h2 a {
    text-decoration: none;
}

.news-featured h2 a:hover {
    color: var(--gold-bright);
}

.news-featured-excerpt {
    max-width: 690px;
    margin-bottom: 32px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.8;
}

.news-featured-wordmark {
    position: absolute;
    right: -90px;
    bottom: 24px;
    width: 520px;
    height: auto;
    pointer-events: none;
    opacity: 0.035;
}

.news-featured + .news-archive-heading {
    margin-top: 82px;
}

.news-archive-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.news-archive-heading h2,
.news-state-card h2 {
    margin: 0;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.06;
}

.news-archive-heading > p {
    margin: 0 0 6px;
    color: var(--ink-muted);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.news-archive-list {
    display: grid;
    gap: 18px;
}

.news-state-card {
    max-width: 820px;
    margin-inline: auto;
    padding-block: 55px;
    text-align: center;
}

.news-state-card h2 {
    margin-bottom: 22px;
}

.news-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.news-pagination > div:last-child {
    text-align: right;
}

.news-pagination > span {
    color: var(--ink-muted);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.announcement-detail-meta {
    margin-bottom: 20px;
}

.news-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
    justify-content: space-between;
    gap: clamp(60px, 9vw, 120px);
}

.news-article-content {
    overflow-wrap: anywhere;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.95;
}

.news-article-content p {
    margin: 0;
    white-space: pre-line;
}

.news-article-aside {
    align-self: start;
    padding: 30px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.news-article-aside > p:not(.section-kicker) {
    margin-bottom: 25px;
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.75;
}

.help-heading > p {
    max-width: 430px;
}

.help-groups {
    border-top: 1px solid var(--line);
}

.help-group {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 45px;
    padding-block: 34px;
    border-bottom: 1px solid var(--line);
}

.help-group > h3 {
    margin: 8px 0 0;
    color: var(--gold-bright);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.help-article-list {
    display: grid;
    gap: 12px;
}

.help-card {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.help-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.045);
}

.help-card strong,
.help-card small {
    display: block;
}

.help-card strong {
    margin-bottom: 7px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
}

.help-card small {
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.65;
}

.help-card-arrow {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 20px;
}

.help-safety {
    padding-block: 90px;
    border-block: 1px solid var(--line);
    background: var(--night-800);
}

.help-safety h2 {
    font-size: clamp(36px, 4vw, 50px);
}

.public-article-page {
    min-height: calc(100vh - 320px);
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: clamp(82px, 8vw, 120px);
}

.public-article-header {
    max-width: 780px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.public-article-header .section-kicker {
    margin-bottom: 18px;
}

.public-article-header h1 {
    margin-bottom: 14px;
    overflow-wrap: anywhere;
    font-size: clamp(40px, 4.6vw, 58px);
    line-height: 1.03;
}

.public-article-description {
    max-width: 690px;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
}

.article-back {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--ink-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-back:hover {
    color: var(--gold-bright);
}

.help-article-section {
    background: var(--night-950);
}

.help-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
    justify-content: space-between;
    gap: clamp(70px, 10vw, 150px);
}

.help-article-main {
    min-width: 0;
}

.help-article-content {
    overflow-wrap: anywhere;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.9;
}

.help-article-content > :first-child {
    margin-top: 0;
}

.help-article-content h2 {
    margin: 52px 0 17px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 31px;
    line-height: 1.15;
}

.help-article-content h3 {
    margin: 38px 0 14px;
    color: var(--ink);
    font-size: 24px;
}

.help-article-content a {
    color: var(--gold-bright);
}

.help-article-content li + li {
    margin-top: 10px;
}

.help-article-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 58px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.help-article-navigation-link {
    display: flex;
    min-height: 118px;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.help-article-navigation-link:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.045);
}

.help-article-navigation-link small {
    color: var(--gold-bright);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.help-article-navigation-link strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}

.help-article-navigation-next {
    grid-column: 2;
    text-align: right;
}

.help-article-aside {
    align-self: start;
    padding: 30px;
    border: 1px solid var(--line);
    background: var(--night-850);
}

.help-article-aside > p:not(.section-kicker) {
    margin-bottom: 24px;
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.75;
}

.help-article-aside .text-link {
    display: flex;
    width: fit-content;
    margin-top: 24px;
    font-size: 10px;
}

.button-platform {
    justify-content: flex-start;
    gap: 16px;
    color: #fff;
    background: #111820;
    border-color: rgba(255, 255, 255, 0.23);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.button-platform:hover {
    border-color: rgba(255, 255, 255, 0.46);
    background: #18232d;
}

.windows-mark {
    display: grid;
    width: 24px;
    height: 24px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    flex: 0 0 auto;
}

.windows-mark i {
    background: #61b7ed;
}

.browser-mark {
    position: relative;
    display: block;
    width: 27px;
    height: 22px;
    flex: 0 0 auto;
    border: 2px solid var(--ice);
    border-radius: 3px;
}

.browser-mark::before {
    position: absolute;
    top: 4px;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--ice);
}

.browser-mark::after {
    position: absolute;
    top: 1px;
    left: 3px;
    width: 2px;
    height: 2px;
    content: "";
    border-radius: 50%;
    background: var(--ice);
    box-shadow: 4px 0 var(--ice), 8px 0 var(--ice);
}

.google-play-link {
    display: inline-block;
    border-radius: 8px;
    transition: transform 180ms ease, filter 180ms ease;
}

.google-play-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.google-play-link img {
    width: 210px;
    height: auto;
}

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade {
    from { opacity: 0; transform: scale(1.025); }
    to { opacity: 1; transform: scale(1); }
}

@media (min-width: 701px) and (max-width: 1100px) {
    .page-width {
        width: min(100% - 48px, 980px);
    }

    .narrow-width {
        width: min(100% - 48px, 760px);
    }

    .primary-nav {
        gap: 14px;
    }

    .primary-nav a {
        font-size: 10px;
        letter-spacing: 0.07em;
    }

    .header-inner {
        width: min(100% - 40px, 1040px);
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    }

    .brand-logo {
        width: 174px;
    }

    .brand-header {
        width: 180px;
    }

    .header-cta {
        padding-inline: 12px;
    }

    .header-actions {
        gap: 6px;
    }

    .landing-hero {
        min-height: 660px;
    }

    .hero-grid {
        min-height: 660px;
        grid-template-columns: 1fr 0.7fr;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 6.5vw, 64px);
    }

    .hero-actions {
        gap: 16px;
    }

    .hero-actions .button {
        gap: 12px;
        padding-inline: 18px;
        white-space: nowrap;
    }

    .hero-art {
        right: -14vw;
        width: 67vw;
    }

    .story-steps li {
        min-height: 240px;
        padding-inline: 28px;
    }

    .showcase-row,
    .showcase-row-reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showcase-row-reverse .showcase-copy,
    .showcase-row-reverse .app-frame {
        order: initial;
    }

    .showcase-copy {
        max-width: 650px;
    }

    .rhythm-layout,
    .live-preview-inner,
    .alpha-notice-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .rhythm-copy > p,
    .live-preview-inner > p {
        max-width: 720px;
    }

    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-card:last-child {
        min-height: 390px;
        grid-column: 1 / -1;
    }

    .pillar-grid article {
        padding-inline: 28px;
    }

    .credits-grid {
        gap: 60px;
    }

    .footer-main {
        gap: 45px;
    }

    .works-opening-grid,
    .works-credits-grid,
    .help-safety-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .scene-cycle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scene-cycle-grid article:nth-child(2n) {
        border-right: 0;
    }

    .scene-cycle-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .works-feature-grid,
    .works-return-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .works-feature-copy {
        max-width: 720px;
    }

    .help-group {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 30px;
    }

    .help-article-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .news-featured {
        min-height: 390px;
        padding: 52px;
    }

    .news-article-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .news-article-aside {
        max-width: 520px;
    }

    .help-article-aside {
        max-width: 520px;
    }
}

@media (max-width: 960px) {
    .header-inner {
        display: flex;
        width: calc(100% - 40px);
        justify-content: flex-start;
        gap: 10px;
    }

    .brand-header {
        margin-right: auto;
    }

    .primary-nav {
        display: none;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu {
        position: relative;
        display: block;
    }

    .mobile-menu > summary {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
        padding: 8px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-menu > summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu > summary span {
        display: block;
        width: 23px;
        height: 1px;
        background: var(--ink-soft);
    }

    .mobile-menu > summary span:nth-child(2) {
        width: 17px;
    }

    .mobile-menu nav {
        position: absolute;
        top: 48px;
        right: 0;
        display: flex;
        width: min(300px, calc(100vw - 40px));
        flex-direction: column;
        padding: 12px;
        border: 1px solid var(--line-strong);
        background: rgba(7, 16, 24, 0.98);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    }

    .mobile-menu nav > a {
        min-height: 0;
        justify-content: flex-start;
        padding: 13px 12px;
        border: 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink-soft);
        background: transparent;
        box-shadow: none;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-decoration: none;
        text-transform: uppercase;
        transform: none;
    }

    .mobile-menu nav > a:hover {
        color: var(--ink);
        background: rgba(255, 255, 255, 0.035);
        transform: none;
    }

    .mobile-menu nav > a.is-active {
        color: var(--ink);
        background: rgba(255, 255, 255, 0.035);
        box-shadow: inset 2px 0 var(--gold);
    }

    .mobile-menu nav > .mobile-discord {
        width: 100%;
        min-height: 52px;
        flex-basis: auto;
        justify-content: center;
        gap: 12px;
        margin-top: 9px;
        padding: 13px 18px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #fff;
        background: #5865f2;
        font-size: 13px;
    }

    .mobile-menu nav > .mobile-discord:hover {
        color: #fff;
        background: #6571f5;
    }

    .mobile-menu nav > .mobile-play {
        justify-content: center;
        margin-top: 8px;
        border: 1px solid var(--gold-deep);
        color: var(--gold-bright);
        text-align: center;
    }

    .mobile-account-action {
        margin-top: 8px;
    }
}

@media (max-width: 700px) {
    :root {
        --header-height: 64px;
        --public-hero-content-offset: 34px;
    }

    .page-width,
    .narrow-width {
        width: calc(100% - 40px);
    }

    .section-pad {
        padding-block: 88px;
    }

    .header-inner {
        display: flex;
        width: calc(100% - 32px);
        justify-content: flex-start;
        gap: 7px;
    }

    .brand-header {
        width: 44px;
        margin-right: auto;
    }

    .brand-header .brand-wordmark {
        display: none;
    }

    .brand-header .brand-symbol {
        display: block;
    }

    .primary-nav,
    .header-cta {
        display: none;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu {
        position: relative;
        display: block;
    }

    .mobile-menu > summary {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
        padding: 8px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-menu > summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu > summary span {
        display: block;
        width: 23px;
        height: 1px;
        background: var(--ink-soft);
    }

    .mobile-menu > summary span:nth-child(2) {
        width: 17px;
    }

    .mobile-menu nav {
        position: absolute;
        top: 48px;
        right: 0;
        display: flex;
        width: min(280px, calc(100vw - 40px));
        flex-direction: column;
        padding: 12px;
        border: 1px solid var(--line-strong);
        background: rgba(7, 16, 24, 0.98);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    }

    .mobile-menu nav > a {
        padding: 13px 12px;
        border-bottom: 1px solid var(--line);
        color: var(--ink-soft);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mobile-menu nav > .mobile-play {
        margin-top: 7px;
        border: 1px solid var(--gold-deep);
        color: var(--gold-bright);
        text-align: center;
    }

    .landing-hero {
        min-height: 820px;
    }

    .hero-grid {
        display: block;
        min-height: 820px;
        padding-top: var(--header-height);
    }

    .hero-copy {
        padding-top: var(--public-hero-content-offset);
        padding-bottom: 0;
    }

    .hero-copy h1 {
        margin-bottom: 25px;
        font-size: clamp(42px, 12vw, 52px);
        line-height: 1;
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .availability {
        line-height: 1.5;
    }

    .hero-art {
        top: 345px;
        right: -24%;
        bottom: 0;
        width: 128%;
        mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 88%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 16%, #000 80%, transparent 100%);
        mask-composite: intersect;
    }

    .hero-art img {
        object-position: center 42%;
        opacity: 0.54;
    }

    .section-heading {
        display: block;
        margin-bottom: 48px;
    }

    .section-heading h2,
    .credits-copy h2 {
        font-size: 39px;
    }

    .section-heading > p {
        margin-top: 24px;
    }

    .story-steps {
        grid-template-columns: 1fr;
    }

    .story-steps li {
        min-height: 0;
        padding: 32px 8px 38px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .story-steps li:last-child {
        border-bottom: 0;
    }

    .step-number {
        margin-bottom: 20px;
    }

    .showcase-row,
    .showcase-row-reverse {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 72px;
    }

    .showcase-row-reverse .showcase-copy,
    .showcase-row-reverse .app-frame {
        order: initial;
    }

    .showcase-copy h2 {
        font-size: 38px;
    }

    .showcase-copy .resolution-note {
        margin-top: 22px;
    }

    .app-frame {
        width: calc(100% + 20px);
        margin-left: -10px;
        border-radius: 4px;
    }

    .rhythm-layout,
    .live-preview-inner,
    .alpha-notice-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .rhythm-heading h2,
    .live-preview h2,
    .alpha-notice h2 {
        font-size: 39px;
    }

    .rhythm-copy > p,
    .live-preview-inner > p {
        font-size: 15px;
    }

    .rhythm-options {
        grid-template-columns: 1fr;
    }

    .rhythm-options article {
        padding: 24px 4px;
    }

    .rhythm-options article + article {
        padding-left: 4px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .public-page-hero-inner {
        padding-top: calc(var(--header-height) + var(--public-hero-content-offset));
        padding-bottom: 22px;
    }

    .public-page-hero .eyebrow {
        margin-bottom: 14px;
    }

    .public-page-hero h1 {
        margin-bottom: 12px;
        font-size: clamp(27px, 8.4vw, 34px);
    }

    .public-page-hero-inner > p:not(.eyebrow) {
        font-size: 14px;
        line-height: 1.5;
    }

    .public-page-hero-art {
        object-position: 59% 52%;
        transform: scale(1.04);
    }

    .public-page-hero-shade {
        background:
            linear-gradient(90deg, rgba(3, 8, 13, 0.96), rgba(3, 9, 15, 0.72) 72%, rgba(3, 8, 13, 0.5)),
            linear-gradient(0deg, rgba(4, 9, 14, 0.9), rgba(4, 9, 14, 0.08) 70%);
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card,
    .download-card:last-child {
        min-height: 420px;
        grid-column: auto;
    }

    .alpha-notice {
        padding-block: 76px;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .pillar-grid article {
        padding: 38px 8px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .pillar-grid article:last-child {
        border-bottom: 0;
    }

    .credits-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .credit-principles li {
        grid-template-columns: 35px 1fr;
        gap: 12px;
    }

    .closing-cta {
        min-height: 620px;
    }

    .closing-cta > img {
        object-position: 58% center;
    }

    .closing-content h2 {
        font-size: 49px;
    }

    .closing-content > p:not(.section-kicker) {
        font-size: 15px;
    }

    .closing-content .button {
        width: 100%;
    }

    .closing-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer {
        padding-top: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 55px;
    }

    .brand-footer {
        width: 210px;
        height: 66px;
    }

    .brand-footer .brand-logo {
        width: 210px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .message-page {
        padding-top: 135px;
    }

    .message-card h1 {
        font-size: 45px;
    }

    .message-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .message-actions .button,
    .closing-actions .button {
        width: 100%;
    }

    .hero-discord,
    .closing-discord {
        width: 100%;
    }

    .works-opening-grid,
    .works-credits-grid,
    .help-safety-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .works-opening h2,
    .works-credits h2,
    .help-safety h2 {
        font-size: 39px;
    }

    .works-opening-grid > p,
    .works-credits-grid > div:last-child,
    .help-safety-copy {
        font-size: 15px;
    }

    .scene-cycle-grid {
        grid-template-columns: 1fr;
    }

    .scene-cycle-grid article,
    .scene-cycle-grid article:nth-child(2n),
    .scene-cycle-grid article:nth-child(-n + 2) {
        min-height: 0;
        padding: 34px 8px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .scene-cycle-grid article:last-child {
        border-bottom: 0;
    }

    .cycle-label {
        margin-bottom: 20px;
    }

    .works-feature-grid,
    .works-return-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .works-feature-copy h2 {
        font-size: 38px;
    }

    .consequence-grid {
        grid-template-columns: 1fr;
    }

    .consequence-grid article {
        min-height: 0;
        padding: 32px 26px;
    }

    .page-cta-inner h2 {
        font-size: 45px;
    }

    .help-heading > p {
        margin-top: 24px;
    }

    .help-group {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-block: 28px;
    }

    .help-group > h3 {
        margin-bottom: 4px;
    }

    .help-card {
        min-height: 0;
        gap: 18px;
        padding: 20px;
    }

    .help-card strong {
        font-size: 20px;
    }

    .help-safety {
        padding-block: 72px;
    }

    .public-article-page {
        padding-top: calc(var(--header-height) + 28px);
        padding-bottom: 88px;
    }

    .public-article-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .article-back {
        margin-bottom: 20px;
    }

    .public-article-header h1 {
        margin-bottom: 14px;
        font-size: 34px;
    }

    .help-article-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .help-article-content {
        font-size: 15px;
    }

    .help-article-content h2 {
        font-size: 28px;
    }

    .help-article-navigation {
        grid-template-columns: 1fr;
    }

    .help-article-navigation-next {
        grid-column: 1;
        text-align: left;
    }

    .help-article-aside {
        padding: 25px;
    }

    .news-archive-heading {
        display: block;
    }

    .news-archive-heading > p {
        margin-top: 22px;
    }

    .news-featured {
        min-height: 0;
        padding: 35px 27px 39px;
    }

    .news-featured .section-kicker {
        margin-bottom: 21px;
    }

    .news-featured h2 {
        margin-bottom: 21px;
        font-size: 39px;
    }

    .news-featured-excerpt {
        margin-bottom: 27px;
        font-size: 15px;
    }

    .news-featured-wordmark {
        right: -55px;
        bottom: 12px;
        width: 300px;
    }

    .news-featured + .news-archive-heading {
        margin-top: 64px;
    }

    .announcement-card {
        min-height: 0;
        padding: 27px 24px;
    }

    .announcement-card h3 {
        font-size: 29px;
    }

    .announcement-card-meta {
        margin-bottom: 22px;
    }

    .news-pagination {
        grid-template-columns: 1fr 1fr;
    }

    .news-pagination > span {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
    }

    .news-pagination > div {
        grid-row: 2;
    }

    .news-pagination .button {
        width: 100%;
    }

    .news-article-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .news-article-content {
        font-size: 18px;
    }

    .news-article-aside {
        padding: 25px;
    }

    .google-play-link img {
        width: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.works-loadout {
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 16% 48%, rgba(199, 164, 104, 0.075), transparent 34%),
        linear-gradient(115deg, rgba(43, 85, 105, 0.08), transparent 45%),
        var(--night-800);
}

@media (max-width: 700px) {
    .device-showcase__stage {
        width: min(100%, 520px);
        margin-inline: auto;
        aspect-ratio: 4 / 5;
    }

    .device-showcase__device,
    .device-showcase__device--desktop,
    .device-showcase__device--mobile {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        z-index: 1;
        opacity: 0;
        filter: none;
        pointer-events: none;
        transform: translate(-50%, -50%) scale(0.94);
        transform-origin: center;
    }

    .device-showcase__device--desktop {
        width: 100%;
    }

    .device-showcase__device--mobile {
        width: 52%;
    }

    .device-showcase[data-active-device="desktop"] .device-showcase__device--desktop,
    .device-showcase[data-active-device="mobile"] .device-showcase__device--mobile {
        z-index: 2;
        opacity: 1;
        filter: none;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
    }

    .device-showcase[data-active-device="desktop"] .device-showcase__device--mobile,
    .device-showcase[data-active-device="mobile"] .device-showcase__device--desktop {
        z-index: 1;
        opacity: 0;
        filter: none;
        pointer-events: none;
        transform: translate(-50%, -50%) scale(0.94);
    }

    .device-showcase__controls {
        margin-top: 14px;
    }

    .device-showcase figcaption {
        max-width: 360px;
    }
}
