/* ============================================================
   PRiSM Landing Page — desktop-first
   ============================================================ */

:root {
  --canvas: #F4F6FA;
  --canvas-2: #EEF2F7;
  --surface: #FFFFFF;
  --ink: #0D1526;
  --ink-soft: #1A2440;
  --text: #0D1526;
  --text-2: #4A5670;
  --text-3: #8A96B0;
  --border: #E5E7EB;
  --border-soft: #EDF0F4;
  --primary: #2563EB;
  --primary-pale: #EFF4FF;
  --primary-soft: #DBE6FF;

  --orange: #F36B07;
  --orange-soft: #FFF1E2;
  --orange-text: #C2410C;
  --warm-bg: #FFF6E6;
  --warm-border: #FCE2B5;

  --success: #16A34A;
  --success-pale: #E6F6EC;
  --success-bg: #D7F2DF;

  --ability: #EF4444;
  --ability-bg: #FEE7E7;
  --ability-tab: #FECACA;

  --speed: #F59E0B;
  --speed-bg: #FEF3C7;
  --speed-tab: #FCD34D;

  --judgment: #7C3AED;
  --judgment-bg: #F3E8FF;
  --judgment-tab: #DDD0FE;

  --careless: #0F9D7E;
  --careless-bg: #D7F2EA;
  --careless-tab: #99E4D2;

  --shadow-card: 0 1px 2px rgba(15,23,42,0.02), 0 8px 24px -8px rgba(15,23,42,0.05);
  --shadow-strong: 0 20px 50px -20px rgba(15,23,42,0.12), 0 1px 2px rgba(15,23,42,0.04);

  --content: 1240px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'cv11' on, 'ss01' on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 48px;
}

/* Heavy sans display — 800 reads as heavy without going full-black */
.display {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-feature-settings: 'cv11' on, 'ss01' on, 'ss03' on;
}

/* Italic serif accent */
.italic-serif {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.orange { color: var(--orange); }
.ink { color: var(--ink); }

/* Dotted decoration */
.dots {
  position: absolute;
  background-image: radial-gradient(circle, #B7C2D4 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.55;
  pointer-events: none;
}

/* ============================================================
   SECTION 1 · HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #F5F7FA 0%, #EEF2F7 100%);
}
.hero .dots.tl { top: 28px; left: 24px; width: 110px; height: 90px; opacity: 0.45; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 80px;
  align-items: center;
}
.eyebrow-italic {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-2);
  margin: 0 0 26px;
  font-weight: 400;
}
.hero h1 {
  margin: 0 0 32px;
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 600px;
}
.hero h1 .orange { color: var(--orange); }
.hero-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--text);
}
.check-circle {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--success-pale);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.check-circle svg { display: block; }
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--orange);
  color: white;
  border: 0;
  padding: 18px 26px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 26px -10px rgba(243,107,7,0.55);
  transition: background 160ms, transform 80ms;
  width: 340px;
  max-width: 100%;
}
.cta-primary:hover { background: #DC5B05; }
.cta-primary:active { transform: translateY(1px); }
.cta-primary .arrow {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(13,21,38,0.18);
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  margin-top: 14px;
  width: 280px;
}
.cta-secondary:hover { background: rgba(13,21,38,0.04); }
.fineprint { color: var(--text-3); font-size: 14px; margin-top: 22px; }

.hero-jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid rgba(13,21,38,0.2);
  width: fit-content;
  transition: color 140ms, border-color 140ms;
}
.hero-jump:hover { color: var(--orange); border-color: var(--orange); }
.hero-jump svg { transition: transform 200ms; }
.hero-jump:hover svg { transform: translateY(2px); }

/* Prediction card */
.predict-wrap {
  position: relative;
  height: 540px;
}
.predict-wrap .ring {
  position: absolute;
  top: 30px; right: 40px;
  width: 360px; height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(219,230,255,0.4) 0%, rgba(219,230,255,0) 70%);
}
.predict-card {
  position: absolute;
  top: 20px;
  right: 0;
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border-radius: 24px;
  padding: 36px 40px 36px;
  box-shadow: var(--shadow-strong);
}
.predict-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.predict-brand .i { color: var(--orange); font-weight: 800; text-transform: lowercase; }
.predict-label {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.predict-score {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 128px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--ink);
  margin: 4px 0 6px;
  font-feature-settings: 'cv11' on, 'ss01' on;
}
.predict-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 18px;
}
.acc-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 32px;
  padding: 8px 16px;
  background: var(--success-bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: #0E7A38;
}
.acc-pill svg { flex-shrink: 0; }
.range-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  font-size: 12px;
  align-items: end;
  color: var(--success);
  font-weight: 600;
}
.range-mid {
  text-align: center;
  color: var(--ink);
}
.range-mid b { display: block; font-weight: 600; font-size: 12px; color: var(--ink); }
.range-mid span { font-size: 13px; font-weight: 700; }
.range-pill {
  background: #D7F2DF;
  color: #0E7A38;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}
.scatter {
  position: relative;
  height: 86px;
  margin: 8px 0 12px;
  background: var(--success-pale);
  border-radius: 10px;
  border: 1px dashed #BFE4CD;
}
.scatter::after {
  content: '';
  position: absolute;
  left: 50%; top: -8px; bottom: -8px;
  width: 1.5px;
  background: var(--ink);
}
.scatter .dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--primary);
  transform: translate(-50%, -50%);
}
.scatter .anchor {
  position: absolute;
  left: 50%; bottom: -14px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}
.axis {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-2);
  padding: 0 2px;
}
.axis .mid { color: var(--ink); font-weight: 600; }

/* small floating chips */
.chip {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
.chip .ic {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--success-pale);
  display: grid; place-items: center;
}
.chip.deep .ic { background: var(--primary-pale); }
.chip.acc  { top: 130px; left: -32px; z-index: 3; }
.chip.deep { top: 248px; left: -16px; z-index: 3; }


/* Reusable inline CTA band — sits between sections */
.cta-band {
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-band .cta-primary {
  width: 340px;
  padding: 18px 28px;
  font-size: 18px;
}

/* highlight token used inside CTAs and micro lines */
.hi {
  font-weight: 700;
  color: var(--orange-text);
  background: linear-gradient(180deg, transparent 58%, rgba(243,107,7,0.22) 58% 92%, transparent 92%);
  padding: 0 3px;
  white-space: nowrap;
}
.cta-primary .hi {
  color: var(--ink);
  background: #FFD66B;
  padding: 2px 10px;
  border-radius: 6px;
  margin: 0 2px;
  font-weight: 800;
}
.cta-micro .hi {
  color: var(--orange-text);
  background: rgba(243,107,7,0.14);
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 700;
}
.faq-checks .hi {
  color: var(--orange-text);
  background: rgba(243,107,7,0.12);
  padding: 2px 8px;
  border-radius: 5px;
  font-weight: 700;
}
.cta-band .cta-micro {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--text-2);
}
.cta-band .cta-micro b { color: var(--ink); font-weight: 600; }
.cta-band .cta-micro .sep {
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--text-3);
  opacity: 0.55;
}

/* ============================================================
   SECTION 2 · TRUST
   ============================================================ */
.trust {
  position: relative;
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #EEF2F7 0%, #F2F5F9 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.trust-eyebrow {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-2);
  margin: 0 0 28px;
  font-weight: 400;
}
.trust h2 {
  margin: 0 0 24px;
  font-size: 60px;
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.trust h2 .italic-serif { font-size: 60px; font-weight: 600; }
.trust-lede {
  font-size: 18px;
  color: var(--text-2);
  margin: 0;
}
.circle-wrap {
  position: relative;
  height: 480px;
  display: grid;
  place-items: center;
}
.circle-wrap .dots-l { top: 90px; left: 0; width: 140px; height: 220px; opacity: 0.6; background-image: radial-gradient(circle, #93B0F0 1.2px, transparent 1.5px); }
.circle-wrap .dots-r { bottom: 90px; right: 0; width: 140px; height: 220px; opacity: 0.6; background-image: radial-gradient(circle, #93B0F0 1.2px, transparent 1.5px); }
.big-circle {
  position: relative;
  width: 420px; height: 420px;
  background: var(--surface);
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 1px 1px rgba(15,23,42,0.03), 0 12px 40px rgba(80,120,200,0.08);
}
.big-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1.5px dashed #C7D6F0;
  border-radius: 999px;
  opacity: 0.6;
}
.big-circle .dot-node {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--primary);
}
.big-circle .dot-node.n1 { top: 4%; left: 60%; }
.big-circle .dot-node.n2 { top: 36%; right: -4px; }
.big-circle .dot-node.n3 { bottom: 12%; right: 8%; }
.big-circle .dot-node.n4 { bottom: 6%; left: 30%; }
.big-circle .dot-node.n5 { top: 38%; left: -4px; }
.big-circle .dot-node.n6 { top: 4%; left: 30%; }
.circle-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.circle-inner .pre {
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.circle-inner .big {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 144px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--orange);
}
.circle-inner .big sup { font-size: 92px; vertical-align: 26px; font-weight: 800; }
.circle-inner .post {
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 4px;
}

.trust-cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.trust-card {
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  padding: 30px 28px 32px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 12px 30px -16px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-card .num {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 20px;
  border: 4px solid var(--canvas);
}
.trust-card .head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 8px;
}
.trust-card .ic-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-pale);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-card h3 {
  margin: 6px 0 0;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.trust-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.55;
}
.trust-sep {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(15,23,42,0.06);
  color: var(--text-3);
}


/* ============================================================
   SECTION 3 · WHY YOU GOT IT WRONG
   ============================================================ */
.why {
  padding: 88px 0 88px;
  background: var(--canvas);
}
.why-head {
  text-align: center;
  margin-bottom: 56px;
}
.why-eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 22px;
}
.why h2 {
  margin: 0 0 16px;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-style: normal;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.why h2 .grad-orange {
  font-style: italic;
  background: linear-gradient(135deg, #E08200 0%, #B85800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-lede {
  font-size: 19px;
  color: var(--text-2);
  margin: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 38px 40px 38px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 16px 36px -20px rgba(15,23,42,0.08);
  overflow: hidden;
}
.why-card .tag {
  position: absolute;
  top: 0; left: 36px;
  height: 14px;
  width: 64px;
  border-radius: 0 0 6px 6px;
}
.why-card .row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
}
.why-card .icb {
  width: 96px; height: 96px;
  border-radius: 999px;
  display: grid; place-items: center;
}
.why-card h3 {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.why-card p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
}
.why-card .fix {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 17px;
}
.why-card .fix b {
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.why-card .fix .v {
  border-left: 1px solid currentColor;
  opacity: 0.4;
  height: 18px;
}

.why-card.ability .tag, .why-card.ability { }
.why-card.ability .tag { background: var(--ability-tab); }
.why-card.ability .icb { background: var(--ability-bg); }
.why-card.ability h3 { color: var(--ability); }
.why-card.ability .fix { background: var(--ability-bg); color: var(--ability); }

.why-card.speed .tag { background: var(--speed-tab); }
.why-card.speed .icb { background: var(--speed-bg); }
.why-card.speed h3 { color: #E89009; }
.why-card.speed .fix { background: var(--speed-bg); color: #B45309; }

.why-card.judgment .tag { background: var(--judgment-tab); }
.why-card.judgment .icb { background: var(--judgment-bg); }
.why-card.judgment h3 { color: var(--judgment); }
.why-card.judgment .fix { background: var(--judgment-bg); color: var(--judgment); }

.why-card.careless .tag { background: var(--careless-tab); }
.why-card.careless .icb { background: var(--careless-bg); }
.why-card.careless h3 { color: var(--careless); }
.why-card.careless .fix { background: var(--careless-bg); color: var(--careless); }


/* ============================================================
   SECTION 4 · LOOP, FULLY TOOLED
   ============================================================ */
.loop {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, var(--canvas) 0%, #F0F3F8 100%);
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0 0 18px;
  font-size: 60px;
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.section-head .italic-serif { font-size: 60px; }
.section-lede {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.55;
}

.loop-frame {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 28px;
  align-items: center;
}
.loop-step {
  background: var(--surface);
  border-radius: 18px;
  padding: 38px 22px 36px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 16px 40px -20px rgba(15,23,42,0.08);
}
.loop-step .num {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--canvas-2);
  color: var(--text-2);
  font-weight: 700;
  font-size: 18px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.loop-step.end .num { background: var(--orange); color: white; }
.loop-step .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 10px;
}
.loop-step .name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.loop-step .sub { font-size: 14px; color: var(--text-2); line-height: 1.45; }

.loop-center {
  position: relative;
  background: var(--surface);
  border-radius: 22px;
  padding: 36px 40px 44px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 18px 50px -22px rgba(15,23,42,0.1);
}
.tooling-pill {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #0F1B33;
  color: white;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.tab-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  background: var(--canvas);
  padding: 8px;
  border-radius: 14px;
  margin-bottom: 36px;
}
.tab-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 140ms;
}
.tab-chip:hover { background: rgba(255,255,255,0.6); }
.tab-chip.active {
  background: white;
  box-shadow: 0 1px 3px rgba(15,23,42,0.06), 0 4px 12px -4px rgba(15,23,42,0.06);
}
.tab-chip .step-num {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--canvas-2);
  color: var(--text-3);
  font-weight: 700;
  font-size: 13px;
  display: grid; place-items: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.tab-chip.active .step-num { background: var(--orange); color: white; }
.tab-chip .step-body { line-height: 1.2; }
.tab-chip .step-title { font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.tab-chip .step-sub { font-size: 13px; color: var(--text-3); margin-top: 2px; }

.loop-panels { position: relative; }
.loop-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.loop-panel.active { display: grid; }
.loop-panel .lead-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 18px;
}
.loop-panel h3 {
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.loop-panel h3 .italic-serif { font-size: 34px; }
.loop-panel p {
  margin: 0 0 24px;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.55;
}
.bullet-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
}
.bullet-list svg { flex-shrink: 0; margin-top: 2px; }

.loop-panel .img-wrap {
  display: flex;
  justify-content: center;
}
.loop-panel .img-wrap img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 24px 40px -18px rgba(15,23,42,0.08);
}


/* ============================================================
   SECTION 5 · REAL-TEST FIDELITY
   ============================================================ */
.fidelity {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #F0F3F8 0%, #ECEFF4 100%);
}
.fid-head { margin-bottom: 40px; }
.fid-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
}
.fid-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--orange);
}
.fid-head h2 {
  margin: 0 0 16px;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.fid-head h2 .it {
  font-style: italic;
  color: var(--orange);
}
.fid-head .fid-lede {
  font-size: 19px;
  color: var(--text-2);
  margin: 0;
}

.fid-tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
  margin-bottom: 32px;
  overflow-x: auto;
}
.fid-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 140ms, color 140ms;
  white-space: nowrap;
}
.fid-tab:hover { background: rgba(15,23,42,0.04); }
.fid-tab.active {
  background: var(--orange);
  color: white;
}
.fid-tab svg { flex-shrink: 0; }

.fid-body {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.fid-screen {
  position: relative;
}
.fid-screen img {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 24px 50px -22px rgba(15,23,42,0.12);
}
.fid-screen img.active { display: block; }

.fid-feature {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px 38px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 24px 50px -22px rgba(15,23,42,0.08);
  display: none;
  flex-direction: column;
}
.fid-feature.active { display: flex; }
.fid-feature h3 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.fid-feature .fp {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 24px;
}
.fid-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fid-point { display: flex; gap: 16px; align-items: flex-start; }
.fid-point + .fid-point { padding-top: 20px; border-top: 1px solid var(--border-soft); }
.fid-tick {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--orange-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.fid-point b {
  display: block;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.fid-point span {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.5;
}


/* ============================================================
   SECTION 6 · FAQ
   ============================================================ */
.faq {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #ECEFF4 0%, #EFF2F6 100%);
  overflow: hidden;
}
.faq .dots.tl { top: 32px; left: 28px; width: 80px; height: 70px; opacity: 0.5; }
.faq .dots.br { bottom: 32px; right: 28px; width: 80px; height: 70px; opacity: 0.5; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.faq-left { padding-top: 24px; }
.faq-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 28px;
}
.faq h2 {
  margin: 0 0 24px;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.faq h2 .italic-serif { font-size: 56px; color: var(--orange); font-weight: 600; }
.faq-lede {
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 32px;
  line-height: 1.55;
}
.faq-checks {
  list-style: none;
  padding: 0; margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: var(--ink);
}
.faq .cta-primary {
  width: 320px;
  font-size: 19px;
  padding: 18px 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--surface);
  border-radius: 16px;
  padding: 22px 24px;
  cursor: pointer;
  transition: background 140ms;
}
.faq-item[open] { background: var(--warm-bg); border: 1px solid var(--warm-border); padding: 21px 23px; }
.faq-item summary {
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  align-items: center;
  gap: 20px;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
}
.faq-text { line-height: 1.25; }
.faq-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.faq-q {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq-chev {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  display: grid; place-items: center;
  background: var(--surface);
  transition: transform 200ms, background 140ms, border-color 140ms;
  color: var(--text-2);
}
.faq-item[open] .faq-chev {
  transform: rotate(180deg);
  border-color: var(--orange);
  color: var(--orange);
}
.faq-answer {
  padding: 18px 0 4px 84px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
}

/* category palettes */
.faq-orange .faq-icon { background: var(--orange-soft); color: var(--orange); }
.faq-orange .faq-tag { background: var(--orange-soft); color: var(--orange); }
.faq-blue .faq-icon { background: var(--primary-pale); color: var(--primary); }
.faq-blue .faq-tag { background: var(--primary-pale); color: var(--primary); }
.faq-purple .faq-icon { background: var(--judgment-bg); color: var(--judgment); }
.faq-purple .faq-tag { background: var(--judgment-bg); color: var(--judgment); }
.faq-green .faq-icon { background: var(--success-pale); color: var(--success); }
.faq-green .faq-tag { background: var(--success-pale); color: var(--success); }
.faq-sky .faq-icon { background: #DFEEFC; color: #1E73C7; }
.faq-sky .faq-tag { background: #DFEEFC; color: #1E73C7; }

/* ============================================================
   NAV BAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.nav-inner {
  max-width: var(--content);
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo svg, .nav-logo img { height: 28px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  flex: 1;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: -0.005em;
  transition: background 140ms, color 140ms;
}
.nav-link:hover { background: rgba(15,23,42,0.05); color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 6px 16px -8px rgba(243,107,7,0.5);
  transition: background 140ms;
  white-space: nowrap;
}
.nav-cta:hover { background: #DC5B05; }
.nav-cta svg { flex-shrink: 0; }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(15,23,42,0.12);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.8px;
  background: var(--ink);
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: '';
  position: absolute;
  left: 0; width: 18px; height: 1.8px;
  background: var(--ink);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top: 6px; }
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 30px -20px rgba(15,23,42,0.12);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 4px;
  z-index: 49;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 500;
}
.nav-drawer a:last-of-type { border-bottom: 0; }
.nav-drawer .nav-cta { margin-top: 12px; justify-content: center; padding: 14px 18px; font-size: 16px; }


/* ============================================================
   STANDALONE CTA BAND (between hero and section 2)
   ============================================================ */
.cta-strip {
  background: linear-gradient(180deg, #EEF2F7 0%, #EEF2F7 100%);
  padding: 36px 0 44px;
  border-top: 1px solid rgba(15,23,42,0.04);
  border-bottom: 1px solid rgba(15,23,42,0.04);
}
.cta-strip .cta-band { margin: 0 auto; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D1526;
  color: #C7CEDB;
  padding: 64px 0 32px;
}
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo { height: 28px; width: auto; display: block; margin-bottom: 18px; }
.footer-blurb {
  font-size: 14.5px;
  line-height: 1.6;
  color: #97A0B3;
  margin: 0 0 22px;
  max-width: 360px;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: 500;
  color: white !important;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: border-color 140ms;
}
.footer-contact:hover { border-color: white; }
.footer-col h4 {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li a {
  font-size: 14.5px;
  line-height: 1.4;
  color: #97A0B3;
}
.footer-col li a:hover { color: white; }
.footer-cta {
  width: auto !important;
  padding: 14px 22px !important;
  font-size: 15.5px !important;
  display: inline-flex !important;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6E7889;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .wrap, .nav-inner { padding: 0 32px; }
  .hero h1 { font-size: 56px; }
  .trust h2, .trust h2 .italic-serif { font-size: 52px; }
  .why h2 { font-size: 52px; }
  .section-head h2, .section-head .italic-serif { font-size: 52px; }
  .fid-head h2 { font-size: 52px; }
  .faq h2, .faq h2 .italic-serif { font-size: 48px; }
  .predict-score { font-size: 108px; }
  .circle-inner .big { font-size: 128px; }
  .circle-inner .big sup { font-size: 84px; vertical-align: 22px; }
  .big-circle { width: 380px; height: 380px; }
  .nav-link { padding: 8px 10px; font-size: 14px; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-grid, .trust-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .fid-body, .loop-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
  .loop-frame { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
}

@media (max-width: 760px) {
  .wrap, .nav-inner { padding: 0 20px; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 44px; line-height: 1.05; margin-bottom: 24px; }
  .hero-list li { font-size: 16px; }
  .cta-primary { width: 100%; padding: 16px 22px; font-size: 17px; }
  .cta-band .cta-primary { width: 100%; }
  .cta-band .cta-micro { font-size: 12.5px; flex-wrap: wrap; justify-content: center; }

  .predict-wrap { height: auto; min-height: 420px; }
  .predict-wrap .ring { display: none; }
  .predict-card { position: relative; top: 0; padding: 28px 24px; max-width: 100%; }
  .predict-score { font-size: 88px; }
  .chip.acc { top: -10px; left: auto; right: 8px; }
  .chip.deep { top: auto; bottom: -12px; left: 8px; }

  .trust { padding: 64px 0 64px; }
  .trust h2, .trust h2 .italic-serif { font-size: 40px; }
  .trust-lede { font-size: 16px; }
  .circle-wrap { height: 320px; }
  .big-circle { width: 280px; height: 280px; }
  .circle-inner .pre { font-size: 17px; }
  .circle-inner .big { font-size: 96px; }
  .circle-inner .big sup { font-size: 62px; vertical-align: 18px; }
  .circle-inner .post { font-size: 16px; }
  .circle-wrap .dots-l, .circle-wrap .dots-r { display: none; }

  .why { padding: 64px 0 64px; }
  .why-head { margin-bottom: 40px; }
  .why h2 { font-size: 38px; }
  .why-lede { font-size: 16px; }
  .why-card { padding: 28px 24px; }
  .why-card .row { grid-template-columns: 1fr; gap: 16px; }
  .why-card .icb { width: 72px; height: 72px; }
  .why-card .icb svg { width: 36px; height: 36px; }
  .why-card h3 { font-size: 28px; }

  .loop { padding: 64px 0 64px; }
  .section-head h2, .section-head .italic-serif { font-size: 40px; }
  .section-lede { font-size: 16px; }
  .loop-center { padding: 28px 20px 32px; }
  .tab-row { grid-template-columns: 1fr; gap: 6px; padding: 6px; }
  .tab-chip { padding: 12px 14px; }
  .loop-step { padding: 28px 18px; }
  .loop-panel h3, .loop-panel h3 .italic-serif { font-size: 26px; }
  .loop-panel p { font-size: 16px; }
  .bullet-list li { font-size: 15px; }

  .fidelity { padding: 64px 0 64px; }
  .fid-head h2 { font-size: 38px; }
  .fid-head .fid-lede { font-size: 16px; }
  .fid-tabs {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .fid-tab { flex: 0 0 auto; scroll-snap-align: start; padding: 12px 14px; font-size: 14px; }
  .fid-feature { padding: 24px 22px; }
  .fid-feature h3 { font-size: 22px; }
  .fid-feature .fp { font-size: 15px; }
  .fid-point b { font-size: 16px; }
  .fid-point span { font-size: 14.5px; }

  .faq { padding: 64px 0 64px; }
  .faq h2, .faq h2 .italic-serif { font-size: 40px; }
  .faq-checks li { font-size: 16px; }
  .faq-item { padding: 18px; }
  .faq-item summary { grid-template-columns: 44px 1fr 32px; gap: 14px; }
  .faq-icon { width: 44px; height: 44px; }
  .faq-icon svg { width: 22px; height: 22px; }
  .faq-q { font-size: 16px; }
  .faq-tag { font-size: 10px; }
  .faq-chev { width: 32px; height: 32px; }
  .faq-answer { padding: 14px 0 4px 0; font-size: 15.5px; }

  .cta-strip { padding: 24px 0 32px; }
  .cta-band { margin: 40px auto 0; }

  .footer { padding: 48px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 32px;
  }
  .footer-bottom { font-size: 12px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 38px; }
  .predict-score { font-size: 72px; }
  .trust h2, .trust h2 .italic-serif { font-size: 34px; }
  .why h2 { font-size: 32px; }
  .section-head h2, .section-head .italic-serif { font-size: 32px; }
  .fid-head h2 { font-size: 32px; }
  .faq h2, .faq h2 .italic-serif { font-size: 32px; }
  .big-circle { width: 240px; height: 240px; }
  .circle-inner .big { font-size: 80px; }
  .circle-inner .big sup { font-size: 52px; vertical-align: 14px; }
}