:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #0f0f0f;
  --bg-card: #0f0f0f;
  --bg-raised: #141414;
  --ink: #e8e3d5;
  --muted: #6b6b6b;
  --ink-dim: #6b6b6b;
  --green: #c8d94b;
  --green-dim: #8a9a2f;
  --green-deep: #183a23;
  --green-glow: rgba(200, 217, 75, 0.12);
  --amber: #d4a843;
  --copper: #bb8651;
  --line: #1c1c1c;
  --border: #1c1c1c;
  --radius: 4px;
  --shadow: rgba(0, 0, 0, 0.45);
  --brand-bg: #080808;
  --brand-ink: #e8e3d5;
  --brand-accent: #c8d94b;
  --brand-secondary: #6b6b6b;
  --brand-card: #0f0f0f;
  --brand-border: #1c1c1c;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, "SFMono-Regular", Consolas,
    "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* Scroll-depth darken: --scroll-darken is driven by JS (0 at top of
     page, 1 at the bottom). Top is the standard --bg (#080808); deeper
     in the page a layered overlay deepens by ~6%. The transition smooths
     micro jumps so the page reads as descending into the room rather
     than stepping. */
  background:
    linear-gradient(180deg, rgba(0, 0, 0, calc(var(--scroll-darken, 0) * 0.22)) 0%, rgba(0, 0, 0, calc(var(--scroll-darken, 0) * 0.22)) 100%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  color: var(--brand-accent);
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── header / nav ── */

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200, 217, 75, 0.4);
  background: #080808;
  object-fit: contain;
  padding: 4px;
  box-shadow: 0 0 10px rgba(200, 217, 75, 0.15);
}

.nav-links {
  gap: clamp(14px, 2.5vw, 28px);
  color: rgba(229, 229, 229, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-overlay-links a:hover,
.footer-nav a:hover,
.footer-credit a:hover,
.platform-cta:hover,
.leaderboard-preview-link:hover {
  color: var(--brand-accent);
}

.nav-x-icon {
  display: grid;
  place-items: center;
  padding: 8px;
  color: rgba(229, 229, 229, 0.72);
  transition: color 0.2s ease;
}

.nav-x-icon:hover {
  color: var(--brand-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.72);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  z-index: 15;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
}

.nav-overlay[hidden] {
  display: none;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.nav-overlay-links a {
  font-size: 1.5rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--brand-ink);
}

/* ── hero (unchanged) ── */

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 72px) 78px;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.22) 40%, rgba(10, 10, 10, 0.8) 72%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.08) 38%, rgba(10, 10, 10, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(540px, 100%);
  padding-bottom: clamp(42px, 7vh, 86px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.82;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 31rem;
  color: rgba(229, 229, 229, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.hero-punchline {
  display: block;
  margin-top: 1.1em;
  color: var(--brand-ink);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(229, 229, 229, 0.24);
  font-weight: 750;
  font-size: 0.95rem;
  text-transform: lowercase;
}

.button-primary {
  background: var(--brand-accent);
  color: #111111;
  border-color: var(--brand-accent);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-block {
  width: 100%;
}

/* ── shared band padding ── */

.ledger-speaks-band,
.how-band,
.live-stats-band,
.platforms-band,
.eliza-band,
.moments-band,
.leaderboard-preview-band,
.access-band {
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
}

/* ── section 2: ledger speaks ── */

.ledger-speaks-band {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.ledger-speaks-card {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
}

.terminal-feed-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.moss-face-avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* Background swapped from solid green to dark so the logo's green
     line-art can show through. The green ring + glow keeps the brand
     cue around the badge. */
  background: #080808;
  border: 1px solid rgba(200, 217, 75, 0.4);
  box-shadow: 0 0 12px rgba(200, 217, 75, 0.18);
  overflow: hidden;
}

.moss-face-avatar img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.moss-face-avatar--sm {
  width: 40px;
  height: 40px;
}

/* cat dividers */
.cat-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
  opacity: 0.35;
}

.cat-divider-line {
  flex: 1;
  height: 1px;
  background: var(--brand-border);
}

.cat-paw-icon {
  flex-shrink: 0;
  color: var(--brand-accent);
  opacity: 0.5;
}

/* The eye motif — cropped from the watcher portrait, used as a recurring
   divider between sections. Slightly larger than the old paw glyph, with
   a subtle green ring + glow so it reads as "one eye watching" without
   shouting. Hover/scroll-into-view both add a soft pulse via the
   cat-eye-pulse keyframe. */
.cat-divider-eye {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  border: 1px solid rgba(200, 217, 75, 0.32);
  box-shadow: 0 0 8px rgba(200, 217, 75, 0.14), inset 0 0 4px rgba(0, 0, 0, 0.4);
  filter: saturate(1.05);
  background: #050505;
}

.cat-divider-eye img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Position the crop tighter on the green pupil — the source has
     surrounding fur that's beautiful at large sizes but reads as noise
     at 18px. */
  object-position: 50% 45%;
  transform: scale(1.05);
}

@keyframes cat-eye-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(200, 217, 75, 0.14), inset 0 0 4px rgba(0, 0, 0, 0.4); }
  50%      { box-shadow: 0 0 14px rgba(200, 217, 75, 0.32), inset 0 0 4px rgba(0, 0, 0, 0.4); }
}

.terminal-feed {
  position: relative;
  min-height: 4.5em;
}

.terminal-line {
  margin: 0;
  color: rgba(200, 217, 75, 0.92);
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.terminal-line.is-active {
  opacity: 1;
}

.terminal-line[hidden] {
  display: none;
}

.ledger-speaks-meta {
  margin: 16px 0 0;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* ── section 3: how it works ── */

.how-band {
  padding-top: clamp(56px, 9vw, 112px);
  padding-bottom: clamp(56px, 9vw, 112px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.how-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: minmax(220px, auto) minmax(160px, auto);
  gap: clamp(14px, 2vw, 18px);
  margin-top: clamp(24px, 4vw, 40px);
}

.how-card--calls {
  grid-column: 1;
  grid-row: 1;
}

.how-card--theses {
  grid-column: 2;
  grid-row: 1;
}

.how-card--disputes {
  grid-column: 1;
  grid-row: 2;
}

.how-card--quote {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: none;
  background: #0d0d0d;
}

.how-quote-text {
  margin: 0;
  color: rgba(200, 217, 75, 0.75);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.6;
  text-transform: lowercase;
}

.how-card {
  padding: clamp(22px, 3vw, 32px);
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-left: 3px solid var(--brand-accent);
}

.how-card h3 {
  margin: 0 0 12px;
  color: var(--brand-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.how-explain {
  margin: 0 0 20px;
  color: var(--brand-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tg-bubble {
  padding: 14px 16px;
  background: #0d0d0d;
  border: 1px solid var(--brand-border);
  border-radius: 4px 12px 12px 12px;
}

.tg-bubble p {
  margin: 0 0 6px;
  color: rgba(229, 229, 229, 0.88);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.5;
}

.tg-bubble p:last-child {
  margin-bottom: 0;
}

/* ── section 4: live stats ── */

.live-stats-band {
  padding-top: clamp(54px, 9vw, 108px);
  padding-bottom: clamp(54px, 9vw, 108px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.live-stats-header {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.live-stats-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.live-stats-sub {
  margin: 0;
  color: var(--brand-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.terminal-readout {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: clamp(24px, 4vw, 40px);
  background: var(--brand-card);
  border: 1px solid rgba(200, 217, 75, 0.22);
  box-shadow: inset 0 0 0 1px rgba(200, 217, 75, 0.04);
  overflow: hidden;
  transition: opacity 0.5s ease;
}

/* Idle / watching state — fires when the room has been quiet for a
   stretch. Sets a dimmed watcher portrait behind the readout, drops
   the numeric chrome to half-volume, and replaces the foot line with
   the "still watching" copy + a slow-pulsing green pip. Atmospheric
   not alarmist: quiet rooms are normal rooms. */
.terminal-readout.is-idle::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 50% 35%, rgba(200, 217, 75, 0.06), transparent 70%),
    url("./assets/moss-watcher.webp") center 30% / cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.6) blur(0.4px);
  pointer-events: none;
  z-index: 0;
}

.terminal-readout.is-idle .terminal-readout-inner,
.terminal-readout.is-idle .terminal-foot-row {
  position: relative;
  z-index: 1;
}

.terminal-readout.is-idle .terminal-readout-value,
.terminal-readout.is-idle .terminal-readout-label {
  opacity: 0.55;
}

.terminal-readout.is-idle .terminal-updated {
  color: var(--brand-secondary);
  opacity: 0.7;
}

/* The slow-pulsing pip next to the idle-state foot copy. ~3s breathe. */
.idle-pip {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(200, 217, 75, 0.6);
  animation: idle-pulse 3s ease-in-out infinite;
}

@keyframes idle-pulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 0 0 rgba(200, 217, 75, 0); }
  50%      { opacity: 1; box-shadow: 0 0 0 8px rgba(200, 217, 75, 0); transform: scale(1.05); }
}

/* Live-update pulse — when a numeric value lands a new value, briefly
   glow it green so a casual observer sees the page breathe. The class
   is applied by script.js and removed on animationend. */
@keyframes value-pulse {
  0%   { color: var(--brand-accent); text-shadow: 0 0 18px rgba(200, 217, 75, 0.65); }
  60%  { color: var(--brand-accent); text-shadow: 0 0 6px rgba(200, 217, 75, 0.25); }
  100% { color: var(--brand-accent); text-shadow: 0 0 0 rgba(200, 217, 75, 0); }
}

.terminal-readout-value.is-pulsing {
  animation: value-pulse 1.4s ease-out;
}

.terminal-readout-inner {
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.85;
}

.terminal-readout-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em 0.6em;
  align-items: baseline;
}

.terminal-readout-row--text {
  display: block;
}

.terminal-readout-value {
  color: var(--brand-accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.terminal-readout-row--text .terminal-readout-value {
  display: block;
}

.terminal-readout-row--text .terminal-readout-value::before {
  content: "best: ";
  color: var(--brand-secondary);
  font-weight: 400;
}

.terminal-readout-label {
  color: var(--brand-secondary);
}

.terminal-foot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin: clamp(20px, 3vw, 28px) 0 0;
  padding-top: clamp(16px, 2vw, 20px);
  border-top: 1px solid var(--brand-border);
}

.terminal-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--brand-secondary);
  font-size: 0.88rem;
  text-transform: lowercase;
}

.terminal-updated {
  margin: 0;
  margin-left: auto;
  text-align: right;
}

.cat-signature-icon {
  flex-shrink: 0;
  color: var(--brand-accent);
  opacity: 0.45;
}

.terminal-updated {
  margin: 0;
  color: rgba(136, 136, 136, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.terminal-readout.is-loading .terminal-readout-value[data-count-target] {
  color: rgba(200, 217, 75, 0.35);
  position: relative;
  min-width: 2ch;
}

.terminal-readout.is-loading .terminal-readout-value[data-count-target]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(200, 217, 75, 0.04),
    rgba(200, 217, 75, 0.18),
    rgba(200, 217, 75, 0.04)
  );
  background-size: 200% 100%;
  animation: terminal-shimmer 1.4s ease-in-out infinite;
}

@keyframes terminal-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ── section 5: platforms ── */

.platforms-band {
  padding-top: clamp(54px, 9vw, 108px);
  padding-bottom: clamp(54px, 9vw, 108px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.platform-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.platform-card:hover {
  border-color: rgba(200, 217, 75, 0.35);
  box-shadow: 0 0 24px rgba(200, 217, 75, 0.06);
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--brand-accent);
}

.platform-icon--m {
  border: 1px solid rgba(200, 217, 75, 0.35);
  background: #080808;
  border-radius: 8px;
  overflow: hidden;
}

.platform-icon--m img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.platform-card h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.platform-lead {
  margin: 0 0 12px;
  color: var(--brand-ink);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: lowercase;
}

.platform-sub {
  margin: 0;
  flex: 1;
  color: var(--brand-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  text-transform: lowercase;
}

.platform-cta {
  display: inline-block;
  margin-top: 20px;
  color: var(--brand-accent);
  font-size: 0.88rem;
  font-weight: 650;
  text-transform: lowercase;
}

/* ── section 5.5: built on elizaos ── */

.eliza-band {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
  background: var(--bg-raised);
  border-bottom: 1px solid var(--brand-border);
}

.eliza-head {
  max-width: 1040px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}

.eliza-head h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  text-transform: lowercase;
}

.eliza-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.65;
}

.eliza-framework-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
}

.eliza-framework-link:hover {
  text-decoration: underline;
}

.eliza-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.eliza-features {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.eliza-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.eliza-feature-icon {
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--green);
}

.eliza-feature-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-transform: lowercase;
}

.eliza-feature-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.eliza-terminal {
  padding: clamp(20px, 3vw, 28px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
}

.eliza-terminal-title {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eliza-specs {
  margin: 0;
  display: grid;
  gap: 10px;
}

.eliza-specs > div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 10px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.eliza-specs dt {
  margin: 0;
  color: var(--ink-dim);
}

.eliza-specs dt::after {
  content: ":";
}

.eliza-specs dd {
  margin: 0;
  color: var(--ink);
  word-break: break-word;
}

.eliza-specs .spec-accent {
  color: var(--green);
}

.eliza-gh-link {
  display: inline-block;
  width: 100%;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--ink-dim);
  font-size: 0.75rem;
}

.eliza-gh-link:hover {
  color: var(--green);
}

.eliza-vision {
  max-width: 1040px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}

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

/* ── section 6: moments ── */

.moments-band {
  padding-top: clamp(54px, 9vw, 108px);
  padding-bottom: clamp(54px, 9vw, 108px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.moments-header {
  margin-bottom: clamp(28px, 5vw, 40px);
}

.moments-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-transform: lowercase;
}

.moments-sub {
  margin: 0;
  color: var(--brand-secondary);
  font-size: 1rem;
}

.moments-scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.moment-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.moment-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tg-phone {
  padding: 12px 12px 14px;
  background: #161616;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.tg-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -12px -12px 8px;
  padding: 5px 14px 4px;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tg-chat-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--brand-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.tg-tick {
  display: inline-block;
  opacity: 0;
  color: #6b9e6b;
  font-size: 0.7em;
  transition: opacity 0.25s ease;
}

.tg-tick.is-visible {
  opacity: 1;
}

.tg-chat-header svg {
  color: rgba(136, 136, 136, 0.8);
}

.tg-chat-dots {
  margin-left: auto;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.tg-message-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.tg-message-bubble {
  position: relative;
  flex: 1;
  padding: 10px 12px 22px;
  background: #1e2b1e;
  border-radius: 4px 12px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Verdict bubble — slightly heavier border + amber undertone so the
   ceremonial weight reads even before the stamp fires. The stamp
   itself rotates into place when the moment-card becomes visible
   (see .moment-card--verdict.is-visible rule below). */
.tg-message-bubble--verdict {
  background: linear-gradient(180deg, #1f2c1f 0%, #1a241a 100%);
  border-color: rgba(212, 168, 67, 0.28);
  box-shadow: inset 0 0 0 1px rgba(212, 168, 67, 0.08);
}

/* The stamp itself — sits in the upper-right corner of the verdict
   bubble. Letter-spaced amber type with a double-rule border, slight
   negative skew, and the "stamped" press-rotate animation on reveal.
   Hidden by default; revealed (and rotated in) when the parent card
   becomes visible via the intersection-observer .is-visible hook. */
.verdict-stamp {
  position: absolute;
  top: 6px;
  right: 8px;
  padding: 2px 6px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(212, 168, 67, 0.6);
  border: 1px solid rgba(212, 168, 67, 0.4);
  outline: 1px solid rgba(212, 168, 67, 0.2);
  outline-offset: 1px;
  border-radius: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: rotate(-14deg) scale(1.4);
  transform-origin: 50% 50%;
  transition: opacity 0.18s ease, transform 0.34s cubic-bezier(0.22, 1.4, 0.36, 1);
  pointer-events: none;
  user-select: none;
}

/* Stamp lands when the verdict moment scrolls into view. */
.moment-card--verdict.is-visible .verdict-stamp {
  opacity: 0.85;
  transform: rotate(-8deg) scale(1);
}

.tg-message-bubble p {
  margin: 0 0 5px;
  color: rgba(229, 229, 229, 0.92);
  font-size: 0.82rem;
  line-height: 1.5;
  text-transform: lowercase;
}

.tg-timestamp {
  position: absolute;
  right: 10px;
  bottom: 6px;
  color: rgba(136, 136, 136, 0.65);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
}

.tg-reactions {
  margin-top: 8px;
  margin-left: 36px;
  padding: 4px 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: rgba(229, 229, 229, 0.75);
  font-size: 0.72rem;
}

.moment-signature {
  margin-top: 12px !important;
  color: var(--brand-secondary) !important;
  font-style: italic;
}

.moment-label {
  display: block;
  margin-top: 10px;
  color: var(--brand-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

/* ── section 7: leaderboard preview ── */

.leaderboard-preview-band {
  padding-top: clamp(54px, 9vw, 108px);
  padding-bottom: clamp(54px, 9vw, 108px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.leaderboard-preview-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-transform: lowercase;
}

.leaderboard-preview-sub {
  margin: 0 0 28px;
  color: var(--brand-secondary);
  font-size: 0.95rem;
}

.leaderboard-preview-panel {
  max-width: 720px;
  border: 1px solid var(--brand-border);
  background: var(--brand-card);
  overflow: hidden;
}

.leaderboard-preview-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leaderboard-preview-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  padding: 16px 20px;
  border-top: 1px solid var(--brand-border);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.leaderboard-preview-list li:first-child {
  border-top: 0;
}

.leaderboard-preview-list li.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.leaderboard-preview-list li:nth-child(-n + 3) {
  background: linear-gradient(90deg, var(--green-glow), transparent 60%);
}

.lb-rank {
  color: var(--brand-accent);
  min-width: 1.5em;
}

.lb-handle {
  color: var(--brand-ink);
  font-weight: 650;
}

.lb-stat {
  color: var(--brand-secondary);
}

.leaderboard-preview-skeleton {
  color: var(--brand-secondary);
  opacity: 1 !important;
  transform: none !important;
}

.leaderboard-preview-panel.is-loading .leaderboard-preview-list li {
  color: rgba(200, 217, 75, 0.35);
}

.leaderboard-preview-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--brand-accent);
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: lowercase;
}

.leaderboard-preview-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  max-width: 720px;
}

.leaderboard-preview-hook {
  margin-top: 24px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

.leaderboard-preview-hook:hover {
  color: var(--brand-accent);
}

/* ── section 8: request access ── */

.access-band {
  padding-top: clamp(54px, 9vw, 108px);
  padding-bottom: clamp(54px, 9vw, 108px);
  background: var(--brand-card);
  border-bottom: 1px solid var(--brand-border);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
  max-width: 920px;
}

.access-cat-portrait {
  width: 100%;
  max-width: 300px;
  height: 320px;
  object-fit: cover;
  object-position: 42% 28%;
  filter: saturate(0.88) contrast(1.05);
  border: 1px solid var(--brand-border);
  border-radius: 2px;
}

.access-inner {
  max-width: 560px;
}

.access-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  text-transform: lowercase;
}

.access-voice {
  margin: 24px 0 32px;
  color: var(--brand-secondary);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.7;
  text-transform: lowercase;
}

.access-voice p {
  margin: 0 0 8px;
}

.access-voice ul {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
}

.access-voice li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 6px;
}

.access-voice li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brand-accent);
}

.access-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}

.access-foot {
  margin: 24px 0 0;
  color: var(--brand-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 480px;
  text-transform: lowercase;
}

/* ── section 9: footer ── */

.site-footer-new {
  background: var(--brand-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(40px, 6vw, 64px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--brand-border);
}

.footer-mark {
  margin-bottom: 14px;
}

.footer-tagline,
.footer-credit,
.footer-meta p {
  margin: 0 0 8px;
  color: var(--brand-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  text-transform: lowercase;
}

.footer-credit a {
  color: var(--brand-accent);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--brand-secondary);
  font-size: 0.92rem;
  text-transform: lowercase;
}

.footer-strip {
  padding: 18px clamp(18px, 5vw, 72px);
  color: rgba(136, 136, 136, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid var(--brand-border);
}

/* ── responsive ── */

@media (max-width: 920px) {
  .hero {
    min-height: 92svh;
    padding-bottom: 64px;
  }

  .hero-image {
    object-position: 33% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(10, 10, 10, 0.94), rgba(10, 10, 10, 0.22) 58%, rgba(10, 10, 10, 0.34)),
      linear-gradient(90deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.62));
  }

  .hero-content {
    justify-self: start;
    padding-bottom: 32px;
  }

  .how-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .how-card--calls,
  .how-card--theses,
  .how-card--disputes,
  .how-card--quote {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .moments-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .moment-card {
    flex: 0 0 min(85vw, 320px);
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    min-height: 64px;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .access-layout {
    grid-template-columns: 1fr;
  }

  .access-cat-portrait {
    max-width: 100%;
    height: 240px;
    object-position: 42% 25%;
  }

  .ledger-speaks-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 88svh;
    padding-top: 88px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .access-actions {
    max-width: none;
  }

  .leaderboard-preview-list li {
    font-size: 0.82rem;
  }
}

/* ── ledger page ── */

.ledger-page {
  background: var(--brand-bg);
}

.ledger-main {
  padding: 96px clamp(18px, 5vw, 72px) clamp(48px, 8vw, 96px);
  max-width: 960px;
  margin: 0 auto;
}

.ledger-hero {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.ledger-title {
  margin: 0 0 8px;
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.ledger-sub {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.ledger-summary {
  margin: 0;
  color: var(--brand-accent);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.ledger-panel {
  border: 1px solid rgba(200, 217, 75, 0.28);
  background: rgba(17, 17, 17, 0.88);
  box-shadow:
    0 0 40px rgba(200, 217, 75, 0.06),
    inset 0 0 0 1px rgba(200, 217, 75, 0.1);
  overflow: hidden;
}

.ledger-table-head,
.ledger-table li {
  display: grid;
  grid-template-columns: 56px minmax(120px, 1.5fr) 56px 56px minmax(100px, 1fr);
  gap: 12px;
  align-items: center;
}

.ledger-table-head {
  padding: 12px 18px;
  background: rgba(10, 10, 10, 0.92);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.ledger-table {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ledger-table li {
  min-height: 64px;
  padding: 14px 18px;
  border-top: 1px solid rgba(229, 229, 229, 0.08);
  background: rgba(17, 17, 17, 0.72);
  font-size: 0.95rem;
}

.ledger-table li:first-child {
  border-top: 0;
}

.ledger-table li:nth-child(-n + 3) {
  background: linear-gradient(90deg, var(--green-glow), rgba(17, 17, 17, 0.72) 55%);
}

.ledger-rank {
  color: var(--copper);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.ledger-caller {
  font-weight: 750;
}

.ledger-pts {
  color: var(--brand-accent);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.ledger-calls,
.ledger-best {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.ledger-best {
  color: rgba(229, 229, 229, 0.88);
}

.ledger-empty {
  margin: 0;
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.ledger-skeleton-row {
  grid-template-columns: 1fr !important;
  color: var(--muted);
}

.ledger-panel.is-loading .ledger-table li {
  color: rgba(200, 217, 75, 0.35);
  position: relative;
}

.ledger-panel.is-loading .ledger-table li::after {
  content: "";
  position: absolute;
  inset: 8px 18px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(200, 217, 75, 0.04),
    rgba(200, 217, 75, 0.18),
    rgba(200, 217, 75, 0.04)
  );
  background-size: 200% 100%;
  animation: terminal-shimmer 1.4s ease-in-out infinite;
}

.ledger-foot {
  margin-top: clamp(24px, 4vw, 36px);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.ledger-foot p {
  margin: 0 0 8px;
}

.ledger-foot a {
  color: var(--brand-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .ledger-table-head {
    display: none;
  }

  .ledger-table li {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    gap: 4px 12px;
  }

  .ledger-caller {
    grid-column: 2;
  }

  .ledger-pts,
  .ledger-calls,
  .ledger-best {
    grid-column: 2;
    font-size: 0.85rem;
  }

  .ledger-pts::before {
    content: "pts · ";
    color: rgba(136, 136, 136, 0.6);
  }

  .ledger-calls::before {
    content: "calls · ";
    color: rgba(136, 136, 136, 0.6);
  }

  .ledger-best::before {
    content: "best · ";
    color: rgba(136, 136, 136, 0.6);
  }
}

/* ───────────────────────── /ledger page ───────────────────────── */

.ledger-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 112px clamp(18px, 5vw, 32px) 80px;
}

.ledger-head {
  margin-bottom: 48px;
}

.ledger-back {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.85rem;
}

.ledger-back:hover {
  color: var(--green);
}

.ledger-head h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.ledger-summary {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.ledger-section {
  margin-top: 56px;
}

.ledger-section-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.ledger-section-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.ledger-note {
  margin: 16px 0 0;
  color: rgba(136, 136, 136, 0.75);
  font-size: 0.8rem;
}

/* leaderboard table */
.ledger-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 12px;
}

.ledger-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.ledger-table thead th {
  position: sticky;
  top: 0;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.ledger-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.7);
  font-size: 0.92rem;
  vertical-align: middle;
}

.ledger-table tbody tr:last-child td {
  border-bottom: none;
}

.ledger-table tbody tr {
  transition: background 0.18s ease;
}

.ledger-table tbody tr:hover {
  background: var(--green-glow);
}

.ledger-table .col-rank {
  width: 56px;
  font-size: 1rem;
  vertical-align: middle;
}

.ledger-table .col-caller {
  font-weight: 600;
  vertical-align: middle;
}

.ledger-table .col-num,
.ledger-table .col-peak {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  vertical-align: middle;
}

.ledger-table .col-peak {
  color: var(--green);
  white-space: nowrap;
}

.ledger-table .col-num.is-zero {
  color: rgba(136, 136, 136, 0.7);
}

.ledger-table .col-mood {
  width: 56px;
  text-align: center;
  vertical-align: middle;
}

.ledger-table .col-thesis {
  width: 132px;
  vertical-align: middle;
}

/* ============================================================
   who's cooking — ranked-row hierarchy
   #1 elevates with a green border + glow; #2/#3 step down.
   ============================================================ */

.ledger-table--ranked tbody td {
  padding: 18px 14px;
}

.ledger-table--ranked tr.is-rank-1 td {
  background: linear-gradient(
    180deg,
    rgba(200, 217, 75, 0.12),
    rgba(200, 217, 75, 0.05)
  );
  border-top: 1px solid rgba(200, 217, 75, 0.55);
  border-bottom: 1px solid rgba(200, 217, 75, 0.55);
  box-shadow: 0 0 24px rgba(200, 217, 75, 0.12) inset;
  padding-top: 22px;
  padding-bottom: 22px;
}

.ledger-table--ranked tr.is-rank-1 .col-caller {
  font-size: 1.05rem;
  font-weight: 700;
}

.ledger-table--ranked tr.is-rank-1 .col-peak {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 14px rgba(200, 217, 75, 0.32);
}

.ledger-table--ranked tr.is-rank-1 .peak-ticker {
  color: var(--green);
}

.ledger-table--ranked tr.is-rank-2 td {
  background: rgba(232, 227, 213, 0.025);
}

.ledger-table--ranked tr.is-rank-2 .col-caller,
.ledger-table--ranked tr.is-rank-3 .col-caller {
  font-size: 0.99rem;
}

.ledger-table--ranked tr.is-rank-3 td {
  background: rgba(212, 168, 67, 0.025);
}

/* rank circles — gold / silver / bronze numbered */
.rank-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  border: 1.5px solid currentColor;
}

.rank-circle--gold {
  width: 38px;
  height: 38px;
  font-size: 1.05rem;
  color: #d8c25a;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(232, 213, 105, 0.18),
    rgba(216, 194, 90, 0.05) 75%
  );
  border-color: rgba(232, 213, 105, 0.85);
  box-shadow: 0 0 12px rgba(232, 213, 105, 0.35);
}

.rank-circle--silver {
  color: #c8c8d0;
  background: rgba(200, 200, 208, 0.06);
  border-color: rgba(200, 200, 208, 0.65);
}

.rank-circle--bronze {
  color: #c79055;
  background: rgba(199, 144, 85, 0.08);
  border-color: rgba(199, 144, 85, 0.65);
}

.rank-circle--ord {
  color: var(--muted);
  border-color: rgba(136, 136, 136, 0.4);
  background: transparent;
  font-weight: 600;
}

/* caller cell — avatar + handle inline */
.caller-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ledger-avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #080808;
  border: 1px solid rgba(200, 217, 75, 0.35);
  box-shadow: 0 0 8px rgba(200, 217, 75, 0.12);
  overflow: hidden;
}

.ledger-avatar img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.ledger-avatar--lg {
  width: 38px;
  height: 38px;
  border-color: rgba(200, 217, 75, 0.6);
  box-shadow: 0 0 14px rgba(200, 217, 75, 0.25);
}

.caller-handle {
  letter-spacing: -0.01em;
}

/* peak ticker + multiplier in the peak cell */
.peak-ticker {
  font-weight: 700;
}

.peak-ticker--empty {
  color: var(--muted);
  font-weight: 500;
}

.peak-mult {
  margin-left: 6px;
  color: var(--green);
  font-family: var(--font-mono);
}

/* thesis-rate bar (replaces the prior pill) */
.thesis-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 22px;
  width: 100%;
  min-width: 100px;
  border-radius: 999px;
  background: rgba(232, 227, 213, 0.05);
  border: 1px solid rgba(232, 227, 213, 0.1);
  overflow: hidden;
}

.thesis-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--thesis-fill, 0%);
  background: linear-gradient(
    90deg,
    rgba(200, 217, 75, 0.55),
    rgba(200, 217, 75, 0.85)
  );
  box-shadow: 0 0 10px rgba(200, 217, 75, 0.22);
  transition: width 0.4s ease;
}

.thesis-bar-label {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.55);
}

/* #1 gets a fuller-feeling bar — same fill, slightly taller container */
.ledger-table--ranked tr.is-rank-1 .thesis-bar {
  height: 26px;
}

/* No-data variant — "—" placeholder. Distinct from a 0% reading. */
.thesis-bar--empty {
  background: rgba(232, 227, 213, 0.025);
  border-color: rgba(232, 227, 213, 0.06);
}

.thesis-bar--empty .thesis-bar-label {
  color: var(--muted);
  text-shadow: none;
}

/* ============================================================
   how points work — public explainer block
   ============================================================ */

.how-points {
  margin-top: 56px;
  padding: 40px clamp(20px, 4vw, 40px);
  background: rgba(232, 227, 213, 0.02);
  border: 1px solid rgba(232, 227, 213, 0.07);
  border-radius: 14px;
}

.how-points-sub {
  margin-top: -4px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-dim);
}

.how-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 32px;
}

.how-points-block {
  display: flex;
  flex-direction: column;
}

.how-points-h {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.how-points-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.92rem;
}

.how-points-table td {
  padding: 6px 0;
  color: var(--ink);
}

.how-points-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--green);
}

.how-points-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
}

.how-points-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.5;
}

.hp-tag {
  display: inline-block;
  min-width: 46px;
  text-align: center;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid currentColor;
  flex-shrink: 0;
}

.hp-tag--green {
  color: var(--green);
  background: rgba(200, 217, 75, 0.08);
}

.hp-tag--muted {
  color: var(--ink-dim);
  background: rgba(232, 227, 213, 0.03);
  border-color: rgba(232, 227, 213, 0.2);
}

.hp-tag--amber {
  color: var(--amber);
  background: rgba(212, 168, 67, 0.08);
}

.how-points-foot {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.how-points-moss {
  margin: 36px 0 0;
  padding: 22px 24px;
  border-top: 1px solid rgba(232, 227, 213, 0.08);
  font-family: var(--font-display);
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--ink);
  text-align: left;
}

.how-points-moss em {
  font-style: italic;
  color: var(--green);
}

.ledger-empty-row td,
.ledger-empty-row {
  color: var(--muted);
  font-size: 0.88rem;
}

/* hall of legends */
.legends-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 12px;
}

.legends-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.7);
  font-size: 0.9rem;
}

.legends-list li:last-child {
  border-bottom: none;
}

.legend-rank {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.legend-token {
  font-weight: 600;
}

.legend-mult {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--green);
}

.legend-caller {
  color: var(--muted);
  font-size: 0.82rem;
}

.legend-date {
  color: rgba(136, 136, 136, 0.6);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-align: right;
}

/* disputes */
.disputes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.disputes-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 10px;
  margin-bottom: 10px;
}

.dispute-token {
  font-weight: 600;
}

.dispute-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.dispute-status {
  margin-left: auto;
  padding: 2px 10px;
  border: 1px solid rgba(200, 217, 75, 0.35);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.disputes-empty {
  padding: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  border: 1px dashed var(--line);
  border-radius: 10px;
}

/* bottom CTA */
.ledger-cta {
  margin-top: 64px;
  padding: 36px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.ledger-cta p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.05rem;
}

@media (max-width: 560px) {
  .legends-list li {
    grid-template-columns: 22px 1fr auto;
    row-gap: 4px;
  }
  .legend-date {
    grid-column: 2 / 4;
    text-align: left;
  }
}

/* ───────────────────── redesign v2 — design system ───────────────────── */

/* Headlines use the display serif; numbers/voice stay mono via --font-mono. */
h1,
h2,
h3,
.how-card h3,
.platform-card h3,
.moments-header h2,
.leaderboard-preview-header h2,
.live-stats-header h2,
#access-title,
.ledger-head h1,
.ledger-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Hero eyebrow → a tight uppercase green "stamp". */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--green);
}

/* Hero wordmark: subtle green glow, never cheesy. */
.hero-content h1 {
  text-shadow: 0 0 60px rgba(200, 217, 75, 0.18);
}

/* "Calls, theses, disputes, rituals, memory." on its own line. */
.hero-copy-list {
  display: block;
  margin-top: 0.5em;
  color: var(--ink);
}

/* "Quiet until useful." — its own line, more breathing room. */
.hero-punchline {
  margin-top: 1.4em;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--green);
}

/* CTAs: near-square, stamped. */
.button {
  border-radius: 2px;
  padding: 14px 28px;
}
.button-primary {
  color: #080808;
  font-weight: 700;
}
.button-secondary {
  border-color: var(--ink);
}
.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Terminal feed: mono, green-tinted, blinking cursor on the active line. */
.terminal-feed .terminal-line {
  font-family: var(--font-mono);
  color: #cfe06a;
}
.terminal-feed .terminal-line.is-active::after {
  content: "|";
  margin-left: 2px;
  color: var(--green);
  animation: moss-cursor-blink 1s step-end infinite;
}
@keyframes moss-cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Nav: 56px, blur, underline-grow on hover. */
.site-header {
  min-height: 56px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.22s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Footer principle strip → darker, wider tracking (the 4 pills incl "the cat watches"). */
.footer-strip {
  background: #050505;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ── pricing ── */
#pricing {
  padding: 80px 0;
  text-align: center;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  margin: 0 0 16px;
}

.pricing-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 560px;
}

.pricing-card {
  max-width: 480px;
  margin: 48px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 40px;
  text-align: left;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--ink);
  line-height: 1;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink-dim);
}

.pricing-per {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.pricing-trial {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--green);
  margin: 0 0 24px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li .check {
  color: var(--green);
  flex-shrink: 0;
}

.pricing-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #080808;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.pricing-cta:hover {
  background: #d4e84f;
}

.pricing-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 12px;
}

.pricing-note a {
  color: var(--ink-dim);
}

.pricing-note a:hover {
  color: var(--green);
}

.pricing-honest {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 32px;
  line-height: 1.7;
}

.access-trial {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  line-height: 1.6;
  margin: 16px 0 0;
}

/* ── visual upgrade additions ── */

/* ── agent reframe sections ── */

.hero-copy-lead {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.hero-copy-sub {
  display: block;
  margin: 8px 0 0;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.agent-band,
.why-cat-band {
  padding: clamp(56px, 9vw, 96px) clamp(18px, 5vw, 72px);
  /* Subtle radial green-fade replaces the planned texture asset. Very faint —
     the section still reads as dark, just with a hint of brand color radiating
     from where the watcher portrait sits. */
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(200, 217, 75, 0.045), transparent 60%),
    radial-gradient(60% 80% at 50% 100%, rgba(200, 217, 75, 0.025), transparent 70%),
    var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  text-align: center;
}

.agent-headline {
  margin: 0 auto 40px;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.agent-grid,
.why-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .agent-grid,
  .why-cat-grid {
    grid-template-columns: 1fr;
  }
}

.agent-card,
.why-cat-card {
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}

.agent-card:hover,
.why-cat-card:hover {
  border-color: rgba(200, 217, 75, 0.3);
}

.agent-card-name,
.why-cat-card-name {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.agent-card p:not(.agent-card-name),
.why-cat-card p:not(.why-cat-card-name) {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.6;
}

.why-cat-portrait {
  margin: 0 auto 28px;
  width: clamp(160px, 22vw, 220px);
  height: clamp(160px, 22vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(200, 217, 75, 0.25), 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #050505;
}

.why-cat-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  display: block;
}

.why-cat-portrait::after {
  /* subtle radial green-fade vignette so the portrait blends with the section bg */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 60%, transparent 55%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}

.why-cat-headline {
  margin: 0 auto 40px;
  max-width: 600px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.why-cat-anchor {
  margin: 48px auto 0;
  max-width: 620px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  line-height: 1.45;
  color: rgba(200, 217, 75, 0.78);
}

/* ── features showcase (rewrite of how-bento) ── */

.features-band {
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.features-headline {
  margin: 8px 0 48px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.features-group {
  max-width: 980px;
  margin: 0 auto 40px;
}

.features-group-label {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(200, 217, 75, 0.3);
  transform: translateY(-1px);
}

.feature-card-name {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: lowercase;
  letter-spacing: 0.01em;
}

.feature-card p:not(.feature-card-name) {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
  white-space: pre-line;
}

.features-quote {
  margin: 32px auto 0;
  max-width: 480px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: rgba(200, 217, 75, 0.65);
  text-align: center;
  text-transform: lowercase;
}

/* ── referrals section ── */

.referrals-band {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  text-align: center;
}

.referrals-headline {
  margin: 0 auto 16px;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.referrals-sub {
  margin: 0 auto 40px;
  max-width: 560px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.7;
  text-transform: lowercase;
}

.referrals-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 48px;
}

@media (max-width: 720px) {
  .referrals-stat-grid {
    grid-template-columns: 1fr;
  }
}

.referrals-stat {
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.referrals-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 8px;
}

.referrals-stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-dim);
  text-transform: lowercase;
}

.referrals-scenarios-head {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.referrals-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 0 auto 24px;
}

@media (max-width: 720px) {
  .referrals-scenarios {
    grid-template-columns: 1fr;
  }
}

.referrals-scenario {
  padding: 22px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.referrals-scenario-line {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink);
  text-transform: lowercase;
}

.referrals-scenario-out {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

.referrals-scenario-usd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-dim);
  text-transform: lowercase;
}

.referrals-upside {
  max-width: 560px;
  margin: 24px auto 48px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.7;
}

.referrals-howto {
  list-style: none;
  margin: 0 auto 48px;
  padding: 0;
  max-width: 560px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--ink);
}

.referrals-howto li {
  display: flex;
  gap: 12px;
}

.referrals-howto-num {
  color: var(--green);
  flex-shrink: 0;
}

.referrals-howto code {
  color: var(--green);
}

.referrals-generator {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 0 24px rgba(200, 217, 75, 0.06);
}

.referrals-generator-head {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.referrals-generator-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

@media (max-width: 540px) {
  .referrals-generator-row {
    flex-direction: column;
  }
}

.referrals-generator-input {
  flex: 1;
  padding: 12px 14px;
  background: #080808;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
}

.referrals-generator-input:focus {
  border-color: var(--green);
}

.referrals-generator-btn {
  padding: 12px 18px;
  background: var(--green);
  color: #080808;
  border: none;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: lowercase;
}

.referrals-generator-btn:hover {
  background: #d4e84f;
}

.referrals-generator-output {
  display: block;
  margin: 0 0 14px;
  padding: 12px 14px;
  min-height: 1.6em;
  background: rgba(200, 217, 75, 0.06);
  border-radius: 2px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  word-break: break-all;
}

.referrals-generator-output:empty {
  display: none;
}

.referrals-generator-foot {
  margin: 0;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.7;
}

.referrals-generator-foot code {
  color: var(--green);
}

.referrals-bottom {
  max-width: 640px;
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1.25;
  color: var(--ink);
}

.referrals-bottom-sub {
  margin: 0;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: lowercase;
}

/* referral chip — shown when ?ref=@handle is captured */
.referral-chip {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 18;
  padding: 8px 14px;
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(200, 217, 75, 0.35);
  border-radius: 999px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

/* blinking cursor in terminal feed */
.terminal-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 4px;
  background: var(--green);
  vertical-align: text-bottom;
  animation: terminal-cursor-blink 1s step-end infinite;
}

@keyframes terminal-cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* pulsing green dot */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(200, 217, 75, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

/* scan-line overlay on stats terminal */
.stats-terminal {
  position: relative;
  overflow: hidden;
}

.stats-terminal::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 217, 75, 0.04),
    transparent
  );
  animation: scanline 4s linear infinite;
  pointer-events: none;
}

@keyframes scanline {
  0% {
    top: -40%;
  }
  100% {
    top: 100%;
  }
}

/* early access badge — pricing card */
.early-access-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: rgba(200, 217, 75, 0.15);
  border: 1px solid var(--green);
  border-radius: 2px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

/* pricing grid — three tiers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 40px auto 0;
}

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

.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}

.pricing-tier--pro {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(200, 217, 75, 0.08);
}

.pricing-tier--elite {
  opacity: 0.78;
}

.pricing-tier-name {
  margin: 4px 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.pricing-tier-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-tier-badge--popular {
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--amber);
  color: var(--amber);
}

.pricing-tier-badge--soon {
  background: rgba(107, 107, 107, 0.1);
  border: 1px solid var(--ink-dim);
  color: var(--ink-dim);
}

.pricing-tier .pricing-price {
  margin-bottom: 4px;
}

.pricing-tier .pricing-amount {
  font-size: 48px;
}

@media (min-width: 768px) {
  .pricing-tier .pricing-amount {
    font-size: 56px;
  }
  .pricing-tier--pro .pricing-amount {
    font-size: 64px;
  }
}

.pricing-tier .pricing-features {
  flex: 1;
}

.pricing-tier .pricing-cta {
  margin-top: auto;
}

.pricing-cta--secondary {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink-dim) !important;
}

.pricing-cta--secondary:hover {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.pricing-dao {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 20px 28px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.pricing-dao-head {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.pricing-dao-body {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}

.pricing-dao-body a {
  color: var(--green);
}

/* pricing card upgrade */
.pricing-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(200, 217, 75, 0.08),
      transparent 60%
    ),
    var(--bg-card);
}

.pricing-cat-bg {
  position: absolute;
  right: -60px;
  bottom: -30px;
  width: 320px;
  height: auto;
  opacity: 0.05;
  filter: grayscale(1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.pricing-card > *:not(.pricing-cat-bg) {
  position: relative;
  z-index: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(200, 217, 75, 0.4);
}

.pricing-features li .check {
  margin-left: -4px;
}

@media (min-width: 768px) {
  .pricing-amount {
    font-size: 72px;
  }
}

/* bento quote card upgrade */
.how-card--quote {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--green);
  background-color: #0d0d0d;
  background-image: url("./assets/moss-hero.jpg");
  background-size: cover;
  background-position: 38% 32%;
  background-blend-mode: luminosity;
  isolation: isolate;
}

.how-card--quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.92);
  z-index: 0;
}

.how-card--quote > * {
  position: relative;
  z-index: 1;
}

.how-quote-text {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(200, 217, 75, 0.92);
}

/* leaderboard preview row upgrade */
.leaderboard-preview-list li {
  display: block;
  padding: 18px 20px;
}

.lb-row-main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
}

.leaderboard-preview-list li:nth-child(-n + 3) {
  background: transparent;
}

.lb-row-1 {
  background: rgba(200, 217, 75, 0.06);
  border-left: 3px solid var(--green);
  box-shadow:
    inset 0 0 24px rgba(200, 217, 75, 0.05),
    0 0 30px rgba(200, 217, 75, 0.06);
  animation: lb-row-1-shimmer 3s ease-in-out infinite;
}

@keyframes lb-row-1-shimmer {
  0%,
  100% {
    box-shadow:
      inset 0 0 24px rgba(200, 217, 75, 0.05),
      0 0 30px rgba(200, 217, 75, 0.06);
  }
  50% {
    box-shadow:
      inset 0 0 28px rgba(200, 217, 75, 0.08),
      0 0 40px rgba(200, 217, 75, 0.12);
  }
}

.lb-row-2 {
  border-left: 2px solid rgba(200, 217, 75, 0.3);
}

.caller-progress {
  height: 2px;
  margin-top: 10px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.caller-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 1px;
  transition: width 0.8s ease;
}

.lb-thesis {
  font-weight: 700;
}
.lb-thesis--green {
  color: var(--green);
}
.lb-thesis--ink {
  color: var(--ink);
}
.lb-thesis--amber {
  color: var(--amber);
}

/* footer pills marquee on mobile */
.footer-strip {
  overflow: hidden;
}

.footer-strip-track {
  display: inline-block;
  width: 100%;
}

.footer-strip-text + .footer-strip-text {
  display: none;
}

@media (max-width: 620px) {
  .footer-strip {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-strip-track {
    display: flex;
    width: max-content;
    gap: 32px;
    animation: footer-marquee 28s linear infinite;
  }
  .footer-strip-text + .footer-strip-text {
    display: inline;
  }
  .footer-strip-text {
    white-space: nowrap;
    padding: 0 16px;
  }
}

@keyframes footer-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ledger page upgrade — header strip */
.ledger-head--upgraded {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.ledger-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: 12px;
}

.ledger-head--upgraded h1 {
  font-family: var(--font-display);
}

.ledger-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.ledger-stat-strip li {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ledger-stat-label {
  color: var(--muted);
  text-transform: lowercase;
}

.ledger-stat-value {
  color: var(--green);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ledger-live-line {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: lowercase;
}

/* ledger table rank/thesis upgrades */
.ledger-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.ledger-table tr.is-leader td {
  background: rgba(200, 217, 75, 0.06);
  box-shadow: inset 0 0 24px rgba(200, 217, 75, 0.04);
}

.ledger-table tr.is-leader td:first-child {
  box-shadow: inset 3px 0 0 var(--green), inset 0 0 24px rgba(200, 217, 75, 0.04);
}

.ledger-table tr.is-runner td:first-child {
  box-shadow: inset 2px 0 0 rgba(200, 217, 75, 0.3);
}

.ledger-table .col-pts {
  color: var(--green);
  font-weight: 700;
}

.thesis-pill {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid currentColor;
}

.thesis-pill--green {
  color: var(--green);
  background: rgba(200, 217, 75, 0.08);
}

.thesis-pill--ink {
  color: var(--ink);
  background: rgba(232, 227, 213, 0.04);
  border-color: rgba(232, 227, 213, 0.3);
}

.thesis-pill--amber {
  color: var(--amber);
  background: rgba(212, 168, 67, 0.08);
}

/* hall of legends — amber accent */
.legends-italic {
  font-family: var(--font-display);
  font-style: italic;
}

.legends-list li.lb-row-1 {
  background: rgba(212, 168, 67, 0.05);
  border-left: 3px solid var(--amber);
  box-shadow: inset 0 0 24px rgba(212, 168, 67, 0.04);
}

.legends-list .legend-mult {
  color: var(--amber);
}

.legends-list .legend-rank {
  color: var(--amber);
  font-weight: 700;
}

/* disputes — amber cards */
.disputes-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber);
}

.disputes-list .dispute-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  background: rgba(212, 168, 67, 0.04);
  border-radius: 6px;
}

.dispute-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.dispute-card .dispute-status {
  margin: 0;
  border-color: rgba(212, 168, 67, 0.5);
  color: var(--amber);
}

.dispute-card .dispute-token {
  color: var(--ink);
}

.dispute-card .dispute-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.dispute-card .dispute-foot {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(212, 168, 67, 0.7);
}

/* ledger bottom CTA upgrade */
.ledger-cta--upgraded {
  margin-top: 80px;
  padding: 56px 24px;
  background: #0a0a0a;
  border-top: 2px solid var(--green);
  text-align: center;
}

.ledger-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 12px;
}

.ledger-cta-meta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-dim);
  margin: 0 0 24px;
  text-transform: lowercase;
}

/* prominent CTA — the primary conversion element on this page */
.ledger-cta--prominent {
  margin-top: 64px;
  padding: 56px clamp(20px, 5vw, 48px);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(200, 217, 75, 0.14),
      rgba(200, 217, 75, 0) 60%
    ),
    #0a0a0a;
  border: 1px solid rgba(200, 217, 75, 0.32);
  border-top: 2px solid var(--green);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 0 48px rgba(200, 217, 75, 0.08);
}

.ledger-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ledger-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.ledger-cta--prominent .ledger-cta-title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.12;
}

.ledger-cta--prominent .ledger-cta-meta {
  margin: 0 0 28px;
}

.ledger-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  background: var(--green);
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  box-shadow: 0 0 24px rgba(200, 217, 75, 0.32);
  transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.12s ease;
}

.ledger-cta-button:hover,
.ledger-cta-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 32px rgba(200, 217, 75, 0.5);
  outline: none;
}

.ledger-cta-footnote {
  margin: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* live stats heading — dot alignment */
.live-stats-header h2 .live-dot {
  margin-right: 12px;
}


/* ── /leaderboard page (the public best-callers board) ─────────────── */

body.lb-page {
  background: var(--bg);
}

.lb-main {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(18px, 5vw, 48px) 80px;
}

.lb-head {
  text-align: center;
  margin-bottom: 32px;
}

.lb-head h1 {
  margin: 6px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.lb-page .lb-live-line {
  margin: 0 0 26px;
  color: var(--brand-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.lb-page .lb-live-line .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 12px rgba(200, 217, 75, 0.5);
  animation: lb-live-pulse 2.6s ease-in-out infinite;
}

@keyframes lb-live-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.12); }
}

.lb-tabs {
  display: inline-flex;
  gap: 0;
  padding: 4px;
  background: var(--bg-card);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
}

.lb-tab {
  border: 0;
  padding: 8px 16px;
  background: transparent;
  color: var(--brand-secondary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  cursor: pointer;
  border-radius: 5px;
  transition: color 0.15s, background 0.15s;
}

.lb-tab:hover { color: var(--ink); }
.lb-tab.is-active {
  background: rgba(200, 217, 75, 0.12);
  color: var(--brand-accent);
}

.lb-panel {
  margin: 36px auto 56px;
  max-width: 760px;
}

.lb-window-label {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--brand-secondary);
  letter-spacing: 0.04em;
}

.lb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lb-row {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, transform 0.15s;
}

.lb-row:hover {
  border-color: rgba(200, 217, 75, 0.3);
}

.lb-row--legend {
  border-color: rgba(212, 168, 67, 0.4);
  background:
    linear-gradient(180deg, rgba(212, 168, 67, 0.06), transparent 60%),
    var(--bg-card);
  box-shadow: 0 0 32px rgba(212, 168, 67, 0.08);
}

.lb-row-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lb-page .lb-rank {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  padding: 4px 8px;
  background: var(--bg-raised);
  border: 1px solid var(--brand-border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.lb-page .lb-rank--gold,
.lb-page .lb-rank--silver,
.lb-page .lb-rank--bronze {
  font-size: 1.15rem;
  background: transparent;
  border: none;
}

.lb-row-handle {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

.lb-page .lb-handle--x {
  color: var(--brand-accent);
  text-decoration: none;
  border-bottom: 1px dotted rgba(200, 217, 75, 0.4);
}
.lb-page .lb-handle--x:hover {
  border-bottom-color: rgba(200, 217, 75, 0.85);
}

.lb-page .lb-handle--tg {
  color: var(--ink);
}

.lb-page .lb-handle--anon {
  color: var(--brand-secondary);
  font-style: italic;
}

.lb-row-points {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  color: var(--brand-accent);
  font-weight: 700;
}

.lb-row-points > span:first-child {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.lb-pts-label {
  font-size: 0.7rem;
  color: var(--brand-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lb-row-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-left: 46px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--brand-secondary);
}

.lb-page .lb-stat code {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.lb-stat--best {
  flex: 1;
  text-align: right;
}

.lb-best {
  color: var(--ink);
}

.lb-best-mult {
  color: var(--brand-accent);
  font-weight: 700;
}

.lb-skeleton,
.lb-empty {
  list-style: none;
  margin: 0;
  padding: 20px;
  text-align: center;
  color: var(--brand-secondary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.lb-cta {
  margin-top: 48px;
  padding: 36px clamp(20px, 4vw, 40px);
  background:
    radial-gradient(80% 90% at 50% 0%, rgba(200, 217, 75, 0.05), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  text-align: center;
}

.lb-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--ink);
}

.lb-cta-line {
  margin: 0 0 24px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--brand-secondary);
}

.lb-price {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 1.15rem;
}

.lb-period {
  color: var(--ink);
}

.lb-trial {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--brand-secondary);
}

.lb-cta .button {
  margin: 0 6px;
}

/* mobile compaction */
@media (max-width: 640px) {
  .lb-row-stats {
    padding-left: 0;
  }
  .lb-stat--best {
    flex: unset;
    text-align: left;
  }
}

/* ────────────────────────────────────────────────────────── */
/* pre-launch: hero "opening soon" badge + early-access form  */
/* ────────────────────────────────────────────────────────── */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 6px;
  padding: 6px 14px 6px 11px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--green);
  background: rgba(200, 217, 75, 0.06);
  border: 1px solid rgba(200, 217, 75, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(200, 217, 75, 0.5);
  animation: hero-badge-pulse 2.4s ease-out infinite;
}

@keyframes hero-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 217, 75, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(200, 217, 75, 0); }
}

/* ── access form ── */
.access-form {
  margin: 22px 0 8px;
  padding: 22px 22px 20px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(200, 217, 75, 0.18);
  border-radius: 6px;
}

.access-form-row {
  margin-bottom: 14px;
}

.access-form-label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  text-transform: lowercase;
}

.access-form-optional {
  margin-left: 6px;
  color: var(--ink-dim);
  font-size: 10px;
  opacity: 0.65;
}

.access-form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.access-form-prefix {
  position: absolute;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-dim);
  pointer-events: none;
}

.access-form-input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(232, 227, 213, 0.12);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  -webkit-appearance: none;
  appearance: none;
}

.access-form-input--prefixed {
  padding-left: 28px;
}

.access-form-input::placeholder {
  color: var(--ink-dim);
  opacity: 0.55;
}

.access-form-input:hover {
  border-color: rgba(232, 227, 213, 0.22);
}

.access-form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(200, 217, 75, 0.18);
}

.access-form-input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 120, 120, 0.4);
}

.access-form-submit {
  margin-top: 6px;
}

.access-form-submit[disabled] {
  opacity: 0.55;
  cursor: progress;
}

.access-form-status {
  margin: 10px 0 0;
  min-height: 1.3em;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

.access-form-status[data-state="success"] {
  color: var(--green);
}

.access-form-status[data-state="error"] {
  color: #d97373;
}

.access-form-or {
  margin: 26px 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-transform: lowercase;
  position: relative;
}

.access-form-or::before,
.access-form-or::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--border, rgba(232, 227, 213, 0.12));
  vertical-align: middle;
  margin: 0 10px;
}

@media (max-width: 480px) {
  .access-form {
    padding: 18px 16px 16px;
  }
}

/* ── recently shipped strip ── */

.shipped-band {
  padding: clamp(40px, 7vw, 80px) clamp(18px, 5vw, 72px);
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.shipped-header {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: left;
}

.shipped-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.shipped-headline {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.shipped-list {
  list-style: none;
  margin: 0 auto;
  max-width: 980px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.shipped-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--green);
  border-radius: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.shipped-item:hover {
  border-color: rgba(200, 217, 75, 0.3);
  border-left-color: var(--green);
  transform: translateX(2px);
}

.shipped-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow);
  padding: 3px 8px;
  border-radius: 3px;
  min-width: 44px;
  text-align: center;
}

.shipped-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}

.shipped-text code {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.shipped-foot {
  max-width: 980px;
  margin: 24px auto 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-dim);
  text-align: left;
}

.shipped-foot a {
  color: var(--green);
}

.shipped-foot a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .shipped-item {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* ── access-pitch (CTA strip) ── */

.access-pitch {
  list-style: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  background: var(--green-glow);
  border-left: 2px solid var(--green);
  border-radius: 4px;
}

.access-pitch li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.access-pitch-dot {
  color: var(--green);
}
