/* ============================================================
   VoiceDeskFlow — premium redesign
   Palette: warm cream + near-black + electric coral
   Single confident accent. No teal. No blue.
   ============================================================ */

:root {
  /* surfaces */
  --bg: #FBF7F2;
  --bg-subtle: #F4EFE6;
  --surface: #FFFFFF;
  --surface-raised: #FFFFFF;
  --surface-dark: #0A0A0A;
  --surface-dark-2: #141414;

  /* ink */
  --text: #0A0A0A;
  --text-2: #1A1A1A;
  --text-muted: #5C5750;
  --text-soft: #9A938A;
  --text-on-dark: #FBF7F2;
  --text-on-dark-muted: #A8A29A;

  /* lines */
  --line: #ECE5D7;
  --line-strong: #D8D1C2;
  --line-on-dark: rgba(251, 247, 242, 0.10);

  /* accent — warm terracotta, more grown-up than electric coral */
  --accent: #D2553A;
  --accent-hover: #B0432A;
  --accent-soft: #FBE4DC;
  --accent-deep: #8C311A;

  /* secondary warm accent (badges, highlights) */
  --gold: #E59B3C;
  --gold-soft: #FBE4BD;

  /* status (semantic, restored) */
  --success: #16A34A;
  --success-soft: #D9F4E2;
  --warning: #F59E0B;
  --warning-soft: #FDEFC9;
  --danger: #DC2626;
  --danger-soft: #FBDADA;

  /* shadows (warm) */
  --shadow-sm: 0 4px 14px rgba(10, 10, 10, 0.04);
  --shadow: 0 14px 40px rgba(10, 10, 10, 0.07);
  --shadow-strong: 0 32px 80px rgba(10, 10, 10, 0.12);
  --shadow-cta: 0 14px 36px rgba(210, 85, 58, 0.30);

  /* radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* type */
  --font-heading: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* layout */
  --max: 1200px;
  --max-narrow: 880px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 9vw, 140px);

  /* mouse-follow blob */
  --mx: 50%;
  --my: 50%;
}

[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-subtle: #141414;
  --surface: #141414;
  --surface-raised: #1A1A1A;
  --surface-dark: #050505;
  --surface-dark-2: #0F0F0F;

  --text: #FBF7F2;
  --text-2: #F0EBE0;
  --text-muted: #A8A29A;
  --text-soft: #6B6660;
  --text-on-dark: #FBF7F2;
  --text-on-dark-muted: #A8A29A;

  --line: #272525;
  --line-strong: #3A3735;
  --line-on-dark: rgba(251, 247, 242, 0.10);

  --accent: #E26A4D;
  --accent-hover: #ED7E5F;
  --accent-soft: rgba(226, 106, 77, 0.14);
  --accent-deep: #D2553A;

  --gold: #E59B3C;
  --gold-soft: rgba(229, 155, 60, 0.18);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  --shadow-strong: 0 32px 80px rgba(0, 0, 0, 0.6);
  --shadow-cta: 0 14px 36px rgba(226, 106, 77, 0.32);
}

/* --- Reset & base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.02;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 700; line-height: 1.05; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 600; line-height: 1.25; }

p { margin: 0; color: var(--text-muted); text-wrap: pretty; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Layout ---------------------------------------------- */
.site-shell { width: 100%; }

main > section,
.section-wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: var(--section-y);
}

main > section:first-child { padding-top: 32px; }

.section-narrow {
  max-width: var(--max-narrow);
  margin-inline: auto;
  text-align: center;
}

/* --- Eyebrow / chips ------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

[data-theme="dark"] .eyebrow {
  background: var(--surface-raised);
  border-color: var(--line-strong);
  color: var(--text);
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease, color 200ms ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(210, 85, 58, 0.40);
}

.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.20) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-dark {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}

.btn-ghost:hover { color: var(--accent); }

.btn:active { transform: scale(0.98); }

.btn .icon-call {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn-secondary .icon-call,
.btn-dark .icon-call { background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); }

/* --- Header ---------------------------------------------- */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  width: min(calc(var(--max) - 16px), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 10px 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.site-header.is-stuck {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: center;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: color-mix(in srgb, var(--text) 5%, transparent);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher select {
  appearance: none;
  padding: 7px 26px 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3l4 4 4-4' stroke='%235C5750' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 10px center/10px var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

[data-theme="dark"] .language-switcher select {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3l4 4 4-4' stroke='%23A8A29A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Header theme icon button — click cycles System → Light → Dark */
.theme-icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.theme-icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-icon-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.theme-icon-btn svg { display: block; }

/* Theme switcher: compact dropdown */
.theme-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.theme-select-wrap::before {
  content: "";
  position: absolute;
  left: 12px; top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4'/><path d='M12 3v2M12 19v2M3 12h2M19 12h2M5.6 5.6l1.4 1.4M17 17l1.4 1.4M5.6 18.4L7 17M17 7l1.4-1.4'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4'/><path d='M12 3v2M12 19v2M3 12h2M19 12h2M5.6 5.6l1.4 1.4M17 17l1.4 1.4M5.6 18.4L7 17M17 7l1.4-1.4'/></svg>") center/14px no-repeat;
  color: var(--text-soft);
  pointer-events: none;
}

.theme-select {
  appearance: none;
  padding: 7px 28px 7px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3l4 4 4-4' stroke='%235C5750' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 10px center/10px var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.theme-select:hover { border-color: var(--line-strong); }

.theme-select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

[data-theme="dark"] .theme-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3l4 4 4-4' stroke='%23A8A29A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: var(--accent);
  color: #FFFFFF;
  transform: translateY(-1px);
}

[data-theme="dark"] .header-cta {
  background: var(--accent);
  color: #FFFFFF;
}

[data-theme="dark"] .header-cta:hover {
  background: var(--accent-hover);
}

.mobile-nav-toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
  position: relative;
}

.mobile-nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 2px;
  margin-left: -8px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.mobile-nav-toggle span:nth-child(1) { transform: translateY(-5px); }
.mobile-nav-toggle span:nth-child(3) { transform: translateY(3px); }

.site-header.nav-open .mobile-nav-toggle span:nth-child(1) { transform: rotate(45deg); }
.site-header.nav-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .mobile-nav-toggle span:nth-child(3) { transform: rotate(-45deg); }

/* --- Mobile drawer --------------------------------------- */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 88vw);
  z-index: 70;
  padding: 88px 24px 28px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer .drawer-nav { display: grid; gap: 4px; }

.mobile-drawer .drawer-nav a {
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}

.mobile-drawer .drawer-nav a:hover,
.mobile-drawer .drawer-nav a:focus-visible {
  background: var(--bg-subtle);
  color: var(--accent);
}

.mobile-drawer .drawer-controls {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.mobile-drawer .drawer-prefs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-drawer .drawer-pref {
  display: grid;
  gap: 6px;
}

.mobile-drawer .drawer-pref-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.mobile-drawer .drawer-pref .theme-select {
  width: 100%;
  padding-left: 14px; /* no sun-icon prefix here */
}

.mobile-drawer .drawer-cta {
  width: 100%;
  min-height: 52px;
  font-size: 15px;
}

.drawer-overlay {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 200ms ease;
}

.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

body.no-scroll { overflow: hidden; }

/* --- Hero ------------------------------------------------ */
.hero {
  position: relative;
  text-align: center;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at calc(var(--mx)) calc(var(--my)), rgba(210, 85, 58, 0.18), transparent 60%),
    radial-gradient(ellipse 800px 600px at 80% 0%, rgba(210, 85, 58, 0.10), transparent 60%);
  transition: background-position 200ms ease;
}

[data-theme="dark"] .hero-glow {
  background:
    radial-gradient(ellipse 600px 400px at calc(var(--mx)) calc(var(--my)), rgba(226, 106, 77, 0.20), transparent 60%),
    radial-gradient(ellipse 800px 600px at 80% 0%, rgba(226, 106, 77, 0.12), transparent 60%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  gap: 28px;
  justify-items: center;
}

.hero-inner h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 0.98;
  max-width: 14ch;
}

.hero-inner h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 600;
}

.hero-lede {
  max-width: 56ch;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-trust .dot {
  width: 7px; height: 7px;
  border-radius: var(--r-pill);
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 18%, transparent);
}

.hero-trust strong { color: var(--text); font-weight: 600; }

/* --- Hero visual: Answer Console (below hero copy) ------- */
.hero-stage {
  position: relative;
  margin: 56px auto 0;
  max-width: 1100px;
  padding-inline: var(--gutter);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 10% 8% 6% 8%;
  background: radial-gradient(ellipse 80% 50% at 50% 60%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.console-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow-strong);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  text-align: left;
}

.console-call {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  border-radius: var(--r-xl);
  padding: 24px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.console-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 400px 200px at 100% 0%, rgba(226, 106, 77, 0.18), transparent 60%);
  pointer-events: none;
}

.console-call > * { position: relative; }

.call-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-on-dark);
}

.call-head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(226, 106, 77, 0.16);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-head .live .dot {
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(226, 106, 77, 0.22);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(226, 106, 77, 0.22); }
  50%      { box-shadow: 0 0 0 9px rgba(226, 106, 77, 0.04); }
}

.call-head .industry {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

.call-head .timer {
  margin-left: auto;
  font-family: var(--font-heading);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--text-on-dark);
}

.wave-stage {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 4px;
  align-items: end;
  height: 64px;
  padding: 8px 4px;
  border-radius: var(--r-md);
  background: rgba(226, 106, 77, 0.06);
}

.wave-bar {
  width: 100%;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(226, 106, 77, 0.4);
  animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.08s; }
.wave-bar:nth-child(3) { animation-delay: 0.16s; }
.wave-bar:nth-child(4) { animation-delay: 0.24s; }
.wave-bar:nth-child(5) { animation-delay: 0.32s; }
.wave-bar:nth-child(6) { animation-delay: 0.24s; }
.wave-bar:nth-child(7) { animation-delay: 0.16s; }
.wave-bar:nth-child(8) { animation-delay: 0.08s; }
.wave-bar:nth-child(9) { animation-delay: 0s; }

@keyframes wave {
  0%, 100% { height: 22%; }
  50%      { height: 92%; }
}

.transcript {
  display: grid;
  gap: 10px;
}

.transcript .line {
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(251, 247, 242, 0.05);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(251, 247, 242, 0.92);
}

.transcript .line.highlighted {
  background: linear-gradient(135deg, rgba(226, 106, 77, 0.18), rgba(226, 106, 77, 0.04));
  border: 1px solid rgba(226, 106, 77, 0.32);
}

.transcript .line b {
  display: inline-block;
  margin-right: 6px;
  color: var(--accent);
  font-weight: 700;
}

/* console-side cards */
.console-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.side-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.side-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.side-card label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.side-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.side-card p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.side-card.urgency strong { color: var(--accent); }

.side-card.summary {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 6px 16px;
  padding: 18px 20px;
}

.side-card.summary > .label-grid {
  display: contents;
}

.side-card.summary .summary-row {
  display: contents;
}

.side-card.summary dt {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
}

.side-card.summary dd {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.side-card.summary dd.hot { color: var(--accent); }

.flow-strip {
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

/* Track holds the steps. Two identical sets are rendered so the marquee
   can loop seamlessly. On desktop the track centers and shows only the
   first set; on mobile it scrolls continuously. */
.flow-strip .flow-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: max-content;
  margin: 0 auto;
}

.flow-strip .step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.flow-strip .step::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--accent);
  flex-shrink: 0;
}

.flow-strip .step + .step { padding-left: 8px; }
.flow-strip .step + .step::before {
  width: 16px; height: 1px;
  background: var(--line-strong);
  border-radius: 0;
}

/* Hide the duplicate (a11y-only) set on desktop. On mobile we let it show
   so the marquee animation has content to scroll into view. */
.flow-strip .step[aria-hidden="true"] { display: none; }

@media (max-width: 760px) {
  .flow-strip { padding: 12px 0; }
  .flow-strip .flow-track {
    width: max-content;
    justify-content: flex-start;
    margin: 0;
    animation: flowMarquee 22s linear infinite;
  }
  .flow-strip .step[aria-hidden="true"] { display: inline-flex; }
  .flow-strip:hover .flow-track,
  .flow-strip:focus-within .flow-track { animation-play-state: paused; }
}

@keyframes flowMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .flow-strip .flow-track { animation: none !important; }
  @media (max-width: 760px) {
    .flow-strip { overflow-x: auto; }
    .flow-strip .flow-track { animation: none; }
  }
}

/* --- Section heading ------------------------------------- */
.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.section-heading h2 { letter-spacing: -0.025em; }

.section-heading h2 .accent { color: var(--accent); font-style: italic; font-weight: 600; }

.section-heading p {
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 56ch;
}

/* --- Proof strip ----------------------------------------- */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip > div {
  display: grid;
  gap: 6px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  transition: background 200ms ease;
}

.proof-strip > div:last-child { border-right: 0; }

.proof-strip > div:hover { background: var(--bg-subtle); }

.proof-strip strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
}

.proof-strip span {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Bento features -------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, color-mix(in srgb, var(--accent) 24%, transparent) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
  z-index: -1;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bento-card:hover::before { opacity: 1; }

.bento-card .icon {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
}

[data-theme="dark"] .bento-card .icon { background: rgba(226, 106, 77, 0.14); }

.bento-card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.bento-card p { font-size: 15px; line-height: 1.55; }

.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }

.bento-card.dark {
  background:
    radial-gradient(ellipse 600px 300px at 0% 0%, rgba(226, 106, 77, 0.14), transparent 60%),
    var(--surface-dark);
  color: var(--text-on-dark);
  border-color: var(--line-on-dark);
}

.bento-card.dark h3 { color: var(--text-on-dark); }
.bento-card.dark p { color: var(--text-on-dark-muted); }
.bento-card.dark .icon {
  background: rgba(226, 106, 77, 0.16);
  color: var(--accent);
}

.bento-card .visual { margin-top: auto; padding-top: 20px; }

.mini-console {
  border: 1px solid var(--line-on-dark);
  border-radius: var(--r-md);
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 10px;
}

.mini-console .row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: rgba(251, 247, 242, 0.7);
}

.mini-console .row .dot {
  width: 6px; height: 6px; border-radius: var(--r-pill);
  background: var(--accent);
  box-shadow: 0 0 8px rgba(226, 106, 77, 0.6);
}

.mini-console .row .badge {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(226, 106, 77, 0.18);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- How it works ---------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: start;
}

.split-section > div:first-child { position: sticky; top: 110px; }
.split-section > div:first-child h2 { margin-top: 14px; }
.split-section > div:first-child > p { margin-top: 18px; max-width: 44ch; font-size: 16px; }

.steps {
  display: grid;
  gap: 16px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 32px; bottom: 32px; left: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 0%, transparent));
  z-index: 0;
}

.steps article {
  position: relative;
  padding: 24px 28px 24px 80px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.steps article:hover {
  border-color: var(--line-strong);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.steps article > span {
  position: absolute;
  left: 16px; top: 24px;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-cta);
}

.steps article h3 { margin-bottom: 6px; }
.steps article p { font-size: 15px; }

/* --- Live demo / tour ------------------------------------ */
.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.video-card {
  position: relative;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(226, 106, 77, 0.16), transparent 65%),
    var(--surface-dark);
  color: var(--text-on-dark);
  padding: 28px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.video-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 18px;
}

.video-chrome span {
  width: 11px; height: 11px;
  border-radius: var(--r-pill);
  background: rgba(251, 247, 242, 0.18);
}

.video-chrome span:first-child { background: var(--accent); }
.video-chrome span:nth-child(2) { background: var(--warning); }

.video-chrome strong {
  margin-left: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
}

.tour-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
}

.tour-phone, .tour-summary {
  padding: 20px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--r-md);
  background: rgba(251, 247, 242, 0.04);
  font-size: 14px;
}

.tour-phone { display: grid; gap: 12px; align-items: center; }

.tour-pulse {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto;
  border-radius: var(--r-pill);
  background: rgba(226, 106, 77, 0.18);
  color: var(--accent);
  position: relative;
}

.tour-pulse::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-pill);
  border: 2px solid var(--accent);
  animation: ring 2.4s ease-out infinite;
}

@keyframes ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

.tour-pulse::after { content: "📞"; font-size: 22px; }

.tour-phone p, .tour-summary p {
  margin: 0;
  color: rgba(251, 247, 242, 0.86);
  font-size: 13px;
  line-height: 1.45;
}

.tour-phone p { text-align: center; }

.tour-summary label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.tour-summary p { margin-top: 8px; }

.tour-flow { display: grid; gap: 4px; align-items: center; }

.tour-flow span {
  width: 24px; height: 1.5px;
  background: var(--accent);
  border-radius: 1.5px;
  opacity: 0.5;
  animation: flowPulse 2s ease-in-out infinite;
}

.tour-flow span:nth-child(2) { animation-delay: 0.3s; }
.tour-flow span:nth-child(3) { animation-delay: 0.6s; }

@keyframes flowPulse {
  0%, 100% { opacity: 0.25; transform: translateX(-3px); }
  50%      { opacity: 1;    transform: translateX(0); }
}

.caption-stream {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-on-dark);
}

.caption-stream span {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(226, 106, 77, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.experience-copy h2 { margin-bottom: 18px; }
.experience-copy p { font-size: 17px; max-width: 50ch; }
.experience-copy ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.experience-copy li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text-muted);
}

.experience-copy li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- Industries ------------------------------------------ */
.industry-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-rail article {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
  display: grid;
  gap: 8px;
  align-content: start;
}

.industry-rail article::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.industry-rail article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.industry-rail article:hover::before { transform: scaleX(1); }

.industry-rail article > span:first-child {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.industry-rail article p { font-size: 14px; line-height: 1.55; }

/* --- Results --------------------------------------------- */
.results-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.workflow-preview {
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-subtle);
}

.preview-header span {
  width: 9px; height: 9px;
  border-radius: var(--r-pill);
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent);
}

.preview-header strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.preview-grid {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px 22px;
  padding: 24px;
}

.preview-grid label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.preview-grid p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.preview-grid p.hot { color: var(--accent); }

.results-section h2 { margin-bottom: 18px; }
.results-section ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.results-section li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text-muted);
}

.results-section li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- Pricing --------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.pricing-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-grid article h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-grid article .price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
}

.pricing-grid article .price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-grid article .setup {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
}

.pricing-grid article ul {
  margin: 12px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-grid article ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-grid article ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: var(--r-pill);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3.5 8.5l3 3 6-6.5' stroke='%23FF5A1F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat,
    color-mix(in srgb, var(--accent) 12%, transparent);
}

[data-theme="dark"] .pricing-grid article ul li::before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3.5 8.5l3 3 6-6.5' stroke='%23FF7A45' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat,
    rgba(226, 106, 77, 0.16);
}

.pricing-grid article .btn { margin-top: auto; width: 100%; }

.pricing-grid article.featured {
  background:
    radial-gradient(ellipse 600px 200px at 50% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 75%),
    var(--surface);
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(210, 85, 58, 0.16);
  transform: translateY(-8px);
}

.pricing-grid article.featured::before {
  content: "Most popular";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-cta);
}

.pricing-microcopy {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  max-width: 640px;
  margin: 32px auto 0;
}

/* --- FAQ ------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-list details[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--bg-subtle);
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--accent);
  color: #FFFFFF;
}

.faq-list details p {
  margin: 16px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Big CTA --------------------------------------------- */
.cta-banner {
  position: relative;
  margin-block: var(--section-y);
  margin-inline: var(--gutter);
  max-width: var(--max);
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse 700px 400px at 0% 0%, rgba(226, 106, 77, 0.22), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(210, 85, 58, 0.14), transparent 60%),
    var(--surface-dark);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

@media (min-width: 1248px) { .cta-banner { margin-inline: auto; } }

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(251, 247, 242, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 247, 242, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.cta-banner > * { position: relative; }

.cta-banner h2 {
  color: #FFFFFF;
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.cta-banner h2 .accent { color: var(--accent); font-style: italic; }

.cta-banner p {
  margin-top: 16px;
  max-width: 56ch;
  color: rgba(251, 247, 242, 0.80);
  font-size: 17px;
}

.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-banner .btn-secondary {
  background: transparent;
  border-color: rgba(251, 247, 242, 0.32);
  color: #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta-stack { display: grid; gap: 12px; }

.cta-stack .mini {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(251, 247, 242, 0.05);
  border: 1px solid rgba(251, 247, 242, 0.10);
  font-size: 14px;
  color: rgba(251, 247, 242, 0.86);
}

.cta-stack .mini strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

.cta-stack .mini .icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  background: rgba(226, 106, 77, 0.20);
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

/* --- Contact --------------------------------------------- */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.contact-copy h2 { margin-bottom: 18px; }
.contact-copy p { font-size: 17px; max-width: 52ch; }

/* Contact-copy: clean cards instead of cluttered phone+email block */
.contact-stack {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-card .icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
}

.contact-card .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-card .value {
  display: block;
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  word-break: break-word;
}

#contactPhoneCard { display: none; }
#contactPhoneCard.is-live { display: grid; }

.contact-phone-card {
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: none;
}

.contact-phone-card.is-live { display: block; }

.contact-phone-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-phone-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
}

.email-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label { display: grid; gap: 6px; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-form label > span .req {
  color: var(--accent);
  margin-left: 2px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form select {
  appearance: none;
  padding-right: 42px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%235C5750' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 14px center/12px var(--surface);
  cursor: pointer;
}

[data-theme="dark"] .contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23A8A29A' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

@media (max-width: 520px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Submit button only — scoped so the combobox trigger and options inside
   the form don't inherit the submit-button style. */
.contact-form > button[type="submit"] {
  margin-top: 6px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #FFFFFF;
  border: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, transform 160ms ease, box-shadow 200ms ease;
  box-shadow: var(--shadow-cta);
}

.contact-form > button[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.contact-form .honeypot {
  position: absolute; left: -9999px;
  height: 0; overflow: hidden;
}

#formStatus { font-size: 14px; margin: 0; min-height: 18px; }
#formStatus.is-success { color: var(--success); font-weight: 600; }
#formStatus.is-error   { color: var(--danger); font-weight: 600; }

/* --- Footer ---------------------------------------------- */
.site-footer {
  margin-top: var(--section-y);
  padding: 64px var(--gutter) 36px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--line);
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px 32px;
}

.footer-brand { display: grid; gap: 18px; max-width: 320px; }
.footer-brand .brand { gap: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.55; max-width: 32ch; }

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-meta .chip .dot {
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--success);
  box-shadow: 0 0 6px color-mix(in srgb, var(--success) 50%, transparent);
}

.footer-col h4 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); transition: color 160ms ease; }
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
}

.footer-bottom .copy {
  font-weight: 500;
  color: var(--text-muted);
}

.footer-bottom .credit {
  font-size: 12px;
  color: var(--text-soft);
}

.footer-bottom .credit .heart {
  display: inline-block;
  color: var(--accent);
  margin: 0 2px;
}

.footer-bottom .credit a {
  color: var(--text-muted);
  border-bottom: 1px dotted var(--line-strong);
  transition: color 160ms ease, border-color 160ms ease;
}

.footer-bottom .credit a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-social {
  max-width: var(--max);
  margin: 22px auto 0;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  background: transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Reveal animations ----------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }

/* parallax floats */
.float-y {
  animation: floatY 6s ease-in-out infinite;
}
.float-y.slow { animation-duration: 9s; animation-delay: -2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* --- Focus polish ---------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* --- Reduced motion -------------------------------------- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- Status chips --------------------------------------- */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.status-chip.is-danger  { background: color-mix(in srgb, var(--danger) 12%, transparent); color: var(--danger); }
.status-chip.is-warning { background: color-mix(in srgb, var(--warning) 18%, transparent); color: #8A5B0F; }
.status-chip.is-success { background: var(--success-soft); color: var(--success); }
.status-chip.is-accent  { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); }

[data-theme="dark"] .status-chip.is-success { background: rgba(22, 163, 74, 0.15); color: #4ADE80; }
[data-theme="dark"] .status-chip.is-warning { background: rgba(245, 158, 11, 0.18); color: #FBBF24; }
[data-theme="dark"] .status-chip.is-danger  { background: rgba(220, 38, 38, 0.15); color: #F87171; }

/* --- Responsive ------------------------------------------ */
@media (max-width: 1100px) {
  .site-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  /* On mobile every preference lives in the drawer to keep the header clean. */
  .header-controls .language-switcher,
  .header-controls .theme-switcher,
  .header-controls .theme-select-wrap,
  .header-controls .header-cta { display: none; }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .header-controls { display: none; }
}

@media (max-width: 980px) {
  .console-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
  .proof-strip > div:nth-child(2n) { border-right: 0; }

  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card.span-2, .bento-card.span-3, .bento-card.span-4, .bento-card.span-6 { grid-column: span 2; }

  .split-section { grid-template-columns: 1fr; }
  .split-section > div:first-child { position: static; }

  .experience-section,
  .results-section,
  .contact-section { grid-template-columns: 1fr; }

  .industry-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid article.featured { transform: none; }

  .cta-banner { grid-template-columns: 1fr; padding: 40px; }
  .cta-stack { order: 2; }

  .footer-shell { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; max-width: none; }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    padding: 8px 8px 8px 14px;
    gap: 8px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
  }
  .brand-mark { width: 30px; height: 30px; }
  .header-controls .language-switcher { display: none; }

  .hero-actions { width: 100%; }
  .hero-actions .btn,
  .hero-actions .primary-action,
  .hero-actions .secondary-action { flex: 1 1 100%; }

  .industry-rail { grid-template-columns: 1fr; }

  /* Footer: brand + Product full-width, Industries + Company side-by-side */
  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
  .footer-brand,
  .footer-shell .footer-col:first-of-type { grid-column: span 2; }
  .footer-col h4 { margin-bottom: 12px; font-size: 11px; }
  .footer-col ul { gap: 8px; }
  .footer-col ul a { font-size: 13px; }

  .console-card { padding: 18px; gap: 18px; }
  .console-call { padding: 18px; }

  /* (Old swipe-scroll rule replaced by the marquee animation defined
     in the main .flow-strip block above. Keep just the radius tweak.) */
  .flow-strip { border-radius: var(--r-md); }

  /* Sticky-fixed CTA was confusing on mobile — keep buttons inline so the
     primary (Call us) reads as the dominant action above the fold. */
}

/* --- Custom country combobox (anchored, with search) ----- */
.combo-field {
  position: relative;
  display: grid;
  gap: 6px;
}

.combo-field > span:first-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Trigger — looks identical to a regular form input.
   Specificity bumped to (0,2,1) by chaining classes so no inherited
   form-button rule can override it. */
.combo-field button.combo-button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.combo-field button.combo-button:hover {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.combo-field.is-open button.combo-button,
.combo-field button.combo-button:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}

.combo-button-value {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-soft);
  font-weight: 500;
}

.combo-button-value.has-value { color: var(--text); }

.combo-chev {
  flex-shrink: 0;
  color: var(--text-soft);
  transition: transform 200ms ease;
}

.combo-field.is-open .combo-chev { transform: rotate(180deg); }

/* Dropdown panel */
.combo-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  max-height: 320px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

/* Search row */
.combo-panel .combo-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.combo-panel .combo-search svg {
  flex-shrink: 0;
  color: var(--text-soft);
}

.combo-panel .combo-search input {
  flex: 1;
  min-height: 32px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
}

.combo-panel .combo-search input::placeholder { color: var(--text-soft); }

/* Options — plain text rows. Specificity bumped to (0,3,1) so nothing
   inside the form leaks pill / accent / colored backgrounds onto them. */
.combo-panel .combo-options {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

.combo-panel .combo-options button.combo-option {
  appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 18px;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  min-height: 44px;
  box-shadow: none;
  cursor: pointer;
  transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 120ms ease, color 120ms ease;
}

.combo-panel .combo-options button.combo-option:hover,
.combo-panel .combo-options button.combo-option.is-active {
  background: var(--bg-subtle);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.combo-panel .combo-options button.combo-option[hidden] { display: none; }

.combo-panel .combo-options button.combo-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

[data-theme="dark"] .combo-panel .combo-options button.combo-option:hover,
[data-theme="dark"] .combo-panel .combo-options button.combo-option.is-active {
  background: rgba(255, 255, 255, 0.04);
}

/* Subtle scroll affordance */
.combo-panel .combo-options::-webkit-scrollbar { width: 8px; }
.combo-panel .combo-options::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 4px;
}

/* ============================================================
   Layout polish (Apr 2026): centered/symmetric sections,
   combobox hidden-attr fix, hamburger evenness, mobile rough edges
   ============================================================ */

/* --- Combobox: hidden attribute must win over display: flex --- */
.combo-panel[hidden] { display: none !important; }

/* --- How it works: centered heading + 2x2 grid + centered CTA --- */
#how-it-works .section-heading { margin-bottom: 40px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  display: grid;
  gap: 8px;
  align-content: start;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.step-card:hover::before { transform: scaleX(1); }

.step-card .step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  box-shadow: var(--shadow-cta);
}

.step-card h3 { font-size: 1.1rem; line-height: 1.3; margin-bottom: 4px; }
.step-card p { font-size: 14px; line-height: 1.55; }

.how-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* --- Operational clarity (results) ----------------------- */
#results .section-heading { margin-bottom: 40px; }

.results-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.results-points {
  display: grid;
  gap: 14px;
}

.result-point {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, transform 200ms ease;
}

.result-point:hover {
  border-color: var(--line-strong);
  transform: translateX(2px);
}

.result-point .result-num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
}

.result-point p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

/* --- Contact section: 2-column, text + cards on left, form on right --- */
#contact .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

#contact .contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* stop the eyebrow from stretching full width */
  gap: 16px;
}

#contact .contact-copy .eyebrow { align-self: flex-start; }

#contact .contact-copy h2 {
  letter-spacing: -0.025em;
  margin: 0;
}

#contact .contact-copy > p {
  font-size: 17px;
  max-width: 52ch;
  margin: 0;
}

#contact .contact-copy .contact-stack {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  width: 100%;
}

#contact .contact-stack .contact-card {
  width: 100%;
  padding: 18px 22px;
}

#contact .contact-stack .contact-card .value {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
}

@media (max-width: 980px) {
  #contact .contact-section { grid-template-columns: 1fr; }
  #contact .contact-copy .contact-stack { margin-top: 8px; }
}

@media (max-width: 560px) {
  #contact .contact-stack { grid-template-columns: 1fr; }
}

/* --- Hamburger: symmetric three-line lines --------------- */
.mobile-nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.mobile-nav-toggle span:nth-child(2) { transform: translateY(0); }
.mobile-nav-toggle span:nth-child(3) { transform: translateY(6px); }

/* --- Mobile polish: round more, soften edges, center copy --- */
@media (max-width: 980px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 560px; }
  .results-stage { grid-template-columns: 1fr; }
  #contact .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Header more compact, less boxy */
  .site-header {
    border-radius: var(--r-pill);
    padding: 8px 6px 8px 14px;
  }

  /* Hamburger evenness on small screens too */
  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--r-pill);
  }
  .mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    margin-left: -9px;
    border-radius: 2px;
  }

  /* Hero copy reads better when centered on phones already, just tighten */
  .hero { padding-top: clamp(40px, 8vw, 72px); }

  /* Buttons: round, full-width, calmer on mobile */
  .btn,
  .primary-action,
  .secondary-action {
    border-radius: var(--r-pill);
    min-height: 50px;
    font-size: 15px;
  }

  /* Pricing cards: less aggressive radius */
  .pricing-grid article { border-radius: var(--r-xl); padding: 28px 22px; }

  /* Bento cards: softer radius */
  .bento-card { border-radius: var(--r-xl); padding: 24px; }

  /* Step cards on mobile */
  .step-card { padding: 22px 22px 20px; border-radius: var(--r-xl); }

  /* Result points: match step cards */
  .result-point { padding: 14px 16px; border-radius: var(--r-xl); }

  /* Industries: round and breathe more */
  .industry-rail article { border-radius: var(--r-xl); padding: 22px; }

  /* Workflow preview rounded a bit more */
  .workflow-preview { border-radius: var(--r-xl); }

  /* CTA banner: less boxy at small width */
  .cta-banner { border-radius: var(--r-xl); padding: 32px 24px; }

  /* Contact form */
  .contact-form { border-radius: var(--r-xl); padding: 24px 22px; }
  #contact .contact-stack a { border-radius: var(--r-xl); }

  /* Center the hero text and constrain max width */
  .hero-inner { padding-inline: 4px; }
  .hero-inner h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .hero-lede { font-size: 16px; }

  /* Section headings: tighter h2, balanced */
  .section-heading { margin-bottom: 32px; padding: 0 4px; }
  .section-heading h2 { font-size: clamp(1.8rem, 6.5vw, 2.2rem); }

  /* Footer: tighter mobile rhythm */
  .footer-shell { gap: 24px 16px; padding: 0 4px; }
  .footer-brand { gap: 14px; }
  .footer-bottom { padding: 22px 4px 0; }
}
