/* ==========================================================================
   IMPERFECT GAMING
   refined dark gaming community site
   ========================================================================== */

:root {
  --bg:        #0a0c11;
  --bg-2:      #0e1117;
  --surface:   #14171f;
  --surface-2: #1a1e29;
  --surface-3: #232a39;
  --rule:      #1f2530;
  --rule-2:    #2b3343;

  --ink:       #ecedf0;
  --ink-2:     #c2c6cf;
  --ink-3:     #9aa0ab;
  --muted:     #6c7280;
  --muted-2:   #4a4f5b;

  --accent:    #ff5b3a;
  --accent-2:  #ff8a6b;
  --accent-dim:#b13b22;

  --teal:      #2dd4bf;
  --amber:     #f4c95d;
  --green:     #54e5b3;
  --red:       #ff5b3a;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Atmospheric background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 88% -10%, rgba(255, 91, 58, 0.10), transparent 60%),
    radial-gradient(700px 500px at 8% 8%, rgba(45, 212, 191, 0.06), transparent 65%),
    radial-gradient(800px 600px at 50% 110%, rgba(255, 91, 58, 0.06), transparent 70%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.shell { position: relative; z-index: 2; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Type helpers ---------------------------------------------------------- */
.mono   { font-family: var(--font-mono); letter-spacing: 0.02em; }
.serif  { font-family: var(--font-serif); font-style: italic; }
.display{ font-family: var(--font-display); letter-spacing: -0.02em; line-height: 0.95; }
.label  { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }

::selection { background: var(--accent); color: var(--bg); }

/* ====================================================================== */
/* NAV                                                                     */
/* ====================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 12, 17, 0.7);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--rule);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 6px 20px rgba(255, 91, 58, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.brand-mark::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.brand .it { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-2); margin-left: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 10px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-links a.cta {
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
  line-height: 1;
}
.nav-links a.cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}
.nav-links a.cta .cta-ico {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: block;
  color: inherit;
}

.burger {
  display: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink);
  border: 1px solid var(--rule-2);
}

/* ====================================================================== */
/* ANNOUNCEMENT BANNER                                                     */
/* ====================================================================== */
.announcement {
  background: linear-gradient(90deg, rgba(255, 91, 58, 0.12), rgba(255, 91, 58, 0.04));
  border-bottom: 1px solid rgba(255, 91, 58, 0.3);
  position: relative;
  z-index: 5;
}
.announcement-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.announcement-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.announcement-text {
  font-size: 14px;
  color: var(--ink-2);
}

/* ====================================================================== */
/* HERO                                                                    */
/* ====================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 11vw, 144px) 0 clamp(72px, 11vw, 132px);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) brightness(0.55) blur(2px);
  transform: scale(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 17, 0.62) 0%, rgba(10, 12, 17, 0.78) 60%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10, 12, 17, 0.55) 0%, rgba(10, 12, 17, 0.25) 50%, rgba(10, 12, 17, 0.55) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 80% 10%, rgba(255, 91, 58, 0.22), transparent 60%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(20, 23, 31, 0.65);
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.hero-eyebrow .pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}
.hero-eyebrow .pulse .pd {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(84, 229, 179, 0.7);
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(84, 229, 179, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(84, 229, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(84, 229, 179, 0); }
}
.hero-eyebrow .sep { color: var(--muted-2); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 28px 0 24px;
  max-width: 12ch;
}
.hero-title .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 60%, var(--accent-dim) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 56ch;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.hero-lede em { color: var(--ink); font-style: normal; font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  letter-spacing: 0.01em;
}
.btn .arrow { font-family: var(--font-mono); font-size: 13px; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 91, 58, 0.3);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--rule-2);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 91, 58, 0.4);
}

/* Live status card in hero (right column) */
.now-playing {
  background: rgba(20, 23, 31, 0.72);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(20px) saturate(1.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.now-playing .np-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 58, 0.35), transparent 70%);
  top: -80px; right: -80px;
  filter: blur(20px);
  pointer-events: none;
}
.np-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--rule-2);
}
.np-head .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.np-head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--green);
  text-transform: uppercase;
}
.np-head .live .pd {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
}
.np-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
}
.np-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.np-img img { width: 100%; height: 100%; object-fit: cover; }
.np-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
}
.np-body .game {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.np-body .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 4px 0 6px;
  color: var(--ink);
}
.np-body .sub {
  font-size: 13px;
  color: var(--ink-3);
}
.np-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--rule-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.np-foot a { color: var(--ink); }
.np-foot a:hover { color: var(--accent); }

/* Empty / "currently dark" state */
.now-playing.dark .np-glow {
  background: radial-gradient(circle, rgba(244, 201, 93, 0.18), transparent 70%);
}
.dark-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber);
  text-transform: uppercase;
}
.dark-tag::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(244, 201, 93, 0.6);
  opacity: 0.85;
}
.np-empty {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 6px 0;
}
.np-empty-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(244, 201, 93, 0.12), rgba(244, 201, 93, 0.02));
  border: 1px dashed rgba(244, 201, 93, 0.45);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: var(--amber);
}
.np-empty-body { min-width: 0; }
.np-empty-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
}
.np-empty-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* Hero stats strip (below grid) */
.hero-stats {
  margin-top: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hero-stat {
  background: rgba(20, 23, 31, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 22px 22px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-stat:hover {
  border-color: var(--rule-2);
  transform: translateY(-2px);
}
.hero-stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 10px;
  color: var(--ink);
}
.hero-stat .v .plus {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.hero-stat .d {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ====================================================================== */
/* SECTIONS                                                                */
/* ====================================================================== */
.sec {
  position: relative;
  padding: clamp(80px, 10vw, 144px) 0;
  border-top: 1px solid var(--rule);
}
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 36px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.sec-head .lhs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
}
.sec-head h2 .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--accent);
}
.sec-head .note {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 32ch;
  text-align: right;
}

/* ====================================================================== */
/* NETWORK                                                                 */
/* ====================================================================== */
.net-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.net-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.net-card:hover {
  transform: translateY(-4px);
  border-color: var(--rule-2);
  background: var(--surface-2);
}
.net-card .glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  top: -60px;
  right: -60px;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.net-card:hover .glow { opacity: 0.45; }
.net-card.a .glow { background: var(--accent); }
.net-card.b .glow { background: var(--teal); }
.net-card.c .glow { background: var(--amber); }

.net-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--rule-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.net-card.b .ico { color: var(--teal); }
.net-card.c .ico { color: var(--amber); }

.net-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 4px 0 0;
}
.net-card h3 .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.net-card.b h3 .it { color: var(--teal); }
.net-card.c h3 .it { color: var(--amber); }

.net-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.net-card .more {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-2);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.net-card .more::after { content: "→"; }
.net-card:hover .more { color: var(--accent); border-color: var(--accent); }
.net-card.b:hover .more { color: var(--teal); border-color: var(--teal); }
.net-card.c:hover .more { color: var(--amber); border-color: var(--amber); }

/* ====================================================================== */
/* OPERATIONS                                                              */
/* ====================================================================== */
.ops-active {
  position: relative;
  border: 1px solid var(--rule-2);
  border-radius: var(--radius-xl);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 88px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.ops-active .img-wrap {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.ops-active .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.95) contrast(1.05);
}
.ops-active:hover .img-wrap img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.1);
}
.ops-active .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 23, 31, 0) 50%, var(--surface) 100%),
    linear-gradient(180deg, rgba(20, 23, 31, 0) 50%, rgba(10, 12, 17, 0.55) 100%);
  pointer-events: none;
}
.ops-active .img-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(10, 12, 17, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(84, 229, 179, 0.45);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.ops-active .img-tag .pd {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
}
.ops-active .body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
}
.ops-active .kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.ops-active h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
}
.ops-active h3 .it { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
.ops-active .desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0;
}
.ops-active .info {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ops-active .info .item .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ops-active .info .item .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-top: 4px;
  color: var(--ink);
}
.ops-active .info .item .v.on { color: var(--green); }

.ops-archive-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.ops-archive-head h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.ops-archive-head h4 .it { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-3); }
.ops-archive-head .m {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.op-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.op-card:hover {
  transform: translateY(-4px);
  border-color: var(--rule-2);
  background: var(--surface-2);
}
.op-card .pic {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.op-card .pic img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.op-card:hover .pic img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}
.op-card .pic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10, 12, 17, 0.85));
  pointer-events: none;
}
.op-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.op-card .badge.standby {
  background: rgba(244, 201, 93, 0.16);
  color: var(--amber);
  border: 1px solid rgba(244, 201, 93, 0.36);
}
.op-card .badge.offline {
  background: rgba(255, 91, 58, 0.16);
  color: var(--accent-2);
  border: 1px solid rgba(255, 91, 58, 0.36);
}
.op-card .badge.online {
  background: rgba(84, 229, 179, 0.16);
  color: var(--green);
  border: 1px solid rgba(84, 229, 179, 0.36);
}
.op-card .pic .callsign {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 10px;
  background: rgba(10, 12, 17, 0.65);
  border: 1px solid var(--rule-2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.op-card .body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.op-card h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.op-card h5 .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
}
.op-card .game {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.op-card .summary {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.op-card .more {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--rule-2);
  align-self: flex-start;
  transition: color 0.25s var(--ease);
}
.op-card .more::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.op-card:hover .more { color: var(--accent); }
.op-card:hover .more::after { transform: translateX(4px); }

/* ====================================================================== */
/* SPOTLIGHT                                                               */
/* ====================================================================== */
.spotlight {
  border-top: 1px solid var(--rule);
  padding: clamp(64px, 8vw, 120px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.spotlight-side .kicker { display: inline-block; margin-bottom: 18px; }
.spotlight-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.spotlight-role {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.spotlight-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--accent);
}
@media (max-width: 900px) {
  .spotlight-grid { grid-template-columns: 1fr; }
}

/* ====================================================================== */
/* MANIFESTO / ABOUT                                                       */
/* ====================================================================== */
.manifesto {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0;
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 58, 0.08), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  position: relative;
}
.manifesto-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}
.manifesto-side .label { color: var(--accent); }
.manifesto-side .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.7;
}
.manifesto-side .since {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 16px;
}
.manifesto-side .since .yr { color: var(--accent); font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.manifesto-body p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 22px;
}
.manifesto-body p strong { font-weight: 600; }
.manifesto-body p .it { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
.manifesto-body p .quiet { color: var(--ink-3); }

.manifesto-tags {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.manifesto-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.manifesto-tags span.hot {
  background: rgba(255, 91, 58, 0.12);
  border-color: rgba(255, 91, 58, 0.35);
  color: var(--accent-2);
}

/* ====================================================================== */
/* FOOTER / SIGN-OFF                                                       */
/* ====================================================================== */
.signoff {
  padding: clamp(72px, 9vw, 112px) 0 36px;
  border-top: 1px solid var(--rule);
  background: var(--bg-2);
  position: relative;
}
.signoff-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: 52px;
  border-bottom: 1px solid var(--rule);
}
.signoff-mark {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.signoff-mark .b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.signoff-mark .b .it { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
.signoff-mark .desc { color: var(--ink-2); font-size: 15px; max-width: 42ch; line-height: 1.55; }
.signoff-mark .social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.signoff-mark .social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.signoff-mark .social a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.signoff-col h6 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.signoff-col ul { list-style: none; padding: 0; margin: 0; }
.signoff-col li { margin-bottom: 10px; font-size: 14.5px; }
.signoff-col a { color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; transition: color 0.25s var(--ease); }
.signoff-col a:hover { color: var(--ink); }
.signoff-col a::before { content: "→"; color: var(--muted-2); transition: color 0.25s var(--ease); }
.signoff-col a:hover::before { color: var(--accent); }

.signoff-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
  gap: 18px;
  flex-wrap: wrap;
}
.signoff-bottom a { color: var(--ink-2); }
.signoff-bottom a:hover { color: var(--accent); }

/* ====================================================================== */
/* DONATE PAGE                                                             */
/* ====================================================================== */
.donate-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0 clamp(48px, 6vw, 88px);
  border-bottom: 1px solid var(--rule);
}
.donate-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -120px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 58, 0.18), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.donate-hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  right: -160px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.10), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.donate-hero .kicker { display: inline-block; margin-bottom: 18px; }
.donate-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 9vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 14ch;
  position: relative;
}
.donate-title .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 60%, var(--accent-dim) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.donate-lede {
  max-width: 64ch;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  position: relative;
}

.donate-sec { padding-top: clamp(64px, 8vw, 112px); padding-bottom: clamp(64px, 8vw, 112px); }

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.donate-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 32px 32px 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.donate-card::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(255, 91, 58, 0.22), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s var(--ease);
}
.donate-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(45, 212, 191, 0.16), transparent 70%);
}
.donate-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-2);
  background: var(--surface-2);
}
.donate-card:hover::before { opacity: 1; }

.donate-card .dc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 6px;
}
.donate-card .dc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.donate-card:nth-child(2) .dc-tag { color: var(--teal); }
.donate-card .dc-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 91, 58, 0.18), rgba(255, 91, 58, 0.06));
  border: 1px solid rgba(255, 91, 58, 0.4);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent-2);
}
.donate-card:nth-child(2) .dc-ico {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.16), rgba(45, 212, 191, 0.04));
  border-color: rgba(45, 212, 191, 0.4);
  color: var(--teal);
}

.donate-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.donate-card h3 .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
}
.donate-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.donate-card .dc-detail {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--rule-2);
  border-radius: 14px;
  padding: 14px 18px;
}
.donate-card .dc-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.donate-card .dc-v {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  word-break: break-all;
  transition: color 0.25s var(--ease);
}
.donate-card .dc-v:hover { color: var(--accent); }
.donate-card .btn { align-self: flex-start; }

.thank-you {
  margin-top: 48px;
  padding: 36px 36px 40px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  position: relative;
  overflow: hidden;
}
.thank-you::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  top: -300px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 91, 58, 0.08), transparent 70%);
  pointer-events: none;
}
.thank-you .kicker { display: inline-block; margin-bottom: 14px; }
.thank-you p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 60ch;
}
.thank-you p strong { font-weight: 600; }
.ty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ty-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule-2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; }
}

/* ====================================================================== */
/* REVEAL                                                                  */
/* ====================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-in { transition-delay: 0.06s; }
[data-reveal-delay="2"].is-in { transition-delay: 0.14s; }
[data-reveal-delay="3"].is-in { transition-delay: 0.22s; }
[data-reveal-delay="4"].is-in { transition-delay: 0.30s; }
[data-reveal-delay="5"].is-in { transition-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ====================================================================== */
/* RESPONSIVE                                                              */
/* ====================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .ops-active { grid-template-columns: 1fr; }
  .ops-active .img-wrap { min-height: 320px; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head .note { text-align: left; max-width: none; }
  .net-grid, .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .signoff-top { grid-template-columns: 1fr 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 6px; padding: 18px var(--gutter); background: var(--bg); border-bottom: 1px solid var(--rule); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; }
  .burger { display: inline-flex; }
  .net-grid, .ops-grid, .signoff-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .ops-active .info { grid-template-columns: 1fr 1fr; gap: 18px; }
}
