/* ============================================================
   PROPEL — marketing site
   Palette derived from the propeller logo:
   petrol #002137 · teal #1289A7 (Reach) · green #4CAF50 (Execute) · amber #FBC02D (Prove)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --font: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --cream: #f5eddf;
  --cream-2: #efe5d2;
  --paper: #fffdf8;
  --ink: #002137;
  --ink-2: #41606f;
  --ink-3: #7d94a0;

  --teal: #1289a7;   --teal-d: #0e7287;
  --green: #3f9e54;  --green-br: #4caf50;
  --amber: #c9930c;  --amber-br: #fbc02d;

  --reach: var(--teal);
  --exec: var(--green);
  --prove: var(--amber);

  --line: rgba(0,33,55,.12);
  --line-2: rgba(0,33,55,.22);
  --shadow-sm: 0 1px 2px rgba(0,33,55,.05), 0 2px 6px rgba(0,33,55,.05);
  --shadow-md: 0 4px 10px rgba(0,33,55,.06), 0 14px 38px rgba(0,33,55,.10);
  --shadow-lg: 0 24px 70px rgba(0,33,55,.18);

  --r: 12px; --r-lg: 18px; --r-xl: 26px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background: var(--cream); line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-size: 17px;
}
::selection { background: color-mix(in srgb, var(--teal) 24%, transparent); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 26px; }

.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
.section { padding: 116px 0; position: relative; }
.section-sm { padding: 72px 0; }

h1, h2, h3 { margin: 0; letter-spacing: -.03em; line-height: 1.04; font-weight: 800; }
h2.h { font-size: clamp(30px, 4vw, 47px); }
h3.h { font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -.02em; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); line-height: 1.5; }
.dim { color: var(--ink-2); }

.tri-teal { color: var(--teal); }
.tri-green { color: var(--green); }
.tri-amber { color: var(--amber); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 48px; padding: 0 22px; border-radius: 11px;
  font-family: var(--font); font-size: 15.5px; font-weight: 700;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #06314c; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { background: var(--paper); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(0,33,55,.05); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 9px; }
.btn-lg { height: 54px; padding: 0 26px; font-size: 16.5px; }
.btn-on-dark { background: var(--cream); color: var(--ink); }
.btn-on-dark:hover { background: #fff; }
.btn-outline-dark { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.28); }
.btn-outline-dark:hover { border-color: var(--cream); background: rgba(255,255,255,.06); }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--teal-d); }
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink); color: var(--cream);
  font-size: 13.5px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  height: 42px; padding: 0 18px; text-align: center;
  white-space: nowrap; overflow: hidden;
}
.announce b { font-weight: 700; }
.announce .spots { font-family: var(--mono); font-size: 12px; background: rgba(255,255,255,.12); padding: 3px 8px; border-radius: 6px; }
.announce a { color: var(--amber-br); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 84%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--cream) 92%, transparent); }
.nav-in { display: flex; align-items: center; gap: 30px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark { width: 34px; height: 34px; }
.nav .brand .mark {
  transform-origin: 50% 50%;
  animation:
    brandIntro 1.7s cubic-bezier(.12,.66,.3,1) both,
    brandDrift 11s cubic-bezier(.37,.13,.63,.87) 1.7s infinite;
}
@keyframes brandIntro { from { transform: rotate(0deg); } to { transform: rotate(720deg); } }
@keyframes brandDrift { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .nav .brand .mark { animation: none; } }
.brand .wm { font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 14px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* hamburger (mobile) */
.nav-burger { display: none; width: 42px; height: 42px; padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile dropdown menu */
.nav-mobile { display: none; flex-direction: column; padding: 8px 18px 18px;
  border-top: 1px solid var(--line); background: color-mix(in srgb, var(--cream) 96%, transparent);
  backdrop-filter: blur(12px) saturate(1.2); }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 16.5px; font-weight: 650; color: var(--ink-2); padding: 13px 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent); }
.nav-mobile a:hover { color: var(--ink); }
.nav-mobile .nm-invite { margin-top: 14px; padding: 13px 18px; justify-content: center;
  color: #fff; border-bottom: 0; }

/* ---------- hero ---------- */
.hero { padding: 78px 0 56px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 880px; margin: 0 auto; justify-items: center; text-align: center; }
.hero h1 { font-size: clamp(40px, 6.6vw, 78px); line-height: .98; }
.hero h1 .v { display: inline; }
.hero-tri { color: var(--ink); }
.hero-tri .tri-teal, .hero-tri .tri-green, .hero-tri .tri-amber { font-weight: 800; }
.hero-sub { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); max-width: 660px; line-height: 1.45; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 13px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-3); font-weight: 500; }
.hero-trust svg { color: var(--green); }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); opacity: .5; }

/* product preview (browser frame) */
.preview { margin-top: 56px; position: relative; }
.browser {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.browser-bar { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 16px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--cream) 40%, var(--paper)); }
.tl { width: 11px; height: 11px; border-radius: 50%; }
.browser-url { margin: 0 auto; display: flex; align-items: center; gap: 8px; height: 27px; padding: 0 16px; background: var(--cream-2); border-radius: 8px; font-size: 12.5px; color: var(--ink-3); font-family: var(--mono); }
.browser-body { padding: 0; background: var(--cream); }

/* ---------- in-preview mini cockpit ---------- */
.pv { padding: 22px 24px 26px; }
.pv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.pv-title { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.pv-lens { margin-left: auto; display: inline-flex; gap: 3px; background: var(--cream-2); padding: 4px; border-radius: 10px; }
.pv-lens span { font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 7px; color: var(--ink-3); }
.pv-lens span.on { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.pv-layers { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.pv-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 14px; position: relative; overflow: hidden; }
.pv-card::before { content:''; position:absolute; inset:0 0 auto 0; height:3px; background: var(--c); }
.pv-card .k { font-size: 12px; font-weight: 700; color: var(--ink-2); display: flex; align-items: center; gap: 7px; }
.pv-card .k i { width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
.pv-card .big { font-family: var(--mono); font-weight: 600; font-size: 25px; margin: 9px 0 10px; letter-spacing: -.04em; }
.pv-row { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--ink-2); margin-top: 6px; }
.pv-row .bar { flex: 1; height: 5px; border-radius: 9px; background: var(--cream-2); overflow: hidden; }
.pv-row .bar i { display: block; height: 100%; background: var(--c); border-radius: 9px; }
.pv-row .n { font-family: var(--mono); font-weight: 600; }

/* ---------- works-with row ---------- */
.logos { padding: 40px 0 8px; }
.logos-label { text-align: center; font-size: 13px; color: var(--ink-3); font-weight: 600; margin-bottom: 22px; letter-spacing: .02em; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 46px; flex-wrap: wrap; opacity: .72; }
.logo-item { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; color: var(--ink-2); letter-spacing: -.01em; }
.logo-item svg { color: var(--ink-2); }

/* ---------- wedge ---------- */
.wedge { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wedge-quote { font-size: clamp(27px, 3.7vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; max-width: 940px; }
.wedge-quote .hl { color: var(--teal-d); }
.wedge-body { margin-top: 26px; max-width: 680px; font-size: 18px; color: var(--ink-2); line-height: 1.55; }
.wedge-body b { color: var(--ink); }

/* ---------- spine ---------- */
.spine-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.spine-head .lead { margin-top: 16px; }
.spine {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0;
  align-items: start; position: relative;
}
.spine-track { position: absolute; left: 7%; right: 7%; top: 27px; height: 3px; border-radius: 9px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 57%, var(--green) 57%, var(--green) 72%, var(--amber) 72%, var(--amber) 100%); z-index: 0; }
.spine-node { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; }
.spine-dot { width: 56px; height: 56px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--c); margin-bottom: 16px; }
.spine-node.goal .spine-dot { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: 0 0 0 5px color-mix(in srgb, var(--teal) 18%, transparent); }
.spine-num { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-bottom: 4px; }
.spine-name { font-size: 14px; font-weight: 700; letter-spacing: -.01em; }
.spine-zones { display: grid; grid-template-columns: 4fr 1fr 1fr; gap: 12px; margin-top: 44px; }
.zone { text-align: center; padding: 13px; border-radius: var(--r); font-size: 13px; font-weight: 700; border: 1px dashed; }
.zone-reach { color: var(--teal-d); border-color: color-mix(in srgb, var(--teal) 35%, transparent); background: color-mix(in srgb, var(--teal) 7%, transparent); }
.zone-exec { color: var(--green); border-color: color-mix(in srgb, var(--green) 35%, transparent); background: color-mix(in srgb, var(--green) 8%, transparent); }
.zone-prove { color: var(--amber); border-color: color-mix(in srgb, var(--amber) 42%, transparent); background: color-mix(in srgb, var(--amber) 10%, transparent); }

/* ---------- layers (reach/execute/prove) ---------- */
.layers { display: flex; flex-direction: column; gap: 18px; }
.layer {
  display: grid; grid-template-columns: 300px 1fr auto; gap: 30px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.layer::before { content:''; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--c); }
.layer-l .badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c); }
.layer-l h3 { font-size: 30px; margin: 14px 0 6px; }
.layer-l .verb { font-size: 16px; font-weight: 700; color: var(--c); }
.layer-mods { display: flex; flex-wrap: wrap; gap: 8px; }
.mod { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; border-radius: 9px; background: var(--cream); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; }
.mod svg { color: var(--c); }
.layer-out { text-align: right; min-width: 180px; }
.layer-out .ok { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.layer-out .ov { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-top: 8px; line-height: 1.15; }
.layer-out .oico { width: 46px; height: 46px; border-radius: 13px; background: var(--c); color: #fff; display: grid; place-items: center; margin: 0 0 14px auto; }

/* ---------- audiences ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aud { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.aud-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--cream); border: 1px solid var(--line); color: var(--ink); margin-bottom: 20px; }
.aud h3 { font-size: 22px; }
.aud .who { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.aud .punch { font-size: 16.5px; color: var(--ink-2); margin: 12px 0 20px; line-height: 1.5; }
.aud ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.aud li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); align-items: flex-start; }
.aud li svg { color: var(--green); flex: 0 0 auto; margin-top: 2px; }
.aud .foot { margin-top: auto; padding-top: 22px; }

/* ---------- assurance (dark) ---------- */
.dark { background: var(--ink); color: var(--cream); }
.dark .eyebrow { color: color-mix(in srgb, var(--amber-br) 80%, white); }
.dark .lead { color: rgba(245,237,223,.7); }
.assure-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: end; margin-bottom: 50px; }
.assure-top h2 { color: var(--cream); }
.assure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.acard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 24px; }
.acard .aico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: var(--amber-br); margin-bottom: 18px; }
.acard h3 { font-size: 18px; color: var(--cream); }
.acard p { font-size: 14px; color: rgba(245,237,223,.62); margin: 9px 0 0; line-height: 1.5; }
.assure-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 44px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.12); }
.astat .num { font-family: var(--mono); font-size: 34px; font-weight: 600; letter-spacing: -.03em; }
.astat .lbl { font-size: 13.5px; color: rgba(245,237,223,.6); margin-top: 4px; }
.illus { font-size: 12px; color: rgba(245,237,223,.4); margin-top: 28px; font-style: italic; }

/* ---------- see it work ---------- */
.see-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.see-feats { display: flex; flex-direction: column; gap: 22px; margin: 28px 0 30px; }
.see-feat { display: flex; gap: 14px; }
.see-feat .fico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--cream-2); color: var(--teal-d); flex: 0 0 auto; }
.see-feat h4 { margin: 0 0 3px; font-size: 16px; font-weight: 700; }
.see-feat p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* ---------- pricing ---------- */
.price-head { text-align: center; max-width: 700px; margin: 0 auto 18px; }
.founding {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 auto 44px;
  padding: 9px 16px; border-radius: 999px; background: color-mix(in srgb, var(--amber) 14%, var(--cream));
  border: 1px solid color-mix(in srgb, var(--amber) 38%, transparent); font-size: 13.5px; font-weight: 600; color: var(--amber);
  width: max-content;
}
.founding .spots { font-family: var(--mono); font-weight: 600; color: var(--ink); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm); }
.plan.feature { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow-md); }
.plan-tag { position: absolute; top: -11px; left: 24px; background: var(--teal); color: #fff; font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 7px; letter-spacing: .02em; }
.plan .pname { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.plan .ppurpose { font-size: 13px; color: var(--ink-3); margin-top: 5px; min-height: 34px; }
.plan .player { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; margin-top: 4px; }
.plan .price { margin: 20px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.plan .price .cur { font-size: 22px; font-weight: 700; }
.plan .price .amt { font-family: var(--mono); font-size: 40px; font-weight: 600; letter-spacing: -.04em; }
.plan .price .per { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.plan .later { font-size: 12.5px; color: var(--ink-3); min-height: 20px; }
.plan .later s { color: var(--ink-3); }
.plan .later b { color: var(--amber); font-weight: 700; }
.plan .pcta { margin: 22px 0 20px; }
.plan .pcta .btn { width: 100%; justify-content: center; }
.plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-2); align-items: flex-start; }
.plan li svg { color: var(--green); flex: 0 0 auto; margin-top: 2px; }
.byok { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 1px 5px; border-radius: 4px; background: var(--cream-2); color: var(--ink-2); margin-left: 4px; }

/* ---------- final cta ---------- */
.finalcta { text-align: center; }
.finalcta h2 { font-size: clamp(32px, 4.6vw, 56px); }
.finalcta h2 .v { display: inline; }
.finalcta .lead { margin: 20px auto 32px; max-width: 560px; }
.finalcta .row { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; }
.footer .brand .wm { color: var(--cream); }
.footer-blurb { font-size: 14px; color: rgba(245,237,223,.6); margin: 18px 0 18px; max-width: 280px; line-height: 1.55; }
.footer-found { font-family: var(--mono); font-size: 12px; color: var(--amber-br); display: inline-flex; align-items: center; gap: 8px; }
.fcol h5 { margin: 0 0 16px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,237,223,.45); }
.fcol a { display: block; font-size: 14.5px; color: rgba(245,237,223,.78); margin-bottom: 12px; }
.fcol a:hover { color: var(--cream); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13.5px; color: rgba(245,237,223,.55); }
.footer-bot .right { display: flex; gap: 22px; }

/* ---------- entrance (safe: never fully hidden, reduced-motion aware) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise .6s cubic-bezier(.2,.7,.3,1) both; }
  .rise-2 { animation: rise .6s cubic-bezier(.2,.7,.3,1) .08s both; }
  .rise-3 { animation: rise .6s cubic-bezier(.2,.7,.3,1) .16s both; }
}
@keyframes rise { from { opacity: .25; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- invite-only ---------- */
.announce.invite { gap: 12px; }
.announce.invite .pill-live { display: inline-flex; align-items: center; gap: 7px; }
.announce.invite .pill-live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-br); box-shadow: 0 0 0 3px color-mix(in srgb, var(--amber-br) 30%, transparent); }

.invite-badge {
  display: inline-flex; align-items: center; gap: 9px; width: max-content;
  height: 34px; padding: 0 14px 0 11px; border-radius: 999px;
  background: color-mix(in srgb, var(--amber) 12%, var(--cream));
  border: 1px solid color-mix(in srgb, var(--amber) 40%, transparent);
  font-size: 13px; font-weight: 700; color: var(--amber); letter-spacing: .01em; white-space: nowrap;
}
.invite-badge .lock { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: var(--amber-br); display: grid; place-items: center; }
.invite-badge .spots { font-family: var(--mono); font-weight: 600; color: var(--ink-2); }

.invite-form { display: flex; flex-direction: column; gap: 12px; max-width: 520px; }
.invite-input-row {
  display: flex; gap: 10px; background: var(--paper);
  border: 1.5px solid var(--line-2); border-radius: 13px; padding: 7px 7px 7px 8px;
  box-shadow: var(--shadow-sm); transition: border-color .15s ease, box-shadow .15s ease;
}
.invite-input-row:focus-within { border-color: var(--teal); box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal) 14%, transparent); }
.invite-input-row input {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font-family: var(--font); font-size: 16px; color: var(--ink); padding: 0 8px;
}
.invite-input-row input::placeholder { color: var(--ink-3); }
.invite-input-row .btn { flex: 0 0 auto; }
.invite-meta { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-3); font-weight: 500; flex-wrap: wrap; }
.invite-meta svg { color: var(--green); }
.invite-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); opacity: .5; }
.invite-meta a { color: var(--teal-d); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.invite-success { display: none; align-items: center; gap: 11px; padding: 14px 16px; border-radius: 13px;
  background: color-mix(in srgb, var(--green) 11%, var(--paper)); border: 1px solid color-mix(in srgb, var(--green) 34%, transparent);
  font-size: 15px; font-weight: 600; color: var(--ink); }
.invite-success.show { display: flex; }
.invite-success .ic { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }

/* how-invite steps */
.gate { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.gate-step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); position: relative; }
.gate-step .gn { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--teal-d); }
.gate-step .gico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--cream); border: 1px solid var(--line); color: var(--ink); margin: 14px 0 16px; }
.gate-step h3 { font-size: 18px; }
.gate-step p { font-size: 14.5px; color: var(--ink-2); margin: 8px 0 0; line-height: 1.5; }
.gate-arrow { display: none; }

@media (max-width: 720px) {
  .gate { grid-template-columns: 1fr; }
  .invite-input-row { flex-direction: column; }
  .invite-input-row .btn { width: 100%; justify-content: center; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .layer { grid-template-columns: 1fr; gap: 22px; }
  .layer-out { text-align: left; } .layer-out .oico { margin-left: 0; }
  .see-grid { grid-template-columns: 1fr; gap: 36px; }
  .assure-top { grid-template-columns: 1fr; gap: 24px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .announce { font-size: 12px; gap: 10px; padding: 0 14px; }
  .announce.invite .announce-tail { display: none; }
  .announce.invite { justify-content: center; }
}
@media (max-width: 720px) {
  .announce .spots { display: none; }
  .section { padding: 80px 0; }
  .aud-grid, .assure-grid, .spine-zones { grid-template-columns: 1fr; }
  .spine { grid-template-columns: repeat(2, 1fr); gap: 22px; row-gap: 26px; }
  .spine-track { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .pv-layers { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   SYSTEM-OF-RECORD VARIANT — additive classes only
   ============================================================ */

/* hero category line (lead sentence of the subhead) */
.hero-sub .hero-cat {
  display: block; color: var(--ink); font-weight: 800;
  font-size: clamp(21px, 2.2vw, 27px); letter-spacing: -.02em;
  line-height: 1.18; margin-bottom: 13px;
}

/* ---------- "Why now" — before/after AI ---------- */
.shift-sec { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shift { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; }
.shift-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.shift-card.before { background: transparent; border-style: dashed; box-shadow: none; }
.shift-card.after { border-color: color-mix(in srgb, var(--teal) 38%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--teal) 20%, transparent), var(--shadow-md); }
.shift-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; padding: 5px 11px; border-radius: 7px; margin-bottom: 18px; }
.shift-card.before .shift-tag { background: rgba(0,33,55,.06); color: var(--ink-3); }
.shift-card.after .shift-tag { background: color-mix(in srgb, var(--teal) 14%, transparent); color: var(--teal-d); }
.shift-card h3 { font-size: 22px; letter-spacing: -.02em; }
.shift-card p { font-size: 15.5px; color: var(--ink-2); margin: 11px 0 0; line-height: 1.55; }
.shift-arrow { align-self: center; color: var(--ink-3); }
.shift-foot { display: flex; gap: 15px; align-items: flex-start; margin-top: 22px; padding: 22px 26px; background: var(--ink); color: var(--cream); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.shift-foot .sf-ico { flex: 0 0 auto; color: var(--amber-br); margin-top: 1px; }
.shift-foot span { font-size: 16px; line-height: 1.55; color: rgba(245,237,223,.82); }
.shift-foot b { color: #fff; }

/* ---------- pricing maturity stage ---------- */
.pstage { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 11px; }
.plan.feature .pstage { color: var(--teal-d); }
.plan-journey { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 auto 40px; width: max-content; max-width: 100%; flex-wrap: wrap; font-size: 13.5px; font-weight: 600; color: var(--ink-3); }
.plan-journey b { color: var(--ink); font-weight: 700; }
.plan-journey svg { color: var(--teal); }

/* ---------- stakeholder trust strip (dark) ---------- */
.trust-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; margin-bottom: 44px; }
.trust-line .tl-label { font-size: 13px; color: rgba(245,237,223,.55); font-weight: 600; }
.trust-pill { display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); font-size: 13.5px; font-weight: 700; color: var(--cream); }
.trust-pill svg { color: var(--amber-br); }

/* ---------- cost / waste callout (dark) ---------- */
.cost-note { display: flex; gap: 18px; align-items: flex-start; margin-top: 28px; padding: 24px 26px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, color-mix(in srgb, var(--amber-br) 12%, transparent), rgba(255,255,255,.02));
  border: 1px solid color-mix(in srgb, var(--amber-br) 28%, transparent); }
.cost-note .cico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--amber-br) 18%, transparent); color: var(--amber-br); flex: 0 0 auto; }
.cost-note h3 { font-size: 19px; color: var(--cream); letter-spacing: -.01em; }
.cost-note p { font-size: 15px; color: rgba(245,237,223,.72); margin: 7px 0 0; line-height: 1.55; max-width: 720px; }
.cost-note p b { color: var(--cream); }

@media (max-width: 820px) {
  .shift { grid-template-columns: 1fr; }
  .shift-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ---------- horizontal rail (idea → agreement → two build paths → proof) ---------- */
.rail-wrap { width: 100%; overflow: hidden; padding: 30px 8px 8px; }
.rail { position: relative; width: 978px; height: 470px; margin: 0 auto; transform-origin: top center; }
.rail-svg { position: absolute; left: 0; top: 0; width: 978px; height: 412px; overflow: visible; }
.rl-node { position: absolute; transform: translate(-50%, -50%); z-index: 2; width: 108px; }
.rl-dot {
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  border: 2.5px solid var(--c); color: var(--c);
  display: grid; place-items: center; margin: 0 auto;
  box-shadow: 0 2px 0 color-mix(in srgb, var(--c) 22%, transparent);
  transition: transform .18s ease, box-shadow .18s ease;
}
.rl-node:hover .rl-dot { transform: translateY(-3px); box-shadow: 0 10px 24px color-mix(in srgb, var(--c) 30%, transparent); }
.rl-lab { position: absolute; top: 62px; left: 50%; transform: translateX(-50%); width: 126px; text-align: center; display: flex; flex-direction: column; gap: 3px; }
.rl-node.up .rl-lab { top: auto; bottom: 62px; }
.rl-num { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--c); letter-spacing: .05em; }
.rl-name { font-size: 13.5px; font-weight: 650; color: var(--ink); line-height: 1.18; }
.rl-tip {
  position: absolute; left: 50%; bottom: 46px; transform: translateX(-50%) translateY(4px);
  width: 176px; padding: 9px 12px; border-radius: 10px;
  background: var(--ink); color: #fff; font-size: 11.5px; line-height: 1.42; font-weight: 450;
  text-align: center; opacity: 0; pointer-events: none; transition: opacity .14s ease, transform .14s ease; z-index: 30;
  box-shadow: 0 10px 28px rgba(0,33,55,.28); text-wrap: pretty;
}
.rl-tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--ink); }
.rl-node.up .rl-tip { bottom: auto; top: 46px; transform: translateX(-50%) translateY(-4px); }
.rl-node.up .rl-tip::after { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: var(--ink); }
.rl-node:hover .rl-tip, .rl-node:focus-visible .rl-tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.rl-node:hover, .rl-node:focus-visible { z-index: 25; }
.rl-prop { position: absolute; left: 489px; top: 374px; width: 76px; height: 76px; transform: translate(-50%,-50%); z-index: 4; display: grid; place-items: center; }
.rl-prop::before { content: ""; position: absolute; inset: -10px; background: var(--cream); border-radius: 50%; }
.rl-prop-spin { position: relative; width: 76px; height: 76px; display: block; will-change: transform; }
.rl-prop-spin svg { width: 100%; height: 100%; display: block; }
.rl-cap { position: absolute; left: 489px; top: 414px; transform: translateX(-50%); font-family: var(--mono); font-size: 10.5px; letter-spacing: .03em; color: var(--ink-3); white-space: nowrap; text-align: center; }
.rl-cap-t { display: block; font-family: var(--sans, inherit); font-size: 13px; font-weight: 700; letter-spacing: -.01em; color: var(--green); margin-bottom: 1px; }
.vloop-t { display: block; font-family: var(--sans, inherit); font-size: 13.5px; font-weight: 700; color: var(--green); letter-spacing: -.01em; margin-bottom: 1px; }

/* ---- vertical stepper (mobile fallback for the rail) ---- */
.vstep { display: none; }
@media (max-width: 720px) {
  .rail-wrap { display: none; }
  .vstep { display: block; max-width: 460px; margin: 8px auto 0; }
}
.vrow { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; position: relative; padding-bottom: 22px; }
.vrow::before { content: ""; position: absolute; left: 23px; top: 8px; width: 2px; height: 100%; background: color-mix(in srgb, var(--c) 38%, transparent); }
.vmark, .vlane-step .vdot { position: relative; z-index: 1; }
.vdot { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 2.5px solid var(--c); color: var(--c); display: grid; place-items: center; box-shadow: 0 2px 0 color-mix(in srgb, var(--c) 20%, transparent); }
.vdot.sm { width: 40px; height: 40px; flex: 0 0 40px; box-shadow: none; }
.vbody { padding-top: 3px; }
.vhead { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.vnum { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--c); letter-spacing: .05em; }
.vname { font-size: 16px; font-weight: 650; color: var(--ink); line-height: 1.15; }
.vdesc { margin: 4px 0 0; font-size: 13px; line-height: 1.45; color: var(--ink-2); text-wrap: pretty; }
.vconn { width: 2px; height: 22px; margin: -8px 0 6px 23px; background: color-mix(in srgb, var(--green) 45%, transparent); }
.vfork { border: 1.5px solid color-mix(in srgb, var(--green) 32%, transparent); border-radius: 16px; padding: 14px 14px 16px; background: color-mix(in srgb, var(--green) 5%, transparent); margin-bottom: 6px; }
.vfork-tag { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--green); text-align: center; margin-bottom: 12px; }
.vfork-grid { display: grid; grid-template-columns: 1fr; gap: 4px; }
.vlane { border: 1px solid color-mix(in srgb, var(--green) 22%, transparent); border-radius: 12px; padding: 12px; background: #fff; }
.vlane-step { display: flex; gap: 12px; align-items: flex-start; }
.vlane-arrow { color: color-mix(in srgb, var(--green) 70%, var(--ink)); margin: 4px 0 4px 11px; }
.vor { display: flex; align-items: center; gap: 10px; margin: 4px 2px; color: var(--ink-3); }
.vor::before, .vor::after { content: ""; height: 1px; flex: 1; background: color-mix(in srgb, var(--green) 26%, transparent); }
.vor span { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.vloop { display: flex; align-items: center; gap: 12px; margin: 6px 0 0; padding: 12px 14px; border-radius: 12px; background: color-mix(in srgb, var(--amber) 9%, transparent); }
.vloop-spin { width: 34px; height: 34px; flex: 0 0 34px; display: block; will-change: transform; }
.vloop-spin svg { width: 100%; height: 100%; display: block; }
.vloop-txt { font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--ink-2); }
.rl-fork-tag {
  position: absolute; transform: translateX(-50%); z-index: 3;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; line-height: 1.3;
  color: var(--green); text-align: center; letter-spacing: .02em;
}

/* ---------- cycle diagram (How it works as a loop) ---------- */
.cycle-wrap { display: flex; flex-direction: column; align-items: center; }
.cycle { position: relative; width: 600px; max-width: 100%; aspect-ratio: 1 / 1; margin: 6px auto 0; }
.cycle .ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cyc-node { position: absolute; transform: translate(-50%, -50%); z-index: 2; }
.cyc-dot {
  width: 60px; height: 60px; border-radius: 17px; background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--c);
}
.cyc-node.goal .cyc-dot { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: 0 0 0 6px color-mix(in srgb, var(--teal) 16%, transparent), var(--shadow-md); }
.cyc-label { position: absolute; top: 68px; left: 50%; transform: translateX(-50%); width: 130px; text-align: center; }
.cyc-sub { font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--ink-3); margin-top: 3px; line-height: 1.2; letter-spacing: .01em; }
.cyc-node.bld .cyc-label { width: 148px; }
.cyc-node.bld .cyc-name { color: var(--green); }
.cyc-node.ext .cyc-label { left: 50%; width: 150px; }
.cyc-fork { opacity: .92; }
.cyc-num { font-family: var(--mono); font-size: 10.5px; font-weight: 600; color: var(--ink-3); }
.cyc-name { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; line-height: 1.15; }
/* nodes whose labels read better above the dot (bottom of the ring) */
.cyc-node.lbl-up .cyc-label { top: auto; bottom: 68px; }
.cyc-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 210px; text-align: center; z-index: 1; }
.cyc-center .ci { width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 13px; background: var(--cream-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--teal-d); }
.cyc-center h4 { font-size: 17px; letter-spacing: -.02em; }
.cyc-verbs { display: inline-flex; gap: 7px; margin-top: 9px; font-size: 13px; font-weight: 800; letter-spacing: -.01em; }
.cyc-center p { font-size: 12.5px; color: var(--ink-3); margin: 11px 0 0; line-height: 1.45; }
.cyc-evo {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px; background: var(--cream);
  border: 1.5px dashed color-mix(in srgb, var(--amber) 55%, transparent); color: var(--amber);
  font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.cycle-legend { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.cyc-leg { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.cyc-leg .sw { width: 22px; height: 5px; border-radius: 9px; }
.cyc-leg .sw.dash { background: transparent; border-top: 2.5px dashed var(--amber); border-radius: 0; }
@media (max-width: 560px) {
  .cyc-name { font-size: 11.5px; }
  .cyc-dot { width: 50px; height: 50px; border-radius: 14px; }
  .cyc-label { top: 56px; width: 96px; }
  .cyc-node.lbl-up .cyc-label { bottom: 56px; }
  .cyc-center { width: 150px; }
  .cyc-center .ci { width: 40px; height: 40px; }
}

/* ============================================================
   SoR v2 — outcome strip + feature rows + concrete mockups
   ============================================================ */
.outcome-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.outcome { display: flex; align-items: center; gap: 15px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.outcome::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--c); }
.outcome .oi { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 14%, transparent); color: var(--c); flex: 0 0 auto; }
.outcome .on { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.outcome .oo { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

.feature-rows { display: flex; flex-direction: column; gap: 20px; }
.frow { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow-sm); }
.frow.flip .frow-copy { order: 2; }
.frow.flip .frow-mock { order: 1; }
.frow-kicker { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--c, var(--teal-d)); }
.frow h3 { font-size: clamp(23px, 2.5vw, 31px); letter-spacing: -.025em; margin: 13px 0 11px; line-height: 1.12; }
.frow .fdesc { font-size: 16px; color: var(--ink-2); line-height: 1.55; margin: 0 0 20px; }
.flinks { display: flex; flex-direction: column; }
.flink {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 12px; border-top: 1px solid var(--line);
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  width: 100%; text-align: left; font-family: inherit;
  background: none; border-left: 2px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.flink:last-child { border-bottom: 1px solid var(--line); }
.flink .fl-ico { color: var(--ink-3); flex: 0 0 auto; transition: color .18s ease; }
.flink:hover { color: var(--ink); }
.flink:hover .fl-ico { color: var(--c, var(--teal-d)); }
.flink.is-active {
  color: var(--ink);
  background: color-mix(in srgb, var(--c, var(--teal-d)) 8%, transparent);
  border-left-color: var(--c, var(--teal-d));
}
.flink.is-active .fl-ico { color: var(--c, var(--teal-d)); }
.flink:focus-visible { outline: 2px solid var(--c, var(--teal-d)); outline-offset: -2px; }
.frow-mock { min-width: 0; }
.stage {
  position: relative; width: 100%;
  aspect-ratio: var(--stage-ar, 16 / 10);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--c, var(--teal)) 9%, var(--cream)), var(--cream));
}
.stage > image-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.stage > image-slot.is-active { opacity: 1; pointer-events: auto; }

.mk { background: linear-gradient(180deg, color-mix(in srgb, var(--c, var(--teal)) 8%, var(--cream)), var(--cream)); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mk-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; box-shadow: var(--shadow-sm); }
.mk-h { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; letter-spacing: -.01em; }
.mk-h svg { color: var(--c, var(--teal-d)); flex: 0 0 auto; }
.mk-tag { margin-left: auto; font-family: var(--mono); font-size: 9.5px; font-weight: 600; padding: 3px 8px; border-radius: 6px; white-space: nowrap; }
.mk-ok { background: color-mix(in srgb, var(--green) 14%, transparent); color: var(--green); }
.mk-warn { background: color-mix(in srgb, var(--amber) 18%, transparent); color: var(--amber); }
.mk-body { margin-top: 9px; }
.mk-kv { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 12.5px; color: var(--ink-2); padding: 7px 0; border-top: 1px dashed var(--line); }
.mk-kv b { font-family: var(--mono); font-size: 11.5px; color: var(--ink); font-weight: 600; text-align: right; }
.mk-chain { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.mk-chip { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px; border-radius: 8px; background: var(--cream-2); border: 1px solid var(--line); font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.mk-chip.ok { background: color-mix(in srgb, var(--green) 12%, transparent); border-color: color-mix(in srgb, var(--green) 30%, transparent); color: var(--green); }
.mk-arr { color: var(--ink-3); flex: 0 0 auto; }
.mk-person { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--ink-2); }
.mk-card .mk-person:first-of-type { margin-top: 9px; }
.mk-person .mk-ava { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 10px; font-weight: 700; color: #fff; flex: 0 0 auto; }
.mk-person b { color: var(--ink); font-weight: 700; }
.mk-person .st { margin-left: auto; font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 6px; white-space: nowrap; }
.mk-bens { display: flex; gap: 10px; }
.mk-ben { flex: 1; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 11px; padding: 12px 8px; }
.mk-ben b { display: block; font-size: 13.5px; letter-spacing: -.01em; }
.mk-ben span { font-size: 11px; color: var(--ink-3); line-height: 1.3; display: block; margin-top: 3px; }

@media (max-width: 1000px) {
  .frow { grid-template-columns: 1fr; gap: 28px; padding: 30px; }
  .frow.flip .frow-copy { order: 1; }
  .frow.flip .frow-mock { order: 2; }
  .outcome-strip { grid-template-columns: 1fr; }
  .mk-bens { flex-direction: column; }
}

/* ============================================================
   SoR v2 — hero feature gallery (auto-advance + thumbs)
   ============================================================ */
.hgal { display:flex; flex-direction:column; }
.hgal-stage { position:relative; min-height:312px; background:var(--cream); }
.hgal-panel { display:none; }
.hgal-panel.is-active { display:flex; flex-direction:column; gap:11px; padding:18px 20px; animation:hgalFade .38s ease; }
@keyframes hgalFade { from{opacity:.25; transform:translateY(7px);} to{opacity:1; transform:none;} }
.hgal-cap { display:flex; align-items:center; gap:8px; font-family:var(--mono); font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-3); }
.hgal-cap .cd { width:8px; height:8px; border-radius:50%; background:var(--c); }
.hgal-thumbs { display:grid; grid-template-columns:repeat(6,1fr); border-top:1px solid var(--line); background:color-mix(in srgb, var(--cream) 55%, var(--paper)); }
.hgal-thumb { position:relative; display:flex; flex-direction:column; align-items:center; gap:6px; padding:11px 4px 13px; border:0; border-right:1px solid var(--line); background:transparent; cursor:pointer; font-family:var(--font); font-size:10.5px; font-weight:700; letter-spacing:-.01em; color:var(--ink-3); overflow:hidden; transition:background .15s ease, color .15s ease; }
.hgal-thumb:last-child { border-right:0; }
.hgal-thumb .tico { color:var(--ink-3); transition:color .15s ease; }
.hgal-thumb:hover { background:color-mix(in srgb, var(--c) 8%, transparent); color:var(--ink); }
.hgal-thumb:hover .tico { color:var(--c); }
.hgal-thumb.is-active { background:var(--paper); color:var(--ink); }
.hgal-thumb.is-active .tico { color:var(--c); }
.hgal-thumb .prog { position:absolute; left:0; bottom:0; height:3px; width:0; background:var(--c); }
@keyframes hgalProg { from{width:0;} to{width:100%;} }
@media (max-width:560px){
  .hgal-thumbs { grid-template-columns:repeat(3,1fr); }
  .hgal-thumb { font-size:10px; }
  .hgal-thumb:nth-child(-n+3){ border-bottom:1px solid var(--line); }
  .hgal-stage { min-height:340px; }
}

/* ---- SoR v2 — gallery as two-column outcome showcase ---- */
.preview .hgal { display:grid; grid-template-columns:0.92fr 1.08fr; gap:26px; align-items:center; }
.hgal-menu { display:flex; flex-direction:column; gap:6px; }
.hgal-item { display:block; position:relative; width:100%; text-align:left; border:0; background:transparent; cursor:pointer; font-family:var(--font); padding:14px 16px 14px 18px; border-radius:13px; overflow:hidden; transition:background .2s ease; }
.hgal-item::before { content:''; position:absolute; left:0; top:9px; bottom:9px; width:3px; border-radius:0 3px 3px 0; background:transparent; transition:background .2s ease; }
.hgal-item:hover { background:color-mix(in srgb, var(--c) 7%, transparent); }
.hgal-item.is-active { background:var(--paper); box-shadow:var(--shadow-sm); }
.hgal-item.is-active::before { background:var(--c); }
.hgal-item-h { display:flex; align-items:center; gap:11px; font-size:16px; font-weight:700; letter-spacing:-.01em; color:var(--ink); }
.hgal-item-h .mi { color:var(--ink-3); flex:0 0 auto; transition:color .2s ease; }
.hgal-item:hover .hgal-item-h .mi, .hgal-item.is-active .hgal-item-h .mi { color:var(--c); }
.hgal-sentence { display:none; font-size:13.5px; color:var(--ink-2); line-height:1.5; margin:8px 0 2px 31px; }
.hgal-item.is-active .hgal-sentence { display:block; animation:hgalFade .35s ease; }
.hgal-prog { display:none; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--c); }
.hgal-item.is-active .hgal-prog { display:block; }
@media (max-width:900px){ .preview .hgal { grid-template-columns:1fr; } }

/* ---- SoR v2 — interactive cycle (hover/tap a node, center reveals) ---- */
.cyc-node { cursor:pointer; outline:none; }
.cyc-node .cyc-dot { transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.cyc-node:hover .cyc-dot, .cyc-node:focus-visible .cyc-dot, .cyc-node.is-active .cyc-dot { transform:scale(1.13); border-color:var(--c); box-shadow:0 0 0 5px color-mix(in srgb, var(--c) 18%, transparent), var(--shadow-md); }
.cyc-node.goal:hover .cyc-dot, .cyc-node.goal.is-active .cyc-dot { box-shadow:0 0 0 7px color-mix(in srgb, var(--teal) 20%, transparent), var(--shadow-md); }
.cyc-node:hover .cyc-name, .cyc-node:focus-visible .cyc-name, .cyc-node.is-active .cyc-name { color:var(--c); }
.cycle.is-dim .cyc-node:not(.is-active) { opacity:.45; }
.cycle.is-dim .cyc-evo { opacity:.3; }
.cyc-node, .cycle .cyc-evo { transition:opacity .2s ease; }
.cyc-fade { animation:cycFade .18s ease; }
@keyframes cycFade { from { opacity:0; } to { opacity:1; } }
.cyc-center .cstep { display:inline-flex; align-items:center; gap:7px; font-family:var(--mono); font-size:10.5px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--c); margin-bottom:9px; }
.cyc-center .cstep .cdot { width:7px; height:7px; border-radius:50%; background:var(--c); }
.cyc-center .cdetail { font-size:13px; color:var(--ink-2); line-height:1.5; margin:9px 0 0; }

/* ---- SoR v2 — propeller-center cycle (logo spins; hover spins up, side readout) ---- */
.cyc-stage { display:flex; align-items:center; justify-content:center; gap:24px; }
.cyc-stage .cycle { flex:0 0 auto; width:450px; max-width:52vw; margin:0 0 0 80px; }
.cyc-readout { flex:0 1 260px; min-height:150px; }
.cyc-readout h4 { font-size:22px; letter-spacing:-.02em; margin:0; }
.cyc-readout .cyc-verbs { display:inline-flex; gap:8px; margin-top:12px; font-size:15px; font-weight:800; }
.cyc-readout > p { font-size:14.5px; color:var(--ink-2); line-height:1.55; margin:13px 0 0; }
.cyc-readout .cstep { display:inline-flex; align-items:center; gap:7px; font-family:var(--mono); font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--c); margin-bottom:11px; }
.cyc-readout .cstep .cdot { width:7px; height:7px; border-radius:50%; background:var(--c); }
.cyc-readout .cdetail { font-size:14.5px; color:var(--ink-2); line-height:1.55; margin:11px 0 0; }
.cyc-propeller { width:104px; height:104px; margin:0 auto; will-change:transform; }
.cyc-propeller svg { width:100%; height:100%; display:block; }
@media (max-width:900px){
  .cyc-stage { flex-direction:column; gap:26px; }
  .cyc-stage .cycle { width:min(440px,86vw); max-width:none; margin:0 auto; }
  .cyc-node.ext { left:0.5% !important; }
  .cyc-readout { flex:0 0 auto; max-width:480px; text-align:center; }
  .cyc-readout .cyc-verbs { justify-content:center; }
}

/* ---- SoR v2 — request-an-invite modal ---- */
.modal-overlay { position:fixed; inset:0; z-index:200; display:grid; place-items:center; padding:24px; background:color-mix(in srgb, var(--ink) 58%, transparent); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); animation:modalFade .2s ease; }
.modal-overlay[hidden] { display:none; }
.modal { position:relative; width:100%; max-width:460px; background:var(--paper); border:1px solid var(--line); border-radius:var(--r-xl); box-shadow:var(--shadow-lg); padding:34px 32px 28px; animation:modalPop .24s cubic-bezier(.2,.7,.3,1); }
@keyframes modalFade { from{opacity:0;} to{opacity:1;} }
@keyframes modalPop { from{opacity:0; transform:translateY(12px) scale(.98);} to{opacity:1; transform:none;} }
@media (prefers-reduced-motion: reduce){ .modal-overlay,.modal{ animation:none; } }
.modal-close { position:absolute; top:14px; right:14px; width:34px; height:34px; border-radius:9px; border:0; background:transparent; color:var(--ink-3); cursor:pointer; display:grid; place-items:center; }
.modal-close:hover { background:var(--cream-2); color:var(--ink); }
.modal-badge { display:inline-flex; align-items:center; gap:8px; height:30px; padding:0 13px 0 10px; border-radius:999px; background:color-mix(in srgb, var(--amber) 12%, var(--cream)); border:1px solid color-mix(in srgb, var(--amber) 38%, transparent); font-size:12.5px; font-weight:700; color:var(--amber); margin-bottom:18px; }
.modal-badge svg { color:var(--amber); }
.modal-badge .spots { font-family:var(--mono); font-weight:600; color:var(--ink-2); }
.modal h3 { font-size:24px; letter-spacing:-.02em; margin:0 0 8px; }
.modal-sub { font-size:14.5px; color:var(--ink-2); line-height:1.5; margin:0 0 20px; }
.modal .invite-input-row { margin-bottom:13px; }
.modal .invite-meta { margin-top:0; }


/* ============================================================
   SoR v2 — platform grid (product cards) + two-block logos
   ============================================================ */
.plat-sec { padding: 104px 0; }
.plat-head { max-width: 760px; margin: 0 0 46px; }
.plat-head .lead { margin-top: 16px; }
.plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plat-bands { display: flex; flex-direction: column; gap: 36px; }
.plat-band { display: grid; grid-template-columns: 212px 1fr; gap: 30px; align-items: start; }
.plat-band + .plat-band { padding-top: 36px; border-top: 1px solid var(--line); }
.band-head { position: sticky; top: 90px; padding-top: 4px; }
.band-ph { display: inline-flex; align-items: center; gap: 11px; font-size: 23px; font-weight: 800; letter-spacing: -.025em; color: var(--c); }
.band-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--c); }
.band-desc { margin: 12px 0 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.46; max-width: 25ch; }
.band-num { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-top: 15px; }
.band-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 1000px) {
  .plat-band { grid-template-columns: 1fr; gap: 20px; }
  .band-head { position: static; }
  .band-desc { max-width: none; }
}
@media (max-width: 680px) { .band-cards { grid-template-columns: 1fr; } }
.plat-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 28px 28px 24px; box-shadow: var(--shadow-sm); color: var(--ink);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.plat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--c) 42%, var(--line)); }
.pc-kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c); }
.pc-kicker svg { color: var(--c); }
.plat-card h3 { font-size: clamp(22px, 2.2vw, 26px); letter-spacing: -.025em; margin: 13px 0 0; }
.pc-sub { font-size: 15.5px; color: var(--ink-2); line-height: 1.45; margin: 9px 0 0; max-width: 31ch; }
.pc-mock { margin-top: auto; padding-top: 26px; }
.pc-foot { margin-top: 16px; display: flex; align-items: center; }
.pc-arrow { margin-left: auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-3); background: transparent; transition: color .16s ease, background .16s ease, transform .16s ease; }
.plat-card:hover .pc-arrow { color: var(--ink); background: var(--paper); transform: translateX(2px); }
@media (max-width: 1000px) { .plat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .plat-grid { grid-template-columns: 1fr; } }

/* two-block works-with */
.logos-pair { display: grid; grid-template-columns: 1fr 1px 1fr; align-items: stretch; max-width: 1000px; margin: 0 auto; }
.logos-block { padding: 4px 30px; display: flex; flex-direction: column; align-items: center; }
.logos-block .logos-label { margin-bottom: 18px; }
.logos-block .logos-row { gap: 26px; flex-wrap: nowrap; }
.logos-block .logo-item { font-size: 15px; white-space: nowrap; }
@media (max-width: 920px) { .logos-block .logos-row { flex-wrap: wrap; } }
.logos-div { width: 1px; background: var(--line); }
@media (max-width: 820px) {
  .logos-pair { grid-template-columns: 1fr; gap: 28px; }
  .logos-div { width: auto; height: 1px; }
  .logos-block { padding: 0; }
}

/* ---------- highlighted ROI nav entry ---------- */
.nav-roi {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber); font-weight: 700; font-size: 14.5px;
  background: color-mix(in srgb, var(--amber) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--amber) 40%, transparent);
  padding: 7px 13px; border-radius: 999px; line-height: 1;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.nav-roi svg { color: var(--amber); }
.nav-roi:hover {
  color: var(--amber);
  background: color-mix(in srgb, var(--amber) 22%, transparent);
  border-color: color-mix(in srgb, var(--amber) 60%, transparent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--amber) 22%, transparent);
}
.nav-roi.cur { background: var(--amber); color: #fff; border-color: var(--amber); }
.nav-roi.cur svg { color: #fff; }
.nav-roi.cur:hover { background: var(--amber); color: #fff; }

@media (max-width: 1000px) { .nav-burger { display: flex; } }
@media (max-width: 520px) { .nav-cta .nav-invite { display: none; } }

/* ============================================================
   v7 OVERRIDES — editorial type · de-iconed · the thread
   ============================================================ */

/* ---- #4 TYPE: characterful display face + sharper scale/weight contrast ---- */
:root { --display: var(--font); }
h1, h2, h3, h4, .h, h2.h, h3.h { font-family: var(--display); }
h1, h2.h { letter-spacing: -.045em; font-weight: 800; }
h2.h { font-size: clamp(33px, 5vw, 58px); line-height: .98; }
h3.h { letter-spacing: -.03em; font-weight: 700; }
/* hero: bigger, tighter — the editorial extreme */
.hero-tri { font-size: clamp(40px, 7.4vw, 92px) !important; letter-spacing: -.05em !important; line-height: .92 !important; font-weight: 800 !important; }
/* eyebrows: smaller, wider — maximize the tiny-mono ↔ huge-display contrast */
.eyebrow { font-size: 11px; letter-spacing: .26em; }
.plat-card h3, .acard h3, .desk-card p, .frow h3 { font-family: var(--display); }
.frow h3 { letter-spacing: -.035em; }
.outcome .on { font-family: var(--display); letter-spacing: -.04em; }
.astat .num { font-family: var(--display); letter-spacing: -.04em; font-weight: 800; }

/* ---- #1 DE-ICON: strip the stock stroke-icon grid; let type/number/dot carry it ---- */
/* desk cards: icon → phase dot before the label */
.desk-tag svg { display: none; }
.desk-tag { gap: 9px; }
.desk-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c); flex: 0 0 auto; }
.desk-foot .df-ico { display: none; }
.desk-foot { padding-left: 0; }

/* outcomes: drop the tinted icon box; the 4px phase bar already carries colour */
.outcome .oi { display: none; }
.outcome { padding-left: 26px; }

/* feature-row link list: drop the leading glyph; active border-rule does the work */
.frow .flink .fl-ico { display: none; }
.frow .flink { gap: 0; padding-left: 14px; }

/* platform-card kicker: mono label alone, no glyph */
.plat-card .pc-kicker svg { display: none; }

/* cost note: lose the icon, keep the amber frame */
.cost-note .cico { display: none; }

/* cockpit lenses: icon box → ledger-style record number */
.see-feats { counter-reset: lens; }
.see-feat { counter-increment: lens; }
.see-feat .fico { background: transparent; border: 1px solid var(--line); border-radius: 9px; }
.see-feat .fico svg { display: none; }
.see-feat .fico::before { content: counter(lens, decimal-leading-zero); font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink-3); }

/* assurance cards: icon box → record number */
.assure-grid { counter-reset: ac; }
.acard { counter-increment: ac; }
.acard .aico { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); border-radius: 9px; }
.acard .aico svg { display: none; }
.acard .aico::before { content: "R" counter(ac, decimal-leading-zero); font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--cream); opacity: .82; }

/* ---- #3 THE THREAD: one continuous teal→green→amber spine down the page ---- */
.thread {
  position: fixed; top: 0; bottom: 0; z-index: 40; width: 14px;
  left: calc((100vw - var(--container)) / 2 - 44px);
  pointer-events: none;
}
.thread-track { position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.thread-fill {
  position: absolute; left: 6px; top: 0; width: 2px; height: 0;
  background: linear-gradient(180deg, var(--teal) 0%, var(--green) 52%, var(--amber-br) 100%);
  background-size: 100% 100vh; background-repeat: no-repeat; background-position: top;
  transition: height .08s linear;
}
.thread-stop {
  position: absolute; left: 7px; transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--ink-3);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.thread-stop.is-past { border-color: var(--c, var(--teal)); }
.thread-stop.is-active { background: var(--c, var(--teal)); border-color: var(--c, var(--teal)); transform: translate(-50%, -50%) scale(1.5); }
.thread-bead {
  position: absolute; left: 7px; top: 0; transform: translate(-50%, -50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--cream); border: 2.5px solid var(--teal);
  box-shadow: 0 2px 8px rgba(0,33,55,.25); transition: border-color .2s ease;
}
.thread-bead::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--teal); transition: background .2s ease; }
.thread-cap {
  position: absolute; left: 16px; top: 0; transform: translateY(-50%);
  font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap; transition: color .2s ease;
  background: var(--paper); padding: 4px 9px; border-radius: 999px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.thread-rec {
  position: absolute; left: -2px; top: 14px; transform: rotate(180deg);
  writing-mode: vertical-rl; font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase; color: var(--ink-3); opacity: .5; white-space: nowrap;
}
@media (max-width: 1300px) { .thread { display: none; } }
@media (prefers-reduced-motion: reduce) { .thread-fill { transition: none; } }

/* ============================================================
   v8 OVERRIDES — editorial serif titles · propeller-as-system bead
   ============================================================ */

/* ---- #4 BIG TITLES: high-contrast editorial serif (Juro-like) ----
   Only the large titles go serif; subheads stay grotesque for contrast. */
h1, h2.h, .hero-tri {
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif !important;
  font-weight: 400 !important;
}
h1, h2.h { letter-spacing: -.015em; line-height: 1.0; }
h2.h { font-size: clamp(38px, 5.6vw, 66px); }
.hero-tri {
  font-size: clamp(46px, 8.4vw, 104px) !important;
  letter-spacing: -.02em !important; line-height: .96 !important;
}
.finalcta h2 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -.015em; }
/* serif italic is lovely for emphasis spans */
.hero-cat { font-style: normal; }

/* ---- #2 PROPELLER-AS-SYSTEM: the thread bead is a propeller that
   spins with scroll and lights the current phase's blade ---- */
.thread-bead {
  width: 27px; height: 27px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  box-shadow: 0 3px 12px rgba(0,33,55,.22);
  display: grid; place-items: center;
}
.thread-bead::after { display: none !important; }
.thread-prop {
  width: 21px; height: 21px; display: block;
  transform-origin: 50% 50%; will-change: transform;
}
.thread-prop .bl { transition: opacity .3s ease; }

/* ============================================================
   v8 CHROME UNIFICATION — one calm card language, no colour strips
   ============================================================ */
:root { --r-card: 20px; }

/* one radius for every page-level container */
.desk-card, .outcome, .aud, .shift-card, .shift-foot, .desk-foot,
.plat-card, .acard, .gate-step, .plan, .layer, .frow, .cost-note {
  border-radius: var(--r-card);
}

/* remove every coloured edge strip (the thing you didn't like) */
.outcome::before, .layer::before, .hgal-item::before { display: none !important; }
.outcome { padding-left: 22px; }
.flink, .flink.is-active { border-left: 0 !important; padding-left: 12px; }

/* flat hairline by default — paper on cream reads cleanly without shadow */
.outcome, .aud, .plat-card, .frow, .gate-step, .layer {
  background: var(--paper); box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
/* one shared, calm hover — colour enters only as a quiet border tint */
.outcome:hover, .aud:hover, .plat-card:hover, .frow:hover {
  border-color: color-mix(in srgb, var(--c, var(--teal)) 42%, var(--line));
  box-shadow: var(--shadow-md);
  transform: none;
}

/* popups: same radius + serif headline as the rest of the system */
.modal { border-radius: var(--r-card); }
.modal h3 {
  font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px); letter-spacing: -.01em; line-height: 1.06;
}
