/* ============================================================
   WORKROOM — Editorial-technical visual system
   ============================================================ */

:root {
  /* Ground */
  --ink: #F5F1EA;           /* paper / primary text */
  --ink-dim: #A8A29A;       /* muted secondary */
  --ink-faint: #5F5B54;     /* tertiary, borders, labels */
  --ink-whisper: #2A2825;   /* faint dividers */
  --ground: #0A0A0A;        /* near-black */
  --ground-raised: #131211; /* cards */
  --ground-sunken: #060605; /* input-like wells */

  /* Accent */
  --accent: #E8623D;        /* terracotta */
  --accent-ink: #0A0A0A;    /* text on accent */
  --accent-glow: rgba(232,98,61,0.18);
  --accent-dim: #A84426;

  /* Semantic */
  --ok: #7EA876;            /* muted sage */
  --warn: #D4A24E;          /* muted amber */
  --bad: #B8554A;

  /* Type */
  --f-display: "Instrument Serif", "Times New Roman", serif;
  --f-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --border: 1px solid var(--ink-whisper);

  /* Grid */
  --gutter: 32px;
  --maxw: 1280px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
  --ink: #17140F;
  --ink-dim: #5F5B54;
  --ink-faint: #8C8880;
  --ink-whisper: #E3DED4;
  --ground: #F5F1EA;
  --ground-raised: #FBF8F2;
  --ground-sunken: #EEE8DC;
  --accent-ink: #F5F1EA;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--accent-ink); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* ---------- Typography ---------- */

.t-display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01";
}

.t-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.t-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}

.t-mono { font-family: var(--f-mono); }

em, .italic { font-family: var(--f-display); font-style: italic; font-weight: 400; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  background: color-mix(in srgb, var(--ground) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease-out);
}
.nav.is-scrolled { border-bottom-color: var(--ink-whisper); }
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-left { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 180ms;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  display: inline-block;
  transform: translateY(3px);
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--ground);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: transform 140ms var(--ease-out), background 160ms, color 160ms, box-shadow 200ms;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 1px var(--accent), 0 10px 30px -10px var(--accent-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 14px 40px -10px var(--accent-glow), 0 0 60px -10px var(--accent-glow);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--ink-whisper);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink-faint); background: var(--ground-raised); }

.btn-mini {
  padding: 8px 12px;
  font-size: 13px;
}

.btn .arrow {
  transition: transform 200ms var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Section chrome ---------- */

section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
}

.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
}
.section-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.section-title em { color: var(--accent); font-style: italic; }
.section-lede {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 52ch;
  margin-top: 18px;
  line-height: 1.5;
}

.rule {
  height: 1px;
  background: var(--ink-whisper);
  width: 100%;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- HERO ---------- */

.hero {
  padding: 80px 0 120px;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-meta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse 2.2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-glow); }
  50% { box-shadow: 0 0 0 10px rgba(232,98,61,0.04); }
}

.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 80px;
  text-wrap: balance;
}
.hero-tagline em { color: var(--accent); font-style: italic; }
.hero-tagline .cursor {
  display: inline-block;
  width: 0.4em;
  height: 0.85em;
  background: var(--accent);
  vertical-align: -0.08em;
  margin-left: 0.08em;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: 20px;
  color: var(--ink-dim);
  max-width: 48ch;
  line-height: 1.45;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-fine {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero visual (terminal + integration map) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.02) inset;
}
.term-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-whisper);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.term-dots { display: flex; gap: 6px; }
.term-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink-whisper);
}
.term-title {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  flex: 1;
  text-align: center;
}
.term-live {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 99px;
  background: var(--accent-glow);
  letter-spacing: 0.04em;
}
.term-live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.term-body {
  padding: 20px 22px;
  font-family: var(--f-mono);
  font-size: 13px;
  line-height: 1.55;
  height: calc(100% - 44px);
  position: relative;
  overflow: hidden;
}
.term-line { display: block; white-space: pre-wrap; word-break: break-word; }
.term-line .prompt { color: var(--accent); }
.term-line .dim { color: var(--ink-faint); }
.term-line .ok { color: var(--ok); }
.term-line .kw { color: #B8A878; }
.term-line .str { color: var(--ink); }
.term-line .muted { color: var(--ink-dim); }

/* Integration graph overlay */
.graph-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  border: 1px solid var(--ink-whisper);
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-spring);
}
.node.is-in { opacity: 1; transform: none; }
.node .swatch {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- Stats section ---------- */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-whisper);
  border-bottom: 1px solid var(--ink-whisper);
}
.stat {
  padding: 48px 32px;
  border-right: 1px solid var(--ink-whisper);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-num .pct { color: var(--accent); }
.stat-label {
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.45;
  max-width: 32ch;
}
.stat-src {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--ink-whisper); }
  .stat:last-child { border-bottom: none; }
  .stat { padding: 36px 0; }
}

/* ---------- From / To ---------- */

.fromto {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .fromto { grid-template-columns: 1fr; }
  .fromto-arrow { display: none; }
}
.fromto-card {
  padding: 36px 32px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
  position: relative;
  min-height: 360px;
}
.fromto-card.from { background: transparent; }
.fromto-card .t-eyebrow { margin-bottom: 20px; display: block; }
.fromto-card h3 {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  font-weight: 400;
}
.fromto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fromto-list li {
  padding: 10px 0;
  border-top: 1px dashed var(--ink-whisper);
  font-size: 14px;
  color: var(--ink-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fromto-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-faint);
  margin-top: 8px;
  flex-shrink: 0;
}
.fromto-card.to .fromto-list li::before { background: var(--accent); }
.fromto-card.to .fromto-list li { color: var(--ink); }

.fromto-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
}

/* ---------- Phases ---------- */

.phases {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-whisper);
}
@media (max-width: 860px) {
  .phases { grid-template-columns: 1fr; }
}
.phase {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--ink-whisper);
  border-bottom: 1px solid var(--ink-whisper);
  position: relative;
  transition: background 300ms var(--ease-out);
}
.phase:last-child { border-right: none; }
@media (max-width: 860px) {
  .phase { border-right: none; }
}
.phase:hover { background: var(--ground-raised); }
.phase-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}
.phase-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.phase-name {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.phase-name em { color: var(--accent); font-style: italic; }
.phase-when {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.phase p {
  color: var(--ink-dim);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 34ch;
  line-height: 1.5;
}
.phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phase-list li {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
  padding: 8px 0;
  border-top: 1px solid var(--ink-whisper);
  display: flex;
  gap: 10px;
}
.phase-list li::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Case study ---------- */

.case {
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
  overflow: hidden;
}
.case-head {
  padding: 36px 40px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--ink-whisper);
}
.case-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 26ch;
}
.case-title em { color: var(--accent); font-style: italic; }
.case-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  text-align: right;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.case-meta strong { color: var(--ink); font-weight: 500; }

.timeline {
  padding: 40px;
  position: relative;
}
.timeline-scrubber {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.timeline-scrubber .bar {
  flex: 1;
  height: 2px;
  background: var(--ink-whisper);
  position: relative;
  border-radius: 2px;
}
.timeline-scrubber .fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
  border-radius: 2px;
  transition: width 200ms var(--ease-out);
}
.timeline-scrubber .knob {
  position: absolute;
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: left 200ms var(--ease-out);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.timeline-track {
  position: relative;
  padding-left: 80px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 65px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--ink-whisper);
}
.tevent {
  position: relative;
  padding: 14px 0 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--ink-whisper);
  transition: opacity 300ms var(--ease-out);
}
.tevent:last-child { border-bottom: none; }
.tevent::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 22px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ground-raised);
  border: 2px solid var(--ink-faint);
  transition: all 200ms var(--ease-out);
}
.tevent.is-active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.tevent.is-future { opacity: 0.35; }
.tevent-time {
  position: absolute;
  left: -80px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-faint);
  top: 18px;
  letter-spacing: 0.06em;
}
.tevent h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.tevent p {
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 60ch;
}
.tevent-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  border: 1px solid var(--ink-whisper);
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  white-space: nowrap;
}
.tevent.is-active .tevent-tag {
  color: var(--accent);
  border-color: var(--accent);
}

.case-foot {
  padding: 28px 40px;
  border-top: 1px solid var(--ink-whisper);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-foot .kv {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-foot .kv .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.case-foot .kv .v {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.case-foot .kv .v em { color: var(--accent); font-style: italic; }
@media (max-width: 720px) {
  .timeline { padding: 28px 20px; }
  .timeline-track { padding-left: 68px; }
  .timeline-track::before { left: 53px; }
  .tevent-time { left: -68px; font-size: 11px; }
  .tevent { grid-template-columns: 1fr; }
  .case-foot { grid-template-columns: 1fr; padding: 24px 24px; }
  .case-head { padding: 24px 24px 20px; grid-template-columns: 1fr; }
  .case-meta { text-align: left; }
}

/* ---------- Retainer ---------- */

.retainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-whisper);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 720px) {
  .retainer { grid-template-columns: 1fr; }
}
.retainer-item {
  background: var(--ground);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: background 200ms;
}
.retainer-item:hover { background: var(--ground-raised); }
.retainer-item .ic {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-whisper);
  border-radius: 6px;
  color: var(--accent);
}
.retainer-item h4 {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.retainer-item p { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }
.retainer-item .what-sig {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* ---------- Not-for / What we don't do ---------- */

.notfor {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.notfor-item {
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--ink-whisper);
  align-items: baseline;
  transition: padding-left 300ms var(--ease-out);
}
.notfor-item:hover { padding-left: 16px; }
.notfor-item:last-child { border-bottom: 1px solid var(--ink-whisper); }
.notfor-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.notfor-h {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}
.notfor-h .pass { color: var(--ink-faint); }
.notfor-p {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 48ch;
}
@media (max-width: 720px) {
  .notfor-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}

/* ---------- Blockers ---------- */

.blockers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .blockers { grid-template-columns: 1fr; } }
.blocker {
  padding: 28px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius);
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blocker-fear {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.blocker-fear::before, .blocker-fear::after {
  content: "\201C";
  color: var(--accent);
  font-size: 1.1em;
}
.blocker-fear::after { content: "\201D"; }
.blocker-answer {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-whisper);
}
.blocker-answer strong { color: var(--ink); font-weight: 500; }
.blocker-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Good / not good at ---------- */

.goodnot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .goodnot { grid-template-columns: 1fr; } }
.gn-col h3 {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gn-col h3 .pill {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.gn-good h3 .pill { background: color-mix(in srgb, var(--ok) 20%, transparent); color: var(--ok); }
.gn-bad h3 .pill { background: color-mix(in srgb, var(--bad) 22%, transparent); color: var(--bad); }
.gn-list { list-style: none; display: flex; flex-direction: column; }
.gn-list li {
  padding: 18px 0;
  border-top: 1px solid var(--ink-whisper);
  font-size: 15px;
  color: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  line-height: 1.5;
}
.gn-list li:last-child { border-bottom: 1px solid var(--ink-whisper); }
.gn-list .mark {
  font-family: var(--f-mono);
  font-size: 13px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.gn-good .mark { color: var(--ok); }
.gn-bad .mark { color: var(--bad); }
.gn-list .detail { display: block; color: var(--ink-dim); font-size: 13px; margin-top: 4px; }

/* ---------- Pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }
.tier {
  padding: 36px 32px;
  border-right: 1px solid var(--ink-whisper);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 240ms;
}
.tier:last-child { border-right: none; }
@media (max-width: 860px) {
  .tier { border-right: none; border-bottom: 1px solid var(--ink-whisper); }
  .tier:last-child { border-bottom: none; }
}
.tier.popular { background: var(--ground-raised); }
.tier.popular::before {
  content: "Most common";
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 99px;
}
.tier-name {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tier-price {
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.tier-price .unit {
  font-size: 18px;
  color: var(--ink-faint);
  font-family: var(--f-sans);
  font-weight: 400;
}
.tier-cadence {
  color: var(--ink-dim);
  font-size: 14px;
  margin-bottom: 24px;
}
.tier-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-whisper);
}
.tier-feat {
  list-style: none;
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier-feat li {
  font-size: 14px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--ink);
  line-height: 1.45;
}
.tier-feat li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--f-mono);
}
.tier-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ---------- FAQ ---------- */

.faq-list {
  border-top: 1px solid var(--ink-whisper);
}
.faq-item {
  border-bottom: 1px solid var(--ink-whisper);
  padding: 24px 0;
  cursor: pointer;
  transition: padding-left 200ms var(--ease-out);
}
.faq-item:hover { padding-left: 10px; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.faq-toggle {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--accent);
  transition: transform 240ms var(--ease-out);
  flex-shrink: 0;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-out), margin-top 320ms var(--ease-out);
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 68ch;
}
.faq-item.is-open .faq-a {
  max-height: 240px;
  margin-top: 16px;
}

/* ---------- CTA block ---------- */

.cta-block {
  padding: 96px 48px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 80% at 50% 120%, var(--accent-glow), transparent 70%),
    var(--ground-raised);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--ink-whisper) 1px, transparent 1px);
  background-size: 56px 100%;
  opacity: 0.5;
  mask: radial-gradient(50% 80% at 50% 50%, black, transparent 90%);
  -webkit-mask: radial-gradient(50% 80% at 50% 50%, black, transparent 90%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-tagline {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.cta-tagline em { color: var(--accent); font-style: italic; }
.cta-sub {
  color: var(--ink-dim);
  font-size: 18px;
  max-width: 52ch;
  margin: 0 auto 36px;
}
.cta-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-fine {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
@media (max-width: 720px) {
  .cta-block { padding: 64px 24px; }
}

/* ---------- Footer ---------- */

footer {
  padding: 64px 0 80px;
  border-top: 1px solid var(--ink-whisper);
}
.foot-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .foot-row { grid-template-columns: 1fr 1fr; }
}
.foot-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
  font-weight: 400;
}
.foot-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 160ms;
}
.foot-col a:hover { color: var(--ink); }
.foot-brand p {
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 36ch;
  margin-top: 14px;
  line-height: 1.5;
}
.foot-fine {
  padding-top: 28px;
  border-top: 1px solid var(--ink-whisper);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Tweaks panel ---------- */

.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  z-index: 100;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  font-family: var(--f-sans);
  overflow: hidden;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink-whisper);
}
.tweaks-head h4 {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.tweaks-body {
  padding: 14px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tweaks-group label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.tweaks-seg {
  display: flex;
  gap: 4px;
  padding: 3px;
  background: var(--ground-sunken);
  border: 1px solid var(--ink-whisper);
  border-radius: 6px;
}
.tweaks-seg button {
  flex: 1;
  padding: 7px 8px;
  font-size: 12px;
  color: var(--ink-dim);
  border-radius: 4px;
  text-align: center;
  transition: all 160ms;
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}
.tweaks-seg button.is-active {
  background: var(--ground-raised);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--ink-whisper);
}
.tweaks-group select,
.tweaks-group input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  background: var(--ground-sunken);
  border: 1px solid var(--ink-whisper);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 12px;
}
.tweaks-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tweaks-swatch {
  width: 30px; height: 30px;
  border-radius: 6px;
  border: 1px solid var(--ink-whisper);
  cursor: pointer;
  transition: transform 120ms;
  position: relative;
}
.tweaks-swatch:hover { transform: scale(1.08); }
.tweaks-swatch.is-active { box-shadow: 0 0 0 2px var(--ground-raised), 0 0 0 3px var(--ink); }

.tweaks-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
}

/* ---------- Utilities ---------- */

.flex { display: flex; }
.hide-mobile { }
@media (max-width: 720px) { .hide-mobile { display: none !important; } }

.kbd {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 2px 6px;
  border: 1px solid var(--ink-whisper);
  border-radius: 4px;
  color: var(--ink-faint);
}

/* ============================================================
   v2 ADDITIONS — new hero visuals, What-you-get, Month
   ============================================================ */

/* Hero visual shell */
.hv-wrap { position: relative; }
.hv {
  aspect-ratio: 1 / 1;
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}
.hv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ink-whisper);
}
.hv-head-l { display: flex; align-items: center; gap: 10px; }
.hv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.hv-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.hv-tabs {
  display: flex;
  gap: 4px;
  padding: 3px;
  background: var(--ground-sunken);
  border-radius: 99px;
  border: 1px solid var(--ink-whisper);
}
.hv-tabs button, .hv-tabs span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 99px;
  color: var(--ink-faint);
  text-transform: uppercase;
  transition: all 180ms var(--ease-out);
  cursor: pointer;
}
.hv-tabs button:hover { color: var(--ink-dim); }
.hv-tabs .is-active {
  background: var(--ground-raised);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hv-stage {
  position: relative;
  flex: 1;
  overflow: hidden;
}

/* Noise → Plan */
.noise-cloud {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
  justify-content: center;
  transition: opacity 800ms var(--ease-out), filter 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.noise-cloud.is-filtering {
  filter: blur(2px);
  opacity: 0.4;
}
.noise-cloud.is-gone {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.noise-chip {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 5px 9px;
  background: var(--ground);
  border: 1px solid var(--ink-whisper);
  border-radius: 4px;
  color: var(--ink-dim);
  white-space: nowrap;
  transform: rotate(var(--r, 0deg));
  animation: chipBob 3s ease-in-out infinite;
  animation-delay: var(--d, 0ms);
}
@keyframes chipBob {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50% { transform: rotate(var(--r, 0deg)) translateY(-3px); }
}

.plan-out {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease-out) 300ms, transform 600ms var(--ease-out) 300ms;
}
.plan-out.is-in { opacity: 1; transform: none; }
.plan-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.plan-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--ink-whisper);
  align-items: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out);
}
.plan-out.is-in .plan-row { opacity: 1; transform: none; }
.plan-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.plan-text {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.plan-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 12px;
}
.plan-foot {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* Before / After */
.ba-stage { display: grid; }
.ba-col {
  position: absolute;
  inset: 0;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  transition: opacity 500ms var(--ease-out), transform 700ms var(--ease-out);
}
.ba-col.is-out {
  opacity: 0;
  transform: translateX(-14px);
  pointer-events: none;
}
.ba-col.is-in { opacity: 1; transform: none; }
.ba-after.is-in { }
.ba-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px dashed var(--ink-whisper);
  align-items: baseline;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out);
}
.ba-col.is-in .ba-row { opacity: 1; transform: none; }
.ba-time {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.ba-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}
.ba-before .ba-text { color: var(--ink-dim); }
.ba-after .ba-text { color: var(--ink); }
.ba-after .ba-time { color: var(--accent); }

/* Map flow */
.map-stage { overflow: visible; }
.map-rail {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.station {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translate(-14px, -14px);
  opacity: 0.4;
  transition: opacity 500ms var(--ease-out);
}
.station.is-active { opacity: 1; }
.station-pin {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ground);
  border: 2px solid var(--ink-whisper);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  transition: all 400ms var(--ease-spring);
  flex-shrink: 0;
}
.station.is-active .station-pin {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 6px var(--accent-glow);
}
.station-body { min-width: 0; }
.station-label {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.station-sub {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.35;
  max-width: 22ch;
}

/* Hero visual switcher */
.hv-switch {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  padding: 4px;
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: 99px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hv-switch button {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 99px;
  color: var(--ink-dim);
  transition: all 160ms;
  letter-spacing: 0.04em;
}
.hv-switch button.is-active {
  background: var(--accent);
  color: var(--accent-ink);
}

/* What you get */
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-whisper);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) {
  .what-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .what-grid { grid-template-columns: 1fr; }
}
.what-card {
  background: var(--ground);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  transition: background 200ms;
}
.what-card:hover { background: var(--ground-raised); }
.what-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.what-title {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 400;
  max-width: 14ch;
}
.what-p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.what-ex {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  padding-top: 14px;
  border-top: 1px dashed var(--ink-whisper);
  line-height: 1.35;
}

/* Month with us */
.month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-whisper);
  border-bottom: 1px solid var(--ink-whisper);
}
@media (max-width: 900px) { .month-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .month-grid { grid-template-columns: 1fr; } }
.month-week {
  padding: 32px 28px;
  border-right: 1px solid var(--ink-whisper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
}
.month-week:last-child { border-right: none; }
.month-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-whisper);
}
.month-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.month-stat { text-align: right; }
.month-stat-k {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.month-stat-v {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.month-title {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 400;
  max-width: 16ch;
}
.month-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.month-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-dim);
}
.month-list .ic { color: var(--accent); font-size: 8px; padding-top: 6px; }

.month-quote {
  margin-top: 56px;
  padding: 48px 56px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
  text-align: center;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.mq-mark {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 0.4;
  color: var(--accent);
  margin-bottom: 12px;
}
.month-quote p {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
  font-style: italic;
}
.mq-by {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
@media (max-width: 600px) {
  .month-quote { padding: 32px 24px; }
  .month-quote p { font-size: 22px; }
}

/* Single-offer pricing */
.one-offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 800px) { .one-offer { grid-template-columns: 1fr; } }
.one-offer-l {
  padding: 48px 40px;
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--ink-whisper);
}
@media (max-width: 800px) {
  .one-offer-l { border-right: none; border-bottom: 1px solid var(--ink-whisper); }
}
.one-offer-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.one-offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.one-offer-price .big {
  font-family: var(--f-display);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.one-offer-price .unit {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.one-offer-desc {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 42ch;
}
.one-offer-l .btn { margin-top: 10px; align-self: flex-start; }
.one-offer-r {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.one-offer-h {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.one-offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.one-offer-list li {
  padding: 14px 0;
  border-top: 1px solid var(--ink-whisper);
  font-size: 15px;
  line-height: 1.45;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
}
.one-offer-list li:last-child { border-bottom: 1px solid var(--ink-whisper); }
.one-offer-list li::before {
  content: "\2192";
  color: var(--accent);
  font-family: var(--f-mono);
}
.one-offer-fine {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  line-height: 1.5;
}

/* ============================================================
   v3 — narrative sections (Now / Could / Vision / How / Discovery)
   ============================================================ */

/* Now */
.now-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-whisper);
  border-bottom: 1px solid var(--ink-whisper);
}
@media (max-width: 900px) { .now-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .now-grid { grid-template-columns: 1fr; } }
.now-card {
  padding: 36px 28px;
  border-right: 1px solid var(--ink-whisper);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 200ms;
}
.now-card:last-child { border-right: none; }
@media (max-width: 900px) {
  .now-card:nth-child(2) { border-right: none; }
  .now-card:nth-child(1), .now-card:nth-child(2) { border-bottom: 1px solid var(--ink-whisper); }
}
.now-card:hover { background: var(--ground-raised); }
.now-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.now-card p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--f-display);
  font-style: italic;
  max-width: 28ch;
}

/* Could */
.could-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .could-grid { grid-template-columns: 1fr; } }
.could-col {
  padding: 36px 32px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.could-h { display: flex; align-items: center; gap: 14px; }
.could-h h3 {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.pill {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
}
.pill-good { background: color-mix(in srgb, var(--ok) 20%, transparent); color: var(--ok); }
.pill-bad  { background: color-mix(in srgb, var(--bad) 22%, transparent); color: var(--bad); }
.could-col ul { list-style: none; display: flex; flex-direction: column; }
.could-col li {
  padding: 14px 0;
  border-top: 1px solid var(--ink-whisper);
  font-size: 15px;
  line-height: 1.45;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--ink);
}
.could-col .mark { font-family: var(--f-mono); font-size: 13px; }
.could-good .mark { color: var(--ok); }
.could-bad  .mark { color: var(--bad); }

/* Vision */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-whisper);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) { .vision-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vision-grid { grid-template-columns: 1fr; } }
.vision-card {
  background: var(--ground);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  position: relative;
  transition: background 200ms;
}
.vision-card:hover { background: var(--ground-raised); }
.vision-k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.vision-card p {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 24ch;
  font-weight: 400;
  flex: 1;
}
.vision-badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  align-self: flex-start;
  padding: 4px 8px;
  border: 1px solid var(--accent);
  border-radius: 99px;
}
.vision-cap {
  margin-top: 48px;
  padding: 32px 40px;
  border: 1px dashed var(--ink-whisper);
  border-radius: var(--radius-lg);
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--ink-dim);
}
.vision-cap em { color: var(--accent); }

/* How — pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-whisper);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--ground);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 420px;
  transition: background 200ms;
}
.pillar:hover { background: var(--ground-raised); }
.pillar-head { display: flex; align-items: baseline; gap: 14px; }
.pillar-k {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.pillar-head h3 {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.pillar-desc {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
}
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.pillar-list li {
  padding: 12px 0;
  border-top: 1px solid var(--ink-whisper);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
}
.pillar-list li::before {
  content: "→";
  color: var(--accent);
}

/* Discovery steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 32px 28px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.step-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.step h3 {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.step p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.5;
}

.offer-foot {
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .offer-foot { grid-template-columns: 1fr; } }
.offer-foot-l { display: flex; flex-direction: column; gap: 8px; }
.offer-foot-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.offer-foot-l p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
  max-width: 60ch;
}

/* ============================================================
   v4 — Shift diagram, Mirror diagram, Offer card, bigger Now
   ============================================================ */

/* Bigger Now cards */
.now-card p {
  font-size: 20px;
  line-height: 1.35;
  max-width: 30ch;
}
.now-k { font-size: 12px; }

/* Shift — Before / After deciders vs doers */
.shift-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .shift-diagram { grid-template-columns: 1fr; }
}
.shift-col {
  padding: 28px 24px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.shift-before { opacity: 0.72; }
.shift-col-head { display: flex; flex-direction: column; gap: 6px; }
.shift-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.shift-after .shift-k { color: var(--accent); }
.shift-col-head h3 {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.shift-nodes { display: flex; flex-direction: column; gap: 8px; }
.shift-node {
  padding: 12px 16px;
  border: 1px solid var(--ink-whisper);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-dim);
  background: var(--ground);
}
.shift-node.is-hero {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--ink-whisper));
  background: color-mix(in srgb, var(--accent) 6%, var(--ground));
}
.shift-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 100px;
  padding: 20px 0;
}
.shift-arrow svg { width: 100%; height: 24px; }
.shift-arrow span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
  max-width: 12ch;
}
@media (max-width: 820px) {
  .shift-arrow { flex-direction: row; padding: 8px 0; }
  .shift-arrow svg { width: 80px; height: 20px; transform: rotate(0deg); }
}

.shift-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Mirror diagram — your team ↔ ours */
.mirror-wrap {
  margin-top: 72px;
  padding: 48px 40px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
}
.mirror-head { margin-bottom: 36px; max-width: 720px; }
.mirror-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 8px 0 14px;
}
.mirror-title em { color: var(--accent); font-style: italic; }
.mirror-lede {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.55;
}
.mirror-diagram {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mirror-row {
  display: grid;
  grid-template-columns: 1fr 100px 2fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 720px) {
  .mirror-row { grid-template-columns: 1fr; gap: 6px; }
  .mirror-link { display: none; }
}
.mirror-node {
  padding: 16px 20px;
  border: 1px solid var(--ink-whisper);
  border-radius: 10px;
  background: var(--ground);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mirror-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.mirror-ours .mirror-tag { color: var(--accent); }
.mirror-name {
  font-family: var(--f-display);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mirror-link { display: flex; align-items: center; justify-content: center; }
.mirror-link svg { width: 100%; height: 20px; }

/* Offer card (single, with price) */
.offer-card {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 820px) { .offer-card { grid-template-columns: 1fr; } }
.offer-card-l {
  padding: 44px 36px;
  background: color-mix(in srgb, var(--accent) 8%, var(--ground-raised));
  border-right: 1px solid var(--ink-whisper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 820px) {
  .offer-card-l { border-right: none; border-bottom: 1px solid var(--ink-whisper); }
}
.offer-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.offer-num-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  line-height: 1.5;
  max-width: 30ch;
}
.offer-card-r {
  padding: 40px 36px;
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.offer-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-whisper);
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li span {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.offer-card-r .btn { align-self: flex-start; }

/* ============================================================
   v5 — The Gap hero visual
   ============================================================ */

.hv-gap { aspect-ratio: auto; min-height: 460px; }
.hv-gap-legend {
  display: flex;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.hv-gap-legend span { display: inline-flex; align-items: center; gap: 6px; }
.hv-gap-legend i {
  width: 12px; height: 2px; border-radius: 2px; display: inline-block;
}
.hv-gap-legend .is-lead  { color: var(--accent); }
.hv-gap-legend .is-lead i  { background: var(--accent); height: 3px; }
.hv-gap-legend .is-lag  i  { background: var(--ink-faint); }

.gap-stage {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 8px 0;
}
.gap-svg {
  width: 100%;
  flex: 1;
  min-height: 280px;
  display: block;
}
.gap-ticker {
  margin: 12px 16px 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--ink-whisper);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
  overflow: hidden;
}
.gap-ticker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 1.6s var(--ease-out) infinite;
}
.gap-ticker-label {
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.gap-ticker-text {
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: tickerIn 600ms var(--ease-out);
}
@keyframes tickerIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   v6 — Real tasks grid, How-foot, Start card
   ============================================================ */

/* Tasks grid — concrete recurring work */
.tasks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-whisper);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .tasks-grid { grid-template-columns: 1fr; } }
.task-card {
  background: var(--ground);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 200ms;
}
.task-card:hover { background: var(--ground-raised); }
.task-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.task-k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.task-kpi {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--ink-whisper));
  border-radius: 99px;
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  white-space: nowrap;
}
.task-t {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 34ch;
}
.shift-foot {
  padding: 32px 40px;
  border: 1px dashed var(--ink-whisper);
  border-radius: var(--radius-lg);
  font-family: var(--f-display);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  color: var(--ink-dim);
  text-align: left;
  max-width: 72ch;
}
.shift-foot em { color: var(--accent); font-style: italic; }

/* How-foot — who you work with */
.how-foot {
  margin-top: 48px;
  padding: 36px 40px;
  border: 1px solid var(--ink-whisper);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  background: var(--ground-raised);
}
.how-foot-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.how-foot p {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 60ch;
}

/* Start card — free session */
.start-card {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 820px) { .start-card { grid-template-columns: 1fr; } }
.start-card-l {
  padding: 44px 36px;
  background: color-mix(in srgb, var(--accent) 10%, var(--ground-raised));
  border-right: 1px solid var(--ink-whisper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 820px) {
  .start-card-l { border-right: none; border-bottom: 1px solid var(--ink-whisper); }
}
.start-price {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.start-price-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 32ch;
}
.start-card-r {
  padding: 40px 36px;
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.start-list { list-style: none; display: flex; flex-direction: column; }
.start-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-whisper);
}
.start-list li:last-child { border-bottom: none; }
.start-list li span {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.start-card-r .btn { align-self: flex-start; }


/* ============================================================
   v7 — Polish pass: bg flair, deck, migrate, people, start card
   ============================================================ */

/* ---------- Global: subtle texture + gradient bg ---------- */
body {
  background:
    radial-gradient(ellipse 120% 60% at 75% -10%,
      color-mix(in srgb, var(--accent) 10%, transparent) 0%,
      transparent 55%),
    radial-gradient(ellipse 90% 50% at 15% 100%,
      color-mix(in srgb, var(--accent) 4%, transparent) 0%,
      transparent 60%),
    var(--ground);
  background-attachment: fixed;
  position: relative;
}
body::before {
  /* grain */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}
[data-theme="light"] body::before { mix-blend-mode: multiply; opacity: 0.05; }

#app { position: relative; z-index: 1; }

/* Fraunces optical sizing */
.hero-tagline, .section-title, .cta-tagline {
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-tagline em, .section-title em, .cta-tagline em {
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

/* Rhythm: a bit more air above section 02, less space between sibling body sections */
.hero { padding: 80px 0 80px; min-height: auto; }
section { padding: 120px 0; }
section + section { padding-top: 96px; }
@media (max-width: 720px) {
  .hero { padding: 48px 0 40px; }
  section { padding: 72px 0; }
  section + section { padding-top: 56px; }
}

/* ---------- Hero bg ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--ink) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--ink) 6%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 80%);
}
.hero-bg-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(40px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate(0, 0) scale(1); opacity: 0.8; }
  to   { transform: translate(-20px, 30px) scale(1.08); opacity: 1; }
}
.hero > .wrap { position: relative; z-index: 1; }

/* ---------- Hero chart polish ---------- */
.hv-wrap { position: relative; }
.hv-gap {
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--ground-raised), color-mix(in srgb, var(--ground-raised) 70%, var(--ground)));
  padding: 18px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.hv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px 14px;
  border-bottom: 1px dashed var(--ink-whisper);
  margin-bottom: 10px;
}
.hv-head-l { display: flex; align-items: center; gap: 10px; }
.hv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.hv-title {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.hv-gap-legend {
  display: flex;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.hv-gap-legend span { display: flex; align-items: center; gap: 6px; }
.hv-gap-legend i {
  width: 16px; height: 2px; border-radius: 1px;
}
.hv-gap-legend .is-lead i { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.hv-gap-legend .is-lag i  { background: color-mix(in srgb, var(--ink) 65%, transparent); }

.hv-stage { position: relative; }
.gap-svg { width: 100%; height: auto; display: block; }
.gap-flag { animation: flagIn 600ms var(--ease-spring); transform-origin: 0 100%; }
@keyframes flagIn {
  from { opacity: 0; transform-origin: center; transform: scale(0.8); }
  to   { opacity: 1; }
}
.gap-mult { animation: multIn 500ms var(--ease-out); }
@keyframes multIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; }
}
@keyframes gapPing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.gap-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 8px 2px;
  border-top: 1px dashed var(--ink-whisper);
  margin-top: 6px;
}
.gap-foot-k {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 4px;
}
.gap-foot-sub {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 48ch;
}

/* ---------- Task deck (section 02) ---------- */
.task-deck {
  position: relative;
  user-select: none;
  margin-bottom: 40px;
}
.task-deck-stage {
  position: relative;
  height: 420px;
  perspective: 1200px;
  overflow: visible;
}
@media (max-width: 720px) { .task-deck-stage { height: 460px; } }

.task-slab {
  position: absolute;
  top: 0; left: 50%;
  width: min(640px, 94%);
  transform: translateX(-50%);
  margin-left: 0;
  height: 100%;
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    transform 600ms var(--ease-out),
    opacity 500ms var(--ease-out),
    box-shadow 400ms var(--ease-out);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  cursor: grab;
  left: auto;
  right: auto;
  inset: 0;
  margin: auto;
}
.task-slab:active { cursor: grabbing; }
.task-slab.is-active {
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px color-mix(in srgb, var(--accent) 30%, var(--ink-whisper)),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
.task-slab.is-active::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: var(--accent);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.ts-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.ts-k {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.ts-who {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-dim);
}
.ts-t {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 500;
  max-width: 30ch;
}
.ts-ba {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius);
  overflow: hidden;
}
.ts-ba-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--ink-whisper);
}
.ts-ba-row:last-child { border-bottom: none; }
.ts-before { background: color-mix(in srgb, var(--ink) 3%, transparent); }
.ts-after  { background: color-mix(in srgb, var(--accent) 7%, transparent); }
.ts-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.ts-after .ts-label { color: var(--accent); }
.ts-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.ts-kpi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 10px 16px;
  align-self: flex-start;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--ink-whisper));
  border-radius: 99px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  letter-spacing: 0.04em;
}
.ts-kpi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.task-deck-chrome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.tdc-nav {
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
}
.tdc-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.tdc-dots {
  display: flex;
  gap: 8px;
}
.tdc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-whisper);
  border: none;
  cursor: pointer;
  transition: all 200ms;
  padding: 0;
}
.tdc-dot:hover { background: var(--ink-faint); }
.tdc-dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--accent);
}
.tdc-count {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  display: flex;
  gap: 4px;
  min-width: 60px;
  justify-content: center;
}
.tdc-count-n { color: var(--ink); }
.tdc-count-sep { color: var(--ink-whisper); }

.shift-foot {
  padding: 32px 40px;
  border: 1px dashed var(--ink-whisper);
  border-radius: var(--radius-lg);
  font-family: var(--f-display);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  color: var(--ink-dim);
  text-align: left;
  max-width: 72ch;
  text-wrap: balance;
}
.shift-foot em { color: var(--accent); font-style: italic; }

/* ---------- Migrate section (03) ---------- */
.cant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .cant-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cant-grid { grid-template-columns: 1fr; } }
.cant-card {
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 300ms var(--ease-out), border-color 200ms;
}
.cant-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--ink) 20%, var(--ink-whisper));
}
.cant-x {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--bad) 14%, transparent);
  color: var(--bad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cant-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.migrate-bar {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 0;
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 780px) {
  .migrate-bar { grid-template-columns: 1fr; }
}
.mb-side { padding: 32px 36px; }
.mb-l {
  background: color-mix(in srgb, var(--ink) 4%, var(--ground-raised));
  border-right: 1px solid var(--ink-whisper);
}
.mb-r {
  background: color-mix(in srgb, var(--accent) 6%, var(--ground-raised));
  border-left: 1px solid var(--ink-whisper);
}
@media (max-width: 780px) {
  .mb-l { border-right: none; border-bottom: 1px solid var(--ink-whisper); }
  .mb-r { border-left: none; border-top: 1px solid var(--ink-whisper); }
}
.mb-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.mb-r .mb-k { color: var(--accent); }
.mb-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mb-side ul li {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.mb-l ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 10px; height: 1px;
  background: var(--ink-faint);
}
.mb-r ul li::before {
  content: "+";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 14px;
}
.mb-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border-left: 1px solid var(--ink-whisper);
  border-right: 1px solid var(--ink-whisper);
  background: var(--ground);
}
.mb-arrow svg { width: 120px; height: 32px; }
.mb-arrow-k {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
}
@media (max-width: 780px) {
  .mb-arrow {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--ink-whisper);
    border-bottom: 1px solid var(--ink-whisper);
    padding: 16px;
  }
  .mb-arrow svg { transform: rotate(90deg); width: 80px; height: 24px; }
}

/* ---------- People card (04) ---------- */
.people-card {
  margin-top: 48px;
  padding: 36px 40px;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 4%, var(--ground-raised)),
    var(--ground-raised));
  position: relative;
  overflow: hidden;
}
.people-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
}
.people-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .people-card-head { flex-direction: column; }
}
.how-foot-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.people-lede {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 42ch;
  text-wrap: balance;
}
.people-lede em { color: var(--accent); font-style: italic; }
.people-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ink-whisper);
  border-radius: 99px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
  animation: pulse 2.2s var(--ease-out) infinite;
}

.people-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-top: 1px dashed var(--ink-whisper);
  border-bottom: 1px dashed var(--ink-whisper);
}
@media (max-width: 900px) { .people-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .people-row { grid-template-columns: 1fr; } }

.person {
  display: flex;
  gap: 14px;
  align-items: center;
}
.person-av {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.person-av-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    color-mix(in srgb, var(--person-tone) 80%, white),
    var(--person-tone) 60%,
    color-mix(in srgb, var(--person-tone) 70%, black));
  filter: blur(0.5px);
}
.person-av-in {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--person-tone) 70%, #f5f1ea),
    color-mix(in srgb, var(--person-tone) 85%, #0a0a0a));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 20px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: inset 0 -6px 14px rgba(0,0,0,0.15), inset 0 1px 2px rgba(255,255,255,0.2);
}
.person-live {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ok);
  border: 2px solid var(--ground-raised);
  box-shadow: 0 0 6px var(--ok);
}
.person-t {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.person-name {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.person-role {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.4;
}
.people-foot {
  padding-top: 20px;
  text-align: center;
}
.pf-k {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-dim);
}

/* ---------- Start card (05) — revised ---------- */
.start-card {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ground-raised);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
@media (max-width: 820px) { .start-card { grid-template-columns: 1fr; } }

.start-card-l {
  padding: 48px 40px;
  background:
    radial-gradient(ellipse at top left, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%),
    color-mix(in srgb, var(--accent) 10%, var(--ground-raised));
  border-right: 1px solid var(--ink-whisper);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) {
  .start-card-l { border-right: none; border-bottom: 1px solid var(--ink-whisper); padding: 40px 32px; }
}
.start-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.start-price {
  font-family: var(--f-display);
  font-size: clamp(72px, 8vw, 108px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.95;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.start-price-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.start-price-sub div {
  padding-left: 16px;
  position: relative;
}
.start-price-sub div::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 18px;
  top: -2px;
}
.start-glyph {
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0.5;
  color: var(--accent);
  animation: startGlyph 18s linear infinite;
}
@keyframes startGlyph {
  to { transform: rotate(360deg); }
}

.start-card-r {
  padding: 44px 40px;
  background: var(--ground-raised);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 820px) {
  .start-card-r { padding: 36px 32px; }
}
.start-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.start-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-whisper);
  align-items: start;
}
.start-list li:first-child { padding-top: 0; }
.start-list li:last-child { border-bottom: none; padding-bottom: 0; }
.start-list li > span {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 6px;
  border-top: 1px solid var(--accent);
  display: inline-block;
}
.start-list li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.start-list li b {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.start-list li em {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.45;
}
.start-card-r .btn { align-self: flex-start; }

/* ---------- FAQ polish ---------- */
.faq-item {
  transition: background 200ms;
}
.faq-item:hover { background: color-mix(in srgb, var(--ground-raised) 60%, transparent); }

/* ---------- CTA polish: soft pattern ---------- */
.cta-block {
  position: relative;
  overflow: hidden;
}
.cta-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--accent) 40%, transparent) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.15;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

/* ---------- Nav polish: keep bg visible behind ---------- */
.nav.is-scrolled {
  background: color-mix(in srgb, var(--ground) 70%, transparent);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}


/* ============================================================
   v8 — Section-head gutter, now icons, tighter shift-foot,
        solid deck cards, hero chart polish
   ============================================================ */

/* Section-head: numeric marker sits in a narrow left gutter */
.section-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 36px;
  }
}
.section-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  padding-top: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-num::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--ink-whisper);
}
@media (max-width: 860px) { .section-num::after { display: none; } }

.section-head-right { min-width: 0; }
.section-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
}
.section-lede {
  font-size: 18px;
  color: var(--ink-dim);
  max-width: 52ch;
  margin-top: 20px;
  line-height: 1.5;
}

/* Now-card: icon top-left */
.now-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .now-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .now-grid { grid-template-columns: 1fr; } }

.now-card {
  background: var(--ground-raised);
  border: 1px solid var(--ink-whisper);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 300ms var(--ease-out), border-color 200ms, background 200ms;
  position: relative;
  overflow: hidden;
}
.now-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--ink-whisper));
  background: color-mix(in srgb, var(--accent) 3%, var(--ground-raised));
}
.now-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 10%, var(--ground));
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
}
.now-card-icon svg {
  width: 28px;
  height: 28px;
}
.now-card:hover .now-card-icon {
  background: color-mix(in srgb, var(--accent) 18%, var(--ground));
}
.now-k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}
.now-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

/* Shift-foot v2 — the lead line + body */
.shift-foot {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  padding: 36px 40px;
  border: 1px dashed var(--ink-whisper);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--ground-raised) 60%, transparent);
}
@media (max-width: 820px) {
  .shift-foot { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
}
.sf-lead {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.sf-lead em { color: var(--accent); font-style: italic; }
.sf-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 50ch;
  align-self: center;
}
.sf-body em { color: var(--ink); font-style: italic; }

/* Task deck: fully opaque cards, clip siblings */
.task-deck-stage { overflow: hidden; }
.task-slab {
  background: var(--ground-raised);
  opacity: 1 !important;
}
.task-slab:not(.is-active) {
  /* off-screen cards stay behind the active; kept at opacity 0 via inline for transition */
  background: var(--ground-raised);
}

/* Hero gap foot: simpler since we removed heavy language */
.gap-foot-sub { max-width: 54ch; }

/* Make the hero chart flag label readable */
.gap-flag text { pointer-events: none; }

/* Pricing section anchor fix (orphaned) */
#offer .section-head { margin-bottom: 48px; }

/* Drop old Fraunces-specific variation settings */
.hero-tagline, .section-title, .cta-tagline,
.hero-tagline em, .section-title em, .cta-tagline em {
  font-variation-settings: normal;
}

/* Instrument Serif tuning — the italic needs slightly more breathing */
.hero-tagline em, .section-title em, .cta-tagline em {
  font-style: italic;
}
.hero-tagline {
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  max-width: 44ch;
}

/* Join page -------------------------------------------------- */
.join { min-height: 100vh; display: flex; flex-direction: column; background: #fff; color: #0f172a; font-family: 'Geist', system-ui, sans-serif; }
.join-header { padding: 1.5rem 2.5rem; }
.join-header .logo { color: #0f172a; }
.join-body { flex: 1; width: 100%; max-width: 640px; margin: 0 auto; padding: 4rem 2.5rem 6rem; }
.join-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem; border-radius: 999px; background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; font-size: .78rem; font-weight: 500; margin-bottom: 1.5rem; }
.join-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #f59e0b; }
.join-title { font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: #0f172a; margin: 0; }
.join-lede { margin-top: 1.5rem; font-size: 1.1rem; line-height: 1.6; color: #475569; }
.join-oneliner-wrap { margin-top: 3rem; }
.join-oneliner-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #64748b; margin-bottom: .75rem; }
.join-oneliner { position: relative; border-radius: 1rem; border: 1px solid #e2e8f0; background: #f8fafc; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.join-oneliner pre { margin: 0; padding: 1.25rem 7rem 1.25rem 1.25rem; font-family: 'Geist Mono', ui-monospace, monospace; font-size: .9rem; color: #1e293b; overflow-x: auto; line-height: 1.5; }
.join-copy { position: absolute; top: .6rem; right: .6rem; padding: .45rem .85rem; font-size: .78rem; font-weight: 500; border-radius: .55rem; background: #fff; border: 1px solid #e2e8f0; color: #334155; cursor: pointer; box-shadow: 0 1px 2px rgba(15,23,42,0.04); transition: background .15s, border-color .15s; }
.join-copy:hover { background: #f1f5f9; border-color: #cbd5e1; }
.join-hint { margin-top: .85rem; font-size: .9rem; color: #64748b; }
.join-footer { padding: 1.75rem 2.5rem; font-size: .8rem; color: #94a3b8; border-top: 1px solid #f1f5f9; display: flex; align-items: center; gap: .5rem; }
.logo-mark--muted { filter: grayscale(1); opacity: .6; }
