:root {
  --sl-accent: #b7ff32;
  --sl-accent-rgb: 183, 255, 50;
  --sl-ink: #080a0c;
  --sl-surface: #0e1114;
  --sl-surface-2: #14181c;
  --sl-line: rgba(255, 255, 255, .11);
  --sl-text: #f5f6f2;
  --sl-muted: #a2a9a3;
  --sl-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --sl-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sl-shadow: 0 28px 80px rgba(0, 0, 0, .4);
  --sl-radius: 5px;
  --sl-container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--sl-text);
  background: var(--sl-ink);
  font-family: var(--sl-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--sl-ink); background: var(--sl-accent); }

.container, .container-wide, .container-narrow {
  width: min(calc(100% - 40px), var(--sl-container));
  margin-inline: auto;
}
.container-wide { width: min(calc(100% - 48px), 1480px); }
.container-narrow { width: min(calc(100% - 40px), 860px); }
.site-main { min-height: 70vh; overflow: clip; }
.section { position: relative; padding-block: clamp(78px, 9vw, 140px); }
.section--dark { background: #0b0d0f; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  z-index: 100000; top: 10px; left: 10px; width: auto; height: auto;
  padding: 10px 16px; clip: auto; color: #000; background: #fff;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0; left: 0; right: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(5,7,8,.78), rgba(5,7,8,.25));
  backdrop-filter: blur(13px);
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(7,9,10,.93);
  box-shadow: 0 10px 35px rgba(0,0,0,.28);
  animation: header-in .22s ease both;
}
@keyframes header-in { from { transform: translateY(-100%); } }
.site-header__inner { display: flex; min-height: 86px; align-items: center; gap: 28px; }
.site-branding { flex: 0 0 auto; }
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 260px; max-height: 58px; }
.default-brand-logo { display: block; line-height: 0; }
.default-brand-logo img { width: auto; height: 66px; }
.default-brand-logo--footer img { height: 82px; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; }
.wordmark__badge {
  display: grid; width: 48px; height: 48px; place-items: center;
  color: var(--sl-ink); background: var(--sl-accent); border: 2px solid #eaffbd;
  font-family: var(--sl-display); font-size: 35px; line-height: 1;
  transform: skew(-5deg); box-shadow: 5px 5px 0 rgba(183,255,50,.18);
}
.wordmark__text { display: grid; line-height: 1; }
.wordmark__text strong { max-width: 200px; overflow: hidden; font-family: var(--sl-display); font-size: 24px; letter-spacing: 1px; text-overflow: ellipsis; white-space: nowrap; }
.wordmark__text small { margin-top: 5px; color: var(--sl-accent); font-size: 9px; font-weight: 900; letter-spacing: 3px; }

.primary-navigation { margin-left: auto; }
.primary-navigation .menu, .primary-navigation ul { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); margin: 0; padding: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation a {
  display: block; padding: 30px 0 28px; color: #d5d8d4;
  font-size: 12px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  transition: color .2s ease;
}
.primary-navigation a::after {
  position: absolute; bottom: 20px; left: 0; width: 0; height: 2px;
  background: var(--sl-accent); content: ""; transition: width .2s ease;
}
.primary-navigation a:hover, .primary-navigation .current-menu-item > a { color: #fff; }
.primary-navigation a:hover::after, .primary-navigation .current-menu-item > a::after { width: 100%; }
.primary-navigation .sub-menu {
  position: absolute; top: 100%; left: -18px; display: none; min-width: 210px;
  padding: 10px 18px; border: 1px solid var(--sl-line); background: #0b0d0f; box-shadow: var(--sl-shadow);
}
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { display: block; }
.primary-navigation .sub-menu a { padding: 10px 0; }
.primary-navigation .sub-menu a::after { bottom: 5px; }
.nav-toggle { display: none; margin-left: auto; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span:not(.screen-reader-text) { display: block; width: 26px; height: 2px; margin: 5px 0; background: #fff; transition: transform .2s, opacity .2s; }

.header-status { display: flex; align-items: center; gap: 10px; padding-left: 25px; border-left: 1px solid var(--sl-line); }
.header-status__text { display: grid; line-height: 1.15; }
.header-status small { color: var(--sl-muted); font-size: 8px; font-weight: 900; letter-spacing: 2px; }
.header-status strong { margin-top: 4px; font-size: 11px; text-transform: uppercase; }
.status-dot { position: relative; display: inline-block; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #7d8380; box-shadow: 0 0 0 4px rgba(125,131,128,.1); }
.status-dot.is-online { background: var(--sl-accent); box-shadow: 0 0 0 4px rgba(183,255,50,.1), 0 0 16px var(--sl-accent); }
.status-dot.is-offline { background: #ff4e57; box-shadow: 0 0 0 4px rgba(255,78,87,.1); }

.hero {
  position: relative; min-height: min(930px, 100vh); display: grid; align-items: center;
  padding: 140px 0 92px; overflow: hidden; background: #080b0b;
}
.hero::before {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(5,7,8,.98) 0%, rgba(5,7,8,.91) 28%, rgba(5,7,8,.43) 64%, rgba(5,7,8,.2) 100%), linear-gradient(0deg, #080a0c 0, transparent 26%);
  content: "";
}
.hero__art {
  position: absolute; inset: 0; z-index: -1;
  background: url("../images/hero-city.svg") center 36% / cover no-repeat;
  transform: scale(1.02);
}
.hero__noise {
  position: absolute; inset: 0; opacity: .18; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .65fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.hero__content { max-width: 790px; }
.hero__eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 10px; color: var(--sl-accent);
  font-size: 11px; font-weight: 900; letter-spacing: 3.5px; text-transform: uppercase;
}
.hero__eyebrow i { width: 31px; height: 2px; background: var(--sl-accent); }
.hero h1, .page-hero h1, .single-hero h1, .error-page h1 {
  margin: 22px 0 24px; font-family: var(--sl-display); font-size: clamp(62px, 7vw, 112px);
  font-weight: 900; line-height: .9; letter-spacing: .3px; text-transform: uppercase; text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.hero h1::after { display: block; width: 132px; height: 8px; margin-top: 26px; background: var(--sl-accent); box-shadow: 42px 0 0 rgba(183,255,50,.3); content: ""; transform: skew(-28deg); }
.hero__content > p { max-width: 650px; margin: 0; color: #c1c6c0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 16px;
  padding: 13px 25px; border: 1px solid transparent; border-radius: 2px;
  font-size: 12px; font-weight: 900; letter-spacing: 1.1px; line-height: 1; text-transform: uppercase;
  transition: transform .2s, color .2s, background .2s, border-color .2s, box-shadow .2s;
}
.button svg, .text-link svg, .server-card__connect svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.button:hover { transform: translateY(-2px); }
.button--accent { color: #0a0c0b !important; background: var(--sl-accent) !important; box-shadow: 0 12px 30px rgba(183,255,50,.16); }
.button--accent:hover { color: #080a0c !important; background: #ccff70 !important; box-shadow: 0 15px 38px rgba(183,255,50,.25); }
.button--ghost { color: #fff !important; border-color: rgba(255,255,255,.25); background: rgba(8,10,12,.42) !important; backdrop-filter: blur(8px); }
.button--ghost:hover { color: #fff !important; border-color: #fff; background: rgba(255,255,255,.08) !important; }
.button--dark { color: #fff !important; background: var(--sl-ink) !important; }
.button--small { min-height: 46px; padding-inline: 19px; }
.button--wide { width: 100%; margin-top: 14px; }

/* Reliable contrast for native WordPress, form and WooCommerce block buttons. */
.wp-block-button__link,
.wp-element-button,
.wp-block-file .wp-block-file__button,
input[type="submit"],
button[type="submit"]:not(.nav-toggle),
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.wc-block-components-button:not(.is-link) {
  color: #080a0c !important;
  border-color: var(--sl-accent) !important;
  background-color: var(--sl-accent) !important;
  text-decoration: none !important;
}
.wp-block-button__link:hover,
.wp-element-button:hover,
.wp-block-file .wp-block-file__button:hover,
input[type="submit"]:hover,
button[type="submit"]:not(.nav-toggle):hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.wc-block-components-button:not(.is-link):hover {
  color: #080a0c !important;
  border-color: #ccff70 !important;
  background-color: #ccff70 !important;
}
.wp-block-button.is-style-outline > .wp-block-button__link,
.wp-block-button.is-style-outline > .wp-element-button {
  color: var(--sl-accent) !important;
  border-color: var(--sl-accent) !important;
  background-color: transparent !important;
}
.wp-block-button.is-style-outline > .wp-block-button__link:hover,
.wp-block-button.is-style-outline > .wp-element-button:hover {
  color: #080a0c !important;
  background-color: var(--sl-accent) !important;
}
.wp-block-button__link:focus-visible,
.wp-element-button:focus-visible,
input[type="submit"]:focus-visible,
button[type="submit"]:not(.nav-toggle):focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.wc-block-components-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #aeb4ae; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 14px; fill: none; stroke: var(--sl-accent); stroke-width: 2.5; }

.server-card { align-self: end; border: 1px solid rgba(255,255,255,.14); border-top: 3px solid var(--sl-accent); background: rgba(10,13,14,.83); box-shadow: var(--sl-shadow); backdrop-filter: blur(18px); }
.server-card__top { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--sl-line); }
.server-card__label { font-size: 10px; font-weight: 900; letter-spacing: 2px; }
.server-card__state { display: inline-flex; align-items: center; gap: 8px; color: #c8cdc8; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.server-card__body { display: flex; align-items: center; gap: 24px; padding: 29px 24px; }
.player-dial {
  display: grid; width: 112px; height: 112px; flex: 0 0 auto; place-items: center; border-radius: 50%;
  background: conic-gradient(var(--sl-accent) var(--progress), rgba(255,255,255,.08) 0);
  transition: background .5s ease;
}
.player-dial::before { grid-area: 1/1; width: 92px; height: 92px; border-radius: 50%; background: #0d1012; content: ""; }
.player-dial__inside { z-index: 1; grid-area: 1/1; display: grid; justify-items: center; line-height: 1; }
.player-dial strong { font-family: var(--sl-display); font-size: 32px; letter-spacing: 1px; }
.player-dial span { margin-top: 7px; color: var(--sl-muted); font-size: 8px; font-weight: 900; letter-spacing: 2px; }
.server-card__details { display: grid; min-width: 0; }
.server-card__details small { color: var(--sl-accent); font-size: 9px; font-weight: 900; letter-spacing: 2px; }
.server-card__details strong { margin: 5px 0 7px; overflow: hidden; font-family: var(--sl-display); font-size: 25px; letter-spacing: .5px; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.server-card__details span { color: var(--sl-muted); font-size: 12px; }
.server-card__connect { display: flex; align-items: center; justify-content: space-between; padding: 17px 22px; color: var(--sl-ink); background: var(--sl-accent); }
.server-card__connect > span { display: grid; font-size: 11px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; }
.server-card__connect small { margin-top: 4px; opacity: .7; font-size: 9px; font-weight: 700; letter-spacing: .2px; text-transform: none; }
.server-card__connect:hover svg { transform: translateX(4px); }
.server-card__connect svg { transition: transform .2s; }
.scroll-cue { position: absolute; z-index: 3; bottom: 30px; left: 50%; display: grid; justify-items: center; gap: 9px; color: #8b918c; font-size: 8px; font-weight: 900; letter-spacing: 2px; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 32px; background: linear-gradient(var(--sl-accent), transparent); }

.section-heading { margin-bottom: clamp(38px, 5vw, 68px); }
.section-heading h2, .join h2, .shop-teaser h2, .whitelist-intro h2 {
  margin: 15px 0 0; font-family: var(--sl-display); font-size: clamp(43px, 5vw, 72px); font-weight: 900; line-height: .98; letter-spacing: .3px; text-transform: uppercase;
}
.section-heading h2 em, .join h2 em { color: var(--sl-accent); font-style: normal; }
.section-heading--split { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.section-heading--split > p { max-width: 480px; margin: 0 0 3px; color: var(--sl-muted); }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.text-link svg { width: 18px; }
.text-link:hover { color: var(--sl-accent); }
.text-link:hover svg { transform: translateX(3px); }
.text-link svg { transition: transform .2s; }

.about { background: #101317; }
.about::before { position: absolute; top: -80px; right: -160px; width: 500px; height: 500px; border-radius: 50%; background: rgba(183,255,50,.07); filter: blur(110px); content: ""; }
.feature-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 16px; }
.feature-card { position: relative; min-height: 320px; padding: 36px; overflow: hidden; border: 1px solid var(--sl-line); background: #15191d; transition: border .2s, transform .2s, background .2s; }
.feature-card::after { position: absolute; right: -70px; bottom: -70px; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
.feature-card:hover { border-color: rgba(183,255,50,.4); background: #181d20; transform: translateY(-5px); }
.feature-card--large { background: linear-gradient(140deg, rgba(183,255,50,.12), #15191d 60%); }
.feature-card__number { position: absolute; top: 21px; right: 25px; color: rgba(255,255,255,.13); font-family: var(--sl-display); font-size: 43px; }
.feature-card__icon { display: grid; width: 55px; height: 55px; place-items: center; color: var(--sl-accent); border: 1px solid rgba(183,255,50,.32); background: rgba(183,255,50,.05); }
.feature-card__icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.feature-card h3 { margin: 50px 0 9px; font-family: var(--sl-display); font-size: 28px; letter-spacing: .3px; text-transform: uppercase; }
.feature-card p { margin: 0; color: var(--sl-muted); font-size: 14px; }

.news::before { position: absolute; inset: 0; opacity: .22; 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: 46px 46px; content: ""; }
.news .container { position: relative; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { overflow: hidden; border: 1px solid var(--sl-line); background: #121518; transition: transform .25s, border .25s; }
.news-card:hover { border-color: rgba(183,255,50,.35); transform: translateY(-6px); }
.news-card__image { position: relative; display: block; aspect-ratio: 1.46; overflow: hidden; background: #19201d; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform .5s, filter .5s; }
.news-card:hover .news-card__image img { filter: saturate(1); transform: scale(1.045); }
.news-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: radial-gradient(circle at 70% 30%, rgba(183,255,50,.25), transparent 35%), linear-gradient(135deg, #1d2821, #0b0e0d); }
.news-card__placeholder b { color: rgba(255,255,255,.08); font-family: var(--sl-display); font-size: 130px; transform: skew(-8deg); }
.news-card__date { position: absolute; bottom: 0; left: 0; padding: 8px 13px; color: #0a0c0b; background: var(--sl-accent); font-size: 9px; font-weight: 900; letter-spacing: 1px; }
.news-card__body { padding: 27px 27px 30px; }
.news-card__category { color: var(--sl-accent); font-size: 9px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.news-card h2, .news-card h3 { margin: 10px 0 9px; font-family: var(--sl-display); font-size: 27px; font-weight: 900; line-height: 1.08; letter-spacing: .2px; text-transform: uppercase; }
.news-card h2 a, .news-card h3 a { transition: color .2s; }
.news-card h2 a:hover, .news-card h3 a:hover { color: var(--sl-accent); }
.news-card p { margin: 0 0 20px; color: var(--sl-muted); font-size: 13px; }

.join { min-height: 760px; display: grid; align-items: center; background: #101418; }
.join::before { position: absolute; inset: 0; background: linear-gradient(90deg, #0c0f11 0, #0c0f11 42%, rgba(12,15,17,.7) 64%, rgba(12,15,17,.2)); content: ""; }
.join__art { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; opacity: .75; background: url("../images/hero-city.svg") 67% center / cover no-repeat; filter: grayscale(.3) contrast(1.1); transform: scaleX(-1); }
.join__inner { position: relative; z-index: 2; }
.join__content { width: min(620px, 58%); }
.steps { display: grid; gap: 0; margin: 36px 0; }
.step { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 17px 0; }
.step:not(:last-child)::after { position: absolute; top: 62px; bottom: -2px; left: 25px; width: 1px; background: rgba(255,255,255,.13); content: ""; }
.step > span { display: grid; width: 50px; height: 50px; place-items: center; color: var(--sl-accent); border: 1px solid rgba(183,255,50,.35); background: rgba(183,255,50,.06); font-family: var(--sl-display); font-size: 18px; }
.step h3 { margin: 0 0 3px; font-family: var(--sl-display); font-size: 21px; text-transform: uppercase; }
.step p { margin: 0; color: var(--sl-muted); font-size: 13px; }
.join__actions { display: flex; align-items: center; gap: 25px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { position: relative; overflow: hidden; border: 1px solid var(--sl-line); background: #121518; }
.team-card__image { display: grid; aspect-ratio: .82; place-items: center; overflow: hidden; background: linear-gradient(145deg, #1a201d, #0b0e0d); }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.28) saturate(.8); transition: transform .5s, filter .5s; }
.team-card__image > span { color: rgba(183,255,50,.18); font-family: var(--sl-display); font-size: 110px; }
.team-card:hover img { filter: grayscale(0) saturate(1); transform: scale(1.035); }
.team-card__body { position: absolute; right: 0; bottom: 0; left: 0; padding: 50px 22px 20px; background: linear-gradient(transparent, rgba(6,8,9,.96)); }
.team-card__body > span { color: var(--sl-accent); font-size: 8px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.team-card h2, .team-card h3 { margin: 3px 0 0; font-family: var(--sl-display); font-size: 25px; line-height: 1; text-transform: uppercase; }
.team-card__body p { margin: 9px 0 0; color: #b1b6b1; font-size: 12px; }
.team-grid--archive { grid-template-columns: repeat(3, 1fr); }

.shop-teaser { padding-block: 70px; color: #0a0c0b; background: var(--sl-accent); }
.shop-teaser::before { position: absolute; inset: 0; opacity: .09; background-image: repeating-linear-gradient(120deg, #000 0, #000 1px, transparent 1px, transparent 20px); content: ""; }
.shop-teaser__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.shop-teaser .section-kicker { color: #394c18; }
.shop-teaser h2 { margin-top: 5px; }
.shop-teaser p { max-width: 730px; margin: 10px 0 0; color: rgba(0,0,0,.7); }

.page-hero { position: relative; min-height: 465px; display: flex; align-items: end; padding: 155px 0 78px; overflow: hidden; background: #101418; }
.page-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #080a0c 0, rgba(8,10,12,.74) 55%, rgba(8,10,12,.25)), linear-gradient(0deg, #080a0c, transparent 55%); content: ""; }
.page-hero__art { position: absolute; inset: 0; background: url("../images/hero-city.svg") center 44% / cover no-repeat; opacity: .5; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(55px, 7vw, 94px); }
.page-hero p { max-width: 670px; margin: 15px 0 0; color: #bec3be; font-size: 17px; }
.page-hero--compact { min-height: 360px; }
.page-hero--compact::after { position: absolute; right: 4%; bottom: -120px; z-index: 0; color: rgba(183,255,50,.04); font-family: var(--sl-display); font-size: 430px; line-height: 1; content: "V"; }
.content-section { background: #101317; }
.entry-content { color: #d5d9d5; font-size: 17px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 1.8em 0 .55em; color: #fff; font-family: var(--sl-display); line-height: 1.08; text-transform: uppercase; }
.entry-content h2 { font-size: clamp(35px, 4vw, 50px); }
.entry-content h3 { font-size: 29px; }
.entry-content a:not(.button) { color: var(--sl-accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.entry-content blockquote { margin: 35px 0; padding: 20px 25px; border-left: 4px solid var(--sl-accent); background: #161b1e; font-size: 19px; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 12px 14px; border: 1px solid var(--sl-line); text-align: left; }
.entry-content th { color: var(--sl-accent); background: #161b1e; }
.entry-content .alignwide { width: min(1100px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }

.single-hero { position: relative; min-height: 560px; display: flex; align-items: end; padding: 170px 0 75px; overflow: hidden; background: linear-gradient(140deg, #171d19, #090b0c); }
.single-hero__image { position: absolute; inset: 0; }
.single-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.single-hero__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,10,12,1), rgba(8,10,12,.26) 72%), linear-gradient(90deg, rgba(8,10,12,.8), transparent); }
.single-hero__content { position: relative; z-index: 2; }
.single-hero h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(50px, 6.5vw, 92px); }
.single-meta { display: flex; gap: 10px; color: #bec3be; font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.single-footer { padding-bottom: 110px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 50px; }
.tag-list a { padding: 6px 11px; border: 1px solid var(--sl-line); color: #c1c6c1; font-size: 10px; text-transform: uppercase; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.post-navigation a { display: grid; padding: 20px; border: 1px solid var(--sl-line); background: #121518; font-family: var(--sl-display); font-size: 20px; text-transform: uppercase; }
.post-navigation a span { color: var(--sl-accent); font-family: var(--sl-body); font-size: 8px; font-weight: 900; letter-spacing: 2px; }
.nav-next { text-align: right; }

.whitelist-shell { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.whitelist-intro { position: sticky; top: 120px; }
.whitelist-intro h2 { font-size: clamp(40px, 4vw, 60px); }
.whitelist-intro > p { color: var(--sl-muted); }
.check-list { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; color: #d4d8d4; font-size: 13px; }
.check-list svg { width: 17px; flex: 0 0 auto; fill: none; stroke: var(--sl-accent); stroke-width: 2.5; }
.whitelist-form-card { padding: clamp(24px, 4vw, 46px); border: 1px solid var(--sl-line); border-top: 3px solid var(--sl-accent); background: #14181c; box-shadow: var(--sl-shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; margin: 0 0 19px; }
.form-field label, .form-consent { color: #e6e8e5; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.form-field label span, .form-consent span span { color: var(--sl-accent); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 2px;
  outline: none; color: #fff; background: #0c0f11; transition: border .2s, box-shadow .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--sl-accent); box-shadow: 0 0 0 3px rgba(183,255,50,.08); }
.form-field textarea { resize: vertical; }
.form-field--honeypot { position: absolute; left: -10000px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 8px 0 20px; color: #b6bbb6; font-size: 10px; line-height: 1.55; text-transform: none; }
.form-consent input { margin-top: 4px; accent-color: var(--sl-accent); }
.form-notice { margin-bottom: 25px; padding: 15px 17px; border-left: 3px solid; color: #dbe0db; background: #0d1012; font-size: 13px; }
.form-notice strong { display: block; color: #fff; }
.form-notice--success { border-color: var(--sl-accent); }
.form-notice--error { border-color: #ff4e57; }
.page-intro { margin-bottom: 55px; }

.pagination, .nav-links { margin-top: 50px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 7px; }
.pagination .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; padding-inline: 10px; border: 1px solid var(--sl-line); background: #121518; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.pagination .current, .pagination a:hover { color: #0b0d0c; border-color: var(--sl-accent); background: var(--sl-accent); }
.empty-state { max-width: 600px; margin: 0 auto; text-align: center; }
.empty-state > span { color: rgba(183,255,50,.15); font-family: var(--sl-display); font-size: 150px; line-height: 1; }
.empty-state h2 { margin: 0; font-family: var(--sl-display); font-size: 45px; text-transform: uppercase; }
.empty-state p { color: var(--sl-muted); }
.empty-state .button { margin-top: 15px; }
.error-page { position: relative; min-height: 85vh; display: grid; place-items: center; padding: 160px 0 100px; text-align: center; background: #0d1012; }
.error-page__art { position: absolute; inset: 0; opacity: .22; background: url("../images/hero-city.svg") center / cover no-repeat; filter: grayscale(1); }
.error-page::after { position: absolute; inset: 0; background: radial-gradient(circle, transparent, #080a0c 76%); content: ""; }
.error-page__content { position: relative; z-index: 2; }
.error-code { display: block; color: rgba(183,255,50,.17); font-family: var(--sl-display); font-size: clamp(140px, 23vw, 330px); line-height: .7; }
.error-page h1 { margin: 26px 0 12px; font-size: clamp(45px, 6vw, 78px); }
.error-page p { color: var(--sl-muted); }

.site-footer { position: relative; overflow: hidden; padding: 82px 0 22px; border-top: 1px solid var(--sl-line); background: #080a0c; }
.site-footer__glow { position: absolute; top: -180px; left: 10%; width: 480px; height: 300px; border-radius: 50%; background: rgba(183,255,50,.08); filter: blur(110px); }
.site-footer__grid { position: relative; display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 50px; }
.footer-brand p { max-width: 300px; margin-top: 20px; color: var(--sl-muted); font-size: 13px; }
.footer-column h2 { margin: 0 0 18px; color: #fff; font-family: var(--sl-display); font-size: 18px; letter-spacing: .5px; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-column a:not(.button) { color: #9ea49e; font-size: 12px; }
.footer-column a:hover { color: var(--sl-accent); }
.footer-cta .button:hover { color: #090b0c; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 65px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); color: #707670; font-size: 9px; letter-spacing: .3px; }
.site-footer__bottom p { margin: 0; }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb, .woocommerce .woocommerce-result-count { color: var(--sl-muted); }
.woocommerce ul.products li.product { padding: 18px; border: 1px solid var(--sl-line); background: #13171a; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: #fff; font-family: var(--sl-display); font-size: 24px; text-transform: uppercase; }
.woocommerce ul.products li.product .price, .woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--sl-accent); font-weight: 900; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  border-radius: 2px; font-size: 11px; font-weight: 900; letter-spacing: .6px; text-transform: uppercase;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li { border-color: var(--sl-line); background: #14181c; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { color: #0a0c0b; background: var(--sl-accent); }
.woocommerce table.shop_table { border-color: var(--sl-line); border-radius: 2px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single { color: #fff; border: 1px solid var(--sl-line); background: #101418; }
.woocommerce-message, .woocommerce-info { color: #dfe4df; border-top-color: var(--sl-accent); background: #14181c; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--sl-accent); }

@media (max-width: 1120px) {
  .header-status { display: none; }
  .hero__inner { grid-template-columns: 1fr 340px; gap: 45px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-cta { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  body.admin-bar .site-header { top: 46px; }
  .site-header__inner { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-navigation {
    position: absolute; top: 100%; right: 0; left: 0; display: none; margin: 0; padding: 12px 24px 25px;
    border-top: 1px solid var(--sl-line); background: rgba(7,9,10,.98); box-shadow: 0 20px 30px rgba(0,0,0,.35);
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .menu, .primary-navigation ul { display: grid; gap: 0; }
  .primary-navigation a { padding: 12px 0; }
  .primary-navigation a::after { bottom: 8px; }
  .primary-navigation .sub-menu { position: static; display: block; padding: 0 0 0 18px; border: 0; background: transparent; box-shadow: none; }
  .hero { min-height: auto; padding: 155px 0 110px; }
  .hero__inner { grid-template-columns: 1fr; }
  .server-card { width: min(460px, 100%); align-self: auto; }
  .scroll-cue { display: none; }
  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-grid > :last-child { grid-column: span 2; }
  .join__art { width: 100%; opacity: .22; }
  .join::before { background: rgba(8,10,12,.72); }
  .join__content { width: min(650px, 100%); }
  .whitelist-shell { grid-template-columns: 1fr; }
  .whitelist-intro { position: static; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: auto; }
}

@media (max-width: 640px) {
  .container, .container-wide, .container-narrow { width: min(calc(100% - 28px), var(--sl-container)); }
  .section { padding-block: 76px; }
  .wordmark__badge { width: 42px; height: 42px; font-size: 30px; }
	.default-brand-logo img { height: 52px; }
	.default-brand-logo--footer img { height: 72px; }
  .wordmark__text strong { max-width: 145px; font-size: 20px; }
  .wordmark__text small { font-size: 7px; letter-spacing: 2px; }
  .hero h1 { font-size: clamp(52px, 18vw, 75px); }
  .hero__actions, .hero__actions .button { width: 100%; }
  .hero__trust { gap: 10px 15px; }
  .server-card__body { gap: 15px; padding: 23px 17px; }
  .player-dial { width: 92px; height: 92px; }
  .player-dial::before { width: 75px; height: 75px; }
  .player-dial strong { font-size: 27px; }
  .server-card__details strong { max-width: 180px; font-size: 20px; }
  .feature-grid, .news-grid, .team-grid, .team-grid--archive { grid-template-columns: 1fr; }
  .feature-card--large, .news-grid > :last-child { grid-column: auto; }
  .section-heading--row { align-items: flex-start; flex-direction: column; }
  .join__actions { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .nav-next { text-align: left; }
  .shop-teaser__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
  .page-hero { min-height: 390px; padding-bottom: 58px; }
  .single-hero { min-height: 500px; }
}

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