/* ============================================================
   ReCounsel — Editorial legal-tech
   The Economist meets Stripe. A Plural AI venture.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --rc-navy: #0A1628;
  --rc-teal: #0D4A4A;
  --rc-gold: #C8A960;
  --rc-gold-deep: #A98836;
  --rc-ivory: #FAF7F2;
  --rc-ink: #111827;
  --rc-mist: #E8ECEE;
  --rc-sage: #6B8E7F;
  --rc-clay: #B85450;

  /* Derived / functional */
  --rc-navy-2: #0E1D33;
  --rc-navy-soft: #16263F;
  --rc-ivory-2: #F4EFE7;
  --rc-ink-soft: #3B4453;
  --rc-ink-muted: #5B6675;
  --rc-line-navy: rgba(232, 236, 238, 0.12);
  --rc-ivory-muted: rgba(250, 247, 242, 0.72);
  --rc-ivory-dim: rgba(250, 247, 242, 0.52);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;
  --space-10: 64px;
  --space-12: 80px;
  --space-16: 120px;
  --space-20: 160px;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 1px 2px rgba(10, 22, 40, 0.04), 0 8px 30px rgba(10, 22, 40, 0.06);
  --shadow-float: 0 24px 60px -20px rgba(10, 22, 40, 0.35), 0 8px 24px rgba(10, 22, 40, 0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--rc-ivory);
  color: var(--rc-ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

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

/* ---------- Grain overlay ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.section--navy { background: var(--rc-navy); color: var(--rc-ivory); }
.section--ivory { background: var(--rc-ivory); color: var(--rc-ink); }
.section--ivory-alt { background: var(--rc-ivory-2); color: var(--rc-ink); }

/* Typography primitives */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-gold-deep);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--rc-gold); }

.display {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
.display em { font-style: italic; font-weight: 460; }

h1.hero-title {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(40px, 6.6vw, 84px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}
h1.hero-title em { font-style: italic; }

h2.sec-title {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
h2.sec-title em { font-style: italic; }

.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--rc-ink-soft);
  max-width: 62ch;
}
.section--navy .lede { color: var(--rc-ivory-muted); }

.sec-head { margin-bottom: var(--space-10); }
.sec-head .eyebrow { margin-bottom: var(--space-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: 10px;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
    box-shadow 0.35s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--rc-gold);
  color: var(--rc-navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 6px 18px -6px rgba(200,169,96,0.6);
}
.btn--gold:hover { background: #d4b876; transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(200,169,96,0.7); }

.btn--outline {
  background: transparent;
  color: var(--rc-navy);
  border: 1px solid rgba(10,22,40,0.28);
}
.btn--outline:hover { border-color: var(--rc-navy); background: rgba(10,22,40,0.04); transform: translateY(-2px); }

.section--navy .btn--outline { color: var(--rc-ivory); border-color: rgba(250,247,242,0.3); }
.section--navy .btn--outline:hover { border-color: var(--rc-ivory); background: rgba(250,247,242,0.06); }

.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--rc-mist);
  box-shadow: 0 2px 20px rgba(10,22,40,0.04);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand .mark { color: var(--rc-gold-deep); width: 28px; height: 28px; display: block; flex-shrink: 0; }
.brand .mark circle { transition: stroke-width 200ms ease; }
.brand:hover .mark circle { stroke-width: 1.75; }
.brand .word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--rc-navy);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px;
  color: var(--rc-ink-soft);
  font-weight: 450;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: var(--rc-gold-deep); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--rc-navy); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-signin { font-size: 14.5px; color: var(--rc-ink-soft); font-weight: 450; transition: color 0.2s; }
.nav-signin:hover { color: var(--rc-navy); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 8px; align-items: center; justify-content: center; }
.nav-toggle svg { stroke: var(--rc-navy); }

/* Mobile panel */
.mobile-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(84vw, 360px);
  background: var(--rc-navy);
  color: var(--rc-ivory);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  padding: 88px var(--space-6) var(--space-6);
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: -30px 0 60px rgba(10,22,40,0.4);
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel a { font-family: var(--font-display); font-size: 24px; font-weight: 480; padding: 12px 0; border-bottom: 1px solid var(--rc-line-navy); }
.mobile-panel .btn { margin-top: var(--space-5); justify-content: center; }
.mobile-close { position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; }
.mobile-close svg { stroke: var(--rc-ivory); }
.scrim {
  position: fixed; inset: 0; background: rgba(10,22,40,0.5); z-index: 110;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  backdrop-filter: blur(2px);
}
.scrim.show { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--rc-ivory);
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 64px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(200,169,96,0.10), rgba(200,169,96,0) 62%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: -30%; left: -15%;
  width: 55vw; height: 55vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle at center, rgba(13,74,74,0.07), rgba(13,74,74,0) 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy .eyebrow { margin-bottom: var(--space-5); }
.hero-title { margin-bottom: var(--space-5); max-width: 15ch; }
.hero-positioning { font-family: var(--font-display); font-size: clamp(16px, 1.5vw, 19px); font-style: italic; color: var(--rc-teal); max-width: 42ch; line-height: 1.45; margin-bottom: var(--space-4); font-weight: 500; }
.hero-sub { font-size: clamp(18px, 1.8vw, 21px); color: var(--rc-ink-soft); max-width: 40ch; line-height: 1.55; margin-bottom: var(--space-6); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.hero-cta-note { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.02em; color: var(--rc-ink-muted); margin-bottom: var(--space-8); }

.logos { border-top: 1px solid var(--rc-mist); padding-top: var(--space-5); }
.logos-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rc-ink-muted); margin-bottom: 14px; font-weight: 500; }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.logo-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--rc-ink-muted); letter-spacing: 0.02em; opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}
.logo-item:hover { opacity: 1; color: var(--rc-navy); }
.logo-item .glyph { font-size: 12px; color: var(--rc-teal); }

.hero-trust {
  margin-top: var(--space-6);
  font-size: 12.5px;
  color: var(--rc-ink-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
}
.hero-trust span { white-space: nowrap; }
.hero-trust .dot { color: var(--rc-gold-deep); }

/* ---------- Hero report mockup ---------- */
.report-stage { perspective: 1800px; }
.report {
  background: linear-gradient(180deg, #fffdf9, #f7f2ea);
  border: 1px solid var(--rc-mist);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  transform: rotate3d(1, -0.6, 0.05, 8deg) translateZ(0);
  transition: transform 0.8s var(--ease);
  overflow: hidden;
  position: relative;
}
.report::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025; pointer-events: none; mix-blend-mode: multiply;
}
.report-stage:hover .report { transform: rotate3d(1, -0.6, 0.05, 1deg); }

.report-head {
  padding: 18px 22px;
  background: var(--rc-navy);
  color: var(--rc-ivory);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.report-head .rh-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rc-ivory-dim); margin-bottom: 5px; }
.report-head .rh-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,169,96,0.14);
  border: 1px solid rgba(200,169,96,0.45);
  color: var(--rc-gold);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.04em;
  padding: 6px 10px; border-radius: 100px; white-space: nowrap;
}
.verified-badge svg { stroke: var(--rc-gold); }

.report-body { padding: 22px; }

.risk-gauge { margin-bottom: 20px; }
.risk-gauge .rg-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.risk-gauge .rg-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rc-ink-muted); font-weight: 500; }
.risk-gauge .rg-value { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--rc-gold-deep); letter-spacing: 0.02em; }
.gauge-track {
  height: 9px; border-radius: 100px; position: relative;
  background: linear-gradient(90deg, var(--rc-sage) 0%, #c9a94e 52%, var(--rc-clay) 100%);
}
.gauge-pointer {
  position: absolute; top: 50%; left: 60%;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fffdf9; border: 3px solid var(--rc-navy);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(10,22,40,0.3);
}
.gauge-scale { display: flex; justify-content: space-between; margin-top: 6px; font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rc-ink-muted); font-family: var(--font-mono); }

.clause {
  border-top: 1px solid var(--rc-mist);
  padding: 13px 0;
}
.clause-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 5px; }
.clause-id { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--rc-navy); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.chip .cdot { width: 7px; height: 7px; border-radius: 50%; }
.chip--low { background: rgba(107,142,127,0.14); color: #4a6b5c; }
.chip--low .cdot { background: var(--rc-sage); }
.chip--mod { background: rgba(200,169,96,0.16); color: var(--rc-gold-deep); }
.chip--mod .cdot { background: var(--rc-gold); }
.chip--high { background: rgba(184,84,80,0.14); color: var(--rc-clay); }
.chip--high .cdot { background: var(--rc-clay); }
.clause-find { font-size: 13px; color: var(--rc-ink-soft); line-height: 1.5; margin-bottom: 5px; }
.clause-bench { font-family: var(--font-mono); font-size: 11px; color: var(--rc-teal); letter-spacing: 0.01em; display: flex; align-items: center; gap: 6px; }
.clause-bench::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--rc-teal); flex: none; }

.report-foot {
  border-top: 1px solid var(--rc-mist);
  padding: 15px 22px;
  background: var(--rc-ivory-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.report-foot .rf-text { font-size: 11.5px; color: var(--rc-ink-soft); line-height: 1.4; }
.report-foot .rf-text strong { color: var(--rc-navy); font-weight: 600; }
.seal {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--rc-gold); color: var(--rc-gold-deep);
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(200,169,96,0.16), rgba(200,169,96,0.03));
}
.seal svg { stroke: var(--rc-gold-deep); }

/* ============================================================
   STATS (wedge)
   ============================================================ */
.wedge-lede { max-width: 58ch; margin-top: var(--space-5); }
.stats {
  margin-top: var(--space-12);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  border-top: 1px solid var(--rc-line-navy);
  padding-top: var(--space-10);
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 460;
  line-height: 1;
  color: var(--rc-gold);
  letter-spacing: -0.02em;
}
.stat .stat-sub { margin-top: 12px; font-size: 15px; color: var(--rc-ivory-muted); max-width: 26ch; line-height: 1.45; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.step-card {
  background: #fff;
  border: 1px solid var(--rc-mist);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); border-color: rgba(200,169,96,0.4); }
.step-num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--rc-gold-deep); font-weight: 500; margin-bottom: var(--space-4); }
.step-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--rc-ink-soft); line-height: 1.55; }
.step-card .tech-note { margin-top: 12px; font-family: var(--font-mono); font-size: 11.5px; color: var(--rc-ink-muted); line-height: 1.5; border-top: 1px dashed var(--rc-mist); padding-top: 10px; }

/* Timeline */
.timeline {
  margin-top: var(--space-10);
  background: #fff;
  border: 1px solid var(--rc-mist);
  border-radius: var(--radius);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-card);
}
.timeline-track { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.timeline-track::before {
  content: ""; position: absolute; top: 7px; left: 4%; right: 4%; height: 2px;
  background: linear-gradient(90deg, var(--rc-teal), var(--rc-gold));
}
.tl-node { position: relative; z-index: 2; text-align: center; flex: 1; }
.tl-node .tl-dot { width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 3px solid var(--rc-teal); margin: 0 auto 12px; }
.tl-node:last-child .tl-dot { border-color: var(--rc-gold); background: var(--rc-gold); }
.tl-node .tl-time { font-family: var(--font-display); font-size: 20px; font-weight: 560; color: var(--rc-navy); }
.tl-node .tl-desc { font-size: 12.5px; color: var(--rc-ink-muted); margin-top: 3px; }

/* ============================================================
   FEATURE / USE-CASE GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

.feature-card {
  background: #fff;
  border: 1px solid var(--rc-mist);
  border-radius: var(--radius);
  padding: var(--space-6);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  box-shadow: var(--shadow-card);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); border-color: rgba(13,74,74,0.3); }
.feat-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--rc-ivory-2); display: grid; place-items: center; margin-bottom: var(--space-5); border: 1px solid var(--rc-mist); }
.feat-icon svg { stroke: var(--rc-teal); }
.feature-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 520; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14.5px; color: var(--rc-ink-soft); line-height: 1.55; }
.feature-card.is-moat { border-color: rgba(200,169,96,0.5); background: linear-gradient(180deg, #fff, #fdfaf4); }
.feature-card.is-moat .feat-icon { background: rgba(200,169,96,0.12); border-color: rgba(200,169,96,0.4); }
.feature-card.is-moat .feat-icon svg { stroke: var(--rc-gold-deep); }

/* Use cases (navy) */
.usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.uc-card {
  background: var(--rc-navy-soft);
  border: 1px solid var(--rc-line-navy);
  border-radius: var(--radius);
  padding: var(--space-6);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.uc-card:hover { transform: translateY(-4px); border-color: rgba(200,169,96,0.4); background: var(--rc-navy-2); }
.uc-icon { width: 40px; height: 40px; margin-bottom: var(--space-4); }
.uc-icon svg { stroke: var(--rc-gold); }
.uc-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--rc-ivory); margin-bottom: 7px; letter-spacing: -0.01em; }
.uc-card p { font-size: 14px; color: var(--rc-ivory-muted); line-height: 1.5; }
.uc-more { margin-top: var(--space-8); text-align: center; font-size: 15px; color: var(--rc-ivory-muted); }
.uc-more a { color: var(--rc-gold); border-bottom: 1px solid rgba(200,169,96,0.4); padding-bottom: 1px; transition: border-color 0.2s; }
.uc-more a:hover { border-color: var(--rc-gold); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: start; }
.pricing--5 { grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.price-card--sm { padding: var(--space-5); }
.price-card--sm .price-name { font-size: 19px; }
.price-card--sm .price-tag .amt { font-size: 34px; }
.price-card--sm .price-meta { margin-bottom: var(--space-4); padding-bottom: var(--space-4); font-size: 11.5px; }
.price-card--sm .price-feats { gap: 9px; margin-bottom: var(--space-5); }
.price-card--sm .price-feats li { font-size: 13px; }

/* Other options strip (Deep review + Team Studio) */
.other-options { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-6); }
.opt-card { background: #fff; border: 1px solid var(--rc-mist); border-radius: var(--radius); padding: var(--space-6); box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.opt-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: var(--space-4); }
.opt-head .price-meta { margin: 4px 0 0; padding: 0; border: none; }
.opt-head .price-tag { margin: 0; }
.amt--sm { font-size: 30px !important; }
.opt-desc { font-size: 14.5px; color: var(--rc-ink-soft); line-height: 1.55; margin-bottom: var(--space-5); flex: 1; }
.opt-card .btn { align-self: flex-start; }

/* Jurisdiction badges (trust) */
.juris-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--space-6); }
.juris-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--rc-ivory-2, #f4efe7); border: 1px solid var(--rc-mist); border-radius: 100px; padding: 7px 14px; font-size: 14px; font-weight: 500; color: var(--rc-navy); }
.price-card {
  background: #fff;
  border: 1px solid var(--rc-mist);
  border-radius: var(--radius);
  padding: var(--space-6);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.price-card.featured {
  border: 1.5px solid var(--rc-gold);
  box-shadow: 0 24px 60px -22px rgba(200,169,96,0.4), var(--shadow-card);
  transform: scale(1.015);
}
.price-card.featured:hover { transform: scale(1.015) translateY(-4px); }
.popular-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--rc-gold); color: var(--rc-navy);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(200,169,96,0.6);
}
.price-name { font-family: var(--font-display); font-size: 24px; font-weight: 520; letter-spacing: -0.01em; }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 4px; }
.price-tag .amt { font-family: var(--font-display); font-size: 44px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.price-tag .per { font-size: 14px; color: var(--rc-ink-muted); }
.price-meta { font-size: 13px; color: var(--rc-ink-muted); font-family: var(--font-mono); letter-spacing: 0.02em; margin-bottom: var(--space-5); padding-bottom: var(--space-5); border-bottom: 1px solid var(--rc-mist); }
.price-plus { font-size: 13.5px; color: var(--rc-ink-soft); font-weight: 500; margin-bottom: 12px; }
.price-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: var(--space-6); flex: 1; }
.price-feats li { display: flex; gap: 10px; font-size: 14.5px; color: var(--rc-ink-soft); line-height: 1.45; }
.price-feats li svg { flex: none; margin-top: 3px; stroke: var(--rc-sage); }
.price-card .btn { width: 100%; justify-content: center; }
.price-bundle { text-align: center; font-size: 12.5px; color: var(--rc-ink-muted); margin-top: 12px; }
.pricing-note { max-width: 68ch; margin: var(--space-8) auto 0; text-align: center; font-size: 14px; color: var(--rc-ink-muted); line-height: 1.6; }

/* ============================================================
   TRUST
   ============================================================ */
.trust-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.trust-col { background: #fff; border: 1px solid var(--rc-mist); border-radius: var(--radius); padding: var(--space-8); box-shadow: var(--shadow-card); }
.trust-col h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: var(--space-4); letter-spacing: -0.01em; }
.trust-col p { font-size: 15px; color: var(--rc-ink-soft); line-height: 1.6; margin-bottom: var(--space-6); }
.badge-list { display: flex; flex-direction: column; gap: 10px; }
.badge {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; color: var(--rc-navy); font-weight: 450;
  padding: 11px 14px; background: var(--rc-ivory-2); border: 1px solid var(--rc-mist); border-radius: 9px;
}
.badge .bcheck { flex: none; width: 20px; height: 20px; border-radius: 50%; background: rgba(107,142,127,0.16); display: grid; place-items: center; }
.badge .bcheck svg { stroke: var(--rc-sage); }
.badge .bmono { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.01em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--rc-mist); }
.faq-item { border-bottom: 1px solid var(--rc-mist); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 0; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 22px); font-weight: 480;
  color: var(--rc-navy); letter-spacing: -0.01em; line-height: 1.3;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--rc-gold-deep); }
.faq-icon { flex: none; width: 26px; height: 26px; position: relative; margin-top: 4px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--rc-gold-deep); transition: transform 0.35s var(--ease), opacity 0.3s;
}
.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 52px 28px 0; font-size: 16px; color: var(--rc-ink-soft); line-height: 1.65; }
.faq-a-inner em { font-style: italic; }

/* ============================================================
   INTAKE WIZARD
   ============================================================ */
.wizard-wrap { max-width: 720px; margin: var(--space-10) auto 0; }
.progress { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: var(--space-8); }
.pdot { display: flex; align-items: center; gap: 14px; }
.pdot .dot {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(250,247,242,0.28); color: var(--rc-ivory-dim);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  transition: all 0.4s var(--ease);
}
.pdot.active .dot { border-color: var(--rc-gold); color: var(--rc-navy); background: var(--rc-gold); }
.pdot.done .dot { border-color: var(--rc-gold); color: var(--rc-gold); background: transparent; }
.pline { width: 40px; height: 1.5px; background: rgba(250,247,242,0.2); }
.pdot.done + .pline { background: var(--rc-gold); }

.wcard {
  background: var(--rc-navy-soft);
  border: 1px solid var(--rc-line-navy);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5);
}
.wstep { display: none; }
.wstep.active { display: block; animation: fadeUp 0.5s var(--ease); }
.wstep h3 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 28px); font-weight: 480; color: var(--rc-ivory); margin-bottom: var(--space-5); letter-spacing: -0.01em; }
.wstep .wlabel { display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rc-gold); font-weight: 500; margin: var(--space-5) 0 12px; }

.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.radio-card {
  border: 1px solid rgba(250,247,242,0.16); border-radius: 10px; padding: 14px 15px;
  font-size: 14.5px; color: var(--rc-ivory-muted); cursor: pointer;
  transition: all 0.25s var(--ease); background: rgba(250,247,242,0.02);
  display: flex; align-items: center; gap: 10px; user-select: none;
}
.radio-card:hover { border-color: rgba(200,169,96,0.5); color: var(--rc-ivory); }
.radio-card .rc-mark { flex: none; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(250,247,242,0.3); transition: all 0.25s; }
.radio-card.selected { border-color: var(--rc-gold); background: rgba(200,169,96,0.08); color: var(--rc-ivory); }
.radio-card.selected .rc-mark { border-color: var(--rc-gold); background: var(--rc-gold); box-shadow: inset 0 0 0 3px var(--rc-navy-soft); }

.field { margin-bottom: var(--space-5); }
.field label { display: block; font-size: 13.5px; color: var(--rc-ivory-muted); margin-bottom: 8px; font-weight: 450; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 9px;
  background: rgba(250,247,242,0.04); border: 1px solid rgba(250,247,242,0.16);
  color: var(--rc-ivory); font-size: 15px; transition: border-color 0.25s, background 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--rc-ivory-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rc-gold); background: rgba(250,247,242,0.06); }
.field select option { background: var(--rc-navy); color: var(--rc-ivory); }
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.wnav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: var(--space-6); }
.wback { font-size: 14px; color: var(--rc-ivory-muted); transition: color 0.2s; display: inline-flex; align-items: center; gap: 7px; }
.wback:hover { color: var(--rc-ivory); }
.wnav .btn { margin-left: auto; }
.wfine { font-size: 12px; color: var(--rc-ivory-dim); margin-top: var(--space-4); line-height: 1.5; }
.wfine a { color: var(--rc-gold); border-bottom: 1px solid rgba(200,169,96,0.35); }

.wsuccess { display: none; text-align: center; padding: var(--space-6) 0; }
.wsuccess.show { display: block; animation: fadeUp 0.5s var(--ease); }
.wsuccess .ok-seal { width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid var(--rc-gold); display: grid; place-items: center; margin: 0 auto var(--space-5); background: radial-gradient(circle at 35% 30%, rgba(200,169,96,0.2), transparent); }
.wsuccess .ok-seal svg { stroke: var(--rc-gold); }
.wsuccess h3 { font-family: var(--font-display); font-size: 28px; color: var(--rc-ivory); margin-bottom: 12px; }
.wsuccess p { color: var(--rc-ivory-muted); font-size: 15px; max-width: 44ch; margin: 0 auto; line-height: 1.55; }
.werror { color: var(--rc-clay); font-size: 13.5px; margin-top: 12px; display: none; }
.werror.show { display: block; }

/* ============================================================
   FOR TEAMS / FOUNDER NOTE
   ============================================================ */
.teams-inner { max-width: 720px; }
.teams-inner p { margin: var(--space-4) 0 var(--space-6); }

.founder { max-width: 660px; margin: 0 auto; text-align: center; }
.founder .quote-mark { font-family: var(--font-display); font-size: 72px; color: var(--rc-gold); line-height: 0.5; height: 40px; }
.founder blockquote {
  font-family: var(--font-display); font-size: clamp(21px, 3vw, 28px); font-weight: 420;
  line-height: 1.4; letter-spacing: -0.01em; color: var(--rc-navy); font-style: italic;
}
.founder .sig { margin-top: var(--space-6); font-size: 14px; color: var(--rc-ink-muted); font-family: var(--font-mono); letter-spacing: 0.02em; }
.founder .sig strong { color: var(--rc-navy); font-weight: 600; font-family: var(--font-body); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--rc-navy); color: var(--rc-ivory); padding: var(--space-12) 0 var(--space-6); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-10); border-bottom: 1px solid var(--rc-line-navy); }
.footer-brand .brand .word { color: var(--rc-ivory); }
.footer-brand .brand .mark { color: var(--rc-gold); }
.footer-brand .brand .mark circle { stroke: var(--rc-gold); }
.footer-brand p { margin-top: 14px; font-size: 13.5px; color: var(--rc-ivory-muted); max-width: 30ch; line-height: 1.5; }
.footer-brand a.venture { color: var(--rc-gold); border-bottom: 1px solid rgba(200,169,96,0.35); }
.fcol h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rc-ivory-dim); font-weight: 500; margin-bottom: var(--space-4); }
.fcol a { display: block; font-size: 14px; color: var(--rc-ivory-muted); padding: 5px 0; transition: color 0.2s; }
.fcol a:hover { color: var(--rc-gold); }
.footer-bottom { padding-top: var(--space-6); }
.footer-bottom .fb-line { font-family: var(--font-mono); font-size: 12px; color: var(--rc-ivory-dim); letter-spacing: 0.02em; margin-bottom: var(--space-4); }
.footer-bottom .fb-compliance { font-size: 12px; color: var(--rc-ivory-dim); line-height: 1.55; max-width: 90ch; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(2) { transition-delay: 0.08s; }
[data-stagger].in > *:nth-child(3) { transition-delay: 0.16s; }
[data-stagger].in > *:nth-child(4) { transition-delay: 0.24s; }
[data-stagger].in > *:nth-child(5) { transition-delay: 0.32s; }
[data-stagger].in > *:nth-child(6) { transition-delay: 0.40s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .pricing--5 { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-5); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { order: 1; }
  .report-stage { order: 2; max-width: 480px; }
  .report { transform: rotate3d(1, -0.4, 0, 4deg); }
  .trust-cols { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: var(--space-5); }
}

@media (max-width: 768px) {
  .nav-links, .nav-signin { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }
  .steps, .grid-3, .usecases, .pricing { grid-template-columns: 1fr; }
  .pricing--5 { grid-template-columns: 1fr 1fr; }
  .other-options { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: var(--space-8); text-align: center; }
  .stat .stat-sub { margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .radio-cards { grid-template-columns: 1fr 1fr; }
  .timeline-track { flex-direction: column; gap: 20px; align-items: flex-start; }
  .timeline-track::before { display: none; }
  .tl-node { display: flex; align-items: center; gap: 14px; text-align: left; }
  .tl-node .tl-dot { margin: 0; }
  .field-row { grid-template-columns: 1fr; }
  .founder .quote-mark { font-size: 56px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding-top: 100px; min-height: auto; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .radio-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .report-head { flex-direction: column; }
  .report-foot { flex-direction: column-reverse; align-items: flex-start; }
  .price-tag .amt { font-size: 38px; }
  .pricing--5 { grid-template-columns: 1fr; }
}
