/* antimutual — glass 3D dark.
   Floating orbs underneath, frosted-glass surfaces, rim highlights,
   3D tilt on cards. Premium mood, no shock. */

:root {
  --bg-deep:    #07070a;
  --bg:         #0c0c11;
  --bg-raise:   #11111a;
  --bg-card:    #16161e;

  --ink:        #f6f6fa;
  --fg:         #c4c4d2;
  --fg-dim:     #888896;
  --fg-mute:    #5e5e6a;
  --fg-faint:   #2a2a35;
  --rule:       rgba(255, 255, 255, 0.06);
  --rim:        rgba(255, 255, 255, 0.08);
  --rim-hi:     rgba(255, 255, 255, 0.12);

  --glass-bg:   rgba(22, 22, 30, 0.55);
  --glass-bg-2: rgba(28, 28, 38, 0.35);
  --glass-deep: rgba(12, 12, 18, 0.7);

  --accent:      #c9a961;
  --accent-2:    #e2c785;
  --accent-soft: rgba(201, 169, 97, 0.14);
  --accent-glow: rgba(201, 169, 97, 0.32);
  --accent-ink:  #1a140a;

  --warn:        #f472b6;
  --warm:        #fbbf24;
  --cool:        #7dd3fc;
  --mutual-blue: #82a6ff;

  --display: "Inter", "SF Pro Display", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sans:    "Inter", "SF Pro Text",    system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:    "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card:   0 1px 0 0 rgba(255,255,255,0.06) inset, 0 18px 48px rgba(0,0,0,0.45);
  --shadow-float:  0 1px 0 0 rgba(255,255,255,0.08) inset, 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}

* { box-sizing: border-box; }
html, body { margin: 0; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background-color: var(--bg-deep);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* atmospheric floating gradient orbs underneath the glass */
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background:
    radial-gradient(50% 35% at 78% 12%,  rgba(226, 199, 133, 0.18) 0%, transparent 60%),
    radial-gradient(40% 30% at 12% 80%,  rgba(130, 166, 255, 0.14) 0%, transparent 60%),
    radial-gradient(60% 40% at 50% 110%, rgba(244, 114, 182, 0.10) 0%, transparent 60%);
  filter: blur(40px) saturate(120%);
}
body::after {
  background:
    radial-gradient(35% 25% at 88% 60%, rgba(201, 169, 97, 0.10) 0%, transparent 70%),
    radial-gradient(45% 30% at 22% 35%, rgba(125, 211, 252, 0.08) 0%, transparent 70%);
  filter: blur(70px);
}

main, header, footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font-family: inherit; }

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

/* ====== TOP BAR (glass) ====== */
.top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(7, 7, 10, 0.55);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  color: var(--ink);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.04) inset;
}
.logo { display: inline-flex; align-items: center; gap: 10px; height: 32px; }
.logo__mark {
  height: 32px; width: auto; display: block;
  filter: drop-shadow(0 4px 14px rgba(201, 169, 97, 0.18));
}
.logo__word {
  font-family: var(--display); font-weight: 600;
  font-size: 18px; line-height: 1; letter-spacing: -0.015em;
  color: var(--ink);
}

.top__nav { display: flex; gap: 28px; font-size: 14px; }
.top__nav a {
  color: var(--fg-dim); padding: 6px 0;
  transition: color 180ms var(--ease);
}
.top__nav a:hover { color: var(--ink); }
.top__nav-ext { color: var(--mutual-blue) !important; }
.top__nav-ext:hover { color: #b9cdff !important; }
.top__nav-ext span { display: inline-block; transition: transform 180ms var(--ease); }
.top__nav-ext:hover span { transform: translate(2px, -2px); }

.top__submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
  color: var(--accent-ink);
  font-weight: 600; font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.18) inset,
    0 4px 12px rgba(201, 169, 97, 0.32);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.top__submit:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.55) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.18) inset,
    0 8px 18px rgba(201, 169, 97, 0.42);
}

.marquee { display: none; }

/* hamburger button — hidden on desktop */
.top__menu {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--glass-deep);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--rim);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.05) inset;
  position: relative;
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}
.top__menu:hover { border-color: var(--rim-hi); }
.top__menu-bar {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 180ms var(--ease), top 220ms var(--ease);
}
.top__menu-bar:nth-child(1) { top: 12px; }
.top__menu-bar:nth-child(2) { top: 18px; }
.top__menu-bar:nth-child(3) { top: 24px; }
.top__menu[aria-expanded="true"] .top__menu-bar:nth-child(1) { top: 18px; transform: rotate(45deg); }
.top__menu[aria-expanded="true"] .top__menu-bar:nth-child(2) { opacity: 0; }
.top__menu[aria-expanded="true"] .top__menu-bar:nth-child(3) { top: 18px; transform: rotate(-45deg); }

.top__scrim {
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(7, 7, 10, 0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 49;
  animation: scrim-in 180ms var(--ease);
}
@keyframes scrim-in { from { opacity: 0; } to { opacity: 1; } }

/* ====== HERO ====== */
.hero { padding: 128px 32px 96px; max-width: 1200px; margin: 0 auto; }
.hero__kill {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 44px;
  text-transform: lowercase;
  display: grid;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.hero__kill-line { display: block; }
.hero__kill-line--or {
  font-weight: 300; font-style: italic;
  font-size: 0.36em;
  color: var(--fg-mute);
  padding-left: 0.2em;
  margin-top: 0.04em; margin-bottom: 0.04em;
  letter-spacing: -0.01em;
  font-stretch: normal;
}
.hero__kill-line--red {
  color: var(--accent);
  text-shadow:
    0 0 28px rgba(201, 169, 97, 0.35),
    0 6px 30px rgba(0, 0, 0, 0.4);
  -webkit-text-stroke: 0;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 58ch;
  color: var(--fg);
  margin: 0;
}

/* kill old brutalist surfaces */
.hero__stats, .scanlines, .grain, .feed, .manifesto-bar, .warning-strip,
.dossier-grid, .dossier-card, .dossier-row, .dossier, .listing,
.drop-card, .drop-card__clip, .drop-card__body, .drop-card__meta,
.verdict, .verdict__head, .verdict__body, .verdict__foot,
.drop__head, .drop__body, .drop__nav, .drop__title, .drop__meta,
.clip, .clip__frame, .clip__noise, .clip__overlay, .clip__timestamp, .clip__numbers,
.archive, .archive__head, .archive__list, .archive__row,
.mutual-rebuttal, .editor-note { display: none; }

/* ====== WAITLIST (floating glass card) ====== */
.wl {
  padding: 48px 32px 96px;
  position: relative;
}
.wl__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding: 56px 56px 56px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.005) 100%),
    var(--glass-bg);
  backdrop-filter: saturate(140%) blur(30px);
  -webkit-backdrop-filter: saturate(140%) blur(30px);
  border: 1px solid var(--rim);
  box-shadow: var(--shadow-float);
  position: relative;
}
.wl__inner::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 35%);
  pointer-events: none;
}
.wl__eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin: 0;
}
.wl__head {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  text-transform: lowercase;
}
.wl__head--red {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(201, 169, 97, 0.32);
}
.wl__lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 56ch;
  color: var(--fg-dim);
  margin: 0;
}
.wl__stats { display: flex; gap: 12px; align-items: center; }
.wl__stat {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--mono); font-size: 13px;
  color: var(--fg-dim); margin: 0;
  padding: 8px 14px;
  background: var(--glass-deep);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--rim);
  border-radius: 999px;
  width: max-content;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.05) inset;
}
.wl__stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.wl__stat-lbl { letter-spacing: 0.02em; text-transform: lowercase; }

.wl__form {
  display: grid; gap: 18px;
  max-width: 520px;
  margin-top: 8px;
  position: relative;
}
.wl__field { display: grid; gap: 8px; }
.wl__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-mute);
}
.wl__input {
  background: var(--glass-deep);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  border: 1px solid var(--rim);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.05) inset, 0 4px 18px rgba(0,0,0,0.18);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.wl__input::placeholder { color: var(--fg-mute); }
.wl__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(28, 28, 38, 0.7);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.08) inset,
    0 0 0 4px var(--accent-soft),
    0 6px 20px rgba(0,0,0,0.22);
}

.wl__consent {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  font-size: 13px; color: var(--fg-dim);
  line-height: 1.5;
}
.wl__consent input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; }

.wl__submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
  color: var(--accent-ink);
  font-weight: 600; font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  justify-self: start;
  cursor: pointer;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 0 rgba(0,0,0,0.18) inset,
    0 8px 22px rgba(201, 169, 97, 0.32);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.wl__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 0 rgba(0,0,0,0.18) inset,
    0 14px 32px rgba(201, 169, 97, 0.42);
}
.wl__submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.wl__msg {
  font-family: var(--mono); font-size: 12px;
  margin: 0; min-height: 1.4em;
  letter-spacing: 0.02em;
}
.wl__msg--ok  { color: var(--accent); }
.wl__msg--err { color: var(--warn); }

/* ====== PROS LINK (glass tile) ====== */
.pros { padding: 0 32px 96px; }
.pros__link {
  display: block;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 56px;
  border-radius: 24px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(130, 166, 255, 0.08) 0%, transparent 45%),
    var(--glass-bg-2);
  backdrop-filter: saturate(150%) blur(28px);
  -webkit-backdrop-filter: saturate(150%) blur(28px);
  border: 1px solid var(--rim);
  box-shadow: var(--shadow-float);
  cursor: pointer;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
  transform: perspective(1200px) rotateX(0) translateZ(0);
  position: relative;
}
.pros__link::before {
  content: ""; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 30%);
  pointer-events: none;
}
.pros__link:hover {
  transform: perspective(1200px) rotateX(-1.2deg) translateY(-3px);
  border-color: rgba(130, 166, 255, 0.3);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.1) inset,
    0 36px 90px rgba(0,0,0,0.55),
    0 0 60px rgba(130, 166, 255, 0.1);
}
.pros__inner { display: grid; gap: 16px; position: relative; }
.pros__eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mutual-blue); margin: 0;
}
.pros__head {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: lowercase;
  color: var(--ink);
  margin: 0;
}
.pros__em { color: var(--mutual-blue); font-style: italic; font-weight: 500; }
.pros__url {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-weight: 500; font-style: normal;
  font-size: 0.26em; letter-spacing: 0.02em;
  padding: 10px 18px;
  border: 1px solid var(--rim);
  border-radius: 999px;
  color: var(--fg-dim);
  margin-top: 16px;
  background: var(--glass-deep);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: border-color 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}
.pros__url::after {
  content: "→"; font-family: var(--sans); font-size: 1.1em;
  transition: transform 220ms var(--ease);
}
.pros__link:hover .pros__url {
  border-color: var(--mutual-blue);
  color: var(--ink);
  background: rgba(130, 166, 255, 0.12);
}
.pros__link:hover .pros__url::after { transform: translateX(6px); }
.pros__sub {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55;
  color: var(--fg-dim); max-width: 58ch; margin: 0;
}

/* ====== ABOUT ====== */
.about { display: block; }
.about > section { width: 100%; padding: 112px 32px; position: relative; }
.about h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: lowercase;
  margin: 0 0 24px;
}
.about p { margin: 0 0 16px; }

.ab-hero {
  padding: 128px 32px 96px !important;
  border-bottom: 1px solid var(--rule);
}
.ab-hero__eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px !important;
}
.ab-hero__head {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(52px, 9vw, 144px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: var(--ink);
  margin: 0 0 32px !important;
  max-width: 18ch;
  text-shadow: 0 6px 30px rgba(0,0,0,0.4);
}
.ab-hero__red { color: var(--accent); text-shadow: 0 0 28px rgba(201, 169, 97, 0.35); }
.ab-hero__lede {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  max-width: 58ch;
  color: var(--fg);
  margin: 0 !important;
  padding-left: 0; border-left: none;
}

.ab-chapter { border-bottom: 1px solid var(--rule); }
.ab-chapter--ink, .ab-chapter--bone {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}
.ab-chapter__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 84px 1fr; gap: 12px 48px;
  align-items: start;
}
.ab-chapter__inner > * { grid-column: 2; }
.ab-chapter__num {
  grid-column: 1; grid-row: 1;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 !important; padding-top: 16px;
}
.ab-chapter__body {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  max-width: 58ch;
  color: var(--fg);
}

/* verdict cards — frosted glass with 3D tilt */
.ab-verdicts { border-bottom: 1px solid var(--rule); }
.ab-verdicts__head {
  max-width: 1200px; margin: 0 auto 48px !important;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink); text-transform: lowercase;
}
.ab-verdicts__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  perspective: 1400px;
}
.ab-vcard {
  background: var(--glass-bg);
  backdrop-filter: saturate(140%) blur(24px);
  -webkit-backdrop-filter: saturate(140%) blur(24px);
  border: 1px solid var(--rim);
  border-radius: 20px;
  padding: 32px 28px; min-height: 260px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
  transform: rotateX(0) translateY(0);
  position: relative;
  flex: initial;
}
.ab-vcard::before {
  content: ""; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 35%);
  pointer-events: none;
}
.ab-vcard:hover {
  transform: rotateX(-2deg) translateY(-4px);
  border-color: var(--rim-hi);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.1) inset,
    0 28px 70px rgba(0,0,0,0.55);
}
.ab-vcard p {
  font-size: 15px; line-height: 1.55; margin: 0 !important;
  max-width: 38ch;
  color: var(--fg-dim);
  position: relative;
}
.ab-vcard__chip {
  font-family: var(--display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--glass-deep);
  color: var(--fg);
  width: max-content;
  border: 1px solid var(--fg-faint);
  white-space: nowrap;
  position: relative;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.04) inset;
}
.ab-vcard--real         { border-color: rgba(201, 169, 97, 0.24); }
.ab-vcard--real .ab-vcard__chip {
  background: var(--accent-soft); color: var(--accent);
  border-color: rgba(201, 169, 97, 0.5);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.06) inset, 0 0 18px rgba(201, 169, 97, 0.18);
}
.ab-vcard--synthetic    { border-color: rgba(244, 114, 182, 0.22); }
.ab-vcard--synthetic .ab-vcard__chip {
  background: rgba(244, 114, 182, 0.14); color: var(--warn);
  border-color: rgba(244, 114, 182, 0.45);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.06) inset, 0 0 18px rgba(244, 114, 182, 0.18);
}
.ab-vcard--undetermined { border-color: rgba(125, 211, 252, 0.20); }
.ab-vcard--undetermined .ab-vcard__chip {
  background: rgba(125, 211, 252, 0.12); color: var(--cool);
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.06) inset, 0 0 18px rgba(125, 211, 252, 0.18);
}

/* NO moment */
.ab-no {
  padding: 96px 32px !important;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.ab-no__q {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 12px !important;
}
.ab-no__a {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(120px, 26vw, 360px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--ink);
  margin: 0 !important;
  text-shadow: 0 18px 80px rgba(0,0,0,0.5);
  -webkit-text-stroke: 0;
}
.ab-no__foot {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
  margin: 16px 0 0 !important;
}

/* why */
.ab-why {
  padding: 112px 32px !important;
  text-align: left;
  max-width: 1200px; margin: 0 auto;
}
.ab-why__top {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px !important;
}
.ab-why__big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--ink);
  margin: 0 0 28px !important;
  max-width: 22ch;
}
.ab-why__punch {
  display: inline-block;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1; letter-spacing: -0.025em;
  text-transform: lowercase;
  color: var(--accent);
  text-shadow: 0 0 28px rgba(201, 169, 97, 0.3);
  margin: 0 !important;
  max-width: 22ch;
  background: none; padding: 0; transform: none;
}

/* ====== FOOTER ====== */
.foot {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%),
    rgba(7, 7, 10, 0.6);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  color: var(--fg-dim);
  padding: 80px 32px 48px;
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 1;
}
.foot__big {
  margin: 0 auto 56px;
  max-width: 1400px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.foot__mark {
  width: 64px; height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(201, 169, 97, 0.18));
}
.foot__word {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.015em;
  color: var(--ink); text-align: center;
  text-transform: lowercase;
  -webkit-text-stroke: 0;
}
.foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
  max-width: 1200px; margin: 0 auto 56px;
}
.foot__h {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.foot__cols p { font-size: 14px; line-height: 1.55; color: var(--fg-dim); margin: 0; }
.foot__cols a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--fg-faint);
  transition: text-decoration-color 180ms var(--ease), color 180ms var(--ease);
  font-weight: 500;
}
.foot__cols a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.foot__fineprint {
  max-width: 1200px; margin: 0 auto;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

/* ====== RESPONSIVE ====== */
/* Collapse the nav into a hamburger as soon as the layout gets squished —
   matches the .lede side-by-side breakpoint so the top bar doesn't crowd
   the hero/preorder pair. */
@media (max-width: 1024px) {
  .top {
    padding: 12px 18px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .top__menu { display: inline-flex; }
  .top__submit { display: none; }
  .top__nav {
    position: fixed;
    top: 60px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(7, 7, 10, 0.92);
    backdrop-filter: saturate(160%) blur(24px);
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 28px 60px rgba(0,0,0,0.55);
    z-index: 51;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms var(--ease), opacity 200ms var(--ease);
  }
  .top__nav--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .top__nav a {
    width: 100%;
    padding: 18px 4px;
    font-size: 22px;
    font-family: var(--display); font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
  }
  .top__nav a:last-child { border-bottom: none; }
  body.nav-open { overflow: hidden; }
  .hero { padding: 80px 20px 64px; }
  .wl { padding: 32px 20px 64px; }
  .wl__inner { padding: 36px 28px; border-radius: 20px; }
  .pros { padding: 0 20px 64px; }
  .pros__link { padding: 56px 28px; border-radius: 20px; }
  .pros__link:hover { transform: none; }
  .ab-vcard:hover { transform: translateY(-2px); }
  .ab-verdicts__grid { grid-template-columns: 1fr; }
  .ab-vcard { min-height: 200px; }
  .ab-chapter__inner { grid-template-columns: 1fr; gap: 10px; }
  .ab-chapter__inner > * { grid-column: 1; }
  .ab-chapter__num { padding-top: 0; }
  .foot__cols { grid-template-columns: 1fr; gap: 36px; }
  .about > section { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 540px) {
  .wl__submit { width: 100%; justify-self: stretch; justify-content: center; }
  .pre__cta { width: 100%; justify-self: stretch; justify-content: center; text-align: center; }
  .news__submit { width: 100%; justify-self: stretch; justify-content: center; }
  .pre__inner, .news__inner { padding: 40px 28px; }
}

/* ====== LEDE: hero + preorder side-by-side on wide, stacked when narrow ====== */
.lede {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1024px) {
  .lede {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 64px 32px 32px;
  }
  /* Inside the grid we strip the section-level padding so the two
     children sit on the same horizontal baseline. */
  .lede > .hero { padding: 0; max-width: none; }
  .lede > .pre { padding: 0; }
  /* Shrink hero type a touch so it doesn't overpower the preorder card
     when they're sharing a row. */
  .lede > .hero .hero__kill {
    font-size: clamp(64px, 9vw, 128px);
  }
  /* The preorder glass card already has its own padding; just rein it
     in slightly so it lines up vertically with the hero block. */
  .lede > .pre .pre__inner { padding: 48px 44px; }
}

/* ====== PREORDER (replaces waitlist for anti-site) ====== */
.pre {
  padding: 48px 32px 64px;
  position: relative;
}
.pre__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding: 56px 56px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.005) 100%),
    var(--glass-bg);
  backdrop-filter: saturate(140%) blur(30px);
  -webkit-backdrop-filter: saturate(140%) blur(30px);
  border: 1px solid var(--rim);
  box-shadow: var(--shadow-float);
  position: relative;
}
.pre__inner::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 35%);
  pointer-events: none;
}
.pre__eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin: 0;
}
.pre__head {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  text-transform: lowercase;
}
.pre__head--red {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(201, 169, 97, 0.32);
}
.pre__lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 56ch;
  color: var(--fg-dim);
  margin: 0;
}
.pre__price-row {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--display);
}
.pre__price {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(201, 169, 97, 0.32);
}
.pre__price-strike {
  font-family: var(--mono); font-size: 13px;
  color: var(--fg-mute);
  text-decoration: line-through;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pre__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 100%);
  color: var(--accent-ink);
  font-weight: 700; font-size: 17px;
  padding: 18px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  justify-self: start;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 0 rgba(0,0,0,0.18) inset,
    0 12px 28px rgba(201, 169, 97, 0.38);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.pre__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 0 rgba(0,0,0,0.18) inset,
    0 18px 40px rgba(201, 169, 97, 0.48);
}
.pre__footnote {
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin: 0;
}

/* ====== NEWSLETTER (compact glass card, mirrors waitlist form) ====== */
.news {
  padding: 0 32px 96px;
  position: relative;
}
.news__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding: 44px 56px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.005) 100%),
    var(--glass-bg-2);
  backdrop-filter: saturate(140%) blur(30px);
  -webkit-backdrop-filter: saturate(140%) blur(30px);
  border: 1px solid var(--rim);
  box-shadow: var(--shadow-card);
  position: relative;
}
.news__inner::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 35%);
  pointer-events: none;
}
.news__eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mutual-blue); margin: 0;
}
.news__head {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-transform: lowercase;
}
.news__lede {
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
  color: var(--fg-dim);
  margin: 0;
}
.news__form {
  display: grid; gap: 14px;
  max-width: 480px;
  margin-top: 4px;
  position: relative;
}
.news__field { display: grid; gap: 8px; }
.news__label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-mute);
}
.news__input {
  background: var(--glass-deep);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  border: 1px solid var(--rim);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.05) inset, 0 4px 18px rgba(0,0,0,0.18);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.news__input::placeholder { color: var(--fg-mute); }
.news__input:focus {
  outline: none;
  border-color: var(--mutual-blue);
  background: rgba(28, 28, 38, 0.7);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.08) inset,
    0 0 0 4px rgba(130, 166, 255, 0.14),
    0 6px 20px rgba(0,0,0,0.22);
}
.news__consent {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  font-size: 13px; color: var(--fg-dim);
  line-height: 1.5;
}
.news__consent input { margin-top: 3px; accent-color: var(--mutual-blue); width: 16px; height: 16px; }
.news__submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass-deep);
  color: var(--ink);
  font-weight: 500; font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--rim-hi);
  justify-self: start;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.06) inset;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}
.news__submit:hover {
  transform: translateY(-1px);
  border-color: var(--mutual-blue);
  background: rgba(28, 28, 38, 0.85);
}
.news__submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.news__msg {
  font-family: var(--mono); font-size: 12px;
  margin: 0; min-height: 1.4em;
  letter-spacing: 0.02em;
}
.news__msg--ok  { color: var(--mutual-blue); }
.news__msg--err { color: var(--warn); }
