:root {
    --ink: #090909;
    --ink-soft: #11110f;
    --paper: #f0eee8;
    --paper-dim: #b8b5ad;
    --line: rgba(240, 238, 232, 0.16);
    --red: #ff4438;
    --cyan: #58c6cc;
    --gold: #d8a94c;
    --green: #6fd08c;
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--paper);
    font-family: "Space Grotesk", Arial, sans-serif;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

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

::selection {
    background: var(--red);
    color: var(--paper);
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 2000;
    height: 2px;
    background: transparent;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--red);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--header-h);
    padding: 0 28px;
    border-bottom: 1px solid transparent;
    transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
    border-color: var(--line);
    background: rgba(9, 9, 9, 0.92);
    backdrop-filter: blur(16px);
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: max-content;
    font-family: "Anton", sans-serif;
    font-size: 1.35rem;
    line-height: 1;
}

.wordmark strong {
    color: var(--red);
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
    color: var(--paper-dim);
    font-size: 0.78rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: var(--paper);
}

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

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(9, 9, 9, 0.72);
    color: var(--paper-dim);
    font-size: 0.72rem;
    font-weight: 600;
}

#ndot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

#ndot.online {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(111, 208, 140, 0.12);
}

#ndot.offline {
    background: var(--red);
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(9, 9, 9, 0.72);
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.icon-link:hover {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
}

.icon-link svg,
.command svg,
.text-link svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.menu-toggle {
    display: none;
}

.mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 990;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 36px;
    background: var(--ink);
    font-family: "Anton", sans-serif;
    font-size: 2.5rem;
}

.mobile-nav a {
    font-size: inherit;
    color: var(--paper);
}

.mobile-nav.open {
    display: flex;
}

.hero {
    --reveal-x: 72%;
    --reveal-y: 38%;
    position: relative;
    isolation: isolate;
    min-height: 88svh;
    overflow: hidden;
    background: #111;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
}

.hero-image-base {
    filter: saturate(0.5) contrast(1.12) brightness(0.68);
}

.hero-image-reveal {
    z-index: -3;
    clip-path: circle(150px at var(--reveal-x) var(--reveal-y));
    filter: saturate(1.1) contrast(1.1) brightness(0.78);
    transition: clip-path 90ms linear;
}

.hero-veil {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: rgba(5, 5, 5, 0.38);
}

.hero-grid {
    position: absolute;
    inset: 0 20%;
    z-index: -1;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    opacity: 0.7;
}

.hero-topline {
    position: absolute;
    inset: calc(var(--header-h) + 20px) 28px auto;
    display: flex;
    justify-content: space-between;
    color: rgba(240, 238, 232, 0.7);
    font-size: 0.68rem;
    font-weight: 600;
}

.hero-copy {
    position: absolute;
    left: 28px;
    bottom: 54px;
    z-index: 2;
    max-width: 820px;
}

.eyebrow,
.section-kicker,
.micro-label {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 12px;
    font-family: "Anton", sans-serif;
    font-size: 7.8rem;
    font-weight: 400;
    line-height: 0.84;
}

.hero h1 em,
.section-band h2 em {
    color: var(--red);
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.hero-manifesto {
    max-width: 540px;
    margin-top: 20px;
    color: var(--paper);
    font-size: 1rem;
    line-height: 1.55;
}

.hero-actions,
.owner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.command {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.primary-command {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
}

.primary-command:hover {
    border-color: var(--red);
    background: var(--red);
    color: var(--paper);
}

.secondary-command {
    background: rgba(9, 9, 9, 0.72);
    color: var(--paper);
}

.secondary-command:hover {
    border-color: var(--paper);
}

.hero-live {
    position: absolute;
    right: 28px;
    bottom: 54px;
    z-index: 2;
    width: 220px;
    padding: 16px 0 0 18px;
    border-left: 1px solid rgba(240, 238, 232, 0.45);
}

.hero-player-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 12px;
    font-family: "Anton", sans-serif;
}

.hero-player-count strong {
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.9;
}

.hero-player-count span,
.hero-player-count b {
    color: var(--paper-dim);
    font-size: 1rem;
}

.hero-map {
    margin: 10px 0 20px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-live a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--paper);
    font-size: 0.76rem;
    font-weight: 700;
}

.reveal-note {
    position: absolute;
    right: 28px;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    color: rgba(240, 238, 232, 0.55);
    font-size: 0.66rem;
    font-weight: 600;
}

.reveal-note span {
    width: 34px;
    height: 1px;
    background: currentColor;
}

.signal-strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--red);
    color: var(--paper);
}

.signal-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    padding: 12px 0;
    animation: signal-move 26s linear infinite;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.signal-track b {
    color: var(--ink);
}

@keyframes signal-move {
    to { transform: translateX(-50%); }
}

.section-band {
    border-bottom: 1px solid var(--line);
    padding: 112px 28px;
}

.section-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto 64px;
}

.section-band h2 {
    margin-top: 10px;
    font-family: "Anton", sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.94;
}

.section-intro > p:last-child,
.skin-copy > p,
.owner-copy > p:last-of-type {
    max-width: 520px;
    color: var(--paper-dim);
    font-size: 1rem;
    line-height: 1.7;
}

.chapter-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    min-height: 690px;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--line);
    background: var(--ink-soft);
}

.chapter-media {
    position: relative;
    min-height: 690px;
    overflow: hidden;
}

.chapter-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 9, 0.2);
}

.chapter-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) contrast(1.1);
    transition: opacity 280ms ease, transform 700ms ease;
}

.chapter-media img.changing {
    opacity: 0.2;
    transform: scale(1.03);
}

.chapter-watermark {
    position: absolute;
    left: 24px;
    bottom: -30px;
    z-index: 2;
    color: rgba(240, 238, 232, 0.13);
    font-family: "Anton", sans-serif;
    font-size: 8rem;
    pointer-events: none;
}

.chapter-index {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--paper);
    font-family: "Anton", sans-serif;
}

.chapter-index span {
    font-size: 2.8rem;
}

.chapter-index b {
    color: var(--paper-dim);
    font-size: 0.82rem;
}

.chapter-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}

.chapter-copy h3 {
    margin-top: 16px;
    font-family: "Anton", sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 0.98;
}

.chapter-copy > p:nth-of-type(2) {
    margin-top: 22px;
    color: var(--paper-dim);
    font-size: 0.94rem;
    line-height: 1.7;
}

.chapter-facts {
    display: grid;
    gap: 0;
    margin: 30px 0;
    border-top: 1px solid var(--line);
}

.chapter-facts span {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.chapter-facts small {
    color: var(--paper-dim);
    font-size: 0.72rem;
}

.chapter-facts strong {
    font-size: 0.8rem;
}

.chapter-controls {
    position: absolute;
    inset: auto 0 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(9, 9, 9, 0.92);
}

.chapter-button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 16px;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    color: var(--paper-dim);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: left;
    transition: background-color 180ms ease, color 180ms ease;
}

.chapter-button:last-child {
    border-right: 0;
}

.chapter-button span {
    color: var(--red);
}

.chapter-button:hover,
.chapter-button.active {
    background: var(--paper);
    color: var(--ink);
}

.live-section {
    background: var(--paper);
    color: var(--ink);
}

.live-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 58px;
}

.live-section .secondary-command {
    border-color: rgba(9, 9, 9, 0.2);
    background: transparent;
    color: var(--ink);
}

.live-section .secondary-command:hover {
    border-color: var(--ink);
}

.live-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid rgba(9, 9, 9, 0.2);
}

.live-metrics div {
    min-height: 170px;
    padding: 26px;
    border-right: 1px solid rgba(9, 9, 9, 0.2);
}

.live-metrics div:last-child {
    border-right: 0;
}

.live-metrics span {
    display: block;
    color: rgba(9, 9, 9, 0.54);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.live-metrics strong {
    display: block;
    margin-top: 34px;
    font-family: "Anton", sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.live-metrics small {
    color: rgba(9, 9, 9, 0.5);
    font-size: 1.2rem;
}

.intel-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 24px auto 0;
    border: 1px solid rgba(9, 9, 9, 0.2);
}

.intel-board > section {
    min-width: 0;
    min-height: 360px;
    padding: 22px;
    border-right: 1px solid rgba(9, 9, 9, 0.2);
}

.intel-board > section:last-child {
    border-right: 0;
}

.intel-board header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(9, 9, 9, 0.2);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.intel-board header b {
    color: rgba(9, 9, 9, 0.46);
}

.intel-list {
    display: grid;
    gap: 0;
}

.intel-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(9, 9, 9, 0.12);
    font-size: 0.78rem;
}

.intel-row span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.intel-row b {
    color: var(--red);
}

.intel-row small {
    display: block;
    overflow: hidden;
    margin-top: 2px;
    color: rgba(9, 9, 9, 0.52);
    font-size: 0.65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loading-line {
    padding: 16px 0;
    color: rgba(9, 9, 9, 0.5);
    font-size: 0.75rem;
}

.skin-lab {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
    align-items: stretch;
    min-height: 760px;
    background: #11110f;
}

.skin-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: max(0px, calc((100vw - 1400px) / 2));
}

.skin-copy h2 {
    margin: 12px 0 24px;
}

.skin-copy .command {
    margin-top: 28px;
}

.skin-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #151513;
}

.skin-stage img {
    position: relative;
    z-index: 2;
    width: min(72%, 620px);
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.55));
    transition: opacity 180ms ease, transform 360ms ease;
}

.skin-stage img.changing {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.skin-backdrop-word {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(240, 238, 232, 0.06);
    font-family: "Anton", sans-serif;
    font-size: 8rem;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.skin-caption {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 4;
}

.skin-caption span {
    display: block;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
}

.skin-caption strong {
    display: block;
    margin-top: 3px;
    font-family: "Anton", sans-serif;
    font-size: 2rem;
    font-weight: 400;
}

.skin-controls {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skin-controls span {
    min-width: 56px;
    color: var(--paper-dim);
    font-size: 0.72rem;
    text-align: center;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--line);
}

.vip-grid article {
    position: relative;
    min-height: 510px;
    padding: 30px;
    border-right: 1px solid var(--line);
}

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

.vip-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--gold);
}

.vip-grid article:nth-child(2)::before {
    background: var(--cyan);
}

.vip-grid article:nth-child(3)::before {
    background: var(--red);
}

.featured-tier {
    background: var(--paper);
    color: var(--ink);
}

.tier-number {
    display: block;
    color: var(--paper-dim);
    font-family: "Anton", sans-serif;
    font-size: 4.6rem;
    line-height: 1;
}

.featured-tier .tier-number {
    color: rgba(9, 9, 9, 0.24);
}

.vip-grid h3 {
    margin-top: 20px;
    font-family: "Anton", sans-serif;
    font-size: 3.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.vip-grid article > strong {
    display: block;
    margin-top: 6px;
    color: var(--red);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.vip-grid ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 36px;
    list-style: none;
    color: var(--paper-dim);
    font-size: 0.82rem;
}

.vip-grid li {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.featured-tier ul {
    color: rgba(9, 9, 9, 0.68);
}

.featured-tier li {
    border-color: rgba(9, 9, 9, 0.14);
}

.featured-tier .text-link {
    border-color: var(--ink);
}

.rules-section {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 54px;
    max-width: 1400px;
    margin: 0 auto;
}

.rules-list {
    display: grid;
}

.rules-list article {
    display: grid;
    grid-template-columns: 60px 0.7fr 1fr auto;
    gap: 20px;
    align-items: center;
    min-height: 128px;
    border-top: 1px solid var(--line);
}

.rules-list article:last-child {
    border-bottom: 1px solid var(--line);
}

.rules-list span {
    color: var(--red);
    font-family: "Anton", sans-serif;
    font-size: 2.4rem;
}

.rules-list h3 {
    font-family: "Anton", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: uppercase;
}

.rules-list p {
    color: var(--paper-dim);
    font-size: 0.82rem;
    line-height: 1.6;
}

.rules-list b {
    color: var(--gold);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.owner-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 64px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--paper);
    color: var(--ink);
}

.owner-portrait {
    position: relative;
}

.owner-portrait img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.04);
}

.owner-portrait span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
    border-radius: 3px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.owner-copy h2 {
    margin: 12px 0 20px;
    font-family: "Anton", sans-serif;
    font-size: 7rem;
    font-weight: 400;
    line-height: 0.9;
}

.owner-quote {
    margin-bottom: 18px;
    color: var(--red);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-style: italic;
    line-height: 1.1;
}

.owner-section .secondary-command {
    border-color: rgba(9, 9, 9, 0.2);
    background: transparent;
    color: var(--ink);
}

.owner-section .secondary-command:hover {
    border-color: var(--ink);
}

footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    min-height: 150px;
    padding: 30px 28px;
}

footer > div {
    display: grid;
    gap: 4px;
}

footer strong {
    font-family: "Anton", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
}

footer span,
footer p,
footer a {
    color: var(--paper-dim);
    font-size: 0.72rem;
}

footer nav {
    display: flex;
    gap: 20px;
}

footer p {
    text-align: right;
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3000;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1100px) {
    .desktop-nav,
    .status-chip {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero h1 {
        font-size: 5.8rem;
    }

    .hero-live {
        display: none;
    }

    .chapter-stage {
        grid-template-columns: 1fr;
        padding-bottom: 58px;
    }

    .chapter-media {
        min-height: 440px;
    }

    .chapter-copy {
        min-height: 430px;
    }

    .skin-lab,
    .owner-section,
    .rules-section {
        grid-template-columns: 1fr;
    }

    .skin-copy {
        padding-left: 0;
    }

    .skin-stage {
        min-height: 560px;
    }

    .rules-list article {
        grid-template-columns: 50px 0.8fr 1.2fr;
    }

    .rules-list b {
        grid-column: 2 / -1;
        padding-bottom: 14px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-h: 62px;
    }

    .site-header {
        padding: 0 16px;
    }

    .hero {
        min-height: 92svh;
    }

    .hero-topline {
        inset: calc(var(--header-h) + 16px) 16px auto;
    }

    .hero-topline span:first-child {
        display: none;
    }

    .hero-topline {
        justify-content: flex-end;
    }

    .hero-copy {
        left: 16px;
        right: 16px;
        bottom: 38px;
    }

    .hero h1 {
        font-size: 4.4rem;
    }

    .hero-manifesto {
        max-width: 420px;
        font-size: 0.9rem;
    }

    .reveal-note {
        display: none;
    }

    .section-band {
        padding: 80px 16px;
    }

    .section-intro,
    .live-head {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .section-band h2 {
        font-size: 3.7rem;
    }

    .chapter-stage {
        border-left: 0;
        border-right: 0;
    }

    .chapter-copy {
        padding: 34px 22px 50px;
    }

    .chapter-copy h3 {
        font-size: 2.8rem;
    }

    .chapter-controls {
        overflow-x: auto;
        grid-template-columns: repeat(4, 170px);
    }

    .live-metrics,
    .intel-board,
    .vip-grid {
        grid-template-columns: 1fr;
    }

    .live-metrics div,
    .intel-board > section,
    .vip-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(9, 9, 9, 0.2);
    }

    .vip-grid article {
        min-height: auto;
    }

    .vip-grid article:not(.featured-tier) {
        border-bottom-color: var(--line);
    }

    .skin-stage {
        min-height: 440px;
    }

    .skin-backdrop-word {
        font-size: 4.5rem;
    }

    .rules-list article {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 20px 0;
    }

    .rules-list p,
    .rules-list b {
        grid-column: 2;
    }

    .owner-copy h2 {
        font-size: 5rem;
    }

    footer {
        grid-template-columns: 1fr;
        align-items: start;
    }

    footer nav {
        flex-wrap: wrap;
    }

    footer p {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-actions .command,
    .owner-actions .command {
        flex: 1 1 100%;
    }

    .hero-image-reveal {
        clip-path: none;
        opacity: 0;
    }

    .chapter-media {
        min-height: 300px;
    }

    .chapter-watermark {
        font-size: 5rem;
    }

    .live-metrics strong {
        font-size: 2.5rem;
    }

    .skin-stage img {
        width: 86%;
    }

    .skin-backdrop-word {
        font-size: 3.2rem;
    }

    .skin-caption {
        left: 14px;
    }

    .skin-controls {
        right: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
