/* finesse · register=brand · A=slate-cool+acid-cyan · B=SpaceGrotesk+IBMPlexMono
 * C=numbered-ledger+spec-band · D=CSS-only(scroll-counters/hairline-draw) · E=research-terminal
 * SOUL=6 SPECTACLE=4 DENSITY=6 · mobile-first · mobile-floor applied
 * 5 轴 vs A 公司(ink-navy+gold·Archivo+Newsreader·editorial-alternating·marina-bay-ledger)：4/5 不同 */

/* ============================================================
   LATTICE AI RESEARCH · Research Terminal design system
   Slate cool + acid cyan, data-ledger, mobile-first
   ============================================================ */

:root {
  /* Slate ramp (cool, tinted, never pure black) */
  --slate-950: #06090C;
  --slate-900: #0A0F14;
  --slate-850: #0E1419;
  --slate-800: #131B22;
  --slate-700: #1A242D;
  --slate-600: #243140;

  /* Paper ramp (cool cream, not warm) */
  --paper-50: #F4F1E9;
  --paper-100: #ECE7DA;
  --paper-200: #E1DBC9;

  /* Text */
  --text-on-dark: #E4EAEE;
  --text-on-dark-soft: #9CA8B4;
  --text-on-paper: #18202A;
  --text-on-paper-soft: #475465;

  /* Acid cyan accent (locked) */
  --acid-300: #8EEBD9;
  --acid-400: #3EE0C4;
  --acid-500: #1FC4AC;
  --acid-600: #16856F;
  --acid-tint: rgba(62, 224, 196, 0.12);

  /* Semantic */
  --red-400: #E0625A;
  --red-tint: rgba(224, 98, 90, 0.1);
  --wa-500: #25C15E;
  --wa-600: #1B9E4A;
  --wa-tint: rgba(37, 193, 94, 0.12);

  /* Lines */
  --line-dark: rgba(228, 234, 238, 0.09);
  --line-dark-strong: rgba(228, 234, 238, 0.18);
  --line-paper: rgba(24, 32, 42, 0.1);
  --line-paper-strong: rgba(24, 32, 42, 0.16);
  --line-acid: rgba(62, 224, 196, 0.28);

  /* Shadows (tinted) */
  --shadow-deep: 0 24px 60px -18px rgba(4, 8, 12, 0.6);
  --shadow-lift: 0 12px 32px -12px rgba(4, 8, 12, 0.35);
  --shadow-acid: 0 10px 28px -10px rgba(62, 224, 196, 0.4);

  /* Type */
  --font-sans: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Menlo, Consolas, monospace;

  /* Rhythm */
  --radius: 14px;
  --radius-lg: 20px;
  --nav-h: 60px;
  --z-grain: 150;
  --z-sticky: 180;
  --z-modal: 200;
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-on-paper);
  background: var(--slate-900);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; overflow-wrap: anywhere; min-width: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--acid-400); color: var(--slate-950); }

:focus-visible {
  outline: 2px solid var(--acid-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Grain (universal craft floor) ---------- */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- Layout primitives ---------- */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.section-paper { background: var(--paper-50); color: var(--text-on-paper); }
.section-paper-tint { background: var(--paper-100); color: var(--text-on-paper); }
.section-dark { background: var(--slate-900); color: var(--text-on-dark); }
.section-deep { background: var(--slate-950); color: var(--text-on-dark); }

/* ---------- Type scale ---------- */

.display-1 {
  font-size: clamp(2.3rem, 7.4vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display-2 {
  font-size: clamp(1.8rem, 5.4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: var(--acid-400);
  flex: none;
}

.section-dark .eyebrow, .section-deep .eyebrow { color: var(--acid-400); }
.section-paper .eyebrow, .section-paper-tint .eyebrow { color: var(--acid-600); }

.lead {
  font-size: clamp(1.02rem, 2.5vw, 1.18rem);
  line-height: 1.58;
}

.section-dark .lead, .section-deep .lead { color: var(--text-on-dark-soft); }
.section-paper .lead, .section-paper-tint .lead { color: var(--text-on-paper-soft); }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 5.5vw, 3.2rem); }
.section-head .lead { margin-top: 1rem; }

/* Acid + mono inline emphasis (replaces the original's serif-italic gold) */
.acid { color: var(--acid-400); }

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 52px;
  padding: 0.9rem 1.7rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, filter 0.22s ease;
  will-change: transform;
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn-acid {
  background: linear-gradient(180deg, var(--acid-300), var(--acid-400));
  color: var(--slate-950);
  box-shadow: var(--shadow-acid);
}

.btn-acid:hover { filter: brightness(1.06); transform: translateY(-2px); }

.btn-wa {
  background: linear-gradient(180deg, #2DD468, var(--wa-500) 55%, var(--wa-600));
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(37, 193, 94, 0.55);
}

.btn-wa:hover { filter: brightness(1.05); transform: translateY(-2px); }

.btn-ghost-dark {
  background: rgba(228, 234, 238, 0.07);
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark-strong);
}

.btn-ghost-dark:hover { background: rgba(228, 234, 238, 0.12); }

.btn-block { width: 100%; }
.btn-lg { min-height: 60px; font-size: 1.06rem; padding: 1.05rem 2rem; }

.btn .arr { transition: transform 0.22s ease; }
.btn:hover .arr { transform: translateX(4px); }

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em 0.9em;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.section-dark .micro-trust, .section-deep .micro-trust { color: var(--text-on-dark-soft); }
.section-paper .micro-trust, .section-paper-tint .micro-trust { color: var(--text-on-paper-soft); }

/* ---------- Nav ---------- */

.nav {
  position: relative;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(6, 9, 12, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: clamp(0.78rem, 2.8vw, 0.98rem);
  letter-spacing: 0.01em;
  color: var(--text-on-dark);
  white-space: nowrap;
}

.brand i {
  width: 12px;
  height: 12px;
  border: 2px solid var(--acid-400);
  flex: none;
  position: relative;
}
.brand i::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--acid-400);
}

.brand b { font-weight: 400; letter-spacing: 0.2em; font-size: 0.72em; opacity: 0.8; font-family: var(--font-mono); }

.nav-cta {
  min-height: 40px;
  padding: 0.5rem 1.05rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  background: linear-gradient(180deg, var(--acid-300), var(--acid-400));
  color: var(--slate-950);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover { filter: brightness(1.06); }

/* ---------- Hero (left-aligned split hero + photo backdrop + thin countdown pill) ---------- */

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  min-height: max(calc(100svh - var(--nav-h)), 620px);
  display: flex;
  align-items: stretch;
  background: var(--slate-950);
  color: var(--text-on-dark);
  overflow: hidden;
}

/* Hero photo backdrop with deep cyan glow
   全站只投手机端流量，统一用竖版 hero-bg-mobile.jpg 一张（1080x1920，人像在右下）。
   人物位置的唯一控制点：background-position。
   - X% 越大 → 人物越往右（画面右边显示更多，裁掉更多右肩/脸右边）
   - Y% 越小 → 人物越往上（画面上边显示更多，裁掉更多拇指/肩部下方）
   当前设定：X 加 6%，Y 减 18%（从默认 center bottom 即 50% 100% → 调到 56% 82%，把分析师往右上挪）
*/
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(70% 55% at 70% 75%, rgba(62, 224, 196, 0.10), transparent 60%),
    url("../../img/hero-bg-mobile.jpg");
  background-size: cover;
  background-position: 59% 85%;
  background-repeat: no-repeat;
  filter: saturate(1.02) brightness(0.98);
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(6, 9, 12, 0.92) 0%, rgba(6, 9, 12, 0.72) 30%, rgba(6, 9, 12, 0.22) 62%, rgba(6, 9, 12, 0.46) 100%),
    linear-gradient(180deg, rgba(6, 9, 12, 0.46) 0%, rgba(6, 9, 12, 0.08) 38%, rgba(6, 9, 12, 0.84) 100%);
}

/* Side rail: label + ticker readout, sits right of hero on wide screens */
.hero-side {
  position: absolute;
  top: clamp(1.6rem, 4vw, 3rem);
  right: clamp(1.2rem, 4vw, 2.4rem);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  text-align: right;
}

.hero-side-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(14, 20, 25, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-side-ticker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem 0.85rem;
  border: 1px solid var(--line-acid);
  border-radius: 12px;
  background: rgba(6, 9, 12, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-side-ticker b {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero-side-ticker i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

.hero-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: auto;
  padding-block: clamp(2.6rem, 8vw, 5rem);
  max-width: 720px;
  text-align: left;
}

.hero .eyebrow { color: var(--acid-400); }

.hero h1 { margin-top: 1.2rem; }

.hero h1 .acid {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.hero .lead {
  margin-top: 1.4rem;
  max-width: 580px;
  color: #BCC6D0;
}

.hero-actions {
  margin-top: 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.hero-actions .btn { width: min(100%, 400px); }

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
}

/* Thin countdown pill — replaces the old centered countdown strip */
.cd-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 20, 25, 0.7);
  border: 1px solid var(--line-acid);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
}

.cd-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-400);
  box-shadow: 0 0 0 3px rgba(224, 98, 90, 0.18);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex: none;
}

.cd-pill-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

.cd-pill-timer {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-variant-numeric: tabular-nums;
  font-size: 0.92rem;
  color: var(--acid-300);
  font-weight: 500;
}

.cd-pill-timer b {
  display: inline-block;
  min-width: 1.4ch;
  text-align: right;
}

.cd-pill-timer i {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-soft);
  margin-right: 0.2rem;
}

.hero .micro-trust {
  justify-content: flex-start;
  margin-top: 0;
  color: var(--text-on-dark-soft);
}

/* ---------- Countdown strip ---------- */

.count-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1.1rem;
  margin-top: 1.9rem;
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  background: rgba(14, 20, 25, 0.66);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.count-strip-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-soft);
  text-transform: uppercase;
}

.count-timer {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}

.ct-unit { display: inline-flex; align-items: baseline; gap: 0.18rem; }

.ct-unit b {
  font-family: var(--font-mono);
  font-size: 1.28rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: var(--acid-300);
  min-width: 2ch;
  text-align: center;
}

.ct-unit i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

.ct-sep { color: var(--text-on-dark-soft); font-weight: 500; opacity: 0.45; }

.count-now {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-on-dark-soft);
  font-variant-numeric: tabular-nums;
}

.count-spots {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--red-400);
}

.count-spots::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-400);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

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

/* ---------- Spec ticker (horizontal data river — replaces the old 4-cell grid) ---------- */

.spec-section {
  padding-block: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--slate-950);
  overflow: hidden;
}

.spec-ticker {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-block: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.spec-ticker-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex: none;
  white-space: nowrap;
  animation: ticker-slide 32s linear infinite;
  padding-inline: 1.2rem;
}

.spec-ticker:hover .spec-ticker-track { animation-play-state: paused; }

@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.spec-tick {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-mono);
}

.spec-tick b {
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--acid-400);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.spec-tick i {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-soft);
  text-transform: lowercase;
}

.spec-tick::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid-500);
  margin-left: 2.4rem;
  flex: none;
  opacity: 0.55;
}

/* ---------- Two forces (left vs right comparison — replaces the original vertical numbered list) ---------- */

.forces-vs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  position: relative;
}

.force-vs {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-lg);
  background: #FFFCF3;
  box-shadow: 0 8px 24px -16px rgba(24, 32, 42, 0.18);
}

.force-vs-left { border-left: 3px solid var(--acid-500); }
.force-vs-right { border-right: 3px solid var(--acid-500); text-align: right; }

.force-vs-head {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.force-vs-right .force-vs-head { align-items: flex-end; }

.force-vs-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid-600);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-acid);
  border-radius: 999px;
  background: var(--acid-tint);
  width: max-content;
}

.force-vs-title {
  font-size: clamp(1.18rem, 3.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.2;
}

.force-vs-lead {
  font-size: clamp(1rem, 2.6vw, 1.1rem);
  line-height: 1.55;
  color: var(--text-on-paper);
  font-weight: 500;
}

.force-vs-text {
  margin-top: 0.8rem;
  color: var(--text-on-paper-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.force-vs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.force-vs-right .force-vs-tags { justify-content: flex-end; }

.force-vs-tags li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: var(--acid-tint);
  border: 1px solid var(--line-acid);
  color: var(--acid-600);
}

/* Center VS divider — only visible on wide screens */
.force-vs-divider {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
}

.force-vs-divider::before,
.force-vs-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-paper-strong);
}

.force-vs-divider::before { top: 35%; }
.force-vs-divider::after { bottom: 35%; }

.force-vs-vs {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--acid-500);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFCF3;
  border: 1px solid var(--line-acid);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}

/* ---------- Ledger (what's inside — numbered TOC) ---------- */

.ledger { border-top: 1px solid var(--line-paper-strong); }

.ledger-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-paper);
  align-items: start;
}

.ledger-num {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  line-height: 1;
  color: var(--acid-600);
  font-variant-numeric: tabular-nums;
  min-width: 2.4ch;
}

.ledger-title {
  font-size: clamp(1.08rem, 3vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.ledger-text {
  margin-top: 0.4rem;
  color: var(--text-on-paper-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Who reads this (cardless editorial list — replaces the original 3-card grid) ---------- */

.reader-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-paper-strong);
}

.reader-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem 1.6rem;
  padding: clamp(1.5rem, 4vw, 2rem) 0;
  border-bottom: 1px solid var(--line-paper);
  align-items: start;
}

.reader-num {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  line-height: 1;
  color: var(--acid-600);
  font-variant-numeric: tabular-nums;
  min-width: 2.4ch;
  letter-spacing: -0.01em;
}

.reader-title {
  font-size: clamp(1.12rem, 3vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.reader-text {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-on-paper-soft);
  max-width: 560px;
}

/* ---------- Proof & desk (giant pull-quote + inline data — replaces the original 3-stat band + 3-card quote grid) ---------- */

.pull-quote {
  position: relative;
  margin: 0;
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid var(--line-dark-strong);
  border-left: 3px solid var(--acid-400);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: linear-gradient(135deg, rgba(14, 20, 25, 0.6), rgba(6, 9, 12, 0.4));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pull-quote p {
  font-size: clamp(1.3rem, 4.2vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.32;
  color: var(--text-on-dark);
}

.pull-quote p::before { content: ""; }

.pull-quote cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--acid-400);
}

.desk-data {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin-top: clamp(2rem, 5vw, 2.8rem);
  padding-top: clamp(1.8rem, 4vw, 2.4rem);
  border-top: 1px solid var(--line-dark);
}

.desk-line {
  font-size: clamp(1.05rem, 2.6vw, 1.18rem);
  line-height: 1.6;
  color: var(--text-on-dark);
}

.desk-line b {
  font-size: 1.05em;
  letter-spacing: -0.01em;
  margin-inline: 0.15em;
}

.desk-line:last-child {
  color: var(--text-on-dark-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.reader-voices {
  margin-top: clamp(2.4rem, 5vw, 3rem);
  padding-top: clamp(1.8rem, 4vw, 2.4rem);
  border-top: 1px solid var(--line-dark);
}

.reader-voices-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid-400);
  margin-bottom: 1.4rem;
}

.voices-row {
  display: grid;
  gap: 1.2rem;
}

.voice {
  position: relative;
  padding: 1.3rem 1.3rem 1.3rem 1.6rem;
  border-radius: var(--radius);
  background: var(--slate-850);
  border: 1px solid var(--line-dark);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-on-dark);
}

.voice::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  left: 0.55rem;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--acid-500);
  opacity: 0.6;
}

.voice cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-soft);
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; }

.faq-item { border-bottom: 1px solid var(--line-paper); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.2rem;
  font-weight: 700;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  letter-spacing: -0.012em;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-paper-strong);
  display: grid;
  place-items: center;
  font-weight: 400;
  font-size: 1.1rem;
  font-family: var(--font-mono);
  color: var(--acid-600);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--acid-400);
  color: var(--slate-950);
  border-color: var(--acid-400);
}

.faq-item .faq-body {
  padding: 0 0.2rem 1.4rem;
  color: var(--text-on-paper-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- Final CTA (split column — replaces the original centered CTA) ---------- */

.final-cta { padding-block: clamp(3rem, 8vw, 5rem); }

.final-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 2.4rem);
  align-items: stretch;
}

.final-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.final-split-left .display-2 { max-width: 560px; }
.final-split-left .lead { max-width: 480px; }

.final-split-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(14, 20, 25, 0.55), rgba(6, 9, 12, 0.35));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.final-count {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line-acid);
  border-radius: var(--radius);
  background: rgba(224, 98, 90, 0.06);
  text-align: center;
}

.final-count-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

.final-count-timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.fc-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
}

.fc-unit b {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--acid-300);
  min-width: 2ch;
  text-align: center;
}

.fc-unit i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

.fc-sep { color: var(--text-on-dark-soft); font-weight: 500; opacity: 0.45; font-size: 1.6rem; }

.final-count-now {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-on-dark-soft);
  font-variant-numeric: tabular-nums;
}

.final-split-right .micro-trust {
  justify-content: center;
  color: var(--text-on-dark-soft);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--slate-950);
  color: var(--text-on-dark-soft);
  border-top: 1px solid var(--line-dark);
  padding: clamp(2.8rem, 7vw, 4rem) 0 2rem;
}

.footer-grid { display: grid; gap: 2.2rem; }

.footer .brand { color: var(--text-on-dark); }

.footer-tagline { margin-top: 0.9rem; font-size: 0.92rem; max-width: 340px; }

.entity-info { margin-top: 0.85rem; font-size: 0.78rem; line-height: 1.6; color: var(--text-on-dark-soft); }

.entity-info b { color: var(--text-on-dark); font-weight: 700; }

.footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; font-size: 0.88rem; font-weight: 500; }

.footer-links a { color: var(--text-on-dark-soft); transition: color 0.2s ease; padding-block: 0.4rem; }
.footer-links a:hover { color: var(--acid-300); }

.footer-disclaimer {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(156, 168, 180, 0.75);
  max-width: 860px;
}

.footer-bottom {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.8rem;
  color: rgba(156, 168, 180, 0.65);
}

/* ---------- Sticky bottom CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  padding: 0.7rem max(0.9rem, env(safe-area-inset-left)) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(6, 9, 12, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-dark-strong);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-cta.show { transform: translateY(0); }

.sticky-cta button {
  width: 100%;
  min-height: 62px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--acid-300), var(--acid-400));
  color: var(--slate-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding-block: 0.55rem;
  box-shadow: 0 -2px 30px rgba(62, 224, 196, 0.22);
}

.sticky-cta .sc-title {
  font-weight: 700;
  font-size: clamp(0.95rem, 3.6vw, 1.05rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.sticky-cta .sc-sub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  opacity: 0.78;
  white-space: nowrap;
}

body.modal-open .sticky-cta { transform: translateY(110%); }
body.has-sticky { padding-bottom: 96px; }

/* ---------- Modal (registration popup) ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 5, 7, 0.74);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open { opacity: 1; visibility: visible; }

.modal-dialog {
  position: relative;
  width: min(460px, 100%);
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--slate-850), var(--slate-900));
  border: 1px solid var(--line-dark-strong);
  box-shadow: var(--shadow-deep);
  color: var(--text-on-dark);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.open .modal-dialog { transform: none; }

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-on-dark-soft);
  font-size: 1.15rem;
  background: rgba(228, 234, 238, 0.06);
  border: 1px solid var(--line-dark);
  z-index: 2;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover { background: rgba(228, 234, 238, 0.14); color: #fff; }

.modal-count {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(224, 98, 90, 0.08);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-on-dark-soft);
  text-align: center;
}

.modal-count .count-timer .ct-unit b { font-size: 1.02rem; }

.modal-count .spots { color: var(--red-400); font-weight: 500; }

.modal-body { padding: 1.7rem 1.5rem 1.6rem; text-align: center; }

.modal-title { font-size: clamp(1.32rem, 4.4vw, 1.55rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }

.modal-sub { margin-top: 0.7rem; font-size: 0.92rem; color: var(--text-on-dark-soft); line-height: 1.55; }

.modal-form { margin-top: 1.5rem; display: grid; gap: 0.9rem; text-align: left; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 0.45rem;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border-radius: 11px;
  background: rgba(228, 234, 238, 0.06);
  border: 1px solid var(--line-dark-strong);
  color: var(--text-on-dark);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field input::placeholder { color: rgba(156, 168, 180, 0.55); font-weight: 400; }

.field input:focus {
  outline: none;
  border-color: var(--acid-400);
  background: rgba(228, 234, 238, 0.09);
}

.phone-group { display: flex; gap: 0.55rem; }

.phone-group .phone-code {
  flex: none;
  display: grid;
  place-items: center;
  min-width: 66px;
  min-height: 52px;
  padding: 0 0.8rem;
  border-radius: 11px;
  background: rgba(228, 234, 238, 0.06);
  border: 1px solid var(--line-dark-strong);
  color: var(--acid-300);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

.phone-group input { flex: 1; min-width: 0; }

.field-error {
  display: none;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--red-400);
}

.field.invalid input, .field.invalid .phone-code { border-color: rgba(224, 98, 90, 0.6); }
.field.invalid .field-error { display: block; }

.modal-form .btn { min-height: 56px; font-size: 1.02rem; }

.modal-trust {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-on-dark-soft);
  line-height: 1.5;
}

.modal-fine {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  color: rgba(156, 168, 180, 0.6);
}

.modal-fine a { color: var(--acid-300); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Thank You page ---------- */

.ty-wrap {
  min-height: 100svh;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(62, 224, 196, 0.08), transparent 60%),
    var(--slate-950);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
}

.ty-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.ty-card { text-align: center; }

.ty-check {
  width: 76px;
  height: 76px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--wa-tint);
  border: 1.5px solid rgba(37, 193, 94, 0.45);
  color: #35C96A;
  display: grid;
  place-items: center;
  font-size: 2rem;
  animation: pop-in 0.5s cubic-bezier(0.22, 1.4, 0.36, 1) both;
}

@keyframes pop-in {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ty-title { margin-top: 1.5rem; }
.ty-title .name { color: var(--acid-400); font-family: var(--font-mono); }

.ty-sub { margin-top: 0.9rem; color: var(--text-on-dark-soft); font-size: 1.05rem; }

.ty-steps { display: grid; gap: 0.9rem; margin-top: 2.4rem; text-align: left; }

.ty-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(14, 20, 25, 0.6);
  border: 1px solid var(--line-dark);
}

.ty-step-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--acid-tint);
  border: 1px solid var(--line-acid);
  color: var(--acid-300);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.ty-step h3 { font-size: 1.02rem; font-weight: 700; }
.ty-step p { margin-top: 0.3rem; font-size: 0.88rem; color: var(--text-on-dark-soft); line-height: 1.55; }

.ty-step .hl { color: #4BCD80; font-weight: 500; }

.ty-cta { margin-top: 2.4rem; text-align: center; }

.ty-cta .btn { width: min(100%, 440px); }

.ty-note { margin-top: 1rem; font-size: 0.85rem; color: var(--text-on-dark-soft); }

.ty-note b { color: var(--text-on-dark); }

/* ---------- Legal pages ---------- */

.legal-main { padding-block: clamp(2.8rem, 7vw, 4.5rem); }

.legal-body { max-width: 760px; }

.legal-title { font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; }

.legal-updated {
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acid-600);
}

.legal-body h2 {
  margin-top: 2.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line-paper);
}

.legal-body h2:first-of-type { margin-top: 2rem; }

.legal-body p, .legal-body li {
  margin-top: 0.9rem;
  color: var(--text-on-paper-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

.legal-body ul { list-style: disc; padding-left: 1.3rem; }
.legal-body ul li { margin-top: 0.5rem; padding-left: 0.2rem; }

.legal-body a { color: var(--acid-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.legal-body strong { color: var(--text-on-paper); }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .voices-row { grid-template-columns: repeat(3, 1fr); }
  .modal-body { padding: 2.1rem 2.2rem 2rem; }
  .hero-side { display: flex; }
}

@media (min-width: 900px) {
  .forces-vs {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
  .force-vs-divider { display: flex; padding-inline: clamp(1rem, 2vw, 1.6rem); }
  .final-split { grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 3.4rem); }
  .footer-grid { grid-template-columns: 1fr auto; align-items: start; }
  .sticky-cta {
    left: 50%;
    right: auto;
    bottom: 1.6rem;
    width: auto;
    padding: 0.55rem 0.6rem 0.55rem 0.6rem;
    border: 1px solid var(--line-dark-strong);
    border-radius: 14px;
    transform: translate(-50%, 140%);
  }
  .sticky-cta.show { transform: translate(-50%, 0); }
  .sticky-cta button { min-height: 50px; padding-inline: 1.6rem; }
  body.has-sticky { padding-bottom: 0; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .spec-ticker-track { animation: none; }
}
