/* ==========================================================================
   Whispor — Negotiation Intelligence
   Design system
   ========================================================================== */

:root {
  /* Brand palette */
  --teal-900: #0a2e38;
  --teal-800: #0f3a46;
  --teal-700: #164651;
  --teal-600: #1d5365;
  --coral-500: #e07a5f;
  --coral-400: #ea937d;
  --coral-300: #f2b3a2;
  --mist-300: #D2E7EC;
  --mist-200: #e3eef1;
  --mist-100: #f2f7f9;
  --ink-900: #0a2e38;
  --ink-700: #2b4a54;
  --ink-500: #5b7884;
  --ink-400: #7b94a0;
  --line:    rgba(10, 46, 56, 0.14);
  --line-soft: rgba(10, 46, 56, 0.08);
  --line-on-dark: rgba(255,255,255,0.14);

  /* Typography */
  --font-display: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
p { margin: 0 0 1em; }

/* Typography ----------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--coral-500);
  display: inline-block;
}
.eyebrow.no-tick::before { display: none; }

.italic-serif { font-family: var(--font-display); font-style: italic; font-weight: 300; }

.lede {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 60ch;
}

/* Layout --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: clamp(72px, 9vw, 140px) 0; }
section.tight { padding: clamp(48px, 6vw, 90px) 0; }

.grid { display: grid; gap: 28px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 900px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

/* Navigation ----------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.brand .brand-mark {
  width: 30px;
  height: 34px;
  display: block;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}
.brand .brand-word {
  display: inline-block;
  line-height: 1;
  transform: translateY(1px);
}
.brand .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral-500);
  display: inline-block;
  transform: translateY(-10px);
  margin-left: 1px;
}
.footer .brand .brand-word { color: #fff; }
.nav-links {
  display: flex; align-items: center; gap: 26px;
  list-style: none; padding: 0; margin: 0;
  font-size: 14.5px;
  line-height: 1;
  color: var(--ink-700);
}
.nav-links > li { display: inline-flex; align-items: center; line-height: 1; }
@media (max-width: 1100px) {
  .nav-links { gap: 18px; font-size: 14px; }
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  line-height: 1;
  display: inline-flex; align-items: center;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a.is-active {
  color: var(--ink-900);
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--coral-500);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta:hover { background: var(--teal-800); transform: translateY(-1px); }

/* Nav dropdown --------------------------------------------------- */
.nav-dropdown { position: relative; }
.nav-dropdown > button.nav-dropdown-trigger {
  background: none; border: 0; padding: 6px 0;
  font: inherit; font-size: inherit; line-height: 1;
  color: var(--ink-700);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-dropdown > button.nav-dropdown-trigger:hover { color: var(--ink-900); }
.nav-dropdown > button.nav-dropdown-trigger.is-active { color: var(--ink-900); }
.nav-dropdown > button.nav-dropdown-trigger.is-active::after {
  content: ""; position: absolute; left: 0; right: 14px; bottom: -2px;
  height: 1px; background: var(--coral-500);
}
.nav-dropdown-caret { transition: transform .2s var(--ease); }
.nav-dropdown.is-open .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -16px;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: 0 24px 60px -24px rgba(10,46,56,0.18);
  padding: 10px;
  list-style: none; margin: 0;
  display: none;
  z-index: 40;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { padding: 0; margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-900);
  transition: background .15s var(--ease);
}
.nav-dropdown-menu a:hover { background: var(--mist-100); }
.nav-dropdown-menu a .label {
  display: block;
  font-family: var(--font-display); font-weight: 400;
  font-size: 15px;
  color: var(--teal-900);
  margin-bottom: 2px;
}
.nav-dropdown-menu a .desc {
  display: block;
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.35;
}
.nav-dropdown-menu a.is-active .label { color: var(--coral-500); }
.nav-dropdown-menu hr {
  border: 0; border-top: 1px solid var(--line-soft);
  margin: 6px 4px;
}
@media (max-width: 820px) {
  /* Make the Solutions dropdown behave like a normal stacked nav item in the mobile drawer */
  .nav-links > li.nav-dropdown { display: block; width: 100%; text-align: center; }
  .nav-dropdown > button.nav-dropdown-trigger {
    display: inline-flex; margin: 0 auto; justify-content: center;
  }
  .nav-dropdown-menu {
    position: static; box-shadow: none; border: 0;
    padding: 10px 0 4px; min-width: 0; width: 100%;
    background: transparent;
    text-align: center;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li { text-align: center; }
  .nav-dropdown-menu a { padding: 10px 0; text-align: center; justify-content: center; }
  .nav-dropdown-menu a .label,
  .nav-dropdown-menu a .desc { display: block; text-align: center; }
  .nav-dropdown-menu hr { margin: 8px auto; max-width: 60%; }
}

.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink-900); }
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 20px 28px 28px;
    border-bottom: 1px solid var(--line-soft);
    gap: 18px;
  }
  .nav.is-open .nav-cta {
    display: inline-flex;
    position: absolute; top: 24px; right: 70px;
  }
}

/* Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--teal-900); color: #fff; }
.btn-primary:hover { background: var(--teal-800); }

.btn-coral { background: var(--coral-500); color: #fff; }
.btn-coral:hover { background: var(--coral-400); }

.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--line); }
.btn-ghost:hover { background: var(--mist-100); }

.btn-on-dark { background: #fff; color: var(--teal-900); }
.btn-on-dark:hover { background: var(--mist-200); }

.btn-ghost-on-dark { background: transparent; color: #fff; border-color: var(--line-on-dark); }
.btn-ghost-on-dark:hover { background: rgba(255,255,255,0.06); }

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 100% -10%, #1a6075 0%, transparent 45%),
    radial-gradient(ellipse 70% 60% at -10% 110%, #041218 0%, transparent 55%),
    linear-gradient(160deg, #072631 0%, #051a22 55%, #030e14 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(110px, 13vw, 170px) 0 clamp(90px, 10vw, 130px);
  isolation: isolate;
}
/* Vivid conic aurora — crisp, saturated, not blurred to mush */
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 85%;
  height: 140%;
  background:
    conic-gradient(from 200deg at 70% 35%,
      rgba(255, 122, 85, 0) 0deg,
      rgba(255, 122, 85, 0.55) 40deg,
      rgba(255, 168, 130, 0.45) 85deg,
      rgba(226, 110, 92, 0.35) 120deg,
      rgba(120, 200, 215, 0.25) 170deg,
      rgba(20, 70, 90, 0) 220deg,
      rgba(255, 122, 85, 0) 360deg);
  filter: blur(40px) saturate(1.4);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
/* Fine-grain noise for depth */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.10 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  opacity: 0.7;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
/* Sharper architectural grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 65% 55% at 25% 45%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* Crisp coral sunspot — not a blurred puff, a defined glow */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb.orb-a {
  width: 380px; height: 380px;
  top: -90px; right: -60px;
  background: radial-gradient(circle at center,
    rgba(255, 132, 100, 0.95) 0%,
    rgba(255, 132, 100, 0.55) 18%,
    rgba(226, 95, 75, 0.22) 45%,
    transparent 70%);
  filter: blur(18px);
  mix-blend-mode: screen;
}
/* Thin accent ring around the sunspot for sharpness */
.hero-orb.orb-a::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255, 200, 175, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.hero-orb.orb-b {
  width: 260px; height: 260px;
  bottom: -60px; left: -30px;
  background: radial-gradient(circle at center,
    rgba(110, 220, 235, 0.35) 0%,
    rgba(110, 220, 235, 0.12) 35%,
    transparent 65%);
  filter: blur(14px);
  mix-blend-mode: screen;
}
/* Subtle diagonal light scan + edge gradients for cinematic depth */
.hero-edge {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg,
      transparent 30%,
      rgba(255, 255, 255, 0.04) 50%,
      transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 8%),
    linear-gradient(0deg, rgba(0,0,0,0.45) 0%, transparent 25%),
    linear-gradient(90deg, rgba(0,0,0,0.25) 0%, transparent 12%, transparent 88%, rgba(0,0,0,0.25) 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 em { font-style: italic; color: var(--coral-300); font-weight: 300; }
.hero .lede { color: rgba(255,255,255,0.78); margin-top: 28px; max-width: 58ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-dark);
  flex-wrap: wrap;
}
.hero-meta .stat { min-width: 150px; }
.hero-meta .stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--coral-500);
  line-height: 1;
}
.hero-meta .stat .lbl {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  max-width: 26ch;
}

/* Page hero (smaller hero for inner pages) */
.page-hero {
  background:
    radial-gradient(ellipse 85% 65% at 100% -10%, #1a6075 0%, transparent 45%),
    radial-gradient(ellipse 60% 55% at -10% 120%, #041218 0%, transparent 55%),
    linear-gradient(160deg, #072631 0%, #051a22 55%, #030e14 100%);
  color: #fff;
  padding: clamp(100px, 11vw, 150px) 0 clamp(70px, 8vw, 110px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 140%;
  background:
    conic-gradient(from 200deg at 70% 35%,
      rgba(255, 122, 85, 0) 0deg,
      rgba(255, 122, 85, 0.50) 40deg,
      rgba(255, 168, 130, 0.40) 85deg,
      rgba(226, 110, 92, 0.30) 120deg,
      rgba(120, 200, 215, 0.22) 170deg,
      rgba(20, 70, 90, 0) 220deg,
      rgba(255, 122, 85, 0) 360deg);
  filter: blur(36px) saturate(1.35);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  opacity: 0.65;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.page-hero .page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 55% at 25% 50%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.page-hero .hero-orb.orb-a {
  width: 320px; height: 320px;
  top: -80px; right: -50px;
  background: radial-gradient(circle at center,
    rgba(255, 132, 100, 0.95) 0%,
    rgba(255, 132, 100, 0.50) 18%,
    rgba(226, 95, 75, 0.20) 45%,
    transparent 70%);
  filter: blur(16px);
  mix-blend-mode: screen;
}
.page-hero .hero-orb.orb-a::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255, 200, 175, 0.25);
}
.page-hero .hero-orb.orb-b {
  width: 220px; height: 220px;
  bottom: -40px; left: -20px;
  background: radial-gradient(circle at center,
    rgba(110, 220, 235, 0.32) 0%,
    rgba(110, 220, 235, 0.10) 35%,
    transparent 65%);
  filter: blur(12px);
  mix-blend-mode: screen;
}
.page-hero .inner { position: relative; z-index: 1; max-width: 860px; }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.78); }

/* Cards ---------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px -30px rgba(10,46,56,0.18);
  border-color: rgba(10,46,56,0.22);
}
.card .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--coral-500);
  letter-spacing: 0.06em;
}
.card h3 { margin-top: 14px; }
.card p { color: var(--ink-700); margin: 0; }
.card .pill {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-900);
  background: var(--mist-200);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 500;
}

/* Section heading block ------------------------------------------ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 { margin: 14px 0 0; }
.section-head .lede { margin: 0; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
}

/* Feature rows --------------------------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.feature-row .copy { align-self: start; }
.feature-row .feature-visual { align-self: start; }
.feature-row:first-of-type { border-top: 0; padding-top: 40px; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-row .copy h2 { margin-top: 18px; }
.feature-row .copy ul {
  margin: 28px 0 0; padding: 0; list-style: none;
  display: grid; gap: 12px;
}
.feature-row .copy li {
  display: flex; gap: 12px; color: var(--ink-700); font-size: 15.5px;
}
.feature-row .copy li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral-500);
  margin-top: 10px;
}

.feature-visual {
  position: relative;
  background: var(--mist-300);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 360px;
  overflow: hidden;
}
.feature-visual.dark { background: var(--teal-900); color: #fff; }

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
}

/* Mock UI (used in features) ------------------------------------- */
.mock {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -40px rgba(10,46,56,0.3);
  overflow: hidden;
  font-size: 13px;
}
.mock-bar {
  display: flex; gap: 6px; padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--mist-100);
}
.mock-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.mock-body { padding: 18px; }
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.mock-row:last-child { border-bottom: 0; }
.mock-row .lbl { color: var(--ink-500); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; }
.mock-row .val { color: var(--ink-900); font-weight: 500; }
.mock-row .val.coral { color: var(--coral-500); }
.mock-alert {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(224,122,95,0.10);
  border-left: 3px solid var(--coral-500);
  border-radius: 6px;
  color: var(--teal-900);
  font-size: 13px;
}

/* Chat mock (used on auto visual) */
.chat {
  display: grid; gap: 10px;
  font-size: 13.5px;
}
.chat .bubble {
  padding: 12px 14px;
  border-radius: 14px;
  max-width: 85%;
  line-height: 1.45;
}
.chat .bubble.from {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.08);
}
.chat .bubble.us {
  background: var(--coral-500);
  color: #fff;
  margin-left: auto;
}
.chat .bubble .meta {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Stats strip ---------------------------------------------------- */
.stats-strip {
  background: var(--teal-900);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(224,122,95,0.12), transparent 60%);
}
.stats-strip .container { position: relative; }
.stats-strip .grid { gap: 0; }
.stats-strip .stat {
  padding: 14px 26px;
  border-left: 1px solid var(--line-on-dark);
}
.stats-strip .grid > .stat:first-child { border-left: 0; padding-left: 0; }
.stats-strip .stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  color: var(--coral-500);
  font-weight: 300;
  line-height: 1;
}
.stats-strip .stat .lbl {
  margin-top: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  max-width: 28ch;
}
@media (max-width: 820px) {
  .stats-strip .stat { border-left: 0; border-top: 1px solid var(--line-on-dark); padding: 22px 0; }
  .stats-strip .grid > .stat:first-child { border-top: 0; padding-top: 0; }
}

/* Quote ---------------------------------------------------------- */
.quote-block {
  background: var(--mist-300);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
}
@media (max-width: 820px) {
  .quote-block { grid-template-columns: 1fr; gap: 28px; }
}
.quote-block .q {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.3;
  color: var(--teal-900);
  max-width: 22ch;
}
.quote-block .q em { font-style: italic; color: var(--coral-500); }
.quote-block .attrib {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--ink-700);
  letter-spacing: 0.04em;
}
.quote-block .quote-illu {
  position: relative;
  aspect-ratio: 560 / 400;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.quote-block .quote-illu svg { width: 100%; height: 100%; display: block; }
@media (max-width: 820px) {
  .quote-block .quote-illu { justify-self: start; }
}

/* Quote block — text column (used on About · Founding memo) ----- */
.quote-block .quote-text {
  position: relative;
  padding-left: 4px;
}
.quote-block .quote-mark {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.8;
  color: var(--coral-500);
  opacity: 0.45;
  margin-bottom: 4px;
  font-weight: 300;
}
.quote-block .attrib-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.quote-block .attrib-row .sig-line {
  width: 48px;
  height: 1px;
  background: var(--coral-500);
  opacity: 0.7;
}
.quote-block .attrib-row .attrib {
  margin-top: 0;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}

/* Pilot band ----------------------------------------------------- */
.pilot {
  background: var(--mist-100);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pilot .grid-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.pilot h2 { margin: 14px 0 0; }
.pilot .specs {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px;
  margin-top: 14px;
}
.pilot .specs .spec { padding-left: 18px; border-left: 2px solid var(--coral-500); }
.pilot .specs .spec .k {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-500);
}
.pilot .specs .spec .v {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal-900);
  margin-top: 6px;
  font-weight: 400;
}
@media (max-width: 900px) { .pilot .grid-inner { grid-template-columns: 1fr; } }

/* CTA band ------------------------------------------------------- */
.cta-band {
  background: var(--teal-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute; right: -120px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,95,0.28), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin: 10px 0 0; }
.cta-band .lede { color: rgba(255,255,255,0.78); margin-top: 18px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; }
@media (max-width: 820px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .actions { justify-content: flex-start; }
}

/* Footer --------------------------------------------------------- */
.footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 14.5px; }
.footer ul a { transition: color .2s var(--ease); }
.footer ul a:hover { color: #fff; }
.footer .brand { color: #fff; font-size: 22px; }
.footer .brand .brand-mark { width: 34px; height: 38px; }
.footer .brand .dot { background: var(--coral-500); }
.footer-tag { margin-top: 16px; font-size: 14px; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-legal a {
  color: rgba(255,255,255,0.72);
  transition: color .2s var(--ease);
}
.footer-legal a:hover { color: #fff; }
.footer-legal-sep {
  color: rgba(255,255,255,0.3);
}

/* Legal pages (Privacy / Terms / Cookies) --------------------------- */
.legal-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 0 120px;
}
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  border-left: 1px solid var(--line-soft);
  padding-left: 20px;
}
.legal-toc-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.legal-toc a {
  color: var(--ink-700);
  transition: color .2s var(--ease);
}
.legal-toc a:hover { color: var(--teal-900); }
.legal-prose {
  max-width: 70ch;
  color: var(--ink-700);
  font-size: 16.5px;
  line-height: 1.75;
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  font-weight: 400;
  color: var(--teal-900);
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
}
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 32px 0 10px;
  letter-spacing: 0;
}
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul, .legal-prose ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-prose li { margin-bottom: 8px; }
.legal-prose a {
  color: var(--teal-900);
  border-bottom: 1px solid var(--coral-500);
}
.legal-prose a:hover { color: var(--coral-500); }
.legal-prose strong { color: var(--ink-900); font-weight: 600; }
.legal-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-500);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 36px;
}
.legal-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mist-100);
  color: var(--ink-700);
  font-size: 12px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 24px;
  font-size: 14.5px;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.legal-table th {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  background: var(--mist-100);
}
.legal-callout {
  border-left: 3px solid var(--coral-500);
  background: var(--mist-100);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: var(--ink-700);
}
@media (max-width: 820px) {
  .legal-shell {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 80px;
  }
  .legal-toc {
    position: static;
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 20px;
  }
}

/* Cookie consent banner --------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(8, 31, 39, 0.18), 0 2px 8px rgba(8, 31, 39, 0.08);
  padding: 22px 24px;
  z-index: 100;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-900);
  font-weight: 600;
  margin: 0 0 8px;
}
.cookie-banner p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0 0 14px;
}
.cookie-banner p a {
  color: var(--teal-900);
  border-bottom: 1px solid var(--coral-500);
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-actions .btn {
  padding: 10px 16px;
  font-size: 13.5px;
}
.cookie-actions .btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border: 1px solid var(--line);
}
.cookie-actions .btn-ghost:hover {
  border-color: var(--teal-900);
  color: var(--teal-900);
}
.cookie-actions .link-only {
  background: transparent;
  border: none;
  color: var(--ink-500);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px 10px;
}
.cookie-actions .link-only:hover { color: var(--teal-900); }
@media (max-width: 620px) {
  .cookie-banner {
    left: 12px; right: 12px; bottom: 12px;
    padding: 18px 20px;
  }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

/* Blog ----------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.post-card .thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  background: var(--mist-300);
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
}
.post-card:hover .thumb { transform: translateY(-3px); }
.post-card .thumb .pattern {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(224,122,95,0.35), transparent 45%),
              radial-gradient(circle at 75% 65%, rgba(10,46,56,0.18), transparent 55%);
}
.post-card .thumb.dark { background: var(--teal-900); }
.post-card .thumb.dark .pattern {
  background: radial-gradient(circle at 70% 40%, rgba(224,122,95,0.5), transparent 50%),
              linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 40px 40px,
              linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 40px 40px;
}
.post-card .thumb svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.post-card .meta { font-size: 12.5px; letter-spacing: 0.08em; color: var(--coral-500); text-transform: uppercase; }
.post-card h3 { margin-top: 12px; font-size: 1.35rem; }
.post-card p { color: var(--ink-700); font-size: 15px; }

/* Featured (hero) post card — desktop side-by-side, mobile stacked */
.post-card.post-card--featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.post-card--featured .post-card--featured-thumb { aspect-ratio: 5/3; margin: 0; }
@media (max-width: 820px) {
  .post-card.post-card--featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .post-card--featured .post-card--featured-thumb { aspect-ratio: 16/10; margin: 0 0 8px; }
}

/* Article (blog post) ------------------------------------------- */
.article-hero { background: var(--mist-100); padding: clamp(80px, 10vw, 130px) 0 50px; border-bottom: 1px solid var(--line-soft); }
.article-hero .eyebrow { margin-bottom: 18px; }
.article-hero h1 { max-width: 22ch; }
.article-hero .by {
  display: flex; gap: 16px; margin-top: 32px; font-size: 14px; color: var(--ink-500);
}
.article-hero .by span { display: inline-flex; align-items: center; gap: 8px; }
.article-hero .by .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-400); }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 28px 100px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-900);
}
.article-body h2 { font-size: 1.9rem; margin-top: 2em; }
.article-body h3 { font-size: 1.25rem; margin-top: 1.8em; }
.article-body p, .article-body ul, .article-body ol { color: var(--ink-700); }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--coral-500);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--teal-900);
  line-height: 1.4;
}
.article-body code {
  font-family: var(--font-mono);
  background: var(--mist-200);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.article-body a { color: var(--teal-900); border-bottom: 1px solid var(--coral-500); }

/* Careers -------------------------------------------------------- */
.roles { display: grid; gap: 0; border-top: 1px solid var(--line); }
.role {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s var(--ease);
}
.role:hover { padding-left: 12px; }
.role h3 { margin: 0; font-size: 1.2rem; color: var(--teal-900); }
.role .loc, .role .team { color: var(--ink-500); font-size: 14px; }
.role .apply {
  color: var(--coral-500); font-weight: 500; font-size: 14px;
  display: inline-flex; gap: 8px; align-items: center;
}
@media (max-width: 820px) {
  .role { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .role .apply { justify-self: start; }
}

/* Form ----------------------------------------------------------- */
.form {
  display: grid; gap: 18px;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink-900);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-900);
  box-shadow: 0 0 0 4px rgba(10,46,56,0.08);
}

/* Misc helpers --------------------------------------------------- */
.center { text-align: center; }
.muted { color: var(--ink-500); }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 48px; }

/* Reveal animation ---------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Values grid (About) ------------------------------------------- */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 900px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff;
}
.value .num {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--coral-500); margin-bottom: 14px;
}

/* Timeline (About) ---------------------------------------------- */
.timeline { display: grid; gap: 0; }
.t-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.t-item:first-child { border-top: 0; }
.t-item .when {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--coral-500);
  font-weight: 400;
}
.t-item h3 { margin: 0 0 6px; }
.t-item p { color: var(--ink-700); margin: 0; }
@media (max-width: 720px) {
  .t-item { grid-template-columns: 1fr; gap: 8px; }
}

/* Credential line (Home) ---------------------------------------- */
.credential-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.credential-line .credential-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  position: relative;
  padding-bottom: 18px;
}
.credential-line .credential-eyebrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 44px; height: 1px;
  background: var(--coral-500);
  opacity: 0.9;
}
.credential-line .credential-statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.credential-line .credential-statement em {
  font-style: italic;
  color: var(--coral-500);
  font-weight: 300;
}

/* =================================================================
   Why Whispor block
   ================================================================= */
.why .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why .pillar {
  padding: 40px 32px;
  border-left: 1px solid var(--line);
  position: relative;
}
.why .pillar:first-child { border-left: 0; }
.why .pillar .icon {
  width: 44px; height: 44px;
  color: var(--coral-500);
  margin-bottom: 22px;
}
.why .pillar h3 { font-size: 1.25rem; margin: 0 0 10px; }
.why .pillar p { color: var(--ink-700); margin: 0; font-size: 15px; }
@media (max-width: 900px) {
  .why .why-grid { grid-template-columns: 1fr 1fr; }
  .why .pillar:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .why .pillar:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .why .why-grid { grid-template-columns: 1fr; }
  .why .pillar { border-left: 0; border-top: 1px solid var(--line); }
  .why .pillar:first-child { border-top: 0; }
}

/* Hero illustration slot -------------------------------------- */
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-illu {
  position: relative;
  min-height: 360px;
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-illu { min-height: 240px; }
}

/* Illustration utility classes ------------------------------- */
.illu-card {
  background: var(--mist-300);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.illu-card.dark { background: var(--teal-800); color: #fff; }

/* Three-modes grid (Coach) ----------------------------------- */
.modes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .modes { grid-template-columns: 1fr; } }
.mode {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.mode:hover { transform: translateY(-3px); box-shadow: 0 20px 60px -30px rgba(10,46,56,0.22); }
.mode .illu {
  aspect-ratio: 16/10;
  background: var(--mist-300);
  position: relative;
  overflow: hidden;
}
.mode .illu.dark { background: var(--teal-900); }
.mode .body { padding: 26px 28px 30px; }
.mode .label {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-500); font-weight: 500;
}
.mode h3 { margin: 12px 0 8px; font-size: 1.2rem; }
.mode p { color: var(--ink-700); font-size: 15px; margin: 0; }

/* Engine grid (Coach) ---------------------------------------- */
.engines { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
@media (max-width: 1000px) { .engines { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .engines { grid-template-columns: 1fr; } }
.engine {
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(255,255,255,0.03);
}
.engine .n {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--coral-400); font-weight: 400;
  letter-spacing: 0.02em;
}
.engine h4 { color: #fff; margin: 10px 0 6px; font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; }
.engine p { color: rgba(255,255,255,0.72); font-size: 13.5px; margin: 0; line-height: 1.55; }

/* Steps (Auto how-it-works) --------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 34px 28px 36px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step:first-child { border-left: 0; }
.step .n {
  font-family: var(--font-display);
  color: var(--coral-500);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.step .illu {
  height: 110px;
  margin: 18px 0 22px;
}
.step h3 { font-size: 1.15rem; margin: 0 0 8px; }
.step p { color: var(--ink-700); font-size: 14.5px; margin: 0; }

/* Tiers table (Auto) ---------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.tier .illu {
  height: 90px;
  margin-bottom: 18px;
}
.tier .badge {
  display: inline-block;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral-500); font-weight: 500;
}
.tier h3 { margin: 10px 0 6px; font-size: 1.25rem; }
.tier p { color: var(--ink-700); font-size: 14.5px; margin: 0; }
.tier .split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px;
  padding-top: 18px; border-top: 1px dashed var(--line);
  font-size: 13px;
}
.tier .split .k { color: var(--coral-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; margin-bottom: 4px; }
.tier .split .v { color: var(--ink-900); }

/* Agent types list (Auto) ------------------------------------ */
.agents { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1000px) { .agents { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .agents { grid-template-columns: 1fr; } }
.agent {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--mist-200);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
  display: block;
}
.agent:hover { transform: translateY(-2px); background: #fff; border-color: var(--line); box-shadow: 0 12px 40px -24px rgba(10,46,56,0.18); }
.agent.is-active { background: var(--teal-900); border-color: var(--teal-900); color: #fff; transform: translateY(-2px); box-shadow: 0 20px 60px -30px rgba(10,46,56,0.4); }
.agent.is-active h4, .agent.is-active p { color: #fff; }
.agent.is-active .icon { color: var(--coral-300); }
.agent .icon {
  width: 36px; height: 36px; color: var(--teal-900); margin-bottom: 14px;
  transition: color .2s var(--ease);
}
.agent h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; margin: 0 0 6px; }
.agent p { margin: 0; font-size: 13.5px; color: var(--ink-700); }
.agent .chev {
  margin-top: 14px; display: flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-500);
}
.agent.is-active .chev { color: var(--coral-300); }
.agent.is-active .chev svg { transform: rotate(90deg); }
.agent .chev svg { transition: transform .2s var(--ease); }

/* Agent details panel */
.agent-details {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px;
  display: none;
  animation: fadeIn .3s var(--ease);
}
.agent-details.is-open { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .agent-details.is-open { grid-template-columns: 1fr; padding: 24px; } }
.agent-details h3 { font-size: 1.6rem; margin: 10px 0 14px; }
.agent-details .eyebrow { color: var(--coral-500); }
.agent-details .detail-body p { color: var(--ink-700); }
.agent-details ul { margin: 18px 0 0; padding: 0; list-style: none; }
.agent-details ul li {
  padding: 10px 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  font-size: 14.5px;
}
.agent-details ul li:first-child { border-top: 0; }
.agent-details ul li .k { color: var(--coral-500); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding-top: 3px; }
.agent-details ul li .v { color: var(--ink-900); }
.agent-details .detail-visual {
  background: var(--mist-100);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; align-items: center; justify-content: center;
  min-height: 260px;
}
.agent-details .detail-guide {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  padding: 10px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--teal-900);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.agent-details .detail-guide:hover {
  border-color: var(--coral-500);
  color: var(--coral-500);
  background: #fff;
}
.agent-details .detail-guide .arrow { transition: transform 160ms ease; }
.agent-details .detail-guide:hover .arrow { transform: translateX(3px); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* Decorative hero glyph -------------------------------------- */
.hero-glyph {
  position: absolute;
  top: 18%; right: -60px;
  width: 380px; height: 380px;
  pointer-events: none;
  opacity: 0.9;
}
@media (max-width: 1100px) { .hero-glyph { right: -120px; opacity: 0.5; } }
@media (max-width: 820px) { .hero-glyph { display: none; } }
/* Solution-page + hub variant: fully-visible glyph, content width matches Features */
.page-hero.page-hero-solution .hero-glyph {
  right: 16px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px;
  opacity: 0.95;
}
/* .inner inherits the default 860px so left margin matches every other page-hero */
@media (max-width: 1280px) {
  .page-hero.page-hero-solution .hero-glyph { width: 320px; height: 320px; right: 12px; opacity: 0.85; }
}
@media (max-width: 1100px) {
  .page-hero.page-hero-solution .hero-glyph { width: 240px; height: 240px; right: 8px; opacity: 0.55; }
}
@media (max-width: 900px) {
  .page-hero.page-hero-solution .hero-glyph { width: 180px; height: 180px; opacity: 0.35; }
}
@media (max-width: 720px) {
  .page-hero.page-hero-solution .hero-glyph { display: none; }
}

/* Inline illu containers ------------------------------------- */
.illu-box {
  aspect-ratio: 16/10;
  background: var(--mist-300);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.illu-box.dark { background: var(--teal-900); }
@media (max-width: 820px) {
  /* Wide data-viz illustrations become taller on phones so labels stay legible */
  .illu-box[style*="21/9"] { aspect-ratio: 4/3 !important; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
}

/* Pulse animation for illustrations -------------------------- */
@keyframes pulseWave {
  0%, 100% { opacity: 0.5; transform: scaleY(0.9); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}
.wave-bars rect { transform-origin: center; }
.wave-bars rect:nth-child(1) { animation: pulseWave 1.4s ease-in-out infinite; }
.wave-bars rect:nth-child(2) { animation: pulseWave 1.4s ease-in-out infinite .15s; }
.wave-bars rect:nth-child(3) { animation: pulseWave 1.4s ease-in-out infinite .30s; }
.wave-bars rect:nth-child(4) { animation: pulseWave 1.4s ease-in-out infinite .45s; }
.wave-bars rect:nth-child(5) { animation: pulseWave 1.4s ease-in-out infinite .60s; }
.wave-bars rect:nth-child(6) { animation: pulseWave 1.4s ease-in-out infinite .35s; }
.wave-bars rect:nth-child(7) { animation: pulseWave 1.4s ease-in-out infinite .50s; }
.wave-bars rect:nth-child(8) { animation: pulseWave 1.4s ease-in-out infinite .25s; }
.wave-bars rect:nth-child(9) { animation: pulseWave 1.4s ease-in-out infinite .10s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float { animation: floatY 5s ease-in-out infinite; }

/* Dots grid background --------------------------------------- */
.dots-bg {
  background-image: radial-gradient(rgba(10,46,56,0.16) 1px, transparent 1px);
  background-size: 14px 14px;
}

/* Stat icon accent (Auto · By the numbers) --------------------- */
.stats-strip .stat .stat-ico {
  width: 36px; height: 36px;
  color: var(--coral-400);
  margin-bottom: 18px;
  opacity: 0.9;
}
.stats-strip .stat .stat-ico svg { width: 100%; height: 100%; display: block; }

/* Persona grid (Who Auto is for) ------------------------------ */
.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .personas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .personas { grid-template-columns: 1fr; } }
.persona {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.persona:hover {
  transform: translateY(-3px);
  border-color: rgba(224,122,95,0.45);
  box-shadow: 0 18px 40px -22px rgba(10,46,56,0.25);
}
.persona .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(224,122,95,0.14), rgba(224,122,95,0.04));
  color: var(--coral-500);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.persona .ico svg { width: 30px; height: 30px; }
.persona .tag {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-500);
  font-weight: 500;
}
.persona h3 {
  font-size: 1.35rem;
  margin: 10px 0 10px;
  line-height: 1.2;
}
.persona p {
  color: var(--ink-700);
  font-size: 14.5px;
  margin: 0;
}

/* Value grid (Campaign & value · 2x2 icon tiles) ---------------- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.value-tile {
  padding: 22px 22px 20px;
  border-radius: var(--radius-md);
  background: var(--mist-100);
  border: 1px solid var(--line-soft);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-tile .ico {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  color: var(--coral-500);
  background: #fff;
  border-radius: 9px;
  display: grid; place-items: center;
  border: 1px solid var(--line-soft);
}
.value-tile .ico svg { width: 20px; height: 20px; }
.value-tile h4 {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  color: var(--ink-900);
}
.value-tile p {
  margin: 0;
  color: var(--ink-700);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Enlarged step/tier illustration wrappers --------------------- */
.step .illu svg,
.tier .illu svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 170px;
  height: 100%;
}
.tier .illu svg { max-width: 150px; }

/* Brief cards (Coach · before/after the meeting) --------------- */
.brief-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) { .brief-cards { grid-template-columns: 1fr; } }
.brief-card {
  padding: 18px 18px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #fff;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.brief-card:hover {
  transform: translateY(-2px);
  border-color: rgba(224,122,95,0.4);
  box-shadow: 0 12px 28px -18px rgba(10,46,56,0.22);
}
.brief-card .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(224,122,95,0.12);
  color: var(--coral-500);
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.brief-card .ico svg { width: 18px; height: 18px; }
.brief-card h4 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink-900);
  letter-spacing: 0.005em;
}
.brief-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 13.5px;
  line-height: 1.5;
}

/* CTA band — force side-by-side actions ------------------------ */
.cta-band { grid-template-columns: 1fr auto; }
.cta-band .actions { flex-wrap: nowrap; align-items: center; }
.cta-band .actions .btn { white-space: nowrap; }
@media (max-width: 820px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .actions { flex-wrap: wrap; }
}

/* Features page — numbered feature list ------------------------- */
.feature-row .copy .feat-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature-row .copy .feat-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-row .copy .feat-list li > div { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 640px) {
  .feature-row .copy .feat-list { grid-template-columns: 1fr; }
}
.feature-row .copy .feat-list li::before { content: none; }
.feature-row .copy .feat-list li:hover {
  border-color: rgba(224,122,95,0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -20px rgba(10,46,56,0.22);
}
.feature-row .copy .feat-list .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--teal-900);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.feature-row .copy .feat-list h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 4px;
  color: var(--ink-900);
}
.feature-row .copy .feat-list p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Features page — How it fits strip ----------------------------- */
.fits-strip {
  position: relative;
  background: var(--teal-900);
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}
.fits-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}
.fits-strip .container { position: relative; }

.fits-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 56px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line-on-dark);
}
.fits-head-left .eyebrow { color: var(--coral-300); }
.fits-head h2 {
  color: #fff;
  margin: 14px 0 0;
  line-height: 1.1;
}
.fits-lede {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.6;
  max-width: 46ch;
}
@media (max-width: 900px) {
  .fits-head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; margin-bottom: 32px; }
  .fits-strip { padding: 72px 0; }
}

.fits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .fits-grid { grid-template-columns: 1fr; } }

.fits-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.fits-card::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--coral-400);
  border-radius: 2px;
}
.fits-card:hover {
  border-color: rgba(224,122,95,0.55);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}
.fits-card .fits-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(224,122,95,0.14);
  color: var(--coral-300);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.fits-card .fits-ico svg { width: 24px; height: 24px; }
.fits-card .eyebrow { color: var(--coral-400); }
.fits-card h3 {
  color: #fff;
  margin: 12px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.fits-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* Careers — empty-state for open roles -------------------------- */
.roles-empty {
  margin-top: 8px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  background: var(--mist-200);
  border: 1px dashed rgba(10,46,56,0.18);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.roles-empty .roles-empty-illu {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
}
.roles-empty .roles-empty-illu svg { width: 100%; height: 100%; display: block; }
.roles-empty h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  color: var(--teal-900);
  margin: 0 0 10px;
}
.roles-empty p {
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 auto 10px;
  max-width: 48ch;
}
.roles-empty .roles-empty-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(10,46,56,0.1);
  font-size: 14.5px;
  color: var(--ink-500);
}
.roles-empty .btn { margin-top: 20px; }

/* Careers — Hiring process strip -------------------------------- */
.hiring-strip {
  position: relative;
  background: var(--teal-900);
  color: #fff;
  padding: 96px 0 88px;
  overflow: hidden;
}
.hiring-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.55;
  pointer-events: none;
}
.hiring-strip .container { position: relative; }

.hiring-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line-on-dark);
}
.hiring-head-left .eyebrow { color: var(--coral-300); }
.hiring-head h2 {
  color: #fff;
  margin: 14px 0 0;
  line-height: 1.08;
}
.hiring-lede {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.6;
  max-width: 46ch;
}
@media (max-width: 900px) {
  .hiring-head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; margin-bottom: 36px; }
  .hiring-strip { padding: 72px 0; }
}

.hiring-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .hiring-steps { grid-template-columns: 1fr; gap: 14px; } }

.hiring-track { display: none; }

.hiring-step {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.hiring-step::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 56px;
  width: 12px;
  height: 2px;
  background: var(--coral-400);
  border-radius: 2px;
  opacity: 0.7;
}
.hiring-step::before {
  content: "";
  position: absolute;
  right: -32px;
  top: 52px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--coral-400);
  opacity: 0.7;
}
.hiring-step.is-last::after,
.hiring-step.is-last::before { display: none; }
@media (max-width: 900px) {
  .hiring-step::after, .hiring-step::before { display: none; }
}
.hiring-step:hover {
  border-color: rgba(224,122,95,0.55);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.hiring-step-num {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(224,122,95,0.12);
  border: 1px solid rgba(224,122,95,0.4);
  color: var(--coral-300);
  display: grid; place-items: center;
  margin: 0 0 22px;
}
.hiring-step-num svg { width: 26px; height: 26px; }
.hiring-step-num .num-label {
  position: absolute;
  bottom: -8px; right: -10px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #ffffff;
  background: var(--coral-500);
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px var(--teal-900);
}

.hiring-step-body .eyebrow { color: var(--coral-400); font-size: 11px; }
.hiring-step-body h3 {
  color: #fff;
  margin: 10px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.hiring-step-body p {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.hiring-foot {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}
.hiring-foot strong { color: #fff; font-weight: 600; }
.hiring-foot-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral-400);
  box-shadow: 0 0 0 4px rgba(224,122,95,0.18);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224,122,95,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(224,122,95,0.08); }
}

/* Contact page — cohesive form + sidebar layout ----------------- */
.contact-shell {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .contact-shell { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* Left · form panel */
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 20px 60px -40px rgba(10,46,56,0.25);
}
.contact-panel-head {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.contact-panel-head .eyebrow { color: var(--coral-500); }
.contact-panel-head h2 { margin: 12px 0 10px; font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.contact-panel-head .lede { margin: 0; font-size: 16px; }

.contact-form-panel .form { gap: 20px; }
.contact-form-panel .form-submit {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-form-panel .form-status { font-size: 14px; color: var(--ink-500); }
.contact-form-panel .form-fineprint {
  font-size: 12.5px;
  color: var(--ink-500);
  margin: 4px 0 0;
  line-height: 1.5;
}

/* Right · sidebar panel (single unified card with sections) */
.contact-side-panel {
  background: var(--mist-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.2vw, 40px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.side-section { position: relative; }
.side-section + .side-section { /* spacing handled by .side-divider */ }
.side-section .side-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(224,122,95,0.12);
  color: var(--coral-500);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.side-section .side-icon svg { width: 22px; height: 22px; }
.side-section .eyebrow { color: var(--coral-500); }
.side-section h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--teal-900);
  margin: 10px 0 8px;
}
.side-section p {
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-900);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--coral-500);
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.side-link:hover { color: var(--coral-500); gap: 12px; }
.side-link svg { flex-shrink: 0; }

.side-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 28px 0;
}

.side-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 10px;
}
.side-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.5;
}
.side-list .check {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(224,122,95,0.15);
  color: var(--coral-500);
  display: grid; place-items: center;
  margin-top: 1px;
}
.side-list .check svg { width: 12px; height: 12px; }

/* Press section distinct accent */
.side-section--press .side-icon {
  background: rgba(10,46,56,0.08);
  color: var(--teal-900);
}

@media (max-width: 980px) {
  .contact-side-panel { position: static; }
}

/* ==========================================================================
   Compare page
   ========================================================================== */

.compare-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.compare-intro .credential-statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink-900);
  letter-spacing: -0.015em;
}
.compare-intro p {
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.7;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 36px;
  box-shadow: 0 2px 24px rgba(10, 46, 56, 0.04);
}

.compare-matrix {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.compare-matrix thead th {
  background: var(--mist-100);
  color: var(--ink-900);
  text-align: left;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 20px 18px 18px;
  vertical-align: bottom;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 2;
}
.compare-matrix thead th.whispor-col {
  background: var(--teal-900);
  color: #fff;
}
.compare-matrix thead th.dim-col {
  background: #fff;
  width: 180px;
  min-width: 180px;
}
.compare-matrix thead .vendor-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.compare-matrix thead .vendor-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 6px;
}
.compare-matrix thead th.whispor-col .vendor-sub {
  color: var(--coral-300);
}
.compare-matrix thead th.whispor-col::after {
  content: "";
  display: block;
  width: 28px; height: 2px;
  background: var(--coral-500);
  margin-top: 10px;
}

.compare-matrix tbody th {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-900);
  padding: 18px;
  vertical-align: top;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  left: 0;
  z-index: 1;
  box-shadow: 1px 0 0 var(--line-soft);
  letter-spacing: 0.02em;
}
.compare-matrix tbody td {
  padding: 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-700);
  font-size: 13.5px;
  min-width: 160px;
}
.compare-matrix tbody td.whispor-col {
  background: rgba(224, 122, 95, 0.04);
  color: var(--ink-900);
  font-weight: 500;
  border-left: 1px solid rgba(224, 122, 95, 0.12);
  border-right: 1px solid rgba(224, 122, 95, 0.12);
}
.compare-matrix tbody tr:last-child th,
.compare-matrix tbody tr:last-child td {
  border-bottom: none;
}
.compare-matrix tbody tr:hover td {
  background: var(--mist-100);
}
.compare-matrix tbody tr:hover td.whispor-col {
  background: rgba(224, 122, 95, 0.08);
}

.compare-foot {
  margin-top: 28px;
  color: var(--ink-500);
  font-size: 13px;
  max-width: 780px;
}
.compare-foot a { color: var(--coral-500); border-bottom: 1px solid rgba(224,122,95,0.3); }
.compare-foot a:hover { color: var(--coral-400); }

/* Per-competitor deep dives */
.deep-dives {
  background: var(--mist-100);
}

.vs-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.vs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 2px 24px rgba(10, 46, 56, 0.04);
  scroll-margin-top: 80px;
}

.vs-head { margin-bottom: 28px; }
.vs-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coral-500);
  padding: 6px 12px;
  background: rgba(224, 122, 95, 0.08);
  border-radius: 100px;
  margin-bottom: 16px;
}
.vs-head h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--ink-900);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.vs-lede {
  color: var(--ink-700);
  font-size: 1.05rem;
  max-width: 68ch;
  margin: 0;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.vs-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-500);
  margin: 0 0 14px;
}
.vs-col:first-child h4 { color: var(--ink-500); }
.vs-col:last-child h4 { color: var(--coral-500); }
.vs-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-col li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-700);
  padding-left: 20px;
  position: relative;
}
.vs-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--ink-400);
}
.vs-col:last-child li::before {
  background: var(--coral-500);
}
.vs-col li strong { color: var(--ink-900); font-weight: 600; }

.vs-honest {
  margin: 24px 0 0;
  padding: 16px 20px;
  background: var(--mist-200);
  border-left: 3px solid var(--teal-900);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink-900);
}
.vs-honest strong { color: var(--teal-900); }

/* When not to pick us */
.not-us {
  background: var(--teal-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.not-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 110% 50%, rgba(224, 122, 95, 0.18), transparent 60%);
  pointer-events: none;
}
.not-us-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.not-us-wrap .eyebrow {
  color: var(--coral-300);
  justify-content: center;
}
.not-us-wrap .eyebrow::before { background: var(--coral-300); }
.not-us-wrap h2 {
  color: #fff;
  margin-top: 14px;
  margin-bottom: 40px;
}

.not-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 32px;
}
.not-us-item {
  padding: 24px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.not-us-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--coral-300);
  line-height: 1;
  flex-shrink: 0;
}
.not-us-item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.not-us-item h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.not-us-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}
.not-us-item p strong {
  color: #fff;
  font-weight: 600;
}
.not-us-foot {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  margin-top: 12px;
}

/* FAQ */
.faq .faq-list {
  margin-top: 40px;
  max-width: 880px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--coral-500);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin: 16px 0 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.7;
  max-width: 72ch;
}

@media (max-width: 820px) {
  .vs-card { padding: 28px 24px; }
  .vs-grid { grid-template-columns: 1fr; gap: 28px; padding: 20px 0; }
  .not-us-grid { grid-template-columns: 1fr; }
  .compare-matrix thead th.dim-col,
  .compare-matrix tbody th { width: 140px; min-width: 140px; }
}

