/* ============================================================
   Автономия — Landing Styles
   Editorial-Technical Minimal · Dark-first · OKLCH
   Fonts: Fraunces (display), Commissioner (body), JetBrains Mono (accent)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* palette */
  --bg:            oklch(0.992 0.003 258);
  --bg-elevated:   oklch(0.965 0.004 258);
  --bg-soft:       oklch(0.945 0.006 258);
  --line:          oklch(0.88 0.008 258);
  --line-strong:   oklch(0.76 0.012 258);
  --fg:            oklch(0.16 0.03 258);
  --fg-muted:      oklch(0.42 0.025 258);
  --fg-dim:        oklch(0.62 0.018 258);
  --accent:        oklch(0.54 0.24 258);  /* vivid electric blue on white */
  --accent-soft:   oklch(0.54 0.24 258 / 0.18);
  --accent-glow:   oklch(0.54 0.24 258 / 0.35);
  --accent-dim:    oklch(0.54 0.24 258 / 0.08);
  --good:          oklch(0.82 0.14 155);
  --bad:           oklch(0.72 0.14 25);

  /* type */
  --ff-body:    "Commissioner", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --ff-display: "Bricolage Grotesque", "Commissioner", ui-sans-serif, system-ui, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* fluid scale */
  --fs-display-xxl: clamp(2.1rem, 1.5rem + 2.4vw, 3.4rem);
  --fs-display-xl:  clamp(1.7rem, 1.35rem + 1.5vw, 2.6rem);
  --fs-h2:          clamp(1.75rem, 1.35rem + 1.6vw, 2.75rem);
  --fs-h3:          clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  --fs-body-lg:     clamp(1.05rem, 0.98rem + 0.3vw, 1.25rem);
  --fs-body:        1rem;
  --fs-small:       0.8125rem;
  --fs-mono:        0.78125rem;

  /* layout */
  --container-max: 1320px;
  --gutter:        clamp(1.25rem, 4vw, 3.5rem);
  --section-y:     clamp(5rem, 9vw, 9rem);
  --radius:        2px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol, dl, dd, dt { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
::selection { background: var(--accent); color: var(--bg); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

main > section { padding-block: var(--section-y); border-top: 1px solid var(--line); }
main > section:first-child { border-top: 0; }

/* ---------- TYPE ROLES ---------- */
.mono { font-family: var(--ff-mono); font-size: var(--fs-mono); letter-spacing: 0.02em; text-transform: uppercase; }
.display {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-weight: 600;
  font-size: var(--fs-display-xxl);
  line-height: 1.04;
  letter-spacing: -0.022em;
  max-width: 22ch;
}
.display .display__tail {
  display: block;
  margin-top: 0.35em;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: -0.018em;
}
.h2 {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 48;
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h2 em { font-style: normal; color: var(--fg-muted); }
h3 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.25;
  text-wrap: balance;
  letter-spacing: -0.005em;
}
p { font-size: var(--fs-body-lg); color: var(--fg); text-wrap: pretty; }
.small { font-size: var(--fs-small); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.2rem;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.80 0.17 82 / 0.18);
}
.mini {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

/* section head */
.section-head { max-width: 48rem; margin-bottom: clamp(2.5rem, 4vw, 4.5rem); }
.section-head__num { color: var(--fg-dim); margin-bottom: 1.2rem; }
.section-head__lede { color: var(--fg-muted); margin-top: 1.1rem; max-width: 42rem; }
.section-head--split {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: baseline;
  max-width: none;
}
.section-head--split .section-head__lede { text-align: right; max-width: 24rem; margin-top: 0; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 68px;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.8rem; font-weight: 500; }
.brand__mark {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-1px);
}
.brand__mark--pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 0 12px var(--accent-glow);
  animation: pulse 2.6s ease-in-out infinite;
  transform: none;
  flex-shrink: 0;
  position: relative;
}
.brand__mark--pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: ripple 2.6s ease-out infinite;
}
.brand__word { font-family: var(--ff-body); letter-spacing: -0.003em; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
  position: relative;
}
.site-nav a:not(.site-nav__cta):hover,
.site-nav a.is-active {
  color: var(--accent);
}
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.site-nav__cta {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line-strong);
  color: var(--fg) !important;
  border-radius: var(--radius);
}
.site-nav__cta:hover { background: var(--fg); color: var(--bg) !important; border-color: var(--fg); }
@media (max-width: 820px) {
  .site-header__inner {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem 0.9rem;
    gap: 1rem;
  }
  .brand {
    gap: 0.95rem;
  }
  .brand__word {
    font-size: 1.08rem;
  }
  .site-nav {
    width: 100%;
    gap: 0.55rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 0.15rem;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    overscroll-behavior-x: contain;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.58rem 0.82rem;
    border: 1px solid var(--line);
    background: color-mix(in oklch, var(--bg) 92%, transparent);
  }
  .site-nav a:not(.site-nav__cta):hover,
  .site-nav a.is-active {
    color: var(--accent);
    border-color: var(--accent-soft);
    background: var(--accent-dim);
  }
  .site-nav a.is-active::after {
    display: none;
  }
  .site-nav__cta {
    margin-left: auto;
    padding-inline: 0.9rem;
    border-color: var(--accent);
    color: var(--accent) !important;
    background: var(--accent-dim);
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.003em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s, color 0.18s, border-color 0.18s;
}
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); color: var(--bg); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--fg); background: var(--bg-elevated); }
.btn--full { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* ---------- HERO ---------- */
.hero { padding-top: clamp(4rem, 7vw, 7rem); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 5vw, 5rem);
}
.hero__lede { min-width: 0; }
.hero__aside { max-width: 32rem; padding-bottom: 0.6rem; }
.hero__sub {
  color: var(--fg-muted);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.hero__meta > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.hero__meta > div:last-child { border-bottom: 0; padding-bottom: 0.25rem; }
.hero__meta dt {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.hero__meta dd {
  font-family: var(--ff-mono);
  font-size: 0.92rem;
  color: var(--fg);
  letter-spacing: 0;
  text-transform: none;
  font-feature-settings: "tnum";
  text-align: right;
}
.hero__meta dd.accent { color: var(--accent); font-size: 1.05rem; }
.hero__rule {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__rule-line { height: 1px; background: var(--line); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
  .hero__aside { padding-bottom: 0; }
}

/* ---------- MECHANISM ---------- */
.mechanism__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 0;
  margin-top: 1rem;
}
.mechanism__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.6rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  align-items: start;
}
.mechanism__list .num {
  color: var(--accent);
  font-size: var(--fs-mono);
}
.mechanism__list h3 { grid-column: 2; }
.mechanism__list p { grid-column: 2; color: var(--fg-muted); font-size: 1rem; }
@media (max-width: 720px) {
  .mechanism__list { grid-template-columns: 1fr; }
}

/* ---------- SIGNALS ---------- */
.signals__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.signals__list li {
  padding: 1.85rem 2rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: background 0.2s;
  position: relative;
}
.signals__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: transparent;
  transition: background 0.2s;
}
.signals__list li:hover { background: var(--bg-elevated); }
.signals__list li:hover::before { background: var(--accent); }
.signals__list .tag { color: var(--accent); }
.signals__list h3 {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 32;
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.014em;
}
.signals__list p {
  color: var(--fg-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .signals__list { grid-template-columns: 1fr; }
}

/* ---------- JOBS ---------- */
.jobs__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.jobs__list li {
  padding: 2.25rem 2rem 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background 0.2s;
}
.jobs__list li:hover { background: var(--bg-elevated); }
.jobs__list .jobs__list--wide { grid-column: span 2; }
@media (max-width: 980px) { .jobs__list .jobs__list--wide { grid-column: span 1; } }
.jobs__list .tag { color: var(--accent); }
.jobs__list h3 { font-weight: 500; }
.jobs__list p { color: var(--fg-muted); font-size: 1rem; }
@media (max-width: 980px) { .jobs__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .jobs__list { grid-template-columns: 1fr; } }

/* ---------- AHA ---------- */
.aha__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.aha__copy { position: sticky; top: 96px; }
.aha__body { color: var(--fg-muted); margin-top: 1.25rem; }
.aha__tracks { display: grid; gap: 1.25rem; }
.track {
  border: 1px solid var(--line);
  padding: 1.85rem 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.track:hover { border-color: var(--line-strong); background: var(--bg-elevated); }
.track header { display: flex; flex-direction: column; gap: 0.45rem; }
.track header .tag { color: var(--accent); }
.track__dur { color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.track p { color: var(--fg-muted); font-size: 1rem; }
.track .btn { align-self: flex-start; }
@media (max-width: 860px) {
  .aha__grid { grid-template-columns: 1fr; }
  .aha__copy { position: static; }
}

/* ---------- VALUES ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 14rem;
}
.value .tag { color: var(--accent); }
.value h3 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.value p { color: var(--fg-muted); font-size: 1rem; }
@media (max-width: 720px) { .values__grid { grid-template-columns: 1fr; } }

/* ---------- AUDIENCE ---------- */
.audience__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.audience__head { position: sticky; top: 100px; align-self: start; }
.audience__lede { color: var(--fg-muted); margin-top: 1.25rem; }
.audience__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 3rem;
}
.audience__col--problems { grid-column: 1 / -1; }
@media (max-width: 720px) {
  .audience__cols { grid-template-columns: 1fr; }
}
.stack-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg-muted);
  font-size: 1rem;
}
.stack-list li:last-child { border-bottom: 0; }
.problem-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}
.problem-list li:last-child { border-bottom: 0; }
.problem-list p { font-size: 1rem; }
.force {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.force__bar {
  height: 3px;
  background: var(--line);
  position: relative;
  border-radius: 2px;
}
.force__bar::after {
  content: "";
  position: absolute; inset: 0;
  width: var(--force, 0);
  background: var(--accent);
}
.force__label { color: var(--fg-dim); }
@media (max-width: 900px) {
  .audience__grid { grid-template-columns: 1fr; }
  .audience__head { position: static; }
}

/* ---------- HOW ---------- */
.how__track {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step__lead { display: flex; flex-direction: column; gap: 0.5rem; }
.step__lead .mono { color: var(--accent); }
.step__lead h3 { font-weight: 500; }
.step__body { color: var(--fg); font-size: 1rem; }
.step__val { color: var(--fg-muted); font-size: 0.95rem; padding-left: 1.25rem; border-left: 1px solid var(--line); }
@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
  .step__val { padding-left: 0; border-left: 0; padding-top: 0.5rem; border-top: 1px solid var(--line); }
}

/* ---------- POINT B ---------- */
.point-b__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.point-b__col {
  padding: 3rem 2.25rem 3.5rem;
  border-right: 1px solid var(--line);
}
.point-b__col:last-child { border-right: 0; }
.point-b__col--soft { background: var(--bg-elevated); }
.point-b__col .h2 { margin-top: 1rem; margin-bottom: 2rem; }
.result-list { display: grid; gap: 1.8rem; }
.result-list li { padding-top: 1.4rem; border-top: 1px solid var(--line); }
.result-list h3 { font-weight: 500; margin-bottom: 0.5rem; font-size: 1.15rem; }
.result-list p { color: var(--fg-muted); font-size: 1rem; }
.placeholder {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  padding: 0.08em 0.55em;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--ff-mono);
  font-size: 0.82em;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  text-transform: none;
  font-feature-settings: "tnum";
}
.placeholder::before {
  content: "~";
  color: var(--accent);
  font-weight: 500;
}
@media (max-width: 860px) {
  .point-b__grid { grid-template-columns: 1fr; }
  .point-b__col { border-right: 0; border-bottom: 1px solid var(--line); }
  .point-b__col:last-child { border-bottom: 0; }
}

/* ---------- BARRIERS ---------- */
.barriers__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.barrier { border-bottom: 1px solid var(--line); }
.barrier summary {
  list-style: none;
  cursor: pointer;
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.008em;
  transition: color 0.2s;
}
.barrier summary::-webkit-details-marker { display: none; }
.barrier summary::after {
  content: "+";
  font-family: var(--ff-mono);
  font-size: 1.4rem;
  color: var(--fg-muted);
  transition: transform 0.2s;
  line-height: 1;
}
.barrier[open] summary::after { content: "−"; color: var(--accent); }
.barrier summary .mono { color: var(--accent); align-self: center; }
.barrier summary:hover { color: var(--fg); }
.barrier > p {
  padding: 0 0 2rem 0;
  color: var(--fg-muted);
  max-width: 54rem;
  font-size: 1rem;
}

/* ---------- VS TABLE ---------- */
.vs__table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}
.vs__row {
  display: grid;
  grid-template-columns: minmax(9rem, 1.3fr) repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.vs__row:last-child { border-bottom: 0; }
.vs__row > * {
  padding: 1.1rem 1.25rem;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  color: var(--fg-muted);
  min-height: 3.6rem;
}
.vs__row > *:last-child { border-right: 0; }
.vs__row--head > * {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg-soft);
  min-height: 3rem;
  padding-block: 1rem;
}
.vs__row > [role="rowheader"] {
  color: var(--fg);
  font-weight: 500;
  background: var(--bg-soft);
}
.vs__row .mono { text-transform: none; letter-spacing: 0; color: var(--fg); }
.vs__row .mono.ok { color: var(--good); }
.vs__row .mono.bad { color: var(--bad); }
@media (max-width: 900px) {
  .vs__table { border: 0; background: transparent; }
  .vs__row { grid-template-columns: 1fr; border: 1px solid var(--line); border-bottom: 0; }
  .vs__row:last-child { border-bottom: 1px solid var(--line); }
  .vs__row--head { display: none; }
  .vs__row > * { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; padding: 0.85rem 1rem; }
  .vs__row > *:last-child { border-bottom: 0; }
  .vs__row > *::before {
    content: attr(data-label);
    font-family: var(--ff-mono);
    font-size: var(--fs-mono);
    color: var(--fg-dim);
    text-transform: uppercase;
    margin-right: 0.75rem;
  }
  .vs__row > [role="rowheader"] {
    font-weight: 600;
    color: var(--fg);
    background: var(--bg-elevated);
    border-left: 2px solid var(--accent);
  }
}

/* ---------- CTA ---------- */
.cta {
  background: var(--bg-elevated);
}
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.cta__copy .h2 { margin-top: 1rem; }
.cta__body { color: var(--fg-muted); margin-top: 1.25rem; max-width: 30rem; }
.cta__form {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.field { display: grid; gap: 0.5rem; }
.field > span {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0 0.75rem;
  color: var(--fg);
  font-size: 1rem;
  font-family: var(--ff-body);
  transition: border-color 0.2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field input:invalid:not(:placeholder-shown) { border-color: oklch(0.55 0.22 25); }
.req { color: var(--accent); font-style: normal; text-decoration: none; }
.cta__legal { color: var(--fg-dim); text-transform: none; letter-spacing: 0; margin-top: -0.3rem; }
@media (max-width: 860px) {
  .cta__grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq__layout {
  display: grid;
  grid-template-columns: minmax(16rem, 20rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.faq__aside {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__aside .h2 { margin: 0; }
.faq__aside-lede {
  color: var(--fg-muted);
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  margin: 0;
}
.faq__aside-cta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--accent-soft);
  width: fit-content;
  transition: border-color 0.2s, gap 0.2s, color 0.2s;
}
.faq__aside-cta:hover {
  border-color: var(--accent);
  gap: 0.7rem;
}

.faq__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: start;
}
.faq__card {
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.faq__card:hover {
  border-color: var(--line-strong);
  background: var(--bg-elevated);
}
.faq__card[open] {
  border-color: var(--accent);
  background: var(--bg-elevated);
  box-shadow: 0 1px 0 var(--accent-glow);
}
.faq__card-q {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--fg);
  transition: color 0.2s;
}
.faq__card-q::-webkit-details-marker { display: none; }
.faq__card-q .tag {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  padding-top: 0.22rem;
  white-space: nowrap;
}
.faq__card-title { min-width: 0; }
.faq__card-toggle {
  font-family: var(--ff-mono);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1;
  color: var(--fg-muted);
  padding-top: 0.15rem;
  transition: transform 0.3s ease, color 0.2s;
}
.faq__card:hover .faq__card-q { color: var(--accent); }
.faq__card:hover .faq__card-toggle { color: var(--accent); }
.faq__card[open] .faq__card-q { color: var(--accent); }
.faq__card[open] .faq__card-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq__card-a {
  margin: 0 1.25rem 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  color: var(--fg-muted);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq__aside { position: static; top: auto; }
  .faq__cards { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
  background: var(--bg);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}
.brand--footer { font-size: 1.1rem; }
.footer-note {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 22rem;
  margin-top: 1rem;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.site-footer h4 {
  color: var(--fg-dim);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.site-footer ul { display: grid; gap: 0.5rem; }
.site-footer ul a {
  color: var(--fg-muted);
  font-size: 0.92rem;
  transition: color 0.15s;
}
.site-footer ul a:hover { color: var(--fg); }
.site-footer__bar {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--fg-dim);
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- MOTION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .display .word { opacity: 1 !important; transform: none !important; }
  .stack-marquee__track { animation: none !important; }
  .hero__scanline, .eyebrow .dot::after { animation: none !important; }
}

/* ============================================================
   BOLD VARIANT — ambitious visual layer
   ============================================================ */

/* ---------- GLOBAL OVERLAYS ---------- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 50;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--accent-soft);
  transition: width 0.12s linear;
}

/* ---------- HERO DECORATIONS ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background-image:
    linear-gradient(to right, oklch(0.54 0.24 258 / 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.54 0.24 258 / 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center;
  transform: rotate(45deg);
  transform-origin: center;
  mask-image: radial-gradient(ellipse 55% 40% at 50% 50%, #000 0%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 55% 40% at 50% 50%, #000 0%, #000 40%, transparent 85%);
  z-index: 0;
}
.hero__scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  box-shadow: 0 0 16px var(--accent-glow);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
@keyframes scanline {
  0%, 100% { transform: translateY(0); opacity: 0; }
  5% { opacity: 0.7; }
  45% { opacity: 0.7; }
  50% { transform: translateY(60vh); opacity: 0; }
  50.01% { transform: translateY(0); }
}
.hero__index {
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 96;
  font-weight: 700;
  font-size: clamp(18rem, 42vw, 54rem);
  line-height: 0.78;
  letter-spacing: -0.07em;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  text-shadow: 0 0 80px var(--accent-soft);
}
.hero__grid,
.hero > .container.hero__grid {
  position: relative;
  z-index: 2;
}
.hero__rule { position: relative; z-index: 2; }

/* ---------- EYEBROW upgrade ---------- */
.eyebrow {
  gap: 0.75em;
  color: var(--fg);
}
.eyebrow .dot,
.brand__mark--pulse {
  position: relative;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 0 12px var(--accent-glow);
  animation: pulse 2.6s ease-in-out infinite;
}
.eyebrow .dot::after,
.brand__mark--pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: ripple 2.6s ease-out infinite;
}
.eyebrow__label {
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-right: 0.5em;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft), 0 0 12px var(--accent-glow); }
  50%      { box-shadow: 0 0 0 6px var(--accent-dim), 0 0 20px var(--accent-glow); }
}
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ---------- KINETIC HEADLINE ---------- */
.display .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  filter: blur(6px);
  animation: word-in 0.85s cubic-bezier(0.22, 0.72, 0.18, 1) forwards;
  animation-delay: calc(120ms + var(--i, 0) * 65ms);
}
@keyframes word-in {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ---------- HERO META / accent glow ---------- */
.hero__meta dd.accent {
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent-glow);
  font-weight: 600;
}

/* ---------- BUTTONS upgrade ---------- */
.btn--primary {
  background: var(--fg);
  color: #fff;
  position: relative;
}
.btn--primary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.site-nav__cta {
  position: relative;
}
.site-nav__cta:hover {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}

/* ---------- STACK MARQUEE ---------- */
.stack-marquee {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.stack-marquee::before,
.stack-marquee::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.22;
}
.stack-marquee::before { top: 0; }
.stack-marquee::after { bottom: 0; }
.stack-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.stack-marquee:hover .stack-marquee__track { animation-play-state: paused; }
.stack-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  flex-shrink: 0;
  padding-right: clamp(2rem, 4vw, 3.5rem);
}
.stack-marquee__group span {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 96;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--fg);
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.3s;
}
.stack-marquee__group span:hover { color: var(--accent); }
.stack-marquee__group b {
  display: inline-flex;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  font-size: 0;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTION HEAD upgrade ---------- */
.section-head__num {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.35rem 0.7rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-soft);
  border-radius: 2px;
  color: var(--accent);
  width: fit-content;
  transition: all 0.3s;
}
.section-head__num::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ---------- SIGNALS / JOBS / VALUES hover — green rails ---------- */
.signals__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: transparent;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease, background 0.2s;
}
.signals__list li:hover::before {
  background: var(--accent);
  transform: scaleY(1);
  box-shadow: 0 0 16px var(--accent-glow);
}
.signals__list .tag { color: var(--accent); transition: letter-spacing 0.25s; }
.signals__list li:hover .tag { letter-spacing: 0.12em; }
.signals__list li:hover { background: var(--bg-elevated); }
.signals__list li:hover h3 { color: var(--accent); transition: color 0.2s; }

.jobs__list li {
  position: relative;
  transition: background 0.25s, transform 0.25s;
}
.jobs__list li::after {
  content: "→";
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.jobs__list li:hover { background: var(--bg-elevated); }
.jobs__list li:hover::after { opacity: 1; transform: translateX(0); }
.jobs__list li:hover h3 { color: var(--accent); transition: color 0.2s; }
.jobs__list .tag { color: var(--accent); }

.value {
  position: relative;
  transition: background 0.25s;
}
.value::before {
  content: "+";
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 1.2rem;
  opacity: 0.35;
  transition: transform 0.4s, opacity 0.3s;
}
.value:hover::before {
  opacity: 1;
  transform: rotate(90deg);
}
.value:hover { background: var(--bg-elevated); }
.value .tag { color: var(--accent); }

/* ---------- MECHANISM num upgrade ---------- */
.mechanism__list .num {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-soft);
}
.mechanism__list li {
  transition: background 0.25s;
  padding-inline: 0.5rem;
  margin-inline: -0.5rem;
}
.mechanism__list li:hover { background: var(--accent-dim); }

/* ---------- CTA form accent ---------- */
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}
.cta__form {
  position: relative;
}
.cta__form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--accent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.cta__form:focus-within::before { opacity: 0.4; }

/* ---------- BRAND mark accent ---------- */
.brand__mark {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}

/* ---------- DISPLAY tail contrast ---------- */
.display .display__tail {
  color: var(--fg-muted);
}

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

/* ---------- HERO DISPLAY — Helvetica Neue override (69px-style) ---------- */
.display {
  font-family: "Helvetica Neue", "Helvetica", "Arial", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-variation-settings: normal;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.032em;
}
.display .display__tail {
  font-weight: 300;
  letter-spacing: -0.028em;
  color: var(--fg-muted);
}

/* ---------- CASES bento grid ---------- */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(14rem, auto);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cases__grid .case {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cases__grid .case::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 35% at 80% 20%, var(--accent-dim), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.cases__grid .case::after {
  content: "↗";
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: var(--ff-mono);
  font-size: 1.15rem;
  color: var(--accent);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cases__grid .case:hover { background: var(--bg-elevated); }
.cases__grid .case:hover::before { opacity: 1; }
.cases__grid .case:hover::after { opacity: 1; transform: translate(0, 0); }
.cases__grid .case > * { position: relative; z-index: 1; }

.cases__grid .case--wide {
  grid-column: span 2;
  background:
    linear-gradient(90deg, var(--accent-dim), transparent 55%),
    var(--bg);
}
.cases__grid .case--wide::before {
  background: radial-gradient(ellipse 50% 60% at 15% 50%, var(--accent-soft), transparent 70%);
}

.case__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  margin-bottom: 0.3rem;
}
.case__head .tag {
  color: var(--accent);
  font-weight: 600;
}
.case__client {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-soft);
  border-radius: 2px;
}
.case__client b {
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.2em;
}

.case__title {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 72;
  font-weight: 600;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--fg);
  margin-top: 0.25rem;
}
.cases__grid .case--wide .case__title {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  letter-spacing: -0.028em;
}
.case__desc {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 44rem;
}
.cases__grid .case--wide .case__desc { font-size: 1.05rem; }
.cases__grid .case--wide { gap: 1.4rem; }

@media (max-width: 980px) {
  .cases__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cases__grid .case--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .cases__grid { grid-template-columns: 1fr; }
  .cases__grid .case--wide { grid-column: span 1; }
}

/* ---------- CASE metric (subdued inline stat) ---------- */
.case__metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  align-self: stretch;
}
.case__metric-num {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--accent);
}
.case__metric-label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
  line-height: 1.3;
}
.case__metric-label br { display: none; }

/* two-metric row: wrapper owns the bottom-anchor + divider so the
   nested .case__metric don't double up margin-top:auto / border-top.
   Single-metric cards use bare .case__metric and stay untouched. */
.case__metrics {
  margin-top: auto;
  align-self: stretch;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
}
.case__metrics .case__metric {
  margin-top: 0;
  align-self: auto;
  padding-top: 0;
  border-top: 0;
}

/* ---------- VALUES editorial override ---------- */
.values--editorial {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, var(--accent-dim), transparent 60%),
    var(--bg);
}
.values--editorial .section-head {
  margin-bottom: clamp(3rem, 5vw, 5rem);
  max-width: none;
}
.values__title {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 96;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.values__title em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 32px var(--accent-soft);
}
.values__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--accent-soft);
}
.values--editorial .value {
  display: grid;
  grid-template-columns: minmax(6rem, 9rem) 1fr minmax(0, 2fr);
  column-gap: clamp(1.5rem, 4vw, 4rem);
  row-gap: 0;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--accent-soft);
  border-right: 0;
  min-height: 0;
  align-items: baseline;
  background: transparent;
  transition: background 0.35s ease, padding-left 0.35s ease;
  position: relative;
}
.values--editorial .value::before {
  content: none;
}
.values--editorial .value:hover {
  background: linear-gradient(to right, var(--accent-dim), transparent 70%);
  padding-left: 1rem;
}
.value__num {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 96;
  font-weight: 700;
  font-size: clamp(3.6rem, 6.5vw, 6.2rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  color: var(--accent);
  text-shadow: 0 0 32px var(--accent-glow);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.values--editorial .value:hover .value__num {
  transform: translateX(-4px) scale(1.04);
}
.value__body h3 {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 48;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--fg);
}
.value__body p {
  color: var(--fg-muted);
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.55;
  grid-column: 3;
  justify-self: start;
}
.values--editorial .value .value__body {
  display: contents;
}
@media (max-width: 900px) {
  .values--editorial .value {
    grid-template-columns: auto 1fr;
    row-gap: 0.75rem;
  }
  .value__body p { grid-column: 1 / -1; max-width: 56rem; }
  .value__num { font-size: clamp(3rem, 10vw, 4.5rem); }
}

/* ---------- BOOKING SLOT PICKER ---------- */
.booking {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.booking__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.booking__label {
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  font-size: 0.68rem;
}
.booking__status {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.68rem;
  text-transform: none;
}
.booking__status:empty { display: none; }

.booking__days {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  min-width: 0;
}
.booking__days::-webkit-scrollbar { height: 3px; }
.booking__days::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 0; }
.booking__days::-webkit-scrollbar-track { background: transparent; }

.day-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.42rem 0.6rem 0.48rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  cursor: pointer;
  font-family: var(--ff-body);
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  min-width: 3.6rem;
  line-height: 1;
}
.day-chip:hover { border-color: var(--accent); }
.day-chip.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 4px 14px -6px var(--accent-glow);
}
.day-chip__dow {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
}
.day-chip.is-active .day-chip__dow { color: var(--bg); opacity: 0.8; }
.day-chip__date {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.booking__times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(3.4rem, 1fr));
  gap: 0.3rem;
  min-height: 2.4rem;
}
.booking__empty {
  grid-column: 1 / -1;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  padding: 0.6rem 0 0.1rem;
}
.time-chip {
  padding: 0.5rem 0.3rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-feature-settings: "tnum";
  letter-spacing: 0;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.time-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.time-chip.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 6px 16px -6px var(--accent-glow);
}

/* Booking success state — replaces .booking container after event created */
.booking-success {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 2rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.35rem;
}
.booking-success__tag {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-success h3 {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 72;
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 26ch;
}
.booking-success p {
  color: var(--fg-muted);
  font-size: 0.94rem;
  max-width: 32ch;
}
.booking-success .btn {
  margin-top: 0.3rem;
}

/* ---------- CTA eyebrow (replaces removed §-badge) ---------- */
.cta__eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

/* ---------- SIDE CTA (floating vertical button) ---------- */
.side-cta {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 45;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.3rem 0.85rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: -10px 0 32px -10px var(--accent-glow), -2px 0 0 var(--accent);
  transition: padding 0.35s ease, background 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
}
.side-cta:hover {
  padding-block: 1.6rem;
  background: var(--fg);
  color: var(--bg);
}
.side-cta__arrow {
  display: inline-flex;
  transform: rotate(90deg);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}
.side-cta:hover .side-cta__arrow {
  transform: rotate(90deg) translateY(-3px);
}
.side-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(100%);
}
@media (max-width: 820px) {
  body {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
  .side-cta {
    display: inline-flex;
    right: 1rem;
    left: 1rem;
    top: auto;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    transform: none;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    justify-content: center;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 14px 36px -14px var(--accent-glow);
    font-size: 0.9rem;
  }
  .side-cta:hover {
    padding: 0.95rem 1.2rem;
  }
  .side-cta__arrow {
    transform: none;
  }
  .side-cta:hover .side-cta__arrow {
    transform: translateX(3px);
  }
  .side-cta.is-hidden {
    transform: translateY(120%);
  }
}

/* ---------- SIGNALS reveal stagger ---------- */
.signals__list li.reveal {
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.22, 0.72, 0.18, 1);
}
.signals__list li:nth-child(1).reveal { transition-delay:   0ms; }
.signals__list li:nth-child(2).reveal { transition-delay:  80ms; }
.signals__list li:nth-child(3).reveal { transition-delay: 160ms; }
.signals__list li:nth-child(4).reveal { transition-delay: 240ms; }
.signals__list li:nth-child(5).reveal { transition-delay: 320ms; }
.signals__list li:nth-child(6).reveal { transition-delay: 400ms; }
