/* ============================================================
   nottone — v1 KINETIC EDITORIAL
   ============================================================ */

:root {
  --bg: #FBFAF8;
  --bg-2: #F4F3EF;
  --ink: #15161B;
  --cream: #15161B; /* legacy alias: now the ink color used on light bg */
  --muted: #54565E;
  --faint: #8A8C93;
  --violet: #7B4FE0;
  --terra: #7B4FE0; /* legacy alias: small accent text now reads as readable violet */
  --slate: #54565E;
  --grad: linear-gradient(95deg, #00FCF8 0%, #5EC9F2 40%, #B46DF7 100%);
  --hair: rgba(0, 0, 0, 0.10);
  --hair-strong: rgba(0, 0, 0, 0.14);
  --pad: clamp(20px, 6vw, 120px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* gradient-text utility */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Geist', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  cursor: auto;
}

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

::selection { background: var(--violet); color: #FFFFFF; }

.mono {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slate { color: var(--muted); }

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

/* ---------- custom cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.3s;
  opacity: 0;
}
.cursor-dot.active { width: 46px; height: 46px; }
@media (hover: none) { .cursor-dot { display: none; } }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  background: rgba(251, 250, 248, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  font-size: 14px;
}
.nav-links a { color: var(--muted); transition: color 0.25s; }
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  border: 1px solid var(--hair-strong);
  border-radius: 100px;
  padding: 9px 18px;
  color: var(--ink) !important;
  transition: background 0.25s, color 0.25s, border-color 0.25s, filter 0.25s;
}
.nav-cta:hover {
  background: var(--grad);
  color: #0B1316 !important;
  border-color: transparent;
  font-weight: 700;
}

/* ============================================================
   TYPE SCALES
   ============================================================ */
.display {
  font-weight: 900;
  font-size: clamp(56px, 11vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}
.display-sm {
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(140px, 22vh, 230px) var(--pad) clamp(60px, 9vw, 110px);
  max-width: 1500px;
}
.hero .eyebrow { margin-bottom: clamp(24px, 4vw, 44px); }
.hero h1 { margin-bottom: clamp(28px, 4vw, 48px); }
.lede {
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.manifesto {
  max-width: 900px;
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: clamp(44px, 6vw, 72px);
}

/* ---------- email form ---------- */
.email-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.email-form input {
  flex: 1 1 240px;
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: 100px;
  padding: 15px 22px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s;
}
.email-form input::placeholder { color: var(--faint); }
.email-form input:focus { border-color: var(--violet); }
.email-form button {
  background: var(--grad);
  color: #0B1316;
  border: none;
  border-radius: 100px;
  padding: 15px 26px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: filter 0.25s, transform 0.25s var(--ease);
  white-space: nowrap;
}
.email-form button:hover { filter: brightness(1.06); transform: translateY(-2px) scale(1.01); }
.form-note { font-size: 12px; color: var(--muted); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: clamp(16px, 2.4vw, 30px) 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: clamp(34px, 7vw, 96px);
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.marquee-track .dot {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.sec-head { margin-bottom: clamp(40px, 6vw, 80px); }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head .sub {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 500px;
}

/* ============================================================
   VALUES
   ============================================================ */
.values { padding: clamp(70px, 10vw, 140px) var(--pad); border-top: 1px solid var(--hair); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.value {
  background: var(--bg);
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
}
.value .idx {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
}
.value h3 {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.12;
}
.value p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: clamp(70px, 10vw, 140px) var(--pad);
  border-top: 1px solid var(--hair);
  position: relative;
}
/* two-column: steps list (left) + sticky preview (right) */
.how-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  border-top: 1px solid var(--hair);
}
.flow { list-style: none; }
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: clamp(46px, 5vw, 82px) 1fr auto;
  align-items: baseline;
  gap: clamp(14px, 1.6vw, 26px);
  padding: clamp(22px, 2.4vw, 34px) clamp(8px, 1.4vw, 20px);
  border-bottom: 1px solid var(--hair);
  border-left: 2px solid transparent;
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease), transform 0.4s var(--ease), border-image 0.4s var(--ease);
  cursor: pointer;
}
.flow-step .flow-idx {
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.4s;
}
.flow-step h3 {
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  line-height: 1;
  margin-bottom: 8px;
}
.flow-step .flow-body p {
  color: var(--muted);
  font-size: clamp(13.5px, 1vw, 16px);
  max-width: 420px;
  transition: color 0.4s;
}
.flow-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.4s, color 0.4s;
}
/* active = hovered OR the step the page is scrolled to */
.flow-step:hover,
.flow-step.is-active {
  background:
    linear-gradient(0deg, rgba(123, 79, 224, 0.05), rgba(123, 79, 224, 0.05)),
    var(--bg);
  padding-left: clamp(16px, 2vw, 32px);
  border-left: 2px solid transparent;
  border-image: var(--grad) 1;
  transform: translateX(2px);
}
.flow-step:hover .flow-idx,
.flow-step.is-active .flow-idx {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.flow-step:hover .flow-tag,
.flow-step.is-active .flow-tag { opacity: 1; color: var(--violet); }

/* sticky preview stage in an app-frame — stage is the tall cell,
   the frame inside it sticks while the steps scroll past */
.flow-stage { position: relative; height: 100%; }
.flow-frame {
  position: sticky;
  top: clamp(84px, 12vh, 116px);
  border: 1px solid var(--hair-strong);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 70px -36px rgba(21, 22, 27, 0.40), 0 2px 8px rgba(21, 22, 27, 0.04);
}
/* blueprint preview — title bar */
.bp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 15px;
  background: var(--bg);
  border-bottom: 1px solid var(--hair);
}
.bp-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(123, 79, 224, 0.10); }
.bp-title { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.bp-status { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.bp-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #0EB0BD; animation: bp-blink 1.1s steps(2) infinite; }
@keyframes bp-blink { 50% { opacity: 0.2; } }

/* blueprint stage — dotted grid, scenes stacked */
.bp-stage {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background-color: var(--bg-2);
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1.4px);
  background-size: 22px 22px;
  background-position: center;
}
.bp-scene { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s var(--ease); }
.bp-scene.active { opacity: 1; }
.bp-scene .core, .bp-scene b, .bp-scene i, .bp-scene .ln, .bp-scene .col, .bp-scene .caret, .bp-scan { position: absolute; }

/* 01 find — scan line sweeps a dot field; some dots match */
.viz-find i { width: 6px; height: 6px; border-radius: 50%; background: var(--hair-strong); }
.viz-find i:nth-child(2){left:14%;top:30%} .viz-find i:nth-child(3){left:26%;top:62%}
.viz-find i:nth-child(4){left:38%;top:22%} .viz-find i:nth-child(5){left:50%;top:54%}
.viz-find i:nth-child(6){left:62%;top:30%} .viz-find i:nth-child(7){left:74%;top:64%}
.viz-find i:nth-child(8){left:86%;top:40%} .viz-find i:nth-child(9){left:44%;top:80%}
.viz-find i:nth-child(10){left:20%;top:44%} .viz-find i:nth-child(11){left:68%;top:48%}
.viz-find i:nth-child(12){left:32%;top:40%} .viz-find i:nth-child(13){left:56%;top:72%}
.viz-find i.hit { background: #B46DF7; }
.viz-find.active i.hit { box-shadow: 0 0 10px rgba(180, 109, 247, 0.6); animation: bp-pulse 1.5s ease-in-out infinite; }
.bp-scan { top: 8%; bottom: 8%; width: 2px; left: 6%; background: linear-gradient(180deg, transparent, #0EB0BD, transparent); opacity: 0; }
.viz-find.active .bp-scan { opacity: 1; animation: bp-scan 2.8s linear infinite; }
@keyframes bp-scan { from { left: 6%; } to { left: 92%; } }
@keyframes bp-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.9); } }

/* 02 enrich — packets converge into a core */
.viz-enrich .core { left: 50%; top: 50%; width: 16px; height: 16px; border-radius: 50%; transform: translate(-50%,-50%); background: var(--grad); }
.viz-enrich.active .core { box-shadow: 0 0 18px rgba(123, 79, 224, 0.45); }
.viz-enrich b { left: 50%; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: #0EB0BD; opacity: 0; }
.viz-enrich b:nth-child(2){ --sx:-92px; --sy:-32px; }
.viz-enrich b:nth-child(3){ --sx:92px; --sy:-32px; }
.viz-enrich b:nth-child(4){ --sx:-104px; --sy:26px; }
.viz-enrich b:nth-child(5){ --sx:104px; --sy:26px; }
.viz-enrich b:nth-child(6){ --sx:0px; --sy:-58px; }
.viz-enrich b:nth-child(7){ --sx:0px; --sy:58px; }
.viz-enrich.active b { animation: bp-feed 2s linear infinite; }
.viz-enrich.active b:nth-child(3){animation-delay:.25s}
.viz-enrich.active b:nth-child(4){animation-delay:.5s}
.viz-enrich.active b:nth-child(5){animation-delay:.75s}
.viz-enrich.active b:nth-child(6){animation-delay:1s}
.viz-enrich.active b:nth-child(7){animation-delay:1.25s}
@keyframes bp-feed { 0% { transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy))); opacity: 0; } 15% { opacity: 1; } 100% { transform: translate(-50%,-50%); opacity: 0; } }

/* 03 reach — a drafted message, packets sent down a wire to the contact */
.viz-reach .bubble { position: absolute; left: 9%; top: 36%; width: 28%; height: 28%; border: 1px solid var(--hair-strong); border-radius: 9px 9px 9px 2px; background: var(--bg); display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0 9%; }
.viz-reach .bubble span { display: block; height: 4px; border-radius: 2px; background: var(--grad); width: 0; }
.viz-reach .bubble span:nth-child(2) { opacity: .55; }
.viz-reach .wire, .viz-reach .pkt, .viz-reach .dest { position: absolute; }
.viz-reach.active .bubble span { animation: bp-type 3s var(--ease) infinite; }
.viz-reach.active .bubble span:nth-child(2) { animation-delay: .25s; }
@keyframes bp-type { 0% { width: 0; opacity: 0; } 30% { width: 80%; opacity: 1; } 100% { width: 80%; opacity: 1; } }
.viz-reach .wire { left: 38%; width: 44%; top: 50%; height: 0; border-top: 1px dashed var(--hair-strong); }
.viz-reach .dest { left: 82%; top: 50%; width: 20px; height: 20px; border-radius: 50%; transform: translate(-50%, -50%); border: 2px solid var(--violet); }
.viz-reach .pkt { left: 38%; top: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--grad); transform: translateY(-50%); opacity: 0; }
.viz-reach.active .pkt { animation: bp-send 3s var(--ease) infinite; }
.viz-reach.active .pkt:nth-child(4) { animation-delay: .5s; }
.viz-reach.active .pkt:nth-child(5) { animation-delay: 1s; }
@keyframes bp-send { 0%,30% { left: 38%; opacity: 0; } 38% { opacity: 1; } 82% { left: 80%; opacity: 1; } 100% { left: 80%; opacity: 0; } }

/* 04 prep — a pre-call brief whose checklist ticks itself off */
.viz-prep .brief { position: absolute; left: 27%; top: 16%; width: 46%; height: 68%; border: 1px solid var(--hair-strong); border-radius: 8px; background: var(--bg); }
.viz-prep .avatar { position: absolute; left: 9%; top: 11%; width: 15px; height: 15px; border-radius: 50%; background: var(--grad); }
.viz-prep .hl { position: absolute; left: 24%; top: 14%; width: 42%; height: 5px; border-radius: 3px; background: var(--hair-strong); }
.viz-prep .item { position: absolute; left: 9%; right: 9%; display: flex; align-items: center; gap: 9px; }
.viz-prep .item:nth-child(3) { top: 40%; } .viz-prep .item:nth-child(4) { top: 58%; } .viz-prep .item:nth-child(5) { top: 76%; }
.viz-prep .item em { font: 600 13px "Geist Mono", monospace; font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0; transform: scale(.4); }
.viz-prep .item span { flex: 1; height: 4px; border-radius: 2px; background: var(--hair-strong); }
.viz-prep.active .item em { animation: bp-tick 3s var(--ease) infinite; }
.viz-prep.active .item:nth-child(4) em { animation-delay: .4s; }
.viz-prep.active .item:nth-child(5) em { animation-delay: .8s; }
.viz-prep.active .item span { animation: bp-litline 3s var(--ease) infinite; }
.viz-prep.active .item:nth-child(4) span { animation-delay: .4s; }
.viz-prep.active .item:nth-child(5) span { animation-delay: .8s; }
@keyframes bp-tick { 0%,15% { opacity: 0; transform: scale(.4); } 30% { opacity: 1; transform: scale(1); } 100% { opacity: 1; transform: scale(1); } }
@keyframes bp-litline { 0%,15% { background: var(--hair-strong); } 30% { background: var(--grad); } 100% { background: var(--grad); } }

/* 05 coach — live waveform */
.viz-coach i { bottom: 32%; width: 6px; border-radius: 3px; background: var(--grad); height: 8%; transform-origin: bottom; }
.viz-coach i:nth-child(1){left:24%} .viz-coach i:nth-child(2){left:33%} .viz-coach i:nth-child(3){left:42%}
.viz-coach i:nth-child(4){left:51%} .viz-coach i:nth-child(5){left:60%} .viz-coach i:nth-child(6){left:69%} .viz-coach i:nth-child(7){left:78%}
.viz-coach.active i { animation: bp-eq 1s ease-in-out infinite; }
.viz-coach.active i:nth-child(2){animation-delay:.15s}
.viz-coach.active i:nth-child(3){animation-delay:.3s}
.viz-coach.active i:nth-child(4){animation-delay:.1s}
.viz-coach.active i:nth-child(5){animation-delay:.35s}
.viz-coach.active i:nth-child(6){animation-delay:.2s}
.viz-coach.active i:nth-child(7){animation-delay:.4s}
@keyframes bp-eq { 0%,100% { height: 8%; } 50% { height: 46%; } }

/* 06 track — cards drop into pipeline columns */
.viz-track .col { top: 22%; bottom: 22%; width: 22%; border: 1px dashed var(--hair-strong); border-radius: 6px; }
.viz-track .col:nth-child(1){left:14%} .viz-track .col:nth-child(2){left:39%} .viz-track .col:nth-child(3){left:64%}
.viz-track b { top: 20%; width: 18%; height: 18px; border-radius: 4px; background: var(--grad); opacity: 0; }
.viz-track b:nth-child(4){left:16%} .viz-track b:nth-child(5){left:41%} .viz-track b:nth-child(6){left:66%}
.viz-track.active b { animation: bp-drop 2.4s ease-in-out infinite; }
.viz-track.active b:nth-child(5){animation-delay:.6s}
.viz-track.active b:nth-child(6){animation-delay:1.2s}
@keyframes bp-drop { 0% { transform: translateY(-22px); opacity: 0; } 18% { opacity: 1; } 55% { transform: translateY(118px); opacity: 1; } 100% { transform: translateY(118px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .bp-stage *, .bp-status::before { animation: none !important; }
  .bp-scan { opacity: 0; }
  .viz-reach .bubble span { width: 80%; }
  .viz-reach .pkt { opacity: 0; }
  .viz-prep .item em { opacity: 1; transform: scale(1); }
  .viz-prep .item span { background: var(--grad); }
  .viz-coach i { height: 28%; }
  .viz-track b { opacity: 1; transform: translateY(60px); }
}

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.inside { padding: clamp(70px, 10vw, 140px) var(--pad); border-top: 1px solid var(--hair); background: var(--bg-2); }
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.module {
  background: var(--bg);
  padding: clamp(24px, 2.4vw, 36px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.module .idx {
  font-size: 14px;
  color: var(--violet);
  letter-spacing: 0.1em;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.module h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 12px;
}
.module p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-top: auto; }
.module:hover { background: var(--bg); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(21, 22, 27, 0.08); }

/* ============================================================
   FOR THE TEAM
   ============================================================ */
.team { padding: clamp(70px, 10vw, 140px) var(--pad); border-top: 1px solid var(--hair); }
.personas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.persona { background: var(--bg); padding: clamp(30px, 4vw, 60px); }
.persona-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--violet);
  display: block;
  margin-bottom: 24px;
}
.persona h3 {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  line-height: 1;
}
.persona ul { list-style: none; }
.persona li {
  position: relative;
  padding: 16px 0 16px 28px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  border-top: 1px solid var(--hair);
}
.persona li:first-child { border-top: none; }
.persona li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-family: 'Geist Mono', monospace;
}

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist {
  padding: clamp(90px, 16vw, 200px) var(--pad);
  border-top: 1px solid var(--hair);
  text-align: left;
}
.waitlist .eyebrow { margin-bottom: 24px; }
.waitlist h2 { margin-bottom: clamp(40px, 6vw, 72px); }
.waitlist .email-form { max-width: 540px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(50px, 7vw, 90px) var(--pad);
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 30px; height: 30px; object-fit: contain; }
.footer-tag { color: var(--muted); font-size: 15px; }
.footer-copy { color: var(--muted); font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .flow-stage { order: -1; position: sticky; top: 62px; align-self: start; height: auto; margin-bottom: 12px; z-index: 5; }
  .flow-frame { position: static; }
  .bp-stage { aspect-ratio: auto; height: min(42vh, 300px); }
}
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .personas { grid-template-columns: 1fr; }
  .flow-step {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "idx body"
      "tag tag";
  }
  .flow-step .flow-idx { grid-area: idx; }
  .flow-step .flow-body { grid-area: body; }
  .flow-step .flow-tag { display: none; }
}
@media (max-width: 480px) {
  .modules { grid-template-columns: 1fr; }
  .module { min-height: auto; }
  .email-form button { flex: 1 1 100%; }
}
