/* ─────────────────────────────────────────────────────────
   Corra — shared styles
   Paper-and-copper, editorial · Fraunces / Inter / IBM Plex Mono
   ───────────────────────────────────────────────────────── */

:root{
  --paper:      #FAF5EE;
  --paper-2:    #F3EADA;
  --cream:      #F3EADA;
  --ink:        #1E1E1E;
  --grey:       #363636;
  --slate:      #6B6B6B;
  --mist:       #D9D3C8;
  --line:       rgba(30,30,30,0.12);
  --copper:     #B87333;
  --copper-soft:#D99A5F;
  --rose:       #B76E79;
  --red:        #B8334A;
  --green:      #2F6B4F;

  /* current palette tokens — mutated by Tweaks */
  --bg:        var(--paper);
  --bg-alt:    var(--paper-2);
  --fg:        var(--ink);
  --fg-soft:   var(--slate);
  --fg-muted:  var(--slate);
  --accent:    var(--copper);
  --line-soft: rgba(30,30,30,0.12);

  --ff-display: 'Fraunces', 'Source Serif 4', Georgia, serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  /* "mono" retained as token name for back-compat, but now a friendly sans */
  --ff-mono:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --ff-label:   'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --max: 1400px;
  --gutter: 64px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

[data-palette="charcoal"]{
  --bg:        #1B1B1A;
  --bg-alt:    #232321;
  --fg:        #F3EADA;
  --fg-soft:   #B8B0A1;
  --fg-muted:  #8E867A;
  --accent:    #D99A5F;
  --line-soft: rgba(243,234,218,0.14);
}
[data-palette="alt"]{
  --bg:        #F3EADA;
  --bg-alt:    #E8DCC4;
  --fg:        #1E1E1E;
  --fg-soft:   #6B6B6B;
  --fg-muted:  #7a7367;
  --accent:    #B87333;
  --line-soft: rgba(30,30,30,0.18);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 400ms var(--ease-out), color 400ms var(--ease-out);
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
button{ font-family: inherit; cursor: pointer; }

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

/* ── layout ─────────────────────────────────────────── */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 720px){
  :root{ --gutter: 28px; }
}

/* ── nav ────────────────────────────────────────────── */
.nav{
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line-soft);
  transition: background 300ms var(--ease-out);
}
.nav-inner{
  display:flex; align-items:center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.nav-brand{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--fg);
  font-variation-settings: "opsz" 48;
}
.nav-brand img{ width: 26px; height: 26px; }
.nav-links{
  display:flex; align-items:center; gap: 32px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg-soft);
}
.nav-links a{
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease-out);
}
.nav-links a:hover{ color: var(--fg); }
.nav-links a.active{ color: var(--fg); }
.nav-links a.active::after{
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.nav-cta{
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 10px 18px;
  border: 1px solid var(--fg);
  color: var(--fg);
  background: transparent;
  border-radius: 999px;
  transition: all 200ms var(--ease-out);
}
.nav-cta:hover{
  background: var(--fg);
  color: var(--bg);
}
@media (max-width: 860px){
  .nav-links{ display:none; }
}

/* ── typography ─────────────────────────────────────── */
h1, h2, h3, h4{
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1{ font-size: clamp(52px, 7vw, 108px); line-height: 1; font-variation-settings: "opsz" 144; }
h2{ font-size: clamp(40px, 4.4vw, 68px); line-height: 1.05; font-variation-settings: "opsz" 96; }
h3{ font-size: clamp(28px, 2.4vw, 36px); line-height: 1.15; font-variation-settings: "opsz" 48; }
.italic-em{ font-style: italic; color: var(--accent); font-weight: 400; }

.eyebrow{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.lede{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 760px;
  font-variation-settings: "opsz" 48;
}
.kicker{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-muted);
}
.mono{ font-family: var(--ff-mono); }
.serif{ font-family: var(--ff-display); }

/* ── buttons ────────────────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 15px 26px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  border-radius: 999px;
  transition: all 220ms var(--ease-out);
  cursor: pointer;
}
.btn:hover{ background: var(--fg); color: var(--bg); transform: translateY(-1px); }
.btn.primary{
  background: var(--fg);
  color: var(--bg);
}
.btn.primary:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.btn .arrow{
  display:inline-block;
  transition: transform 240ms var(--ease-out);
}
.btn:hover .arrow{ transform: translateX(4px); }
.btn-ghost{
  display:inline-flex; align-items:center; gap: 8px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 200ms var(--ease-out);
}
.btn-ghost:hover{ border-bottom-color: var(--accent); color: var(--accent); }

/* ── footer ─────────────────────────────────────────── */
.footer{
  margin-top: 140px;
  padding: 80px var(--gutter) 48px;
  border-top: 1px solid var(--line-soft);
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 780px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
.footer-brand{
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.footer-tag{
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--fg-soft);
  max-width: 320px;
  font-size: 18px;
  line-height: 1.45;
}
.footer h4{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg);
  margin-bottom: 14px;
}
.footer ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a{
  color: var(--fg);
  font-size: 15px;
  transition: color 200ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.footer a:hover{ color: var(--accent); }
.footer-bottom{
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display:flex; align-items:center; justify-content: space-between;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── utility ────────────────────────────────────────── */
.rule{ height: 1px; background: var(--line-soft); border: 0; margin: 64px 0; }
.section{ padding: 140px 0; position: relative; }
.section.tight{ padding: 90px 0; }
.section-lead{ max-width: 820px; margin-bottom: 64px; display:flex; flex-direction: column; gap: 18px; }
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; gap: 40px; }
}

/* ── reveal on scroll ───────────────────────────────── */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* ── grainy noise overlay ───────────────────────────── */
.grain{
  position: fixed; inset: 0; pointer-events: none; z-index: 90;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
[data-palette="charcoal"] .grain{ mix-blend-mode: screen; opacity: 0.07; }

/* ── tweaks panel ───────────────────────────────────── */
.tweaks{
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  padding: 20px;
  display: none;
  width: 280px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--fg);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.25);
  border-radius: 14px;
}
.tweaks.active{ display: block; }
.tweaks h5{
  margin: 0 0 14px 0;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-style: italic;
  color: var(--fg);
}
.tweak-group{ margin-bottom: 18px; }
.tweak-group:last-child{ margin-bottom: 0; }
.tweak-label{
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.tweak-options{ display:flex; gap: 6px; flex-wrap: wrap; }
.tweak-opt{
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.tweak-opt[aria-pressed="true"]{
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.tweak-opt:hover:not([aria-pressed="true"]){ border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────────────────────
   Signature motion components
   ───────────────────────────────────────────────────────── */

/* ── 1. Tilting signal disk ─────────────────────────── */
.signal-stage{
  perspective: 1400px;
  display:flex; align-items:center; justify-content:center;
  position: relative;
  padding: 40px;
  min-height: 560px;
}
.signal-stage::before{
  content:"";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--accent) 20%, transparent) 0%, transparent 62%);
  filter: blur(12px);
  z-index: 0;
  animation: ambientPulse 6s ease-in-out infinite;
}
@keyframes ambientPulse{
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.signal-disk{
  --tx: 0; --ty: 0;
  position: relative;
  width: 440px; height: 440px;
  border-radius: 50%;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--tx) * 1deg)) rotateX(calc(var(--ty) * 1deg));
  transition: transform 80ms linear;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 25%, #F1C9A8 0%, #C58448 55%, #7E4A1F 100%);
  box-shadow:
    0 60px 120px -40px rgba(184,115,51,0.55),
    0 20px 40px -20px rgba(0,0,0,0.35),
    inset 0 0 0 2px rgba(255,255,255,0.18),
    inset 0 -40px 80px rgba(0,0,0,0.25);
}
.signal-disk::before,
.signal-disk::after{
  content:"";
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(250,245,238,0.35);
  transform: translateZ(6px);
}
.signal-disk::after{
  inset: 40px;
  border-color: rgba(250,245,238,0.22);
  transform: translateZ(12px);
}
.signal-inner{
  position:absolute; inset: 0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  color: #FAF5EE;
  text-align:center;
  transform: translateZ(20px);
  padding: 0 40px;
}
.signal-mark{
  width: 90px; height: 90px;
  border-radius: 50%;
  background: #FAF5EE;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(0,0,0,0.06);
}
.signal-mark img{ width: 66px; height: 66px; }
.signal-eye{
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.signal-title{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  margin-top: 6px;
  line-height: 1.1;
  font-variation-settings: "opsz" 72;
}
.signal-rule{
  width: 60px; height: 1px;
  background: rgba(250,245,238,0.4);
  margin: 14px 0;
}
.signal-sub{
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.signal-year{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.75;
}
/* Orbiting particles around the disk */
.signal-orbit{
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px dashed var(--line-soft);
  animation: orbitSpin 40s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.signal-orbit::before,
.signal-orbit::after{
  content:"";
  position:absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  top: -4px; left: 50%;
}
.signal-orbit::after{
  background: var(--fg);
  top: auto; bottom: -4px;
  left: 35%;
}
@keyframes orbitSpin{
  to { transform: rotate(360deg); }
}

/* ── 2. Report card (animated) ──────────────────────── */
.report-card{
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  padding: 36px 36px 32px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.22), 0 2px 0 rgba(0,0,0,0.02);
  font-family: var(--ff-body);
  max-width: 560px;
}
[data-palette="charcoal"] .report-card{
  background: #111110;
}
.report-card::before{
  content:"";
  position:absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent);
}
.r-head{
  display:flex; align-items:center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.r-brand{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.14em;
}
.r-brand img{ width: 22px; height: 22px; }
.r-meta{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}
.r-company{
  margin-top: 18px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--fg-muted);
}
.r-name{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-top: 2px;
  font-variation-settings: "opsz" 48;
}
.r-status{
  display:inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
}
.r-status .dot{
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--green) 24%, transparent);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse{
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in oklab, var(--green) 24%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in oklab, var(--green) 6%, transparent); }
}
.r-rows{
  margin-top: 20px;
  display:flex; flex-direction: column;
}
.r-row{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--ff-body);
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.r-row.in{ opacity: 1; transform: translateX(0); }
.r-row:last-child{ border-bottom: 0; }
.r-row .k{ color: var(--fg); }
.r-row .v{
  color: var(--fg-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.r-row .chk{
  width: 18px; height: 18px;
  color: var(--green);
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 600ms var(--ease-out) 200ms;
}
.r-row.in .chk{ stroke-dashoffset: 0; }
.r-row.warn .chk{ color: var(--accent); }
.r-foot{
  margin-top: 18px;
  display:flex; align-items:center; justify-content: space-between;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.r-foot.in{ opacity: 1; transform: translateY(0); }
.r-foot .sig{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg);
}

/* ── 3. Network graph ───────────────────────────────── */
.netgraph{
  width: 100%;
  max-width: 640px;
  color: var(--fg);
  overflow: visible;
}
.netgraph .net-edge{
  transition: stroke-dashoffset 1200ms var(--ease-out), opacity 600ms var(--ease-out);
}
.netgraph.net-in .net-edge{
  stroke-dashoffset: 0;
  opacity: 0.35;
}
.netgraph.net-in .net-edge--flagged{
  opacity: 0.85;
  animation: flaggedFlicker 2.2s ease-in-out infinite;
}
@keyframes flaggedFlicker{
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 0.35; }
}
.netgraph .net-node{
  opacity: 0;
  transform-origin: center;
  transition: opacity 500ms var(--ease-out);
}
.netgraph.net-in .net-node{ opacity: 1; }
.netgraph .net-node--center circle{
  filter: drop-shadow(0 0 12px color-mix(in oklab, var(--accent) 50%, transparent));
}
.netgraph .net-pulse{
  animation: netPulse 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes netPulse{
  0%   { opacity: 0.6; r: 22; }
  100% { opacity: 0; r: 48; }
}
.netgraph .net-flag{
  animation: flagDot 1.8s ease-in-out infinite;
}
@keyframes flagDot{
  0%, 100% { opacity: 1; r: 3.5; }
  50%      { opacity: 0.3; r: 6; }
}

/* ── 4. Live counter ────────────────────────────────── */
.bignum{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}
.bignum.accent{ color: var(--accent); }

/* ── 5. Split-text & rotator ────────────────────────── */
.split .split-word{
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: calc(var(--i) * 42ms);
}
.split.in .split-word{
  opacity: 1;
  transform: translateY(0);
}
.rotator{
  display: inline-block;
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
  color: var(--accent);
  font-style: italic;
}

/* ── shared component — small pill & chip ──────────── */
.pill{
  display:inline-flex; align-items:center; gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  padding: 6px 12px;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  border-radius: 999px;
}
.pill .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--green) 22%, transparent);
}
.chip{
  display:inline-flex; align-items:center; gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-soft);
  padding: 6px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

/* ── cards ──────────────────────────────────────────── */
.card{
  padding: 36px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 100%;
  transition: transform 360ms var(--ease-out), border-color 360ms var(--ease-out);
}
.card:hover{
  transform: translateY(-3px);
  border-color: var(--accent);
}
.card-num{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-h{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.card-p{
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.55;
}

/* ── hero area ──────────────────────────────────────── */
.hero{
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .signal-stage{ min-height: 480px; }
  .signal-disk{ width: 340px; height: 340px; }
  .signal-orbit{ width: 440px; height: 440px; }
}
.hero-eyebrow{
  display:flex; align-items: center; gap: 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-eyebrow .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
  animation: livePulse 2.4s ease-in-out infinite;
}
.hero-title{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--fg);
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.hero-sub{
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  color: var(--fg-soft);
  line-height: 1.5;
  max-width: 560px;
  margin-top: 36px;
  font-variation-settings: "opsz" 48;
}
.hero-ctas{
  display:flex; gap: 14px; flex-wrap: wrap;
  margin-top: 44px;
}
.hero-meta{
  display:flex; gap: 40px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-meta > div{ display:flex; flex-direction: column; gap: 4px; }
.hero-meta b{
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--fg);
}

/* ── hero variants ──────────────────────────────────── */
[data-hero-variant="dataroom"] .hero::before{
  content:"";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px) 0 0 / 100% 72px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
[data-hero-variant="cinematic"] body,
[data-hero-variant="cinematic"] .hero{
  /* augmented below */
}
[data-hero-variant="cinematic"] .hero{
  padding: 140px 0 100px;
}
[data-hero-variant="cinematic"] .hero::before{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, color-mix(in oklab, var(--accent) 18%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, color-mix(in oklab, var(--fg) 12%, transparent) 0%, transparent 55%);
  pointer-events: none;
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift{
  from { transform: translate(0, 0); }
  to   { transform: translate(-40px, 30px); }
}

/* ── logo strip ─────────────────────────────────────── */
.logo-strip{
  display:flex; gap: 48px; flex-wrap: wrap; align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  opacity: 0.85;
}
.logo-strip .lbl{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-right: 8px;
}

/* ── obituary wall (small recurring component) ──────── */
.obits{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 780px){
  .obits{ grid-template-columns: repeat(2, 1fr); }
}
.obit{
  padding: 32px 28px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.obit:nth-child(3n){ border-right: 0; }
.obit .co{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--fg);
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 48;
}
.obit .amt{
  margin-top: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}
.obit .audit{
  margin-top: 20px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-soft);
}

/* ── waitlist form ──────────────────────────────────── */
.waitlist{
  padding: 80px 60px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 0;
  display:flex; flex-direction: column; gap: 32px;
  position: relative;
  overflow: hidden;
}
.waitlist::before{
  content:"";
  position:absolute; inset: 0;
  background: radial-gradient(circle at 90% -10%, color-mix(in oklab, var(--accent) 18%, transparent) 0%, transparent 40%);
  pointer-events: none;
}
.waitlist form{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  border: 1px solid var(--fg);
  background: var(--bg);
  position: relative;
  z-index: 1;
}
@media (max-width: 720px){
  .waitlist{ padding: 48px 28px; }
  .waitlist form{ grid-template-columns: 1fr; }
}
.waitlist input{
  border: 0;
  background: transparent;
  padding: 22px 20px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--fg);
  border-right: 1px solid var(--line-soft);
}
.waitlist input:last-of-type{ border-right: 0; }
.waitlist input:focus{ outline: 2px solid var(--accent); outline-offset: -2px; }
.waitlist button{
  padding: 22px 32px;
  background: var(--fg);
  color: var(--bg);
  border: 0;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 220ms var(--ease-out);
}
.waitlist button:hover{ background: var(--accent); }
.waitlist-note{
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--fg-muted);
  position: relative; z-index: 1;
}

/* ── mini dashboards / terminal ─────────────────────── */
.terminal{
  background: #0F0F0E;
  color: #EDE4D4;
  font-family: var(--ff-mono);
  font-size: 13px;
  padding: 20px 24px;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
  overflow: hidden;
}
.terminal .prompt{ color: #D99A5F; }
.terminal .dim{ color: #7a726a; }
.terminal .ok{ color: #7CC496; }
.terminal .warn{ color: #E4A86F; }
.term-head{
  display:flex; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 14px;
}
.term-head span{
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.term-head span:first-child{ background: #E26B6B; }
.term-head span:nth-child(2){ background: #E4A86F; }
.term-head span:nth-child(3){ background: #7CC496; }

/* ── misc ───────────────────────────────────────────── */
.marquee{
  display: flex; gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 28px;
  color: var(--fg-muted);
}
@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   DARK HERO SCENE — copper disk + layered glass
   ═══════════════════════════════════════════════════════ */
.hero-dark{
  position: relative;
  background: radial-gradient(ellipse at 50% 30%, #1F1E1C 0%, #0C0C0B 75%);
  color: #F3EADA;
  padding: 140px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-dark::before{
  content:"";
  position:absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(217,154,95,0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(184,115,51,0.15) 0%, transparent 55%),
    linear-gradient(to right, rgba(243,234,218,0.04) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(to bottom, rgba(243,234,218,0.04) 1px, transparent 1px) 0 0 / 100% 72px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}
.hero-dark .container{ position: relative; z-index: 2; }
.hero-dark .hero-eyebrow{
  color: #D99A5F;
}
.hero-dark .hero-title,
.hero-dark h1,
.hero-dark h2,
.hero-dark h3{ color: #F8F1E3; }
.hero-dark .hero-sub,
.hero-dark .lede{ color: rgba(243,234,218,0.72); }
.hero-dark .btn{
  border-color: rgba(243,234,218,0.35);
  color: #F3EADA;
}
.hero-dark .btn:hover{ background: #F3EADA; color: #1B1B1A; }
.hero-dark .btn.primary{
  background: #F3EADA;
  color: #1B1B1A;
  border-color: #F3EADA;
}
.hero-dark .btn.primary:hover{
  background: #D99A5F;
  border-color: #D99A5F;
  color: #1B1B1A;
}
.hero-dark .hero-meta{
  border-top-color: rgba(243,234,218,0.12);
  color: rgba(243,234,218,0.55);
}
.hero-dark .hero-meta b{ color: #F3EADA; }

/* Hero scene 3D layers */
.hero-scene{
  --px: 0; --py: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 600px;
  margin-left: auto;
  perspective: 1400px;
}
.hero-scene .layer{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
  transition: transform 120ms cubic-bezier(0.22,1,0.36,1);
}
.hero-scene .layer img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hero-scene .layer-disk{
  transform: translate3d(calc(var(--px) * 12px), calc(var(--py) * 12px), 0);
  filter: drop-shadow(0 40px 80px rgba(184,115,51,0.35));
  animation: diskIdle 12s ease-in-out infinite;
}
@keyframes diskIdle{
  0%,100% { filter: drop-shadow(0 40px 80px rgba(184,115,51,0.35)); }
  50%     { filter: drop-shadow(0 40px 100px rgba(217,154,95,0.55)); }
}
.hero-scene .layer-rings{
  transform: translate3d(calc(var(--px) * -20px), calc(var(--py) * -20px), 0) rotate(var(--r, 0deg));
  animation: ringsRotate 80s linear infinite;
}
@keyframes ringsRotate{
  to { transform: translate3d(calc(var(--px) * -20px), calc(var(--py) * -20px), 0) rotate(360deg); }
}
.hero-scene .layer-glow{
  position: absolute; inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,154,95,0.35) 0%, transparent 60%);
  filter: blur(40px);
  animation: heroGlowPulse 5s ease-in-out infinite;
}
@keyframes heroGlowPulse{
  0%,100% { opacity: 0.7; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.08); }
}
.hero-scene .orbit-ring{
  position: absolute;
  top: 50%; left: 50%;
  width: 110%; height: 110%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(217,154,95,0.25);
  border-radius: 50%;
}
.hero-scene .orbit-ring.r2{ width: 90%; height: 90%; border-color: rgba(243,234,218,0.08); }
.hero-scene .orbit-dot{
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: #D99A5F;
  box-shadow: 0 0 20px rgba(217,154,95,0.8);
  top: 50%; left: 50%;
  transform-origin: 0 0;
  animation: orbit 16s linear infinite;
}
.hero-scene .orbit-dot.d2{
  animation-duration: 28s;
  animation-direction: reverse;
  background: #F3EADA;
  box-shadow: 0 0 20px rgba(243,234,218,0.6);
}
@keyframes orbit{
  from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
.hero-scene .hero-label{
  position: absolute;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(243,234,218,0.55);
  letter-spacing: 0.04em;
}
.hero-scene .hero-label::before{
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7CC496;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(124,196,150,0.8);
  animation: livePulse 2s ease-in-out infinite;
}
.hero-scene .hl-1{ top: 18%; right: -4%; }
.hero-scene .hl-2{ bottom: 22%; left: -6%; }
.hero-scene .hl-3{ top: 52%; right: -8%; }

/* ═══════════════════════════════════════════════════════
   LIVE DASHBOARD (product demo)
   ═══════════════════════════════════════════════════════ */
.live-dash{
  position: relative;
  background: #141413;
  border: 1px solid rgba(243,234,218,0.12);
  border-radius: 16px;
  padding: 0;
  color: #F3EADA;
  font-family: var(--ff-body);
  overflow: hidden;
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.6),
    0 20px 40px -20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.live-dash .ld-head{
  padding: 18px 22px;
  display:flex; align-items:center; justify-content: space-between;
  border-bottom: 1px solid rgba(243,234,218,0.08);
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
}
.live-dash .ld-brand{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.12em;
  font-variation-settings: "opsz" 48;
}
.live-dash .ld-brand img{ width: 20px; height: 20px; }
.live-dash .ld-live{
  display:inline-flex; align-items:center; gap: 8px;
  font-size: 12px;
  color: #7CC496;
  font-weight: 500;
}
.live-dash .ld-live::before{
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #7CC496;
  box-shadow: 0 0 0 3px rgba(124,196,150,0.18);
  animation: livePulse 2s ease-in-out infinite;
}
.live-dash .ld-title{
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(243,234,218,0.08);
}
.live-dash .ld-company{
  font-size: 12px;
  color: rgba(243,234,218,0.55);
  font-weight: 500;
  margin-bottom: 6px;
}
.live-dash .ld-name{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 36px;
  color: #F8F1E3;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.01em;
}
.live-dash .ld-signal{
  margin-top: 10px;
  display:inline-flex; align-items:center; gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124,196,150,0.12);
  color: #7CC496;
  font-size: 13px;
  font-weight: 500;
}
.live-dash .ld-rows{
  display: grid;
  grid-template-columns: 1fr;
}
.live-dash .ld-row{
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(243,234,218,0.06);
  transition: background 400ms var(--ease-out);
}
.live-dash .ld-row:last-child{ border-bottom: 0; }
.live-dash .ld-row.pulse{
  background: linear-gradient(to right, rgba(217,154,95,0.15), transparent 60%);
}
.live-dash .ld-row .icn{
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(243,234,218,0.06);
  display:flex; align-items:center; justify-content:center;
  color: #D99A5F;
  font-size: 13px;
}
.live-dash .ld-row .k{
  font-size: 15px;
  font-weight: 500;
  color: #F3EADA;
}
.live-dash .ld-row .d{
  font-size: 13px;
  color: rgba(243,234,218,0.5);
  margin-top: 2px;
}
.live-dash .ld-row .v{
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: #F8F1E3;
  font-variation-settings: "opsz" 32;
  font-variant-numeric: tabular-nums;
  transition: color 300ms var(--ease-out);
}
.live-dash .ld-row.warn .v{ color: #E4A86F; }
.live-dash .ld-row.warn .icn{ color: #E4A86F; background: rgba(228,168,111,0.1); }
.live-dash .ld-foot{
  padding: 18px 28px;
  display:flex; align-items:center; justify-content: space-between;
  border-top: 1px solid rgba(243,234,218,0.08);
  font-size: 13px;
  color: rgba(243,234,218,0.55);
}
.live-dash .ld-foot .sig{
  font-family: var(--ff-display);
  font-style: italic;
  color: #F3EADA;
}

/* ═══════════════════════════════════════════════════════
   WORKFLOW — "a day with Corra"
   ═══════════════════════════════════════════════════════ */
.workflow{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px){
  .workflow{ grid-template-columns: 1fr; gap: 32px; }
}
.workflow-side{
  position: sticky;
  top: 120px;
}
.timeline{
  position: relative;
  display: flex; flex-direction: column;
  gap: 0;
  padding-left: 40px;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 11px; top: 20px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-soft) 10%, var(--line-soft) 90%, transparent);
}
.tl-step{
  position: relative;
  padding: 24px 0 32px 0;
  border-bottom: 1px dashed var(--line-soft);
  opacity: 0.3;
  transform: translateY(12px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.tl-step:last-child{ border-bottom: 0; }
.tl-step.in{
  opacity: 1;
  transform: translateY(0);
}
.tl-step::before{
  content: "";
  position: absolute;
  left: -34px; top: 32px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent);
  transition: transform 300ms var(--ease-out);
}
.tl-step.in::before{
  transform: scale(1.15);
}
.tl-time{
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.tl-h{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 48;
}
.tl-p{
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
}
.tl-tag{
  display:inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════════════════════ */
.integ-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
}
@media (max-width: 900px){ .integ-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px){ .integ-grid{ grid-template-columns: repeat(2, 1fr); } }
.integ-tile{
  --tx: 0; --ty: 0;
  position: relative;
  padding: 36px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background 300ms var(--ease-out), transform 200ms var(--ease-out);
  transform: perspective(600px) rotateY(calc(var(--tx) * 1deg)) rotateX(calc(var(--ty) * 1deg));
  cursor: default;
}
.integ-tile:hover{
  background: var(--bg);
}
.integ-tile .mark{
  width: 44px; height: 44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--fg);
}
.integ-tile .lbl{
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-soft);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
}
@media (max-width: 900px){ .testimonials{ grid-template-columns: 1fr; } }
.testimonial{
  padding: 40px 36px;
  border-right: 1px solid var(--line-soft);
  display:flex; flex-direction: column;
  gap: 24px;
}
.testimonial:last-child{ border-right: 0; }
@media (max-width: 900px){
  .testimonial{ border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .testimonial:last-child{ border-bottom: 0; }
}
.testimonial q{
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--fg);
  font-weight: 400;
  quotes: none;
  font-variation-settings: "opsz" 32;
}
.testimonial q::before{
  content: "\201C";
  font-size: 48px;
  color: var(--accent);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
  font-style: italic;
}
.testimonial.featured q{ font-size: 26px; font-style: italic; }
.t-author{
  display:flex; align-items:center; gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.t-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--rose));
  color: var(--bg);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
}
.t-who{
  display: flex; flex-direction: column;
}
.t-who b{
  font-weight: 500;
  color: var(--fg);
  font-size: 14px;
}
.t-who span{
  font-size: 13px;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq{
  max-width: 860px;
}
.faq-item{
  border-bottom: 1px solid var(--line-soft);
  padding: 4px 0;
}
.faq-q{
  width: 100%;
  background: none;
  border: 0;
  padding: 24px 0;
  text-align: left;
  display:flex; align-items:center; justify-content: space-between;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--fg);
  cursor: pointer;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 32;
}
.faq-q .plus{
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display:flex; align-items:center; justify-content: center;
  color: var(--fg-soft);
  transition: transform 300ms var(--ease-out), background 300ms var(--ease-out), color 300ms var(--ease-out);
  flex-shrink: 0;
  font-size: 18px;
}
.faq-item.open .faq-q .plus{
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.faq-a{
  max-height: 0;
  overflow: hidden;
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.7;
  transition: max-height 500ms var(--ease-out), padding 400ms var(--ease-out);
}
.faq-item.open .faq-a{
  max-height: 400px;
  padding-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════
   SECURITY STRIP
   ═══════════════════════════════════════════════════════ */
.sec-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px){ .sec-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .sec-grid{ grid-template-columns: 1fr; } }
.sec-tile{
  padding: 28px 24px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-alt);
  display:flex; flex-direction: column; gap: 10px;
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.sec-tile:hover{
  border-color: var(--accent);
  transform: translateY(-2px);
}
.sec-badge{
  width: 36px; height: 36px;
  border-radius: 8px;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 4px;
}
.sec-h{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--fg);
  font-variation-settings: "opsz" 32;
}
.sec-p{
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   FEATURE ROW — alternating product shots
   ═══════════════════════════════════════════════════════ */
.feature-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feature-row:last-child{ border-bottom: 0; }
.feature-row.reverse{ direction: rtl; }
.feature-row.reverse > *{ direction: ltr; }
@media (max-width: 900px){
  .feature-row{ grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .feature-row.reverse{ direction: ltr; }
}
.feature-h{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  font-variation-settings: "opsz" 72;
  margin-bottom: 20px;
}
.feature-p{
  color: var(--fg-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
}
.feature-visual{
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
}
.feature-visual img{
  width: 100%; height: 100%; object-fit: cover;
}
.feature-visual.rel-graph{
  background: radial-gradient(120% 100% at 50% 40%, #1A1816 0%, #0B0B0A 75%) !important;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.rel-svg{
  width: 100%; height: 100%;
  display: block;
}
.rel-svg .rn circle{
  transition: transform 300ms var(--ease-out);
}
.rel-flow{
  animation: flow-dash 2.4s linear infinite;
}
@keyframes flow-dash{
  from { stroke-dashoffset: 32; }
  to   { stroke-dashoffset: 0; }
}
.rel-svg .pulse{
  transform-origin: 500px 110px;
  animation: flag-pulse 2.2s ease-out infinite;
}
@keyframes flag-pulse{
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .rel-flow, .rel-svg .pulse{ animation: none; }
}

/* Scroll meter */
.scroll-meter{
  --p: 0;
  position: relative;
  width: 2px;
  background: var(--line-soft);
  border-radius: 2px;
  overflow: hidden;
}
.scroll-meter::before{
  content: "";
  position: absolute;
  left: 0; top: 0; width: 100%;
  height: calc(var(--p) * 100%);
  background: var(--accent);
  transition: height 80ms linear;
}

/* Early access CTA band */
.ea-band{
  position: relative;
  padding: 100px 60px;
  background: linear-gradient(135deg, #1B1B1A 0%, #2A2420 100%);
  color: #F3EADA;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.ea-band::before{
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,154,95,0.45) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
@media (max-width: 900px){
  .ea-band{ grid-template-columns: 1fr; padding: 60px 32px; }
}
.ea-band h2{ color: #F8F1E3; }
.ea-band .lede{ color: rgba(243,234,218,0.72); }
.ea-band form{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(243,234,218,0.06);
  border: 1px solid rgba(243,234,218,0.2);
  border-radius: 14px;
  padding: 12px;
  backdrop-filter: blur(20px);
}
.ea-band input{
  background: transparent;
  border: 0;
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: #F3EADA;
  outline: none;
}
.ea-band input::placeholder{ color: rgba(243,234,218,0.45); }
.ea-band button{
  padding: 14px 22px;
  background: #F3EADA;
  color: #1B1B1A;
  border: 0;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms var(--ease-out);
}
.ea-band button:hover{ background: #D99A5F; }
.ea-band .ea-note{
  font-size: 13px;
  color: rgba(243,234,218,0.55);
  margin-top: 4px;
}

/* Stat inline row */
.stat-inline{
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 720px){ .stat-inline{ gap: 32px; } }
.stat-inline > div{
  display:flex; flex-direction: column; gap: 4px;
}
.stat-inline b{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 44px;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
  font-variant-numeric: tabular-nums;
}
.stat-inline span{
  font-size: 13px;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════
   HOW-IT-WORKS PAGE
   ═══════════════════════════════════════════════════════ */
.phase-grid{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phase{
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.phase:last-child{ border-bottom: 0; }
.phase.reverse .phase-body{ grid-column: 2; }
.phase.reverse .phase-visual{ grid-column: 3; grid-row: 1; order: -1; }
@media (max-width: 1000px){
  .phase{ grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .phase.reverse .phase-body,
  .phase.reverse .phase-visual{ grid-column: auto; grid-row: auto; order: unset; }
}
.phase-num{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 76px;
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 96;
  line-height: 1;
  letter-spacing: -0.02em;
}
.phase-h{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin: 10px 0 20px;
  font-variation-settings: "opsz" 72;
}
.phase-p{
  color: var(--fg-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
}
.phase-chips{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.chip.small{
  font-size: 12px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--fg-soft);
}
.phase-list{
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex; flex-direction: column; gap: 12px;
  color: var(--fg-soft);
  font-size: 15px;
}
.phase-list li{
  padding-left: 20px;
  position: relative;
}
.phase-list li::before{
  content: "◦";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.phase-visual{
  position: relative;
}

/* Connect demo */
.connect-demo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.cd-box{
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--bg-alt);
}
.cd-box.dim{ opacity: 0.5; border-style: dashed; }
.cd-logo{
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--fg);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8px;
}
.cd-name{
  font-weight: 500;
  color: var(--fg);
  font-size: 14px;
}
.cd-status{
  font-size: 12px;
  color: var(--good);
  margin-top: 2px;
}
.cd-status.connecting{ color: var(--accent); }

/* Learn panel */
.learn-panel{
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 10px 0;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.lp-row{
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.lp-row:last-of-type{ border-bottom: 0; }
.lp-k{
  font-size: 13px;
  color: var(--fg-soft);
}
.lp-v{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.lp-foot{
  padding: 14px 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* Checks grid */
.checks-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.check{
  padding: 12px 16px;
  background: var(--bg);
  font-size: 12px;
  color: var(--fg-soft);
  font-family: var(--ff-body);
}

/* Share card */
.share-card{
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.sc-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.sc-title{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--fg);
}
.sc-live{
  font-size: 12px; color: var(--good); font-weight: 500;
}
.sc-url{
  font-family: var(--ff-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--accent);
  margin-bottom: 16px;
  word-break: break-all;
}
.sc-meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.sc-meta > div{
  display: flex; flex-direction: column; gap: 2px;
}
.sc-meta b{
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sc-meta span{
  font-size: 13px;
  color: var(--fg);
}

/* Compare grid */
.compare-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 900px){ .compare-grid{ grid-template-columns: 1fr; } }
.compare-col{
  padding: 40px 32px;
  border-right: 1px solid var(--line-soft);
  background: var(--bg);
}
.compare-col:last-child{ border-right: 0; }
@media (max-width: 900px){
  .compare-col{ border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .compare-col:last-child{ border-bottom: 0; }
}
.compare-col.corra{
  background: var(--bg-alt);
  position: relative;
}
.compare-col.corra::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.compare-h{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
  font-variation-settings: "opsz" 32;
}
.compare-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.compare-col li{
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.compare-col.corra li{ color: var(--fg); }

/* ═══════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════ */
.price-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1000px){ .price-grid{ grid-template-columns: 1fr; } }
.price-card{
  position: relative;
  padding: 36px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.price-card:hover{
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.price-card.featured{
  background: #1B1B1A;
  color: #F3EADA;
  border-color: #D99A5F;
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -30px rgba(184,115,51,0.4);
}
.price-card.featured:hover{
  transform: translateY(-12px);
}
.pc-badge{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: #D99A5F;
  color: #1B1B1A;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pc-name{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--fg);
  font-variation-settings: "opsz" 48;
}
.price-card.featured .pc-name{ color: #F8F1E3; }
.pc-sub{
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.price-card.featured .pc-sub{ color: rgba(243,234,218,0.6); }
.pc-price{
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 16px 0;
  border-block: 1px solid var(--line-soft);
}
.price-card.featured .pc-price{ border-color: rgba(243,234,218,0.15); }
.pc-dollar{
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--fg-soft);
  font-weight: 500;
}
.price-card.featured .pc-dollar{ color: rgba(243,234,218,0.6); }
.pc-amount{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 72px;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}
.price-card.featured .pc-amount{ color: #F8F1E3; }
.pc-per{
  font-size: 14px;
  color: var(--fg-muted);
  margin-left: 6px;
}
.price-card.featured .pc-per{ color: rgba(243,234,218,0.55); }
.pc-note{
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: -6px;
  font-style: italic;
}
.price-card.featured .pc-note{ color: rgba(243,234,218,0.6); }
.pc-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pc-list li{
  font-size: 14px;
  color: var(--fg-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pc-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.price-card.featured .pc-list li{ color: rgba(243,234,218,0.85); }
.price-card.featured .pc-list li::before{ border-color: #D99A5F; }

.price-card.featured .btn.primary{
  background: #D99A5F;
  border-color: #D99A5F;
  color: #1B1B1A;
}
.price-card.featured .btn.primary:hover{
  background: #F3EADA;
  border-color: #F3EADA;
}

/* Always-included grid */
.always-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px){ .always-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .always-grid{ grid-template-columns: 1fr; } }
.always-tile{
  padding: 22px 22px 24px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.always-tile:hover{
  border-color: var(--accent);
  transform: translateY(-2px);
}
.always-tile b{
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg);
}
.always-tile span{
  font-size: 13px;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.founders{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 900px){ .founders{ grid-template-columns: 1fr; } }
.founder{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.f-portrait{
  aspect-ratio: 4/5;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #F3EADA;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 72px;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3);
}
.f-name{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--fg);
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.01em;
}
.f-role{
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: -8px;
  margin-bottom: 4px;
}
.f-bio{
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-soft);
}
.f-prev{
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 4px;
}
.f-prev span{
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.f-prev b{
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}

/* Principles */
.principles{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
}
@media (max-width: 900px){ .principles{ grid-template-columns: 1fr; } }
.principle{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
.pr-num{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 48px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  font-variation-settings: "opsz" 72;
}
.pr-body h4{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 32;
  letter-spacing: -0.005em;
}
.pr-body p{
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-soft);
}

/* Backers */
.backer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 720px){ .backer-grid{ grid-template-columns: repeat(2, 1fr); } }
.backer{
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  transition: border-color 200ms var(--ease-out);
}
.backer:hover{ border-color: var(--accent); }
.bk-logo{
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 6px;
}
.bk-name{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--fg);
}
.bk-role{
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.advisor-row ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
}
@media (max-width: 720px){ .advisor-row ul{ grid-template-columns: 1fr; } }
.advisor-row li{
  font-size: 15px;
  color: var(--fg-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.advisor-row li b{
  color: var(--fg);
  font-weight: 500;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 24;
}

/* Contact grid */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; gap: 48px; } }
.office-list{
  display: flex; flex-direction: column; gap: 0;
}
.office{
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.office:last-child{ border-bottom: 0; }
.o-city{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 32;
}
.o-addr{
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.reach-list{
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}
.reach-list a{
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 2px;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  transition: background 200ms var(--ease-out);
}
.reach-list a:last-child{ border-bottom: 0; }
.reach-list a:hover{ background: var(--bg-alt); }
.reach-list b{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24;
}
.reach-list span{
  font-size: 13px;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════
   MANIFESTO PAGE — editorial essay
   ═══════════════════════════════════════════════════════ */
.manifesto-body{
  background: #F4EDE0;
}
.manifesto{
  max-width: 780px;
  margin: 0 auto;
  padding: 180px 32px 120px;
  color: #2A2622;
  font-family: var(--ff-display);
}
.mf-head{
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(42,38,34,0.15);
  margin-bottom: 80px;
}
.mf-date{
  font-family: var(--ff-body);
  font-size: 12px;
  color: #8B7C6B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.mf-title{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #1E1A16;
  font-variation-settings: "opsz" 144;
  margin-bottom: 40px;
}
.mf-title .italic-em{ color: #B87333; }
.mf-byline{
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 15px;
  color: #8B7C6B;
}
.mf-grain{
  height: 1px;
}
.mf-body{
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.65;
  color: #3A342D;
  font-variation-settings: "opsz" 24;
}
.mf-body p{
  margin-bottom: 1.5em;
}
.mf-body p em,
.mf-body p i{
  font-style: italic;
  color: #8B4513;
}
.mf-body p b{
  font-weight: 500;
  color: #1E1A16;
}
.mf-body .italic-em{
  color: #B87333;
}
.mf-drop{
  position: relative;
  padding-left: 0;
}
.mf-cap{
  float: left;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 96px;
  line-height: 0.85;
  color: #B87333;
  padding: 6px 14px 0 0;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.04em;
}
.mf-h{
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 38px);
  color: #1E1A16;
  margin: 80px 0 24px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.mf-rule{
  border: 0;
  height: 1px;
  background: rgba(42,38,34,0.12);
  margin: 72px 0;
  position: relative;
}
.mf-rule::after{
  content: "✺";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #F4EDE0;
  padding: 0 20px;
  color: #B87333;
  font-size: 16px;
}
.mf-pull{
  margin: 64px -40px;
  padding: 40px;
  border-block: 1px solid rgba(42,38,34,0.15);
  position: relative;
}
.mf-pull p{
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  color: #1E1A16;
  text-align: center;
  margin: 0;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.01em;
}
.mf-pull::before,
.mf-pull::after{
  content: "";
  position: absolute;
  left: 50%;
  width: 40px; height: 40px;
  transform: translateX(-50%);
  background: #F4EDE0;
}
.mf-pull::before{
  top: -20px;
  background-image: radial-gradient(circle at 50% 100%, #B87333 2px, transparent 3px);
}
.mf-pull::after{
  bottom: -20px;
  background-image: radial-gradient(circle at 50% 0%, #B87333 2px, transparent 3px);
}
.mf-final{
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.3;
  color: #1E1A16;
  text-align: center;
  margin: 80px 0 40px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72;
}
.mf-final .italic-em{
  font-style: italic;
  color: #B87333;
  display: block;
  margin-top: 10px;
}
.mf-sign{
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(42,38,34,0.15);
  text-align: center;
}
.mf-sig{
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: 30px;
  color: #1E1A16;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 48;
}
.mf-place{
  font-family: var(--ff-body);
  font-size: 13px;
  color: #8B7C6B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 720px){
  .manifesto{ padding: 140px 24px 80px; }
  .mf-pull{ margin: 48px 0; padding: 32px 24px; }
}
