/* ============================================================
   Forked.gg marketing site. Brand v0.1.
   Game Boy DMG discipline: ~70% void black, phosphor green,
   white + arcade signals used sparingly. Tokens shared with the
   Predictive Engine app (forked-platform/web/app.css).
   ============================================================ */
:root {
  --void: #050a05;
  --panel: #0e140c;
  --panel-2: #141b11;
  --panel-3: #182013;
  --moss: #81a454;
  --moss-deep: #5e7a3c;
  --boot: #b6d66b;
  --white: #ffffff;
  --amber: #e8b84b;
  --red: #d64b3f;
  --cyan: #5cc8c8;

  --text: #d4e3c2;
  --muted: #7f8e6c;
  --line: rgba(129, 164, 84, 0.2);
  --line-2: rgba(129, 164, 84, 0.4);

  --f-display: "Anton", system-ui, sans-serif;
  --f-pixel: "Press Start 2P", monospace;
  --f-body: "Space Grotesk", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 6px;
  --glow: 0 0 10px rgba(129, 164, 84, 0.4);
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { background: var(--void); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(1100px 520px at 50% -160px, rgba(129, 164, 84, 0.08), transparent 70%),
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 34px,
    var(--void);
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* CRT scanlines + vignette */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0 2px, rgba(0, 0, 0, 0.22) 2px 3px);
  mix-blend-mode: multiply;
}
.scanlines::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 130% at 50% 35%, transparent 62%, rgba(0, 0, 0, 0.5));
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }
.kicker {
  display: inline-block;
  font-family: var(--f-pixel);
  font-size: 9px;
  color: var(--moss-deep);
  letter-spacing: 1px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 5px 8px;
  text-transform: lowercase;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 40px);
  border-bottom: 1px solid var(--line-2);
  background: rgba(5, 10, 5, 0.82);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-badge { width: 38px; height: 38px; filter: drop-shadow(0 0 6px rgba(129, 164, 84, 0.4)); }
.brand-name {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 1.5px;
  color: var(--moss);
  text-shadow: var(--glow);
  line-height: 1;
}
.brand-dot { color: var(--moss-deep); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.14s, background 0.14s;
}
.nav-links a:hover, .nav-links a.active { color: var(--boot); background: rgba(129, 164, 84, 0.1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--moss); display: block; transition: 0.2s; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--boot);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.05s, box-shadow 0.14s;
}
.btn:hover { background: rgba(129, 164, 84, 0.16); color: var(--white); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--moss); color: var(--void); border-color: var(--moss); box-shadow: 0 0 0 rgba(129,164,84,0); }
.btn-primary:hover { background: var(--boot); color: var(--void); box-shadow: 0 6px 22px rgba(129, 164, 84, 0.28); }
.btn-ghost { background: transparent; }
.btn.small { padding: 9px 15px; font-size: 12.5px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 12vw, 140px) 0 clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}
.hero-art {
  position: absolute;
  inset: 0;
  background: url("/assets/keyart-1.png") center 28% / cover no-repeat; /* fallback */
  background-image: -webkit-image-set(url("/assets/keyart-1.webp") 1x);
  background-image: image-set(url("/assets/keyart-1.webp") type("image/webp"), url("/assets/keyart-1.png") type("image/png"));
  opacity: 0.20;
  filter: saturate(0.7) contrast(1.05);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 100% at 70% 30%, #000 30%, transparent 78%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 44px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 44px 100%;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 70%);
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 1px;
  margin: 20px 0 0;
  color: var(--white);
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
.hero-title em { color: var(--moss); font-style: normal; text-shadow: 0 0 24px rgba(129, 164, 84, 0.45); }
.hero-sub {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: rgba(14, 20, 12, 0.7); padding: 18px 20px; }
.stat-num { display: block; font-size: clamp(22px, 3vw, 30px); color: var(--boot); text-shadow: var(--glow); line-height: 1; }
.stat-num i { font-style: normal; color: var(--moss-deep); font-size: 0.6em; }
.stat-label { display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted); }

/* ============ SECTIONS ============ */
.section { padding: clamp(56px, 9vw, 104px) 0; border-bottom: 1px solid var(--line); position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(14, 20, 12, 0.55), rgba(5, 10, 5, 0)); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.06;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 16px 0 0;
}
.section-intro { margin: 18px 0 0; font-size: 16.5px; color: var(--muted); max-width: 680px; }

.lede { font-size: 17px; color: var(--text); line-height: 1.7; margin: 0; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.rebrand-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--moss);
  border-radius: var(--radius);
}
.rebrand-note p { margin: 0; font-size: 14.5px; color: var(--muted); }
.rebrand-note b { color: var(--text); }
.ico { width: 26px; height: 26px; fill: var(--moss); flex: none; }

.manifesto-cta {
  margin-top: 32px;
  padding: 26px 28px;
  background: linear-gradient(90deg, rgba(129, 164, 84, 0.1), var(--panel) 70%);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--moss);
  border-radius: var(--radius);
}
.manifesto-cta p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  max-width: 640px;
}

/* ============ CARD GRID ============ */
.card-grid { display: grid; gap: 18px; }
.card-grid.tenets, .card-grid.pillars { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color 0.16s, transform 0.16s, background 0.16s;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--panel-2); }
.card h3 { font-family: var(--f-display); font-weight: 400; font-size: 21px; letter-spacing: 0.5px; color: var(--text); margin: 16px 0 8px; }
.card p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.card.slim { padding: 20px 18px; }
.card.slim h3 { font-size: 19px; }
.card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card-link:hover { box-shadow: var(--glow); }
.card-go { margin-top: 14px; font-family: var(--f-mono); font-size: 12px; color: var(--moss); letter-spacing: 0.5px; }
.card-link:hover .card-go { color: var(--boot); }

.card-ico {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--panel-2);
}
.card-ico svg { width: 22px; height: 22px; fill: var(--moss); }
.card:hover .card-ico svg { fill: var(--boot); }

/* ============ PREDICTIVE FEATURE ============ */
.feature-row { display: grid; grid-template-columns: 1.2fr 0.95fr; gap: 28px; align-items: start; }
.feature-steps { display: flex; flex-direction: column; gap: 14px; }
.fstep {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.fstep-n { font-size: 22px; color: var(--moss-deep); flex: none; padding-top: 2px; }
.fstep h4 { font-family: var(--f-body); font-weight: 600; font-size: 16px; color: var(--white); margin: 0 0 5px; }
.fstep p { margin: 0; font-size: 14px; color: var(--muted); }

.payout-card {
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 84px;
}
.payout-head { margin-bottom: 18px; }
.payout-head h4 { font-family: var(--f-display); font-weight: 400; font-size: 22px; color: var(--text); margin: 12px 0 0; letter-spacing: 0.5px; }
.flow { display: flex; flex-direction: column; gap: 12px; }
.flow-row { display: grid; grid-template-columns: 110px 1fr 48px; align-items: center; gap: 12px; }
.flow-label { font-size: 13px; color: var(--muted); }
.flow-bar { height: 10px; background: var(--panel); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.flow-bar i { display: block; height: 100%; background: var(--moss-deep); }
.flow-pool .flow-bar i { background: linear-gradient(90deg, var(--moss), var(--boot)); }
.flow-val { font-size: 13px; color: var(--boot); text-align: right; }
.payout-note { margin: 16px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.payout-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.5px;
  color: var(--moss);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 4px 8px;
  background: rgba(129, 164, 84, 0.08);
}

.build-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 22px 26px;
  background: linear-gradient(120deg, rgba(129, 164, 84, 0.12), rgba(14, 20, 12, 0.5));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.build-banner p { margin: 10px 0 0; font-size: 14.5px; color: var(--text); max-width: 640px; }
.build-banner .btn { flex: none; }
.build-copy { flex: 1; min-width: 280px; }

/* FORKcast "now live" Forkie */
.build-forkie {
  flex: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: flex-end;
}
.build-forkie img {
  width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 5px 11px;
  font-family: var(--f-pixel);
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--void);
  background: var(--boot);
  border-radius: 999px;
  box-shadow: var(--glow);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(214, 75, 63, 0.7);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 75, 63, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(214, 75, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 75, 63, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}

/* ---- waitlist form ---- */
.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;
}
.waitlist-form { flex: none; width: min(360px, 100%); }
.waitlist-row { display: flex; gap: 10px; }
.waitlist-form input {
  flex: 1;
  min-width: 0;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 14px;
}
.waitlist-form input::placeholder { color: #5d6a4d; }
.waitlist-form input:focus { outline: none; border-color: var(--moss); box-shadow: 0 0 0 2px rgba(129, 164, 84, 0.18); }
.waitlist-form input.invalid { border-color: var(--red); box-shadow: 0 0 0 2px rgba(214, 75, 63, 0.18); }
.waitlist-form .btn { flex: none; }
.waitlist-msg { margin: 10px 0 0 !important; font-family: var(--f-mono); font-size: 12px; min-height: 16px; }
.waitlist-msg.ok { color: var(--boot); }
.waitlist-msg.err { color: #f0a59d; }
.waitlist-form.done .waitlist-row { display: none; }

/* ============ WAITLIST SUCCESS MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 10, 5, 0.82);
  backdrop-filter: blur(4px);
  animation: modalFade 0.2s ease both;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  position: relative;
  width: min(440px, 100%);
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(129, 164, 84, 0.12), 0 24px 70px rgba(0, 0, 0, 0.6), var(--glow);
  padding: clamp(26px, 5vw, 38px);
  text-align: center;
  animation: modalPop 0.24s cubic-bezier(0.2, 0.9, 0.3, 1.3) both;
}
.modal-card .kicker { display: inline-block; margin-bottom: 14px; }
.modal-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0 0 12px;
}
.modal-body { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 22px; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.16s;
}
.modal-close:hover { color: var(--white); background: rgba(129, 164, 84, 0.12); border-color: var(--line); }
.btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  color: var(--white);
  background: #5865f2;
  border: 1px solid #6b77f5;
  border-radius: var(--radius);
  text-decoration: none;
  transition: 0.18s;
}
.btn-discord:hover { background: #6b77f5; box-shadow: 0 8px 26px rgba(88, 101, 242, 0.45); transform: translateY(-1px); }
.btn-discord-ico { width: 22px; height: 22px; fill: currentColor; flex: none; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal-card { animation: none; }
}

/* ============ NODE STATS ============ */
.stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.bigstat {
  text-align: center;
  padding: 34px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bigstat-num { display: block; font-family: var(--f-display); font-size: clamp(38px, 6vw, 62px); color: var(--moss); text-shadow: var(--glow); line-height: 1; letter-spacing: 1px; }
.bigstat-label { display: block; margin-top: 12px; font-size: 13.5px; color: var(--muted); }

/* ============ GOVERNANCE ============ */
.gov-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gov-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.gov-card.highlight { border-color: var(--line-2); background: linear-gradient(160deg, rgba(129, 164, 84, 0.14), rgba(14, 20, 12, 0.6)); }
.gov-num { display: block; font-family: var(--f-display); font-size: 34px; color: var(--boot); text-shadow: var(--glow); line-height: 1; letter-spacing: 0.5px; }
.gov-card h4 { font-family: var(--f-body); font-weight: 600; font-size: 15px; color: var(--white); margin: 14px 0 7px; }
.gov-card p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.gov-foot {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.gov-foot p { margin: 0; font-size: 14px; color: var(--muted); }

/* ============ GAMES ============ */
.game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.game-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 20, 12, 0.4), var(--panel)),
    image-set(url("/assets/pattern.webp") type("image/webp"), url("/assets/pattern.png") type("image/png")) right -40px top -40px / 280px no-repeat;
  border: 1px solid var(--line);
  border-left: 3px solid var(--moss-deep);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.16s, transform 0.16s;
}
.game-card:hover { border-left-color: var(--boot); transform: translateY(-3px); }
.game-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(92, 200, 200, 0.4);
  background: rgba(92, 200, 200, 0.08);
  border-radius: 3px;
  padding: 4px 9px;
}
.game-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 30px; letter-spacing: 0.5px; color: var(--white); margin: 16px 0 10px; }
.game-card > p { margin: 0; font-size: 15px; color: var(--text); line-height: 1.65; }
.game-feats { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 8px; }
.game-feats li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--muted); }
.game-feats li::before { content: "▸"; position: absolute; left: 2px; color: var(--moss); }

/* ============ TEAM (roster cards) ============ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.member {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.16s, transform 0.16s, box-shadow 0.16s;
}
.member:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 0 18px rgba(129, 164, 84, 0.18); }
.member-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--void);
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.02); }
/* faint CRT scanlines over the portrait, on-brand with the rest of the site */
.member-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0 2px, rgba(0, 0, 0, 0.16) 2px 3px);
  mix-blend-mode: multiply;
}
.member-body { padding: 18px 18px 20px; }
.member-body h3 { font-family: var(--f-body); font-weight: 600; font-size: 18px; color: var(--white); margin: 0; }
.member-alias { font-family: var(--f-mono); font-size: 12px; color: var(--moss); font-weight: 400; }
.member-role { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.5px; color: var(--moss-deep); margin: 4px 0 10px; text-transform: uppercase; }
.member-body p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ============ CTA ============ */
.cta { position: relative; overflow: hidden; padding: clamp(64px, 10vw, 120px) 0; border-bottom: 1px solid var(--line); }
.cta-art {
  position: absolute;
  inset: 0;
  background: url("/assets/keyart-2.png") center / cover no-repeat; /* fallback */
  background-image: -webkit-image-set(url("/assets/keyart-2.webp") 1x);
  background-image: image-set(url("/assets/keyart-2.webp") type("image/webp"), url("/assets/keyart-2.png") type("image/png"));
  opacity: 0.18;
  -webkit-mask-image: radial-gradient(90% 120% at 50% 50%, #000 20%, transparent 75%);
  mask-image: radial-gradient(90% 120% at 50% 50%, #000 20%, transparent 75%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-title { font-family: var(--f-display); font-weight: 400; font-size: clamp(30px, 5vw, 56px); line-height: 1.04; color: var(--white); margin: 18px auto 0; max-width: 760px; letter-spacing: 0.5px; }
.cta-sub { margin: 20px auto 0; font-size: 17px; color: var(--text); max-width: 600px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta-channels { margin-top: 28px; font-family: var(--f-mono); font-size: 12.5px; color: var(--moss-deep); display: flex; gap: 12px; justify-content: center; }
.cta-channels .dot { color: var(--line-2); }

/* ============ FOOTER ============ */
.footer { padding: 48px 0 38px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-badge { width: 46px; height: 46px; filter: drop-shadow(0 0 6px rgba(129, 164, 84, 0.35)); }
.footer-name { font-family: var(--f-display); font-size: 22px; letter-spacing: 1.5px; color: var(--moss); text-shadow: var(--glow); }
.footer-tag { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--boot); }
.footer-legal { padding-top: 22px; }
.footer-legal p { margin: 0; font-size: 12px; color: var(--moss-deep); max-width: 760px; line-height: 1.6; }
.footer-meta { margin-top: 10px !important; font-family: var(--f-mono); letter-spacing: 0.5px; }

/* ============ REVEAL ANIMATION ============ */
.section .section-head,
.card,
.fstep,
.bigstat,
.gov-card,
.game-card,
.member,
.rebrand-note,
.stat,
.build-banner,
.payout-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.is-in .section-head,
.is-in .card,
.is-in .fstep,
.is-in .bigstat,
.is-in .gov-card,
.is-in .game-card,
.is-in .member,
.is-in .rebrand-note,
.is-in .stat,
.is-in .build-banner,
.is-in .payout-card,
.no-reveal .section-head,
.no-reveal .card,
.no-reveal .fstep,
.no-reveal .bigstat,
.no-reveal .gov-card,
.no-reveal .game-card,
.no-reveal .member,
.no-reveal .rebrand-note,
.no-reveal .stat,
.no-reveal .build-banner,
.no-reveal .payout-card { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .section .section-head, .card, .fstep, .bigstat, .gov-card, .game-card,
  .member, .rebrand-note, .stat, .build-banner, .payout-card { opacity: 1; transform: none; transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .card-grid.tenets, .card-grid.pillars { grid-template-columns: repeat(2, 1fr); }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .gov-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .payout-card { position: static; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 10, 5, 0.97);
    border-bottom: 1px solid var(--line-2);
    padding: 12px clamp(18px, 4vw, 40px) 18px;
    gap: 2px;
  }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .card-grid.tenets, .card-grid.pillars, .card-grid.four { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .build-banner { flex-direction: column; align-items: flex-start; }
  .nav-cta .btn { display: none; }
}

/* ============ WHITEPAPER v0.2 SECTIONS (specs / token / risk) ============ */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin-top: 26px; }
.spec { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 14px; text-align: center; }
.spec-val { display: block; font-family: var(--f-mono); font-size: 16px; color: var(--boot); line-height: 1.3; }
.spec-key { display: block; margin-top: 8px; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; }
.specs-note { margin-top: 16px; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.specs-note a { color: var(--moss); }

.token-row { margin-top: 30px; }
.token-cap { font-family: var(--f-display); font-size: clamp(28px, 4.5vw, 46px); color: var(--moss); text-shadow: var(--glow); line-height: 1.05; letter-spacing: 1px; }
.token-cap small { display: block; font-family: var(--f-body); font-size: 13.5px; color: var(--muted); letter-spacing: 0; margin-top: 12px; text-shadow: none; line-height: 1.6; }
.token-points h4 { font-family: var(--f-body); font-weight: 600; font-size: 15px; color: var(--white); margin: 18px 0 4px; }
.token-points p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.token-alert { display: flex; gap: 14px; align-items: flex-start; margin-top: 26px; background: rgba(232, 184, 75, 0.06); border: 1px solid rgba(232, 184, 75, 0.4); border-left: 3px solid #e8b84b; border-radius: var(--radius); padding: 18px 22px; }
.token-alert svg { width: 22px; height: 22px; flex: none; fill: #e8b84b; margin-top: 1px; }
.token-alert h4 { font-family: var(--f-body); font-weight: 700; font-size: 15px; color: #e8b84b; margin: 0 0 6px; letter-spacing: 0.3px; }
.token-alert p { margin: 0; font-size: 14px; color: var(--text); line-height: 1.6; }
.token-alert strong { color: var(--white); }

.risk-grid { grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.legal-note { margin-top: 24px; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--moss-deep); border-radius: var(--radius); padding: 18px 20px; }
.legal-note p { margin: 0; font-size: 12.5px; color: var(--moss-deep); line-height: 1.65; }

/* ============ LEGAL DOC PAGES (terms / privacy) ============ */
.legal-doc { max-width: 860px; margin: 0 auto; padding: 40px clamp(18px, 4vw, 40px) 80px; }
.legal-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.legal-top .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.legal-top .brand img { width: 34px; height: 34px; }
.legal-top .brand span { font-family: var(--f-display); font-size: 22px; letter-spacing: 1px; color: var(--moss); text-shadow: var(--glow); }
.legal-top a.back { font-size: 13px; color: var(--muted); text-decoration: none; font-family: var(--f-mono); }
.legal-top a.back:hover { color: var(--boot); }
.legal-doc h1 { font-family: var(--f-display); font-weight: 400; font-size: clamp(30px, 5vw, 46px); color: var(--white); letter-spacing: 0.5px; margin: 8px 0 6px; text-transform: uppercase; }
.legal-doc .meta { font-family: var(--f-mono); font-size: 12px; color: var(--moss-deep); letter-spacing: 0.5px; margin-bottom: 24px; }
.draft-banner { background: rgba(232, 184, 75, 0.08); border: 1px solid rgba(232, 184, 75, 0.5); border-radius: 8px; padding: 14px 18px; margin: 0 0 30px; }
.draft-banner p { margin: 0; font-size: 13.5px; color: #e8b84b; line-height: 1.6; }
.legal-doc h2 { font-family: var(--f-body); font-weight: 700; font-size: 18px; color: var(--moss); margin: 34px 0 10px; }
.legal-doc h3 { font-family: var(--f-body); font-weight: 600; font-size: 15px; color: var(--boot); margin: 20px 0 6px; }
.legal-doc p, .legal-doc li { font-size: 14.5px; color: var(--text); line-height: 1.7; }
.legal-doc p { margin: 0 0 12px; }
.legal-doc ul { margin: 0 0 14px; padding-left: 22px; }
.legal-doc li { margin: 0 0 7px; }
.legal-doc strong { color: var(--white); }
.legal-doc .ph { color: #e8b84b; font-style: italic; }
.legal-doc .toc { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 18px 22px; margin: 0 0 30px; }
.legal-doc .toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; }
.legal-doc .toc a { color: var(--muted); text-decoration: none; font-size: 13.5px; }
.legal-doc .toc a:hover { color: var(--boot); }
.legal-doc hr { border: none; border-top: 1px solid var(--line); margin: 34px 0; }

/* ============ NODE LICENSE PRICING ============ */
.node-pricing { margin-top: 30px; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--moss-deep); border-radius: var(--radius); padding: 24px clamp(18px, 3vw, 28px); }
.np-head h3 { font-family: var(--f-body); font-weight: 700; font-size: 18px; color: var(--white); margin: 10px 0 0; }
.np-row { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 30px; align-items: center; margin-top: 20px; }
.np-price { display: block; font-family: var(--f-display); font-size: clamp(40px, 6vw, 60px); color: var(--moss); text-shadow: var(--glow); line-height: 1; letter-spacing: 1px; }
.np-now-label { display: block; font-size: 13px; color: var(--muted); margin-top: 8px; }
.np-bar { height: 8px; background: var(--void); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; margin: 20px 0 8px; }
.np-bar i { display: block; height: 100%; min-width: 3px; background: linear-gradient(90deg, var(--moss), var(--boot)); }
.np-claimed-label { font-size: 13px; color: var(--muted); }
.np-claimed-label strong { color: var(--boot); }
.np-mech { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 16px 0 0; }
.np-mech strong { color: var(--text); }
.np-asof { font-family: var(--f-mono); font-size: 11px; color: var(--moss-deep); margin: 10px 0 0; letter-spacing: 0.5px; }
.np-svg { width: 100%; height: auto; display: block; }
.np-chart text { font-family: var(--f-mono); }
@media (max-width: 760px) { .np-row { grid-template-columns: 1fr; gap: 22px; } }

/* ============ HOSTDUDES PARTNER CTA ============ */
.host-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 22px; padding: 18px 22px; background: linear-gradient(120deg, rgba(91, 140, 255, 0.07), rgba(91, 140, 255, 0.02)); border: 1px solid rgba(91, 140, 255, 0.35); border-radius: var(--radius); text-decoration: none; transition: border-color 0.16s, transform 0.16s, background 0.16s; }
.host-cta:hover { border-color: #5b8cff; transform: translateY(-2px); background: linear-gradient(120deg, rgba(91, 140, 255, 0.12), rgba(91, 140, 255, 0.04)); }
.host-brand { display: flex; align-items: center; gap: 9px; flex: none; }
.host-icon { width: 24px; height: 24px; color: #5b8cff; flex: none; }
.host-name { font-family: var(--f-body); font-weight: 700; font-size: 18px; color: #cfe0ff; letter-spacing: 0.3px; }
.host-text { flex: 1 1 220px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.host-go { flex: none; font-family: var(--f-mono); font-size: 13px; font-weight: 500; color: #5b8cff; white-space: nowrap; }
.host-cta:hover .host-go { color: #93c5fd; }
@media (max-width: 600px) { .host-cta { gap: 12px; } .host-go { flex: 1 1 100%; } }

/* honeypot: off-screen, never shown to humans */
.waitlist-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.waitlist-consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; max-width: 480px; font-size: 12px; line-height: 1.45; color: var(--muted); cursor: pointer; }
.waitlist-consent input { flex: none; width: 14px; height: 14px; margin-top: 1px; accent-color: var(--moss); cursor: pointer; }

/* ============ SOCIAL LINKS ============ */
.btn.btn-icon { display: inline-flex; align-items: center; gap: 8px; }
.btn-icon svg { width: 17px; height: 17px; fill: currentColor; flex: none; }
.cta-social { display: flex; justify-content: center; gap: 14px; margin-top: 24px; }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); transition: color 0.16s, border-color 0.16s, transform 0.16s; }
.social-icon svg { width: 19px; height: 19px; fill: currentColor; }
.social-icon:hover { color: var(--boot); border-color: var(--line-2); transform: translateY(-2px); }

/* ============ REVISED WHITEPAPER — RETRO "COMING SOON" ============ */
.wp-soon { position: relative; max-width: 720px; margin: 0 auto; text-align: center; padding: 42px clamp(20px, 5vw, 50px);
  border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(129, 164, 84, 0.05) 0 1px, transparent 1px 4px),
    radial-gradient(120% 130% at 50% 0%, rgba(129, 164, 84, 0.12), transparent 68%),
    var(--panel);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 44px rgba(129, 164, 84, 0.16), inset 0 0 70px rgba(129, 164, 84, 0.05); }
.wp-soon-tag { display: inline-block; font-family: var(--f-pixel, "Press Start 2P", monospace); font-size: 9px; letter-spacing: 1.5px; color: var(--moss); text-transform: uppercase; border: 1px solid var(--line-2); border-radius: 3px; padding: 7px 11px; margin-bottom: 22px; }
.wp-soon-title { font-family: var(--f-display); font-weight: 400; font-size: clamp(34px, 7vw, 62px); color: var(--white); text-transform: uppercase; letter-spacing: 1px; line-height: 1; margin: 0; animation: wpGlow 2.4s ease-in-out infinite; }
.wp-soon-sub { color: var(--muted); font-size: 14.5px; line-height: 1.6; max-width: 500px; margin: 14px auto 0; }
.wp-soon-bar { position: relative; height: 14px; max-width: 420px; margin: 28px auto 20px; border: 1px solid var(--line-2); border-radius: 4px; background: var(--void); overflow: hidden; }
.wp-soon-bar i { position: absolute; top: 0; bottom: 0; width: 32%; background: linear-gradient(90deg, transparent, var(--moss), var(--boot), var(--moss), transparent); box-shadow: 0 0 14px var(--moss); animation: wpScan 1.7s ease-in-out infinite; }
.wp-soon-blink { display: inline-block; font-family: var(--f-pixel, "Press Start 2P", monospace); font-size: clamp(11px, 2.4vw, 15px); letter-spacing: 2px; color: #e8b84b; text-shadow: 0 0 10px rgba(232, 184, 75, 0.6); animation: wpBlink 1.05s steps(1) infinite; }
@keyframes wpGlow { 0%, 100% { text-shadow: 0 0 10px rgba(129, 164, 84, 0.5); } 50% { text-shadow: 0 0 24px rgba(129, 164, 84, 0.9), 0 0 6px rgba(182, 214, 107, 0.7); } }
@keyframes wpScan { 0% { left: -34%; } 100% { left: 102%; } }
@keyframes wpBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.12; } }
@media (prefers-reduced-motion: reduce) {
  .wp-soon-title, .wp-soon-bar i, .wp-soon-blink { animation: none; }
  .wp-soon-bar i { left: 0; width: 100%; opacity: 0.5; }
}

/* ============ REVISED WHITEPAPER — BIG ANNOUNCEMENT (bookended by characters) ============ */
.wp-hero { position: relative; display: flex; align-items: center; justify-content: center; gap: clamp(8px, 3vw, 44px); flex-wrap: wrap; max-width: 980px; margin: 0 auto; padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 48px); border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; text-align: center;
  background: repeating-linear-gradient(0deg, rgba(129, 164, 84, 0.05) 0 1px, transparent 1px 4px), radial-gradient(120% 130% at 50% 0%, rgba(129, 164, 84, 0.14), transparent 66%), var(--panel);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 50px rgba(129, 164, 84, 0.18), inset 0 0 80px rgba(129, 164, 84, 0.05); }
.wp-hero-char { width: clamp(112px, 22vw, 188px); height: auto; flex: none; filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.45)); }
.wp-hero-left { animation: wpFloat 3s ease-in-out infinite; }
.wp-hero-right { animation: wpFloat 3.4s ease-in-out infinite 0.5s; }
.wp-hero-mid { flex: 1 1 360px; max-width: 460px; }
.wp-hero-tag { display: inline-block; font-family: var(--f-pixel, "Press Start 2P", monospace); font-size: 9px; letter-spacing: 1.5px; color: var(--moss); text-transform: uppercase; border: 1px solid var(--line-2); border-radius: 3px; padding: 7px 11px; margin-bottom: 18px; }
.wp-hero-title { font-family: var(--f-display); font-weight: 400; font-size: clamp(30px, 5.2vw, 52px); color: var(--white); text-transform: uppercase; letter-spacing: 1px; line-height: 1.04; margin: 0; animation: wpGlow 2.4s ease-in-out infinite; }
.wp-hero-text { color: var(--text); font-size: 15px; line-height: 1.65; margin: 16px auto 0; }
.wp-hero-bar { position: relative; height: 14px; max-width: 360px; margin: 22px auto 16px; border: 1px solid var(--line-2); border-radius: 4px; background: var(--void); overflow: hidden; }
.wp-hero-bar i { position: absolute; top: 0; bottom: 0; width: 32%; background: linear-gradient(90deg, transparent, var(--moss), var(--boot), var(--moss), transparent); box-shadow: 0 0 14px var(--moss); animation: wpScan 1.7s ease-in-out infinite; }
.wp-hero-blink { display: inline-block; font-family: var(--f-pixel, "Press Start 2P", monospace); font-size: clamp(11px, 2.2vw, 14px); letter-spacing: 2px; color: #e8b84b; text-shadow: 0 0 10px rgba(232, 184, 75, 0.6); animation: wpBlink 1.05s steps(1) infinite; }
@keyframes wpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .wp-hero-title, .wp-hero-bar i, .wp-hero-blink, .wp-hero-left, .wp-hero-right { animation: none; } .wp-hero-bar i { left: 0; width: 100%; opacity: 0.5; } }
@media (max-width: 620px) { .wp-hero-char { width: clamp(96px, 30vw, 132px); } }

/* ============ NEWS / BLOG ============ */
.news-page-hero { text-align: center; padding: clamp(72px, 12vh, 128px) 0 clamp(28px, 5vh, 48px); }
.news-page-hero .kicker { margin-bottom: 18px; }
.news-page-hero h1 { font-family: var(--f-display); font-weight: 400; font-size: clamp(34px, 6vw, 60px); color: var(--white); text-transform: uppercase; letter-spacing: 1px; line-height: 1.04; margin: 0 0 16px; }
.news-page-hero h1 em { color: var(--moss); font-style: normal; }
.news-page-hero p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.65; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 10px 0 clamp(64px, 12vh, 120px); }
.news-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
.news-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--line-2); }
.news-card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--void); }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.news-card:hover .news-card-media img { transform: scale(1.04); }
.news-card-tag { position: absolute; top: 10px; left: 10px; font-family: var(--f-pixel); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--boot); background: rgba(5, 10, 5, 0.82); border: 1px solid var(--line-2); border-radius: 3px; padding: 6px 8px; }
.news-card-body { display: flex; flex-direction: column; flex: 1; padding: 18px 18px 20px; }
.news-date { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--moss-deep); margin-bottom: 9px; }
.news-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 20px; letter-spacing: 0.4px; line-height: 1.18; color: var(--text); margin: 0 0 10px; }
.news-card:hover h3 { color: var(--white); }
.news-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.news-card-more { margin-top: auto; padding-top: 16px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.5px; color: var(--moss); }
.news-card:hover .news-card-more { color: var(--boot); }

/* ---- single post ---- */
.post-shell { max-width: 760px; margin: 0 auto; padding: clamp(72px, 11vh, 116px) 0 clamp(64px, 12vh, 112px); }
.post-back { display: inline-block; font-family: var(--f-mono); font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 26px; }
.post-back:hover { color: var(--boot); }
.post-head .news-date { font-size: 12.5px; margin-bottom: 12px; }
.post-head h1 { font-family: var(--f-display); font-weight: 400; font-size: clamp(30px, 5.4vw, 50px); color: var(--white); text-transform: uppercase; letter-spacing: 0.6px; line-height: 1.05; margin: 0 0 16px; }
.post-standfirst { font-size: 18px; line-height: 1.6; color: var(--text); margin: 0 0 26px; }
.post-hero-media { border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; margin: 0 0 34px; background: var(--void); }
.post-hero-media img { width: 100%; height: auto; display: block; }
.post-figure { margin: 30px 0; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; background: var(--void); }
.post-figure img { width: 100%; height: auto; display: block; }
.post-figure figcaption { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); line-height: 1.5; padding: 12px 16px; border-top: 1px solid var(--line); background: var(--panel); }
.post-figure figcaption b { color: var(--moss); font-weight: 500; }
.post-body { font-size: 16.5px; line-height: 1.75; color: var(--text); }
.post-body > p { margin: 0 0 20px; }
.post-body h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 3.4vw, 30px); color: var(--white); text-transform: uppercase; letter-spacing: 0.4px; margin: 40px 0 14px; }
.post-body h3 { font-family: var(--f-display); font-weight: 400; font-size: 20px; color: var(--moss); letter-spacing: 0.3px; margin: 30px 0 10px; }
.post-body a { color: var(--boot); text-decoration: underline; text-underline-offset: 3px; }
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 22px; }
.post-body li { margin: 0 0 9px; color: var(--text); }
.post-body li::marker { color: var(--moss); }
.post-body strong { color: var(--white); font-weight: 600; }
.post-body code { font-family: var(--f-mono); font-size: 0.88em; background: var(--panel-2); border: 1px solid var(--line); border-radius: 4px; padding: 1px 6px; color: var(--boot); }
.post-callout { border: 1px solid var(--line-2); border-left: 3px solid var(--moss); border-radius: 8px; background: var(--panel); padding: 18px 20px; margin: 26px 0; }
.post-callout p { margin: 0; font-size: 15px; color: var(--text); }
.post-callout .post-callout-k { display: block; font-family: var(--f-pixel); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--moss); margin-bottom: 9px; }
.post-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.post-stat { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); padding: 16px 14px; text-align: center; }
.post-stat b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 26px; color: var(--boot); line-height: 1.1; }
.post-stat span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.post-share { margin: 40px 0 0; padding: 16px 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-share-k { font-family: var(--f-pixel); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; color: var(--moss); flex: none; }
.post-share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 13px; font-weight: 500; color: var(--text); text-decoration: none; background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 6px; padding: 8px 13px; cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.15s; }
.share-btn:hover { color: var(--void); background: var(--moss); border-color: var(--moss); transform: translateY(-2px); }
.share-btn svg { width: 15px; height: 15px; fill: currentColor; flex: none; }
.share-btn.is-copied { color: var(--boot); border-color: var(--boot); background: var(--panel-2); }
@media (max-width: 480px) { .post-share { flex-direction: column; align-items: flex-start; gap: 12px; } }

.post-foot { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.post-foot .btn { flex: none; }
.post-more-link { font-family: var(--f-mono); font-size: 13px; color: var(--moss); text-decoration: none; }
.post-more-link:hover { color: var(--boot); }

@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } .post-stats { grid-template-columns: 1fr; } }
