:root {
    color-scheme: dark;
    --bg: #0a0c0e;
    --bg-soft: #111417;
    --panel: #15191d;
    --panel-2: #1b2025;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f2ec;
    --muted: #9ca4aa;
    --accent: #ef6b2e;
    --accent-soft: rgba(239, 107, 46, 0.14);
    --green: #7fd49a;
    --danger: #ff7474;
    --max: 1220px;
    --header: 76px;
    --radius: 18px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body); line-height: 1.6; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }
code { font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header);
    display: flex; align-items: center; justify-content: space-between; padding: 0 max(24px, calc((100vw - var(--max)) / 2));
    border-bottom: 1px solid transparent; transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}
.site-header.is-scrolled { background: rgba(10, 12, 14, .9); border-color: var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(239,107,46,.5); background: var(--accent-soft); color: var(--accent); font-family: var(--display); font-size: 1.05rem; font-weight: 900; letter-spacing: -.04em; transform: skew(-6deg); }
.brand-name { font-size: 1.08rem; letter-spacing: .02em; }
.brand-name strong { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: #c9ced1; font-size: .86rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; transition: color .2s ease; }
.site-nav a:hover { color: #fff; }
.site-nav .nav-panel { padding: 10px 15px; border: 1px solid rgba(239,107,46,.5); color: var(--accent); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; }

.hero { position: relative; min-height: 820px; display: grid; align-items: center; overflow: hidden; padding: calc(var(--header) + 90px) 0 100px; background: radial-gradient(circle at 76% 24%, rgba(239,107,46,.18), transparent 30%), radial-gradient(circle at 78% 66%, rgba(88,126,110,.16), transparent 32%), linear-gradient(130deg, #090b0d 0%, #111517 48%, #090b0d 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.hero::after { content: ""; position: absolute; width: 620px; height: 620px; right: -90px; top: 120px; border: 1px solid rgba(255,255,255,.08); transform: rotate(18deg); box-shadow: 0 0 0 70px rgba(255,255,255,.012), 0 0 0 140px rgba(255,255,255,.009); }
.hero-noise { position: absolute; inset: 0; opacity: .35; background: linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,.025) 44% 44.3%, transparent 44.3% 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: 90px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: .78rem; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.hero h1, .section-heading h2, .rules-intro h2, .join-panel h2 { margin: 0; font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: -.045em; line-height: .92; }
.hero h1 { font-size: clamp(4.2rem, 9vw, 8.8rem); }
.hero h1 span { color: var(--accent); }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: #b8bec1; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 8px; align-items: center; justify-content: center; cursor: pointer; font-weight: 900; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #160a05; box-shadow: 0 14px 35px rgba(239,107,46,.22); }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.035); color: #fff; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.hero-meta span { padding: 6px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .12em; }

.server-card { position: relative; padding: 28px; border: 1px solid var(--line-strong); background: rgba(16,19,22,.86); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.server-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--accent); }
.server-card-head { display: flex; gap: 20px; justify-content: space-between; align-items: flex-start; }
.micro-label { margin: 0 0 4px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.server-card h2 { margin: 0; font-size: 1.45rem; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(127,212,154,.32); color: var(--green); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.live-badge.is-offline { border-color: rgba(255,116,116,.35); color: var(--danger); }
.live-badge.is-pending { border-color: var(--line); color: var(--muted); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; }
.server-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 28px 0; background: var(--line); border: 1px solid var(--line); }
.server-card-stats div { padding: 16px; background: #121619; }
.server-card-stats dt { color: var(--muted); font-size: .69rem; text-transform: uppercase; letter-spacing: .1em; }
.server-card-stats dd { margin: 5px 0 0; font-weight: 900; }
.server-address { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 14px 14px 16px; background: #090b0d; border: 1px solid var(--line); }
.server-address code { overflow: hidden; text-overflow: ellipsis; font-size: .84rem; }
.server-address button { flex: 0 0 auto; border: 0; background: transparent; color: var(--accent); cursor: pointer; font-weight: 800; }
.server-updated { margin: 15px 0 0; color: var(--muted); font-size: .75rem; }

.status-strip { border-block: 1px solid var(--line); background: #0d1012; }
.status-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.status-grid div { padding: 24px; border-left: 1px solid var(--line); }
.status-grid div:last-child { border-right: 1px solid var(--line); }
.status-grid span, .status-grid strong { display: block; }
.status-grid span { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status-grid strong { margin-top: 5px; font-size: .9rem; }

.section { padding: 110px 0; }
.section-dark { background: #0e1113; border-block: 1px solid var(--line); }
.section-heading { max-width: 790px; margin-bottom: 52px; }
.section-heading h2, .rules-intro h2, .join-panel h2 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
.section-heading > p:last-child, .rules-intro > p:last-child { color: var(--muted); margin: 20px 0 0; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .68fr; gap: 70px; align-items: end; }

.tech-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tech-panel, .map-preview-card { border: 1px solid var(--line); background: var(--panel); }
.tech-panel-title { display: flex; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); color: #fff; font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.panel-code { color: var(--accent); }
.tech-list { margin: 0; }
.tech-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 17px 22px; border-bottom: 1px solid var(--line); }
.tech-list div:last-child { border-bottom: 0; }
.tech-list dt { color: var(--muted); }
.tech-list dd { margin: 0; text-align: right; font-weight: 800; }
.map-preview-card { display: grid; grid-template-rows: minmax(280px, 1fr) auto; overflow: hidden; }
.map-preview-image { position: relative; min-height: 310px; background: #071113; }
.map-preview-image img { width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.map-stamp { position: absolute; right: 18px; top: 18px; padding: 7px 10px; background: rgba(10,12,14,.85); border: 1px solid rgba(239,107,46,.5); color: var(--accent); font-size: .67rem; font-weight: 900; letter-spacing: .12em; }
.map-preview-copy { padding: 24px; border-top: 1px solid var(--line); }
.map-preview-copy h3 { margin: 0; font-size: 1.45rem; }
.map-preview-copy p:last-child { color: var(--muted); margin: 10px 0 0; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { min-height: 240px; padding: 25px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); transition: transform .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(239,107,46,.42); }
.feature-code { display: inline-flex; padding: 5px 8px; border: 1px solid rgba(239,107,46,.35); color: var(--accent); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.feature-card h3 { margin: 50px 0 10px; font-size: 1.22rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.roadmap-card { position: relative; min-height: 260px; padding: 28px; border: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.roadmap-number { position: absolute; right: 18px; bottom: -18px; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 8rem; font-weight: 900; line-height: 1; }
.roadmap-state { display: inline-block; padding: 5px 8px; background: var(--accent-soft); color: var(--accent); font-size: .66rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.roadmap-card h3 { position: relative; margin: 55px 0 10px; font-size: 1.35rem; }
.roadmap-card p { position: relative; margin: 0; color: var(--muted); }

.rules-section { background: linear-gradient(125deg, #15100d, #0c0e10 48%, #101416); border-block: 1px solid var(--line); }
.rules-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.rules-intro { position: sticky; top: 110px; align-self: start; }
.rules-list { margin: 0; padding: 0; list-style: none; counter-reset: rules; }
.rules-list li { counter-increment: rules; display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); color: #d6d9da; }
.rules-list li::before { content: counter(rules, decimal-leading-zero); color: var(--accent); font-family: var(--display); font-size: 1.15rem; font-weight: 900; }
.rules-list li:last-child { border-bottom: 1px solid var(--line); }

.join-section { padding: 95px 0; background: var(--accent); color: #1a0b05; }
.join-panel { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.join-panel .eyebrow { color: #6a2b10; }
.join-panel p { margin-bottom: 0; font-weight: 600; }
.join-panel code { padding: 3px 6px; background: rgba(0,0,0,.12); }
.join-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.join-section .button-primary { background: #15100e; color: #fff; box-shadow: none; }
.join-section .button-ghost { border-color: rgba(0,0,0,.3); background: rgba(255,255,255,.14); color: #1a0b05; }

.site-footer { padding: 65px 0 24px; background: #07090a; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .86rem; }
.footer-grid strong { margin-bottom: 10px; }
.footer-brand { margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid var(--line); color: #70787d; font-size: .72rem; }

.clipboard-fallback { position: fixed; left: -9999px; top: 0; opacity: 0; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 2000; max-width: 360px; padding: 13px 16px; background: #f4f1ea; color: #141414; border-radius: 8px; box-shadow: var(--shadow); font-size: .85rem; font-weight: 800; transform: translateY(25px); opacity: 0; pointer-events: none; transition: .2s ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .server-card { max-width: 620px; }
    .status-grid { grid-template-columns: repeat(3, 1fr); }
    .status-grid div:nth-child(4), .status-grid div:nth-child(5) { border-top: 1px solid var(--line); }
    .tech-layout, .split-heading, .rules-layout { grid-template-columns: 1fr; gap: 42px; }
    .feature-grid, .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
    .rules-intro { position: static; }
    .join-panel { grid-template-columns: 1fr; }
    .join-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
    :root { --header: 66px; }
    .container { width: min(100% - 28px, var(--max)); }
    .nav-toggle { display: flex; }
    .site-nav { position: fixed; inset: var(--header) 0 auto; display: none; padding: 18px 20px 24px; background: rgba(10,12,14,.98); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
    .site-nav .nav-panel { margin-top: 12px; text-align: center; }
    .hero { min-height: 760px; padding-top: 125px; }
    .hero h1 { font-size: clamp(3.7rem, 19vw, 6.3rem); }
    .hero::after { display: none; }
    .server-card-stats { grid-template-columns: 1fr 1fr; }
    .status-grid { grid-template-columns: 1fr 1fr; }
    .status-grid div { border-top: 1px solid var(--line); }
    .section { padding: 78px 0; }
    .feature-grid, .roadmap-grid { grid-template-columns: 1fr; }
    .tech-list div { grid-template-columns: 1fr; gap: 4px; }
    .tech-list dd { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}
