/* ============================================================
   PARCEL — the agent-native layer for real estate
   Visual system: warm off-white, charcoal, sage + gold.
   Type: Manrope (display/body) + IBM Plex Mono (labels).
   ============================================================ */

:root {
  /* canvas */
  --bg:        #FAF9F6;
  --bg-warm:   #F4F1EA;
  --surface:   #FFFFFF;
  --surface-2: #F7F5EF;

  /* ink */
  --ink:       #1B1E1A;
  --ink-soft:  #43483F;
  --ink-mute:  #767B70;
  --ink-faint: #A7AB9F;
  --hairline:  rgba(27, 30, 26, 0.08);
  --hairline-2:rgba(27, 30, 26, 0.04);

  /* sage */
  --sage:      #7FA88C;
  --sage-deep: #4F7360;
  --sage-ink:  #345144;
  --sage-tint: #EAF1EC;
  --sage-glow: rgba(127, 168, 140, 0.45);

  /* gold */
  --gold:      #C9A86A;
  --gold-deep: #A9863F;
  --gold-tint: #F4ECDC;

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

  /* shadow */
  --sh-sm: 0 1px 2px rgba(27,30,26,.04), 0 2px 8px rgba(27,30,26,.04);
  --sh-md: 0 2px 4px rgba(27,30,26,.03), 0 12px 28px rgba(27,30,26,.07);
  --sh-lg: 0 4px 8px rgba(27,30,26,.04), 0 30px 60px rgba(27,30,26,.10);
  --sh-float: 0 30px 80px -20px rgba(52,81,68,.28), 0 8px 24px rgba(27,30,26,.06);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

::selection { background: var(--sage); color: #fff; }

/* ---------- type ---------- */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
h1, h2, h3 { line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; color: var(--ink); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -0.03em; line-height: 1.04; }
h3 { font-size: 1.32rem; letter-spacing: -0.02em; line-height: 1.15; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.4rem); color: var(--ink-soft); line-height: 1.5; font-weight: 400; }

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

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
section { position: relative; }
.section-pad { padding-block: clamp(90px, 13vh, 168px); }
.divider { border: 0; border-top: 1px solid var(--hairline); margin: 0; }

.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 76px); }
.section-head .eyebrow { display: block; margin-bottom: 22px; }
.section-head h2 { margin-bottom: 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; padding: 13px 22px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), background .3s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--sage-ink); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(255,255,255,.5); }
.btn-sage { background: var(--sage-ink); color: #fff; }
.btn-sage:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 14px var(--gutter);
  transition: padding .5s var(--ease);
}
.nav-inner {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px 11px 22px; border-radius: 100px;
  border: 1px solid transparent;
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease), backdrop-filter .5s var(--ease);
}
.nav.scrolled .nav-inner {
  background: rgba(250,249,246,.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-color: var(--hairline);
  box-shadow: 0 8px 30px -12px rgba(27,30,26,.14);
}
.wordmark {
  font-weight: 800; font-size: 19px; letter-spacing: 0.16em;
  display: flex; align-items: center; gap: 10px;
}
.wordmark .mk-glyph { width: 22px; height: 22px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0;
  background: var(--sage-deep); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 96px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 8%, rgba(201,168,106,.18), transparent 55%),
    radial-gradient(90% 70% at 18% 95%, rgba(127,168,140,.20), transparent 60%),
    linear-gradient(180deg, #FBFAF7 0%, var(--bg) 60%);
}
/* parcel grid plane (perspective floor) */
.hero-grid {
  position: absolute; left: 50%; bottom: -8%; width: 200%; height: 75%;
  transform: translateX(-50%) perspective(680px) rotateX(64deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(60% 80% at 50% 30%, #000 30%, transparent 78%);
          mask-image: radial-gradient(60% 80% at 50% 30%, #000 30%, transparent 78%);
  opacity: .9;
}
.hero-parcel {
  position: absolute; border: 1.5px solid var(--sage); border-radius: 2px;
  background: var(--sage-glow); opacity: 0; animation: parcelGlow 6s var(--ease-in-out) infinite;
}
@keyframes parcelGlow { 0%,100% { opacity: 0; } 40%,60% { opacity: .5; } }

.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%; }
.hero-copy { max-width: 600px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  letter-spacing: -0.045em; line-height: 0.98; margin-bottom: 28px; font-weight: 700;
}
.hero h1 .accent { color: var(--sage-deep); }
.hero-sub { font-size: clamp(1.1rem, 1.55vw, 1.32rem); color: var(--ink-soft); line-height: 1.5; max-width: 510px; margin-bottom: 16px; }
.hero-meta {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--ink-mute);
  letter-spacing: 0.01em; margin-bottom: 38px;
}
.hero-meta .dot { color: var(--sage); margin-inline: 8px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.proof { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-mute); }
.proof .live { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); position: relative; }
.proof .live::after { content:''; position:absolute; inset:-4px; border-radius:50%; background: var(--sage); opacity:.4; animation: ping 2.4s var(--ease-in-out) infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity:.5;} 80%,100% { transform: scale(2.4); opacity:0; } }

/* house badge */
.hero-stage { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.badge-wrap { position: relative; width: 380px; height: 380px; transform-style: preserve-3d; will-change: transform; }
.badge-float { position: absolute; inset: 0; animation: float 7s var(--ease-in-out) infinite; transform-style: preserve-3d; }
@keyframes float { 0%,100% { transform: translateY(-10px); } 50% { transform: translateY(10px); } }
.badge-disc {
  position: absolute; inset: 6%; border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(255,255,255,.95), var(--surface-2) 62%, var(--bg-warm));
  box-shadow: var(--sh-float), inset 0 2px 10px rgba(255,255,255,.9), inset 0 -16px 40px rgba(52,81,68,.06);
  border: 1px solid rgba(255,255,255,.7);
}
.badge-ring {
  position: absolute; border-radius: 50%; border: 1px dashed var(--sage);
  opacity: .5; animation: spin 40s linear infinite;
}
.badge-ring.r1 { inset: -6%; }
.badge-ring.r2 { inset: -16%; border-style: dotted; opacity:.32; animation-direction: reverse; animation-duration: 60s; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.node { fill: var(--surface); stroke: var(--sage-deep); stroke-width: 2.5; }
.node-core { fill: var(--sage-deep); }
.node-pulse { fill: var(--sage); opacity: .35; transform-box: fill-box; transform-origin: center; animation: nodePulse 3s var(--ease-in-out) infinite; }
@keyframes nodePulse { 0%,100% { transform: scale(.6); opacity:.4;} 50% { transform: scale(1.5); opacity:0; } }
.house-line { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.link-line { stroke: var(--sage); stroke-width: 1.5; stroke-dasharray: 4 5; opacity: .55; animation: dash 14s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -100; } }

.chip {
  position: absolute; background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
  border: 1px solid var(--hairline); border-radius: 12px; padding: 9px 13px;
  box-shadow: var(--sh-md); font-size: 12.5px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px; will-change: transform;
}
.chip .k { font-family:'IBM Plex Mono',monospace; font-size:11px; color: var(--sage-deep); font-weight:500; }
.chip-1 { top: 6%; left: -6%; animation: float 6s var(--ease-in-out) infinite; }
.chip-2 { bottom: 14%; right: -10%; animation: float 8s var(--ease-in-out) .8s infinite; }
.chip-3 { bottom: -2%; left: 14%; animation: float 7s var(--ease-in-out) 1.4s infinite; }
.chip .swatch { width: 9px; height: 9px; border-radius: 3px; }

/* scroll indicator + car */
.scroll-ind {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.scroll-road { position: relative; width: min(360px, 60vw); height: 2px; background: var(--hairline); border-radius: 2px; overflow: visible; }
.scroll-road::before {
  content:''; position:absolute; inset:0; background: repeating-linear-gradient(90deg, var(--ink-faint) 0 10px, transparent 10px 22px);
  opacity:.5;
}
.scroll-car { position: absolute; top: -10px; left: 0; width: 30px; animation: drive 5s var(--ease-in-out) infinite; }
@keyframes drive { 0% { left: 0; } 50% { left: calc(100% - 30px); transform: scaleX(1);} 50.01% { transform: scaleX(-1);} 100% { left: 0; transform: scaleX(-1);} }
.scroll-label { font-family:'IBM Plex Mono',monospace; font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--ink-mute); }

/* ============================================================
   REVEAL system
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.problem h2 { max-width: 9ch; }
.problem-body p { font-size: 1.18rem; line-height: 1.62; color: var(--ink-soft); }
.problem-body .accent-line { color: var(--ink); font-weight: 600; }
.cant-list { display: flex; flex-direction: column; gap: 2px; margin-top: 30px; }
.cant-row { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid var(--hairline); font-size: 15px; color: var(--ink-soft); }
.cant-row .x { width: 22px; height: 22px; flex: none; color: var(--gold-deep); }

/* ============================================================
   WEDGE / drive-by cinematic
   ============================================================ */
.wedge { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%); overflow: hidden; }
.wedge-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.wedge-copy { max-width: 460px; }
.wedge-copy .lead-quote {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.18; letter-spacing: -0.03em;
  font-weight: 600; color: var(--ink); margin: 20px 0 26px;
}
.wedge-copy .lead-quote .q { color: var(--sage-deep); }

/* phone scene */
.scene { position: relative; height: 560px; display: flex; align-items: center; justify-content: center; }
.phone {
  position: relative; width: 270px; height: 540px; border-radius: 42px;
  background: linear-gradient(160deg, #23261F, #14160F); padding: 11px;
  box-shadow: var(--sh-float), inset 0 0 0 1.5px rgba(255,255,255,.08);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #EDF1EC, #FAF9F6);
}
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 84px; height: 22px; background: #14160F; border-radius: 0 0 14px 14px; z-index: 5; }
.map { position: absolute; inset: 0; background:
   radial-gradient(100% 70% at 50% 0%, #E7EEE7, #DDE6DC),
   var(--surface-2);
}
.map-roads { position: absolute; inset: 0; opacity:.9; }
.gps-pin {
  position: absolute; top: 34%; left: 50%; transform: translate(-50%,-100%) scale(0);
  z-index: 4; transform-origin: bottom center;
}
.gps-pin svg { width: 38px; height: 48px; filter: drop-shadow(0 6px 10px rgba(52,81,68,.35)); }
.gps-ripple { position: absolute; top: 34%; left: 50%; width: 12px; height: 12px; transform: translate(-50%,-50%); border-radius:50%; border: 2px solid var(--sage); opacity: 0; }
.parcel-poly { position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%); width: 120px; height: 90px; opacity: 0; }
.parcel-poly polygon { fill: var(--sage-glow); stroke: var(--sage-deep); stroke-width: 2; stroke-dasharray: 5 4; }

.voice-bar {
  position: absolute; bottom: 18px; left: 14px; right: 14px; z-index: 6;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border: 1px solid var(--hairline);
  border-radius: 18px; padding: 12px 14px; display: flex; align-items: center; gap: 11px;
  box-shadow: var(--sh-md); opacity: 0; transform: translateY(14px);
}
.voice-bar .mic { width: 30px; height: 30px; flex:none; border-radius: 50%; background: var(--sage-ink); display:flex; align-items:center; justify-content:center; }
.voice-bar .mic svg { width: 15px; height: 15px; color:#fff; }
.voice-bar .vtext { font-size: 12.5px; color: var(--ink); font-weight: 500; }
.eq { display: flex; gap: 2.5px; align-items: center; height: 16px; }
.eq span { width: 2.5px; background: var(--sage); border-radius: 2px; height: 5px; animation: eq 1s var(--ease-in-out) infinite; }
.eq span:nth-child(2){animation-delay:.15s;} .eq span:nth-child(3){animation-delay:.3s;} .eq span:nth-child(4){animation-delay:.45s;} .eq span:nth-child(5){animation-delay:.6s;}
@keyframes eq { 0%,100%{height:5px;} 50%{height:15px;} }

/* dossier card that flies in */
.dossier {
  position: absolute; right: -28px; top: 50%; width: 300px;
  transform: translate(40px,-50%) scale(.92); opacity: 0;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border: 1px solid var(--hairline); border-radius: 22px; padding: 18px;
  box-shadow: var(--sh-float); z-index: 3;
}
.dossier.in { transform: translate(0,-50%) scale(1); opacity: 1; transition: all 1s var(--ease); }
.dossier-img { height: 110px; border-radius: 14px; background:
   linear-gradient(135deg, #C9D6C9, #9DB7A4 60%, #7FA88C);
   position: relative; overflow: hidden; margin-bottom: 13px; }
.dossier-img .sun { position:absolute; top:14px; right:18px; width:30px; height:30px; border-radius:50%; background: radial-gradient(circle, #F6E7C6, #E7C98B); box-shadow:0 0 24px 6px rgba(231,201,139,.6); }
.dossier-img .roofline { position:absolute; bottom:0; left:0; right:0; height: 52px; background:
   linear-gradient(180deg, #43483F, #2C2F28); clip-path: polygon(0 60%, 22% 24%, 44% 60%, 44% 36%, 70% 12%, 100% 50%, 100% 100%, 0 100%); }
.dossier-row { display:flex; justify-content: space-between; align-items: baseline; padding: 7px 0; border-top: 1px solid var(--hairline-2); }
.dossier-row:first-of-type { border-top: 0; }
.dossier-row .lbl { font-family:'IBM Plex Mono',monospace; font-size: 11px; color: var(--ink-mute); letter-spacing: .03em; }
.dossier-row .val { font-size: 14px; font-weight: 600; color: var(--ink); }
.dossier-row .val.avm { color: var(--sage-deep); font-size: 16px; }
.dossier-head { display:flex; align-items:center; justify-content: space-between; margin-bottom: 12px; }
.dossier-head .addr { font-size: 14px; font-weight: 700; letter-spacing:-.01em; }
.dossier-head .apn { font-family:'IBM Plex Mono',monospace; font-size: 10.5px; color: var(--ink-mute); }
.verified-tag { display:inline-flex; align-items:center; gap:5px; font-size: 10.5px; font-weight:600; color: var(--sage-deep); background: var(--sage-tint); padding: 3px 8px; border-radius: 100px; }
.verified-tag svg { width: 11px; height: 11px; }

/* ============================================================
   SEVEN HOPS
   ============================================================ */
.hops { background: var(--bg-warm); }
.hops-track { position: relative; }
.hops-line { position: absolute; left: 0; right: 0; top: 27px; height: 2px; background: var(--hairline); }
.hops-line .fill { position:absolute; inset:0 100% 0 0; background: linear-gradient(90deg, var(--sage), var(--gold)); transition: right 1.4s var(--ease); }
.hops-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.hop { position: relative; }
.hop .num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--hairline); display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono',monospace; font-weight: 600; font-size: 16px; color: var(--ink-mute);
  margin-bottom: 18px; position: relative; z-index: 2; box-shadow: var(--sh-sm);
  transition: all .5s var(--ease);
}
.hop.lit .num { background: var(--sage-ink); color: #fff; border-color: var(--sage-ink); box-shadow: 0 8px 22px -6px var(--sage-glow); transform: translateY(-3px); }
.hop h3 { font-size: 1rem; margin-bottom: 7px; letter-spacing:-.01em; }
.hop p { font-size: 13.5px; color: var(--ink-mute); line-height: 1.45; }

/* ============================================================
   THREE NOUNS
   ============================================================ */
.nouns { background: var(--ink); color: #fff; overflow: hidden; }
.nouns .eyebrow { color: var(--sage); }
.nouns h2 { color: #fff; }
.nouns .section-head p { color: rgba(255,255,255,.62); }
.nouns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.noun-card {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px; padding: 30px 28px 34px; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.noun-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); border-color: rgba(127,168,140,.4); }
.noun-card .ico { width: 46px; height: 46px; color: var(--sage); margin-bottom: 22px; }
.noun-card .name { font-family:'IBM Plex Mono',monospace; font-size: 12px; letter-spacing:.16em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.noun-card h3 { color: #fff; font-size: 1.34rem; margin-bottom: 12px; }
.noun-card p { color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.55; }
.noun-glow { position:absolute; width: 200px; height: 200px; border-radius:50%; background: radial-gradient(circle, var(--sage-glow), transparent 70%); top: -80px; right: -60px; opacity:.5; filter: blur(20px); }
.symmetry {
  text-align:center; font-size: clamp(1.2rem,2vw,1.7rem); line-height:1.5; font-weight: 500;
  letter-spacing:-.02em; max-width: 880px; margin: 0 auto; color: rgba(255,255,255,.82);
}
.symmetry b { color: #fff; font-weight: 700; }
.symmetry .pp { color: var(--sage); } .symmetry .gg { color: var(--gold); }

/* ============================================================
   FIVE PLANES (stack)
   ============================================================ */
.stack { background: var(--bg); }
.planes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.plane {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 20px;
  padding: 26px 24px 28px; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.plane:nth-child(1), .plane:nth-child(2), .plane:nth-child(3) { grid-column: span 2; }
.plane:nth-child(4) { grid-column: span 3; }
.plane:nth-child(5) { grid-column: span 3; }
.plane:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(127,168,140,.45); }
.plane-ico {
  width: 50px; height: 50px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
  background: var(--sage-tint); margin-bottom: 22px; position: relative;
  transition: transform .5s var(--ease);
}
.plane:hover .plane-ico { transform: scale(1.06) rotate(-3deg); }
.plane-ico::after { content:''; position:absolute; inset:0; border-radius:14px; box-shadow: 0 0 0 0 var(--sage-glow); transition: box-shadow .5s var(--ease); }
.plane:hover .plane-ico::after { box-shadow: 0 0 26px 2px var(--sage-glow); }
.plane-ico svg { width: 25px; height: 25px; color: var(--sage-ink); }
.plane .pn { font-family:'IBM Plex Mono',monospace; font-size: 11px; color: var(--ink-faint); letter-spacing:.1em; }
.plane h3 { font-size: 1.22rem; margin: 5px 0 12px; }
.plane p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.55; }
.plane .tags { display:flex; gap:6px; flex-wrap:wrap; margin-top: 16px; }
.plane .tag { font-family:'IBM Plex Mono',monospace; font-size: 10.5px; color: var(--sage-deep); background: var(--sage-tint); padding: 3px 9px; border-radius: 100px; }

/* ============================================================
   WHY NOW
   ============================================================ */
.why { background: var(--bg-warm); }
.why-grid { display:grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px,6vw,90px); align-items:center; }
.timeline { display:flex; flex-direction: column; }
.tl-item { display:flex; gap: 20px; padding: 18px 0; border-top: 1px solid var(--hairline); position: relative; }
.tl-item:last-child { border-bottom: 1px solid var(--hairline); }
.tl-when { font-family:'IBM Plex Mono',monospace; font-size: 12px; color: var(--gold-deep); flex: none; width: 78px; padding-top: 3px; letter-spacing:.02em; }
.tl-body h3 { font-size: 1.05rem; margin-bottom: 5px; }
.tl-body p { font-size: 14px; color: var(--ink-mute); }
.tl-body .pill { display:inline-block; font-family:'IBM Plex Mono',monospace; font-size:10.5px; color: var(--sage-deep); margin-right:7px; }
.why-missing {
  margin-top: 30px; background: var(--ink); color:#fff; border-radius: 20px; padding: 28px 30px;
}
.why-missing .eyebrow { color: var(--sage); margin-bottom: 12px; display:block; }
.why-missing p { font-size: 1.15rem; line-height: 1.45; letter-spacing:-.015em; }
.why-missing b { color: var(--sage); }

/* ============================================================
   TRUST + NETWORK
   ============================================================ */
.trust { background: var(--bg); overflow: hidden; }
.trust-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items:center; }
.trust-copy { max-width: 480px; }
.trust-copy p { font-size: 1.12rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 18px; }
.trust-copy .clean { color: var(--ink); font-weight: 600; }
.trust-points { display:flex; flex-direction:column; gap: 12px; margin-top: 26px; }
.tp { display:flex; gap: 13px; align-items:flex-start; font-size: 14.5px; color: var(--ink-soft); }
.tp .ck { width: 22px; height: 22px; flex:none; color: var(--sage-deep); margin-top:1px; }

.network { position: relative; height: 440px; }
.net-svg { width: 100%; height: 100%; overflow: visible; }
.net-edge { stroke: var(--sage); stroke-width: 1.4; opacity: 0; stroke-dasharray: 200; stroke-dashoffset: 200; }
.passport {
  position:absolute; width: 132px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border: 1px solid var(--hairline); border-radius: 14px; padding: 11px 12px; box-shadow: var(--sh-md);
  opacity: 0; transform: scale(.8);
}
.passport.in { opacity:1; transform: scale(1); transition: all .7s var(--ease); }
.passport .pp-top { display:flex; align-items:center; gap:8px; margin-bottom: 8px; }
.passport .pp-av { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--sage), var(--sage-deep)); flex:none; }
.passport .pp-av.g { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.passport .pp-name { font-size: 11.5px; font-weight: 700; line-height:1.1; }
.passport .pp-did { font-family:'IBM Plex Mono',monospace; font-size: 9px; color: var(--ink-mute); }
.passport .pp-rep { display:flex; align-items:center; justify-content:space-between; font-size: 10px; color: var(--ink-mute); font-family:'IBM Plex Mono',monospace; }
.passport .pp-rep .score { color: var(--sage-deep); font-weight:600; }
.passport .stars { color: var(--gold); letter-spacing:1px; font-size: 9px; }

/* ============================================================
   OPEN STANDARDS
   ============================================================ */
.standards { background: var(--ink); color: #fff; padding-block: clamp(56px, 8vh, 88px); }
.standards .lbl { text-align:center; font-family:'IBM Plex Mono',monospace; font-size: 12px; letter-spacing:.2em; text-transform:uppercase; color: rgba(255,255,255,.5); margin-bottom: 38px; }
.std-row { display:flex; flex-wrap:wrap; justify-content:center; gap: 14px; max-width: 880px; margin: 0 auto; }
.std {
  display:flex; align-items:center; gap: 11px; padding: 13px 22px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035);
  transition: all .4s var(--ease);
}
.std:hover { border-color: rgba(127,168,140,.5); background: rgba(127,168,140,.1); transform: translateY(-3px); }
.std .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.std .nm { font-weight: 700; font-size: 15px; letter-spacing:.02em; }
.std .desc { font-size: 12px; color: rgba(255,255,255,.5); }

/* ============================================================
   AUDIENCES
   ============================================================ */
.who { background: var(--bg); }
.who-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.aud {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 22px; padding: 34px 30px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative; overflow: hidden;
}
.aud:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.aud .aud-ico { width: 48px; height: 48px; color: var(--sage-ink); margin-bottom: 22px; }
.aud h3 { font-size: 1.3rem; margin-bottom: 12px; }
.aud p { color: var(--ink-mute); font-size: 15px; line-height: 1.55; }
.aud .corner { position:absolute; top:24px; right:26px; font-family:'IBM Plex Mono',monospace; font-size: 12px; color: var(--ink-faint); }

/* ============================================================
   CTA + FORM
   ============================================================ */
.cta { background: linear-gradient(180deg, var(--bg-warm), var(--sage-tint)); overflow:hidden; position: relative; }
.cta-inner { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items:center; }
.cta h2 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); max-width: 12ch; margin-bottom: 18px; }
.cta-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 420px; }
.form-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 26px; padding: 34px; box-shadow: var(--sh-lg); }
.field { margin-bottom: 16px; }
.field label { display:block; font-family:'IBM Plex Mono',monospace; font-size: 11.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.field input {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink); padding: 13px 16px;
  border: 1px solid var(--hairline); border-radius: 12px; background: var(--bg); transition: all .3s var(--ease);
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus { outline: none; border-color: var(--sage); background: #fff; box-shadow: 0 0 0 4px var(--sage-tint); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.reassure { font-size: 13px; color: var(--ink-mute); text-align:center; margin-top: 14px; }
.form-sent { text-align:center; padding: 30px 10px; display:none; }
.form-sent.show { display:block; }
.form-sent .check { width: 56px; height:56px; margin: 0 auto 18px; border-radius:50%; background: var(--sage-tint); display:flex; align-items:center; justify-content:center; }
.form-sent .check svg { width: 28px; height: 28px; color: var(--sage-ink); }
.form-sent h3 { margin-bottom: 8px; }
.form-sent p { color: var(--ink-mute); font-size: 14.5px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-warm); }
.faq-grid { display:grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px,6vw,80px); align-items:start; }
.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width:100%; text-align:left; background:none; border:0; cursor:pointer; font-family:inherit;
  display:flex; align-items:center; justify-content:space-between; gap: 20px; padding: 24px 4px;
  font-size: 1.12rem; font-weight: 600; color: var(--ink); letter-spacing:-.015em; }
.faq-q .pm { width: 22px; height: 22px; flex:none; position: relative; transition: transform .4s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content:''; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); background: var(--sage-deep); }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform .4s var(--ease); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow:hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; max-width: 60ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding-block: 56px; }
.footer-top { display:flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.footer .wordmark { color: #fff; }
.footer-tag { font-size: 14px; max-width: 280px; line-height: 1.5; margin-top: 16px; }
.footer-cols { display:flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family:'IBM Plex Mono',monospace; font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; font-weight:500; }
.footer-col a { display:block; font-size: 14px; color: rgba(255,255,255,.65); padding: 5px 0; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display:flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.45); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .planes { grid-template-columns: repeat(2, 1fr); }
  .plane:nth-child(n) { grid-column: span 1 !important; }
  .nouns-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-stage { height: 360px; order: -1; }
  .badge-wrap { width: 300px; height: 300px; }
  .problem-grid, .wedge-grid, .why-grid, .trust-grid, .cta-inner, .faq-grid { grid-template-columns: 1fr; }
  .hops-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hops-line { display: none; }
  .scene { height: 480px; }
  .dossier { position: relative; right: auto; top: auto; transform: translateY(20px); margin: -40px auto 0; }
  .dossier.in { transform: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section-pad { padding-block: 72px; }
  .planes { grid-template-columns: 1fr; }
  .who-grid, .nouns-grid { grid-template-columns: 1fr; }
  .hops-row { grid-template-columns: 1fr; }
  .std-row { gap: 10px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

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