/* =============================================================
   LIGHTBULB INTELLIGENCE — v2 / Atlas brand
   Dark glassmorphism · Space Grotesk · single Signal-blue accent
   "Rule of one" — one accent per screen. If a second accent is
   needed, the first one isn't doing its job.
   ============================================================= */

/* ============================== TOKENS ============================== */
:root {
  /* Surfaces */
  --bg-0: #05070D;       /* Void — primary background */
  --bg-1: #0A0E1A;       /* Slate — elevated */

  /* Ink */
  --ink-0: #F1F4FB;      /* Primary */
  --ink-1: #C2C8D6;      /* Body */
  --ink-2: #7B8194;      /* Captions, secondary */
  --ink-3: #4A5063;      /* Tertiary, disabled */

  /* Lines */
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  /* Glass */
  --glass-bg: rgba(255,255,255,0.04);
  --glass-bg-strong: rgba(255,255,255,0.07);
  --blur: 24px;

  /* Accent — Signal */
  --accent: #5B8DEF;
  --accent-soft: rgba(91,141,239,0.18);
  --accent-glow: rgba(91,141,239,0.5);

  /* Semantic — use sparingly, never alongside accent */
  --ok: #22D3A0;
  --warn: #F0B948;
  --halt: #E96275;

  /* Type */
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Layout */
  --gutter: clamp(20px, 4vw, 40px);
  --max: 1440px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-glass: 18px;
  --r-pill: 999px;
}

/* ============================== RESET ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--ink-0);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================== AURORA BACKGROUND ============================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 1300px 800px at 82% 12%, rgba(91,141,239,0.32), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 8% 100%, rgba(91,141,239,0.18), transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(91,141,239,0.04), transparent 70%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 75% 15%, rgba(91,141,239,0.10) 0 1.5px, transparent 1.5px 88px);
  -webkit-mask: radial-gradient(circle at 75% 15%, black 0%, transparent 72%);
  mask: radial-gradient(circle at 75% 15%, black 0%, transparent 72%);
}

/* All page content sits above the background layers */
nav, header, main, section, footer { position: relative; z-index: 1; }

/* ============================== LIVING AURORA (home) ==============================
   The homepage backdrop breathes: the aurora wash drifts slowly and a soft
   spotlight sweeps the page — a light being shone on things. Both are pure
   transform animations (GPU-composited) and are killed by the global
   prefers-reduced-motion rule. */
body[data-page="home"]::before {
  inset: -30%; /* oversize so the drift never reveals an edge */
  background:
    radial-gradient(ellipse 1300px 800px at 82% 12%, rgba(91,141,239,0.58), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 8% 100%, rgba(91,141,239,0.34), transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(91,141,239,0.08), transparent 70%);
  animation: aurora-drift 26s ease-in-out infinite;
  will-change: transform;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  33%  { transform: translate3d(-7%, 5%, 0) scale(1.12); }
  66%  { transform: translate3d(7%, -5%, 0) scale(1.18); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

.aurora-spot {
  position: fixed;
  top: -12%;
  left: -12%;
  width: 72vmax;
  height: 72vmax;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(91,141,239,0.30) 0%, rgba(91,141,239,0.12) 32%, transparent 62%);
  animation: spot-sweep 36s ease-in-out infinite;
  will-change: transform;
}
@keyframes spot-sweep {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  25%  { transform: translate3d(46vw, 6vh, 0) scale(1.1); }
  50%  { transform: translate3d(36vw, 46vh, 0) scale(0.95); }
  75%  { transform: translate3d(-8vw, 36vh, 0) scale(1.05); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

/* Gentle lift on interactive glass cards — alive, not bouncy */
.feature-card, .tier, .pillar, .copy-pair {
  transition: border-color 200ms, background 200ms, transform 250ms ease;
}
.feature-card:hover, .tier:hover, .pillar:hover, .copy-pair:hover {
  transform: translateY(-3px);
}

/* ============================== LAYOUT ============================== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

section {
  padding: clamp(80px, 12vw, 120px) 0;
  position: relative;
}
section.tight { padding: 64px 0; }

/* ============================== GLASS UTILITY ============================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 30px 60px -30px rgba(0,0,0,0.5);
}
.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-glass);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 80px -20px rgba(0,0,0,0.6);
}

/* ============================== TYPE ============================== */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink-0);
}
h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}
h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
}
h4 {
  font-size: 18px;
  letter-spacing: -0.015em;
}

p { color: var(--ink-1); }
.lede {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--ink-1);
}
.body { font-size: 15px; line-height: 1.5; color: var(--ink-1); }

/* Mono register — same family, uppercase + tracked */
.mono,
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow--accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.eyebrow--accent::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Accent terminator (the period at the end of "Lightbulb.") */
.accent-dot { color: var(--accent); }

/* ============================== NAV (sticky pill) ============================== */
.nav-wrap {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding: 0 var(--gutter);
  margin: 12px auto 0;
  max-width: var(--max);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 22px;
  border-radius: var(--r-pill);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  gap: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink-0);
}
.nav__brand svg { width: 39px; height: 39px; flex-shrink: 0; }
.nav__brand-dot { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 2px;
}
.nav__links a {
  font-size: 13px;
  color: var(--ink-1);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 200ms, color 200ms;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: var(--glass-bg-strong);
  color: var(--ink-0);
}
.nav__cta {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--bg-1);
  font-size: 13px;
  font-weight: 500;
  transition: filter 200ms, transform 200ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav__cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
@media (max-width: 960px) { .nav__links { display: none; } }

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: filter 200ms, transform 200ms, background-color 200ms, border-color 200ms;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-1);
}
.btn--primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink-0);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--glass-bg-strong); }
.btn--lg { padding: 16px 26px; font-size: 15px; }

/* ============================== SECTION HEAD ============================== */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(48px, 7vw, 80px);
  max-width: 880px;
}
.section-head__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  width: 100%;
}
.section-head h2 { margin-top: 16px; }
.h2-oneline { white-space: nowrap; }
@media (max-width: 760px) { .h2-oneline { white-space: normal; } }
.section-head h2 em { font-style: normal; color: var(--accent); }
.section-kicker {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 480px;
  margin-top: 24px;
}

/* ============================== HERO ============================== */
.hero {
  padding: clamp(68px, 10.2vw, 119px) 0 clamp(80px, 12vw, 120px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.hero__title {
  margin-top: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--ink-1);
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat strong {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}
.hero__stat span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* ============================== BRIEFING MOCK ============================== */
.briefing-stack {
  position: relative;
  padding: 40px 0;
}
.briefing-stack__back {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 120px;
  transform: rotate(2deg);
  opacity: 0.55;
  z-index: 1;
}
.briefing-stack__under {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 100px;
  transform: rotate(-1.2deg);
  opacity: 0.55;
  z-index: 1;
}
.briefing {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 40px 80px -20px rgba(0,0,0,0.6);
}
.briefing__tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.briefing__tag .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}
.briefing__tag .live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.briefing__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.briefing__sub {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.briefing__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.briefing__row:last-of-type { border-bottom: 1px solid var(--line); }
.briefing__row-body {
  font-size: 13px;
  color: var(--ink-1);
  line-height: 1.4;
}
.briefing__row-body small {
  display: block;
  color: var(--ink-2);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.briefing__tag-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent);
  white-space: nowrap;
}
.briefing__tag-pill--halt {
  background: rgba(233, 98, 117, 0.16);
  color: var(--halt);
}
.briefing__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
}
.briefing__route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.briefing__route::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px var(--ok);
}
.briefing__draft {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--bg-1);
  font-size: 12px;
  font-weight: 500;
}

/* ============================== TRUST STRIP ============================== */
.trust {
  padding: 60px 0 20px;
}
.trust__pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  flex-wrap: wrap;
}
.trust__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}
.trust__items {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-1);
}
.trust__items span:not(.trust__more) { white-space: nowrap; }
.trust__items span:not(:last-child)::after {
  content: '·';
  margin-left: 18px;
  color: var(--ink-3);
}
.trust__more {
  color: var(--accent);
  white-space: nowrap;
}

/* ============================== PILLAR / GLASS CARD GRID ============================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.pillar {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  transition: border-color 200ms, background 200ms;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar:hover { border-color: var(--line-strong); background: var(--glass-bg-strong); }
.pillar__num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.pillar__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.pillar__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-1);
}

/* ============================== FEATURES GRID ============================== */
.feature-card {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  transition: border-color 200ms, background 200ms;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}
.feature-card:hover {
  border-color: var(--line-strong);
  background: var(--glass-bg-strong);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
/* Feature cards — icon + title centred (home §02 + how-it-works §01) */
.feature-card__icon { align-self: center; }
.feature-card__title { text-align: center; }
.feature-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-1);
  margin-top: auto;
}

/* ============================== STEPS — 4-col with hairline connectors ============================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.step-card {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.step-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-card__num {
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.step-card__week {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.step-card__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.step-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-1);
}
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================== SHOWCASE ROWS ============================== */
.showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.showcase__row--reverse .showcase__content { order: 2; }
.showcase__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.showcase__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.showcase__title {
  margin-bottom: 24px;
}
.showcase__title em { font-style: normal; color: var(--accent); }
.showcase__desc {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--ink-1);
  max-width: 480px;
}
.showcase__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase__checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-1);
  align-items: start;
}
.showcase__checklist li::before {
  content: '▸';
  color: var(--accent);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .showcase__row { grid-template-columns: 1fr; }
  .showcase__row--reverse .showcase__content { order: 0; }
}

/* ====== Router-style inputs mock ====== */
.mock-router {
  position: relative;
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.mock-router__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-router__col--right { align-items: flex-end; }
.mock-router__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--ink-0);
  white-space: nowrap;
}
.mock-router__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}
.mock-router__core {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-router__core svg { width: 100%; height: 100%; }

/* Each chip gets its own connector line running into the core */
.mock-router__lane {
  display: flex;
  align-items: center;
  width: 100%;
}
.mock-router__line {
  flex: 1;
  height: 1px;
  min-width: 20px;
  background: linear-gradient(90deg, rgba(91,141,239,0.1), rgba(91,141,239,0.55));
  margin-right: -24px; /* bridge the grid gap so lines meet the core */
}
.mock-router__col--right .mock-router__line {
  margin-right: 0;
  margin-left: -24px;
  background: linear-gradient(270deg, rgba(91,141,239,0.1), rgba(91,141,239,0.55));
}
@media (max-width: 560px) {
  .mock-router { grid-template-columns: 1fr; }
  .mock-router__col--right { align-items: flex-start; }
  .mock-router__line { display: none; }
  .mock-router__core { margin: 0 auto; width: 120px; height: 120px; }
}

/* ====== Processing queue mock ====== */
.mock-queue {
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mock-queue__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.mock-queue__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-queue__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 14px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink-1);
}
.mock-queue__item-count {
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.mock-queue__arrow {
  text-align: center;
  font-size: 22px;
  color: var(--accent);
  opacity: 0.65;
  line-height: 1;
}
.mock-queue__claude {
  background: var(--accent);
  color: var(--bg-1);
  padding: 18px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mock-queue__claude small {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mock-queue__out {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 14px;
  border: 1px dashed var(--accent);
  border-radius: var(--r-sm);
  color: var(--accent);
  background: var(--accent-soft);
  letter-spacing: 0.04em;
}

/* ============================== STRIKE CALLOUT ============================== */
.strike-callout {
  padding: clamp(80px, 12vw, 140px) 0;
}
.strike-callout__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 6vw, 80px);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  position: relative;
  overflow: hidden;
}
.strike-callout__inner::before {
  content: '';
  position: absolute;
  inset: -40% -10% 30% -10%;
  background: radial-gradient(ellipse, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.strike-callout__quote {
  position: relative;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink-0);
}
.strike-callout__quote .strike {
  display: block;
  text-decoration: line-through;
  color: var(--ink-3);
  font-weight: 400;
}
.strike-callout__quote em {
  font-style: normal;
  color: var(--accent);
}

/* ============================== STATS ============================== */
.stats {
  padding: clamp(80px, 10vw, 100px) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat__number {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--accent);
}
.stat__label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 230px;
}
@media (max-width: 880px) { .stats__grid { grid-template-columns: 1fr 1fr; } }

/* ============================== CASE TEASER ============================== */
.case-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(40px, 6vw, 64px);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
}
.case-teaser__quote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink-0);
}
.case-teaser__quote em { font-style: normal; color: var(--accent); }
.case-teaser__attribution {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.case-teaser__outcome {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  padding: 32px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.case-teaser__outcome strong {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.case-teaser__outcome span {
  font-size: 13px;
  color: var(--ink-1);
}
@media (max-width: 880px) { .case-teaser { grid-template-columns: 1fr; } }

/* ============================== TESTIMONIALS ============================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card__outcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.testimonial-card__quote {
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink-0);
  font-weight: 400;
  letter-spacing: -0.01em;
  flex: 1;
}
.testimonial-card__quote em {
  font-style: normal;
  color: var(--accent);
}
.testimonial-card__author {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.testimonial-card__name { font-size: 14px; font-weight: 500; color: var(--ink-0); }
.testimonial-card__role { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================== BUILT-BY ============================== */
.built-by {
  padding: clamp(80px, 12vw, 140px) 0;
}
.built-by__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-glass);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.built-by__inner::before {
  content: '';
  position: absolute;
  inset: -50% -30% 20% -30%;
  background: radial-gradient(ellipse, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.built-by__mark {
  width: 72px;
  height: 72px;
  color: var(--ink-0);
  margin: 0 auto 32px;
  position: relative;
}
.built-by__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
}
.built-by__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.built-by__title {
  margin-bottom: 28px;
  position: relative;
}
.built-by__title em { font-style: normal; color: var(--accent); }
.built-by__body {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink-1);
  text-wrap: pretty;
  position: relative;
}

/* ============================== COPY PAIRS / VOICE ============================== */
.copy-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.copy-pair {
  position: relative;
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
}

/* ============================== DASHBOARD DEMO ============================== */
.dash-stage {
  position: relative;
  padding: 32px 0 40px;
}
.dash-stage::before {
  content: '';
  position: absolute;
  inset: -8% -12%;
  background: radial-gradient(ellipse 900px 520px at 55% 40%, rgba(91,141,239,0.18), transparent 65%);
  pointer-events: none;
}
.dash-stage__back {
  position: absolute;
  top: 6px;
  left: 34px;
  right: -14px;
  height: 200px;
  transform: rotate(1.4deg);
  opacity: 0.5;
  z-index: 0;
}
.dash-float {
  position: absolute;
  top: 2px;
  right: 18px;
  z-index: 3;
  transform: rotate(2deg);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-0);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.dash-float::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px var(--ok);
  flex-shrink: 0;
}
.dash-window {
  position: relative;
  z-index: 1;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-glass);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 60px 120px -30px rgba(0,0,0,0.7);
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.dash-dots { display: flex; gap: 7px; flex-shrink: 0; }
.dash-dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink-3);
}
.dash-dots i:nth-child(1) { background: rgba(233,98,117,0.55); }
.dash-dots i:nth-child(2) { background: rgba(240,185,72,0.55); }
.dash-dots i:nth-child(3) { background: rgba(34,211,160,0.55); }
.dash-topbar__title { font-size: 13px; font-weight: 500; color: var(--ink-1); }
.dash-topbar__spacer { flex: 1; }
.dash-chip {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  white-space: nowrap;
}
.dash-chip--demo { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.dash-body {
  display: grid;
  grid-template-columns: 212px minmax(0, 1fr) 296px;
}
.dash-side {
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dash-side__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 12px;
  margin: 10px 0 6px;
}
.dash-side__label:first-child { margin-top: 0; }
.dash-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-1);
  border: 1px solid transparent;
  white-space: nowrap;
}
.dash-nav-item:hover { background: rgba(255,255,255,0.04); }
/* Interactive variant (the demo page uses real buttons) */
button.dash-nav-item {
  width: 100%;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
/* Full-page demo window — taller, app-like */
.dash-window--page .dash-body { min-height: 70vh; }
.dash-nav-item--active {
  background: var(--accent-soft);
  border-color: rgba(91,141,239,0.4);
  color: var(--ink-0);
}
.dash-nav-item__count {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.dash-nav-item--active .dash-nav-item__count { color: var(--accent); }

.dash-main {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dash-stat {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.dash-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-0);
  line-height: 1.1;
}
.dash-stat span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.dash-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
}
.dash-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.dash-insight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.dash-insight:first-of-type { border-top: none; }
.dash-insight__text { font-size: 13.5px; line-height: 1.4; color: var(--ink-0); }
.dash-insight__text small {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.briefing__tag-pill--ok { background: rgba(34,211,160,0.16); color: var(--ok); }

/* Charts */
.dash-split { display: grid; grid-template-columns: 1.25fr 1fr; gap: 18px; }
.bar-row { padding: 9px 0; }
.bar-row__label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-1);
  margin-bottom: 7px;
}
.bar-row__label b { font-weight: 500; color: var(--ink-0); }
.bar-row__track {
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.bar-row__track + .bar-row__track { margin-top: 4px; }
.bar-row__fill { height: 100%; border-radius: var(--r-pill); background: var(--accent); }
.bar-row__fill--dim { background: var(--ink-3); }
.bar-row__fill--halt { background: var(--halt); }
.dash-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.dash-legend i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: baseline;
}
.donut-wrap { display: flex; align-items: center; gap: 18px; padding: 8px 0; }
.donut {
  width: 124px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(
    var(--accent) 0 46%,
    rgba(91,141,239,0.38) 46% 71%,
    rgba(255,255,255,0.12) 71% 100%
  );
  -webkit-mask: radial-gradient(circle, transparent 56%, black 57%);
  mask: radial-gradient(circle, transparent 56%, black 57%);
}
.donut-legend { display: flex; flex-direction: column; gap: 9px; font-size: 12px; color: var(--ink-1); }
.donut-legend b { color: var(--ink-0); font-weight: 500; }

/* Actions rail */
.dash-rail {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-rail__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0 4px 4px;
}
.dash-action {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
}
.dash-action--open {
  border-color: rgba(91,141,239,0.45);
  background: var(--accent-soft);
}
.dash-action__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.dash-action__rank {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
}
.dash-action__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-0);
  margin-top: 3px;
  line-height: 1.3;
}
.dash-action__steps {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dash-action__steps li {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--ink-1);
  padding-left: 14px;
  position: relative;
}
.dash-action__steps li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.dash-rescan {
  margin-top: 8px;
  border: 1px dashed var(--accent);
  border-radius: 12px;
  padding: 13px 14px;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--accent);
  background: rgba(91,141,239,0.07);
}

@media (max-width: 1100px) {
  .dash-body { grid-template-columns: 1fr; }
  .dash-side {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .dash-side__label { display: none; }
  .dash-main { border-right: none; }
  .dash-split { grid-template-columns: 1fr; }
  .dash-float { position: static; margin-bottom: 14px; transform: none; }
  .dash-stage__back { display: none; }
}

/* ============================== DEMO LANDING PAGE ============================== */
.demo-sectors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.demo-sectors__label {
  font-size: 13px;
  color: var(--ink-2);
  white-space: nowrap;
  margin-right: 4px;
}
.demo-sectors__tabs { display: contents; }
.demo-sector {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--glass-bg);
  color: var(--ink-1);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
  white-space: nowrap;
}
.demo-sector:hover { border-color: var(--line-strong); color: var(--ink-0); }
.demo-sector--active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--ink-0);
}

.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(16px, 2.5vw, 36px);
  position: relative;
  z-index: 2;
}
.demo-wrap {
  width: 100%;
  padding: 0 clamp(16px, 2.5vw, 36px);
  position: relative;
  z-index: 1;
}

/* Specialist note (overview) */
.dash-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(91,141,239,0.35);
  background: var(--accent-soft);
  border-radius: 14px;
}
.dash-note__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(91,141,239,0.25);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  flex-shrink: 0;
}
.dash-note__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.dash-note__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-0);
  margin-top: 5px;
}
.dash-note__sig {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 7px;
}

/* Expandable insights (demo) */
.dash-insight--click { display: block; padding: 0; }
.dash-insight__head {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 16px;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  text-align: left;
  font: inherit;
  color: inherit;
}
.dash-insight__head:hover .dash-insight__text { color: var(--accent); }
.dash-insight--click .dash-insight__text { transition: color 150ms; }
.dash-insight__toggle {
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--accent);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.dash-insight__toggle::before,
.dash-insight__toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.dash-insight__toggle::before { top: 7px; left: 3px; width: 10px; height: 1.5px; }
.dash-insight__toggle::after { top: 3px; left: 7.25px; width: 1.5px; height: 10px; }
.dash-insight--click[data-open="true"] .dash-insight__toggle { transform: rotate(45deg); }

.dash-insight__detail { display: grid; grid-template-rows: 0fr; }
.dash-insight--click[data-open="true"] .dash-insight__detail { grid-template-rows: 1fr; }
.dash-insight__detail-inner {
  overflow: hidden;
  opacity: 0;
  transition: opacity 220ms ease;
}
.dash-insight--click[data-open="true"] .dash-insight__detail-inner { opacity: 1; }
.dash-insight__note {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-1);
  padding: 0 24px 8px 0;
  max-width: 62ch;
}
.dash-insight__action {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-0);
  padding: 8px 12px;
  border-left: 2px solid var(--accent);
  background: rgba(91,141,239,0.08);
  border-radius: 0 8px 8px 0;
  margin: 2px 0 14px;
  max-width: 62ch;
}
.dash-insight__action b { color: var(--accent); font-weight: 500; }

/* Show-more in the actions rail */
.dash-rail__more {
  width: 100%;
  padding: 11px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
}
.dash-rail__more:hover { color: var(--accent); border-color: var(--accent); }

/* ============================== TEAM (about) ============================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.person {
  padding: 36px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms, background 200ms, transform 250ms ease;
}
.person:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.person__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  align-self: center;
}
.person__name {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
}
.person__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-top: -8px;
}
.person__bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-1);
}
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================== FOUR KINDS OF KNOWING (2×2) ============================== */
.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quad {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms, background 200ms, transform 250ms ease;
}
.quad:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.quad__axis {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.quad__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.quad__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-1);
}
.quad--featured {
  background: linear-gradient(180deg, var(--accent-soft), transparent 70%), var(--glass-bg-strong);
  border-color: var(--accent);
}
.quad--featured .quad__axis { color: var(--accent); }
@media (max-width: 720px) { .quad-grid { grid-template-columns: 1fr; } }

/* Handwritten annotation — perched over a card's top edge ("we're this one...") */
.handwritten-note {
  position: absolute;
  top: -34px;
  right: 28px;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  font-family: 'Caveat', cursive;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  transform: rotate(-2deg);
  pointer-events: none;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(5, 7, 13, 0.8);
}
.handwritten-note__arrow {
  width: 28px;
  height: 32px;
  margin-top: 10px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(5, 7, 13, 0.8));
}
.copy-pair__head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.copy-pair--no .copy-pair__head { color: var(--halt); }
.copy-pair--yes .copy-pair__head { color: var(--accent); }
.copy-pair__body {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink-0);
}
.copy-pair--no .copy-pair__body { color: var(--ink-2); }
@media (max-width: 880px) { .copy-pairs { grid-template-columns: 1fr; } }

/* ============================== PRICING ============================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier {
  padding: 36px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.tier--featured {
  background: linear-gradient(180deg, var(--accent-soft), transparent 70%), var(--glass-bg-strong);
  border-color: var(--accent);
  box-shadow: 0 30px 80px -20px rgba(91,141,239,0.3);
}
.tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-1);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.tier__price {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink-0);
}
.tier__price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  margin-left: 6px;
  letter-spacing: 0;
}
.tier__outcome {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-0);
}
.tier__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-1);
}
.tier__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}
.tier__list li::before {
  content: '▸';
  color: var(--accent);
  font-weight: 700;
}
.tier .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================== FAQ ============================== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  padding: 8px 28px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item__button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  align-items: center;
  text-align: left;
  font: inherit;
  color: var(--ink-0);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 250ms ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-item__icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}
.faq-item__icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
  transition: opacity 250ms ease;
}
.faq-item[data-open="true"] .faq-item__icon { transform: rotate(45deg); }

/* NOTE: no transition on grid-template-rows — fr↔fr interpolation is broken
   in some engines (incl. the Electron preview), leaving the panel stuck shut.
   Height snaps via 0fr→1fr; the content fade softens the change instead. */
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
}
.faq-item[data-open="true"] .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer-inner {
  overflow: hidden;
  opacity: 0;
  transition: opacity 250ms ease;
}
.faq-item[data-open="true"] .faq-item__answer-inner { opacity: 1; }
.faq-item__answer p {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-1);
  max-width: 720px;
}

/* ============================== CLOSING CTA ============================== */
.closing-cta {
  padding: clamp(80px, 12vw, 140px) 0;
}
.closing-cta__card {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 72px) clamp(40px, 6vw, 56px);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-glass);
  text-align: center;
}
.closing-cta__card::before {
  content: '';
  position: absolute;
  inset: -60% -30% 0 -30%;
  background: radial-gradient(ellipse 700px 400px at 50% 30%, var(--accent-soft), transparent 65%);
  pointer-events: none;
}
.closing-cta__inner { position: relative; }
.closing-cta__title { margin-bottom: 24px; }
.closing-cta__title em { font-style: normal; color: var(--accent); }
.closing-cta__sub {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--ink-1);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.closing-cta__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.closing-cta__trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.closing-cta__trust span::before {
  content: '▸';
  color: var(--accent);
  font-weight: 700;
}

/* ============================== FOOTER ============================== */
.foot {
  padding: clamp(60px, 8vw, 100px) 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.foot__columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.foot__brand-col svg { width: 36px; height: 36px; color: var(--ink-0); }
.foot__brand-col .foot__brand-name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-top: 16px;
}
.foot__brand-col .foot__brand-name span { color: var(--accent); }
.foot__brand-col .foot__brand-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 4px;
}
.foot__brand-col p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 20px;
  max-width: 320px;
}
.foot__col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.foot__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot__col a {
  font-size: 14px;
  color: var(--ink-1);
  transition: color 200ms;
}
.foot__col a:hover { color: var(--accent); }

.foot__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-2);
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: 0.02em;
}
.foot__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.foot__status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px var(--ok);
}
@media (max-width: 880px) {
  .foot__columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .foot__columns { grid-template-columns: 1fr; }
}

/* ============================== ANIMATION HELPERS ============================== */
.js [data-anim="fade-up"] { opacity: 0; transform: translateY(24px); }
.js [data-anim="fade"] { opacity: 0; }
.js [data-anim="scale-in"] { opacity: 0; transform: scale(0.96); }
.js [data-anim-stagger] > * { opacity: 0; transform: translateY(24px); }

@media (prefers-reduced-motion: reduce) {
  .js [data-anim], .js [data-anim-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================== PAGE HERO (sub-pages) ============================== */
.page-hero {
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 7vw, 80px);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
.page-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 24px;
  text-wrap: balance;
}
.page-hero__title em { font-style: normal; color: var(--accent); }
.page-hero__kicker {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 380px;
  padding-bottom: 12px;
}
@media (max-width: 880px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__kicker { padding-bottom: 0; }
}

/* ============================== CONTACT FORM ============================== */
.contact {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
  font-family: var(--sans);
  color: var(--ink-0);
  outline: none;
  width: 100%;
  resize: vertical;
  transition: border-color 200ms;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-3);
  font-weight: 300;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--accent); }

.contact__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.contact__small {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 360px;
}
.contact__small strong { color: var(--accent); font-weight: 500; }

/* Alt contact (the side column on book-the-hour) */
.alt-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.alt-contact__email {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-top: 32px;
}
@media (max-width: 880px) { .alt-contact { grid-template-columns: 1fr; } }

/* ============================== STORY CARDS (case study grid) ============================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.story {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.story:hover { border-color: var(--line-strong); background: var(--glass-bg-strong); }
.story__photo {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 600px 300px at 30% 30%, var(--accent-soft), transparent 60%),
    var(--bg-1);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.story__photo-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.story__body {
  padding: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.story__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
}
.story__meta::before {
  content: '▸';
  font-weight: 700;
}
.story__outcome {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink-0);
}
.story__outcome em { font-style: normal; color: var(--accent); }
.story__big-number {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
}
.story__big-number strong {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--accent);
}
.story__big-number span {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 140px;
  line-height: 1.4;
}
.story__quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-1);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.story__attribution {
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.story__sources {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.story__source-chip {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--ink-2);
}
@media (max-width: 720px) { .stories-grid { grid-template-columns: 1fr; } }

/* ============================== RULE LIST (always/never) ============================== */
.rule-list {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
}
.rule-list h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.rule-list--do h4 { color: var(--accent); }
.rule-list--dont h4 { color: var(--halt); }
.rule-list ul { list-style: none; }
.rule-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-1);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.rule-list li:first-child { border-top: none; padding-top: 4px; }
.rule-list li .mark {
  font-weight: 700;
  font-size: 13px;
  font-family: var(--sans);
}
.rule-list--do li .mark { color: var(--accent); }
.rule-list--dont li .mark { color: var(--halt); }

/* ============================== PHOTO PLACEHOLDER ============================== */
.photo {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: var(--r-glass);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 30% 30%, var(--accent-soft), transparent 65%);
  pointer-events: none;
}
.photo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}
.photo__placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  opacity: 0.7;
}
.photo__placeholder p {
  font-size: 13px;
  color: var(--ink-2);
  max-width: 240px;
  line-height: 1.45;
}
.photo__placeholder strong { color: var(--ink-0); font-weight: 500; }
.photo__tag {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  z-index: 2;
}

/* ============================== PULL QUOTE (for-owners centerpiece) ============================== */
.pull-quote {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.pull-quote__text {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink-0);
  text-wrap: balance;
}
.pull-quote__text em { font-style: normal; color: var(--accent); }
.pull-quote__attribution {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
