:root {
    --bg: #070b10;
    --bg-deep: #030609;
    --panel: #0d141c;
    --panel-2: #121c26;
    --panel-3: #192531;
    --text: #eef1f2;
    --text-soft: #bac2c8;
    --muted: #7f8b95;
    --gold: #f0a229;
    --gold-bright: #ffc554;
    --orange: #d7651f;
    --red: #a63222;
    --blue: #668ca5;
    --green: #68b36d;
    --line: rgba(194, 211, 223, 0.12);
    --line-gold: rgba(240, 162, 41, 0.28);
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.28);
    --radius: 12px;
    --radius-sm: 7px;
    --max-width: 1240px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(77, 105, 126, 0.1), transparent 30rem),
        radial-gradient(circle at 88% 72%, rgba(192, 82, 24, 0.08), transparent 35rem),
        linear-gradient(180deg, #080d13 0%, #05080c 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

body.nav-open {
    overflow: hidden;
}

::selection {
    color: #1c1104;
    background: var(--gold-bright);
}

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

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

button {
    font: inherit;
}

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

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

h1,
h2,
h3,
.eyebrow,
.panel-label,
.card-kicker,
.nav-link,
.server-pill-label {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.045em;
}

h1,
h2,
h3 {
    text-transform: uppercase;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 0.98;
}

h3 {
    margin-bottom: 0.6rem;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.05;
}

p {
    color: var(--text-soft);
}

code {
    padding: 0.12rem 0.35rem;
    color: var(--gold-bright);
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.28);
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: #211404;
    border-radius: var(--radius-sm);
    background: var(--gold-bright);
    transition: top 160ms ease;
}

.skip-link:focus {
    top: 1rem;
}

.page-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    margin-inline: auto;
}

.section {
    padding-block: clamp(5rem, 8vw, 8rem);
}

.section-anchor {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    background: rgba(5, 9, 13, 0.92);
    border-color: var(--line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    width: min(calc(100% - 1.5rem), 1420px);
    min-height: var(--header-height);
    margin-inline: auto;
}

.site-logo {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(190px, 17vw, 275px);
    height: 68px;
    overflow: hidden;
}

.site-logo img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
    opacity: 0;
}

.site-logo.has-image img {
    opacity: 1;
}

.logo-fallback {
    position: absolute;
    z-index: 1;
    color: var(--gold-bright);
    font-family: Impact, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: 0.03em;
    text-shadow: 0 3px 0 #8e2718, 0 0 22px rgba(240, 162, 41, 0.22);
}

.site-logo.has-image .logo-fallback {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
}

.nav-link {
    position: relative;
    padding: 0.7rem 0.65rem;
    color: rgba(238, 241, 242, 0.68);
    font-size: 0.86rem;
    text-transform: uppercase;
    transition: color 150ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.4rem;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold-bright));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--text);
    outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.server-pill {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "label icon" "ip icon";
    column-gap: 0.8rem;
    min-width: 195px;
    padding: 0.65rem 0.85rem;
    color: var(--text);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(135deg, rgba(240, 162, 41, 0.13), transparent 42%),
        rgba(7, 12, 17, 0.78);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 10px 24px rgba(0, 0, 0, 0.26);
    cursor: pointer;
    text-align: left;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.server-pill:hover,
.server-pill:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 197, 84, 0.55);
    background: rgba(24, 18, 11, 0.88);
    outline: none;
}

.server-pill-label {
    grid-area: label;
    color: var(--gold);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.server-pill strong {
    grid-area: ip;
    font-size: 0.86rem;
}

.copy-mark {
    grid-area: icon;
    align-self: center;
    color: var(--gold-bright);
    font-size: 1.2rem;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 44px;
    padding: 0;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(12, 19, 26, 0.92);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: max(760px, 100svh);
    display: grid;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    isolation: isolate;
}

.hero-backdrop,
.hero-vignette,
.hero-grid,
.hero-bottom-fade {
    position: absolute;
    inset: 0;
}

.hero-backdrop {
    z-index: -5;
    background:
        linear-gradient(145deg, #304459 0%, #17222d 42%, #0a1118 100%);
    background-position: center;
    background-size: cover;
    transform: scale(1.025);
}

.hero-backdrop.has-image {
    background-position: center;
    background-size: cover;
}

.hero-vignette {
    z-index: -4;
    background:
        linear-gradient(90deg, rgba(5, 9, 13, 0.96) 0%, rgba(5, 9, 13, 0.82) 35%, rgba(5, 9, 13, 0.3) 65%, rgba(5, 9, 13, 0.78) 100%),
        linear-gradient(180deg, rgba(4, 7, 10, 0.48) 0%, transparent 28%, rgba(4, 7, 10, 0.88) 100%);
}

.hero-grid {
    z-index: -3;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, black, transparent 67%);
}

.hero-bottom-fade {
    inset: auto 0 0;
    height: 18rem;
    z-index: -2;
    background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
    align-items: center;
    gap: clamp(3rem, 8vw, 7.5rem);
    padding-block: clamp(5rem, 10vh, 8rem) 8rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    padding: 0.45rem 0.75rem;
    color: rgba(238, 241, 242, 0.82);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 12, 17, 0.52);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.kicker-divider {
    width: 1px;
    height: 0.8rem;
    background: var(--line);
}

.status-dot {
    display: inline-block;
    flex: 0 0 auto;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(104, 179, 109, 0.12), 0 0 14px rgba(104, 179, 109, 0.7);
}

.status-dot.is-loading {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(240, 162, 41, 0.12), 0 0 14px rgba(240, 162, 41, 0.7);
    animation: pulse 1.2s ease-in-out infinite;
}

.status-dot.is-offline {
    background: #bd4939;
    box-shadow: 0 0 0 4px rgba(189, 73, 57, 0.12), 0 0 14px rgba(189, 73, 57, 0.62);
}

@keyframes pulse {
    50% { opacity: 0.42; }
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--gold-bright);
    font-size: 0.86rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1,
.subpage-hero h1 {
    max-width: 10ch;
    margin-bottom: 1.25rem;
    font-size: clamp(4rem, 8.3vw, 8rem);
    line-height: 0.82;
    color: var(--gold-bright);
    letter-spacing: -0.02em;
    text-shadow: 0 5px 0 rgba(117, 38, 20, 0.62), 0 14px 35px rgba(0, 0, 0, 0.46);
}

.hero h1 span,
.subpage-hero h1 span {
    display: block;
    color: #f1f3f4;
    font-size: 0.64em;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 0 rgba(23, 31, 38, 0.95), 0 12px 30px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
    max-width: 60ch;
    margin-bottom: 0;
    color: rgba(238, 241, 242, 0.76);
    font-size: clamp(1.05rem, 1.65vw, 1.24rem);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 50px;
    padding: 0.85rem 1.15rem;
    color: var(--text);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.01em;
    overflow: hidden;
    transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.16) 46%, transparent 66%);
    transform: translateX(-130%);
    transition: transform 420ms ease;
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: translateX(130%);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    color: #221303;
    border-color: rgba(255, 197, 84, 0.55);
    background: linear-gradient(180deg, var(--gold-bright), #e2811e);
    box-shadow: 0 12px 26px rgba(202, 96, 21, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42), inset 0 -3px 0 rgba(110, 43, 10, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 16px 34px rgba(202, 96, 21, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -3px 0 rgba(110, 43, 10, 0.4);
}

.btn-secondary {
    border-color: rgba(166, 187, 202, 0.2);
    background: linear-gradient(180deg, #253440, #111921);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -3px 0 rgba(0, 0, 0, 0.28);
}

.btn-ghost {
    border-color: var(--line-gold);
    background: rgba(7, 12, 17, 0.5);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: rgba(255, 197, 84, 0.6);
    background: rgba(33, 23, 12, 0.66);
}

.full-width {
    width: 100%;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2.2rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-trust div {
    display: grid;
}

.hero-trust strong {
    color: var(--text);
    font-size: 0.86rem;
}

.hero-trust span {
    color: var(--muted);
    font-size: 0.75rem;
}

.status-card,
.feature-card,
.news-card,
.help-panel,
.vote-cta {
    position: relative;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(240, 162, 41, 0.07), transparent 35%),
        linear-gradient(180deg, rgba(20, 29, 38, 0.96), rgba(8, 13, 18, 0.98));
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.status-card {
    padding: 1.3rem;
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}

.status-card::before,
.status-card::after,
.vote-cta::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.status-card::before,
.vote-cta::before {
    left: -1px;
    top: -1px;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
}

.status-card::after {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.status-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.panel-label {
    margin-bottom: 0.2rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-card h2 {
    margin: 0;
    font-size: 1.65rem;
}

.status-orb {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.22);
}

.player-meter {
    margin-bottom: 1.2rem;
}

.meter-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-soft);
    font-size: 0.85rem;
}

.meter-head strong {
    color: var(--text);
}

.meter-track {
    height: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    background: #060a0e;
}

.meter-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), var(--gold-bright));
    box-shadow: 0 0 18px rgba(240, 162, 41, 0.45);
    transition: width 600ms ease;
}

.status-list {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1rem;
}

.status-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.17);
}

.status-list dt {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.status-list dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
    text-align: right;
    word-break: break-word;
}

.status-note {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.75rem;
    text-align: center;
}

.stat-rail {
    position: relative;
    z-index: 4;
    margin-top: -2.2rem;
}

.stat-rail-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(11, 17, 23, 0.96);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stat-rail-grid > div {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon number" "icon label";
    column-gap: 0.85rem;
    align-items: center;
    padding: 1.25rem 1.35rem;
}

.stat-rail-grid > div + div {
    border-left: 1px solid var(--line);
}

.stat-icon {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gold-bright);
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    background: rgba(240, 162, 41, 0.08);
    font-size: 1.15rem;
}

.stat-rail strong {
    grid-area: number;
    color: var(--text);
    font-size: 1.25rem;
}

.stat-rail small {
    grid-area: label;
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:last-child {
    margin-bottom: 0;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

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

.feature-card {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.45rem;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.48;
    background:
        radial-gradient(circle at 75% 18%, rgba(240, 162, 41, 0.22), transparent 9rem),
        linear-gradient(145deg, transparent 45%, rgba(0, 0, 0, 0.32));
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 162, 41, 0.36);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.36), 0 0 30px rgba(240, 162, 41, 0.05);
}

.feature-card-large {
    grid-column: span 2;
}

.feature-card-wide {
    grid-column: span 2;
}

.feature-number {
    position: absolute;
    right: 1.25rem;
    top: 0.8rem;
    color: rgba(255, 255, 255, 0.045);
    font-family: Impact, sans-serif;
    font-size: 6rem;
    line-height: 1;
}

.feature-icon {
    position: absolute;
    right: 1.5rem;
    top: 1.35rem;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: var(--gold-bright);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-sm);
    background: rgba(240, 162, 41, 0.09);
    box-shadow: inset 0 0 25px rgba(240, 162, 41, 0.04);
    font-size: 1.55rem;
}

.feature-card > div:not(.feature-icon):not(.feature-number) {
    position: relative;
    z-index: 1;
    max-width: 40rem;
}

.card-kicker {
    margin-bottom: 0.45rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.card-edge {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold-bright), transparent);
}

.world-section {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 75% 35%, rgba(80, 113, 136, 0.12), transparent 26rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent),
        #070c11;
}

.world-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.world-copy .lead {
    max-width: 58ch;
    font-size: 1.08rem;
}

.world-steps {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
}

.world-steps article {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.world-steps article:hover {
    transform: translateX(5px);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.022);
}

.world-steps article > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #201205;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-bright), var(--orange));
    font-weight: 900;
}

.world-steps h3 {
    margin-bottom: 0.22rem;
    font-size: 1.25rem;
}

.world-steps p {
    margin-bottom: 0;
    color: var(--muted);
}

.world-visual {
    position: relative;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #3f5b6d 0%, #1d2d39 50%, #0a1118 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.visual-sky {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 209, 126, 0.5), transparent 9rem),
        linear-gradient(180deg, rgba(143, 181, 205, 0.28), transparent 54%);
}

.visual-sky::before,
.visual-sky::after {
    content: "";
    position: absolute;
    width: 8rem;
    height: 1.4rem;
    background: rgba(230, 239, 242, 0.16);
    box-shadow: 3rem 1.2rem 0 rgba(230, 239, 242, 0.11), -2rem 2.4rem 0 rgba(230, 239, 242, 0.09);
}

.visual-sky::before { left: 8%; top: 14%; }
.visual-sky::after { right: 7%; top: 28%; transform: scale(0.7); }

.visual-mountain {
    position: absolute;
    bottom: 25%;
    width: 65%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #8fa1aa, #263845 48%, #12202a 49%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    opacity: 0.75;
}

.mountain-one { left: -10%; transform: scale(0.86); }
.mountain-two { right: -19%; bottom: 20%; transform: scale(1.15); opacity: 0.56; }

.visual-castle {
    position: absolute;
    left: 50%;
    bottom: 18%;
    width: 66%;
    height: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.46));
}

.castle-wall,
.tower {
    position: absolute;
    bottom: 0;
    border: 1px solid rgba(194, 211, 223, 0.12);
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #263644, #111b24);
    background-size: 22px 14px, 22px 14px, auto;
}

.castle-wall {
    left: 10%;
    right: 10%;
    height: 42%;
}

.castle-wall::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 19%;
    height: 55%;
    transform: translateX(-50%);
    border-radius: 48% 48% 0 0;
    background: #05090d;
}

.tower {
    width: 23%;
}

.tower::before {
    content: "";
    position: absolute;
    left: -7%;
    right: -7%;
    top: -15px;
    height: 20px;
    background: repeating-linear-gradient(90deg, #273947 0 16%, transparent 16% 25%);
}

.tower::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 25%;
    width: 18%;
    height: 22%;
    transform: translateX(-50%);
    background: #f0a229;
    box-shadow: 0 0 20px rgba(240, 162, 41, 0.55);
}

.tower-left { left: 2%; height: 70%; }
.tower-center { left: 38.5%; height: 94%; }
.tower-right { right: 2%; height: 65%; }

.visual-banner {
    position: absolute;
    left: 50%;
    top: 23%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 90px;
    transform: translateX(-50%);
    color: var(--gold-bright);
    background: linear-gradient(180deg, #8a281b, #45130f);
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.36);
    font-family: Impact, sans-serif;
    font-size: 2rem;
}

.visual-caption {
    position: absolute;
    inset: auto 1rem 1rem;
    display: grid;
    gap: 0.15rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(5, 9, 13, 0.76);
    backdrop-filter: blur(10px);
}

.visual-caption small {
    color: var(--gold);
    text-transform: uppercase;
}

.visual-caption strong {
    font-size: 1.05rem;
}

.split-heading {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.text-link {
    color: var(--gold-bright);
    font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
    color: #fff1cf;
    outline: none;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.news-list {
    display: grid;
    gap: 0.85rem;
}

.news-card {
    display: grid;
    grid-template-columns: 118px 1fr auto;
    align-items: center;
    gap: 1.15rem;
    padding: 0.9rem;
    border-radius: var(--radius-sm);
    transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.news-card:hover {
    transform: translateX(4px);
    border-color: rgba(240, 162, 41, 0.28);
    background: linear-gradient(90deg, rgba(240, 162, 41, 0.07), rgba(13, 20, 28, 0.97));
}

.news-thumb {
    position: relative;
    min-height: 84px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background:
        linear-gradient(150deg, transparent 52%, rgba(0, 0, 0, 0.38) 53%),
        linear-gradient(145deg, #6d899a, #243847 52%, #18232d 53%);
    overflow: hidden;
}

.news-thumb::before {
    content: "";
    position: absolute;
    left: 15%;
    bottom: 0;
    width: 16px;
    height: 48px;
    background: #131d25;
    box-shadow: 23px 11px 0 #182631, 46px -6px 0 #111b24, 69px 18px 0 #17222c;
}

.news-card:nth-child(2) .news-thumb {
    background: linear-gradient(145deg, #6b3725, #301a18 55%, #13141a 56%);
}

.news-card:nth-child(3) .news-thumb {
    background: linear-gradient(145deg, #493c72, #23233f 55%, #11131d 56%);
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.news-tag {
    color: var(--gold-bright);
}

.news-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.25rem;
}

.news-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.news-arrow {
    color: var(--gold-bright);
    font-size: 1.35rem;
}

.join-section {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(5, 9, 13, 0.98), rgba(25, 27, 24, 0.78), rgba(5, 9, 13, 0.98)),
        repeating-linear-gradient(45deg, rgba(240, 162, 41, 0.045) 0 1px, transparent 1px 20px);
}

.join-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34rem;
    height: 14rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(240, 162, 41, 0.1);
    filter: blur(60px);
}

.join-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.join-content h2 {
    margin-bottom: 0.5rem;
}

.join-content p:last-child {
    margin-bottom: 0;
}

.join-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.site-footer {
    background: #030609;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.55fr 0.7fr 0.7fr 1fr;
    gap: 2rem;
    padding-block: 3.5rem 2.4rem;
}

.footer-logo {
    width: 220px;
    height: 62px;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 36ch;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-column h2 {
    margin-bottom: 0.9rem;
    font-family: inherit;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-button {
    display: block;
    width: fit-content;
    margin: 0 0 0.48rem;
    padding: 0;
    color: var(--muted);
    border: 0;
    background: none;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    text-align: left;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-button:hover,
.footer-button:focus-visible {
    color: var(--gold-bright);
    outline: none;
}

.footer-server {
    align-self: start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.018);
}

.footer-ip {
    display: grid;
    width: 100%;
    padding: 0;
    color: var(--text);
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
}

.footer-ip strong {
    color: var(--gold-bright);
    word-break: break-word;
}

.footer-ip span {
    color: var(--muted);
    font-size: 0.75rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.2rem;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-bottom div {
    display: flex;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--muted);
    font-size: 0.78rem;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    z-index: 100;
    width: max-content;
    max-width: calc(100vw - 2rem);
    padding: 0.85rem 1rem;
    color: var(--text);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-sm);
    background: rgba(9, 15, 21, 0.96);
    box-shadow: var(--shadow);
    transform: translate(-50%, 140%);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Vote page */
.subpage-main {
    padding-top: var(--header-height);
}

.subpage-hero {
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}

.subpage-backdrop,
.subpage-overlay {
    position: absolute;
    inset: 0;
}

.subpage-backdrop {
    z-index: -3;
    background: linear-gradient(145deg, #304459, #101821);
    background-position: center;
    background-size: cover;
}

.subpage-overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 9, 13, 0.95), rgba(5, 9, 13, 0.54) 58%, rgba(5, 9, 13, 0.84)),
        linear-gradient(180deg, rgba(5, 9, 13, 0.16), var(--bg));
}

.subpage-hero-content {
    padding-block: 6rem 4rem;
}

.subpage-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(3.8rem, 8vw, 7rem);
}

.subpage-hero-content > p:last-child {
    max-width: 58ch;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.vote-page {
    padding-top: 5rem;
}

.vote-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vote-intro > div:first-child {
    max-width: 720px;
}

.vote-intro h2 {
    margin-bottom: 0.8rem;
}

.mini-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 230px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.018);
}

.mini-status div {
    display: grid;
}

.mini-status small {
    color: var(--muted);
}

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

.vote-card {
    position: relative;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 70% 24%, rgba(240, 162, 41, 0.18), transparent 7rem),
        linear-gradient(145deg, #16232e, #090e14 72%);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vote-card:hover,
.vote-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(255, 197, 84, 0.48);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.38), 0 0 28px rgba(240, 162, 41, 0.06);
    outline: none;
}

.vote-card-number {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    color: rgba(255, 255, 255, 0.045);
    font-family: Impact, sans-serif;
    font-size: 5.5rem;
}

.vote-card-icon {
    position: absolute;
    left: 1.35rem;
    top: 1.35rem;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--gold-bright);
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    background: rgba(240, 162, 41, 0.08);
    font-size: 1.2rem;
}

.vote-card strong {
    position: relative;
    font-size: 1.2rem;
}

.vote-card small {
    position: relative;
    color: var(--muted);
}

.vote-arrow {
    position: absolute;
    right: 1.25rem;
    bottom: 1.4rem;
    color: var(--gold-bright);
    font-size: 1.4rem;
}

.vote-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.help-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 1.1rem;
    border-radius: var(--radius-sm);
}

.help-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #1d1104;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-bright), var(--orange));
    font-weight: 900;
}

.help-panel h3 {
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
}

.help-panel p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.vote-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.vote-cta h2 {
    margin-bottom: 0.35rem;
    color: var(--gold-bright);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.vote-cta p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1180px) {
    .navbar {
        grid-template-columns: auto 1fr auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .server-pill {
        display: none;
    }

    .nav-menu {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: grid;
        gap: 0;
        max-height: calc(100svh - var(--header-height));
        padding: 1rem;
        overflow-y: auto;
        background: rgba(5, 9, 13, 0.98);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 190ms ease, opacity 190ms ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: 0.95rem 0.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    }

    .nav-link::after {
        left: 0;
        right: auto;
        bottom: 0.55rem;
        width: 42px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
        gap: 3rem;
    }
}

@media (max-width: 940px) {
    .hero {
        min-height: auto;
    }

    .hero-content,
    .world-layout,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .status-card {
        width: min(100%, 560px);
    }

    .stat-rail {
        margin-top: -1rem;
    }

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

    .stat-rail-grid > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .stat-rail-grid > div:nth-child(4) {
        border-top: 1px solid var(--line);
    }

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

    .feature-card-large,
    .feature-card-wide {
        grid-column: span 1;
    }

    .world-visual {
        min-height: 460px;
    }

    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-server {
        grid-column: 1 / -1;
    }

    .vote-intro {
        align-items: start;
    }
}

@media (max-width: 700px) {
    :root {
        --header-height: 72px;
    }

    .navbar {
        width: min(calc(100% - 1rem), 1420px);
    }

    .site-logo {
        width: min(62vw, 210px);
        height: 58px;
    }

    .hero-vignette {
        background:
            linear-gradient(90deg, rgba(5, 9, 13, 0.94), rgba(5, 9, 13, 0.66)),
            linear-gradient(180deg, rgba(5, 9, 13, 0.34), var(--bg));
    }

    .hero-content {
        padding-block: 4rem 7rem;
    }

    .hero h1,
    .subpage-hero h1 {
        font-size: clamp(3.7rem, 18vw, 6.2rem);
    }

    .hero-kicker {
        flex-wrap: wrap;
        width: fit-content;
    }

    .hero-trust {
        gap: 1rem;
    }

    .button-row,
    .join-actions {
        flex-direction: column;
    }

    .button-row .btn,
    .join-actions .btn {
        width: 100%;
    }

    .stat-rail-grid,
    .feature-grid,
    .vote-grid,
    .vote-help-grid {
        grid-template-columns: 1fr;
    }

    .stat-rail-grid > div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .feature-card {
        min-height: 280px;
    }

    .world-layout {
        gap: 2.5rem;
    }

    .world-visual {
        min-height: 380px;
    }

    .news-card {
        grid-template-columns: 88px 1fr;
    }

    .news-arrow {
        display: none;
    }

    .join-content,
    .split-heading,
    .vote-intro,
    .vote-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .split-heading {
        display: flex;
    }

    .join-content {
        display: flex;
    }

    .vote-cta {
        display: flex;
    }

    .mini-status {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand,
    .footer-server {
        grid-column: 1 / -1;
    }

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

@media (max-width: 460px) {
    .page-shell {
        width: min(calc(100% - 1.2rem), var(--max-width));
    }

    .hero-content {
        padding-top: 3rem;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .status-list div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.15rem;
    }

    .status-list dd {
        text-align: left;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
    }

    .world-visual {
        min-height: 330px;
    }

    .visual-caption {
        inset: auto 0.6rem 0.6rem;
    }

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

    .news-thumb {
        min-height: 118px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-server {
        grid-column: auto;
    }
}

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
