/* ============================================================
   ElevAIte CRM — Prototype stylesheet
   Translates identity-DESIGN.md tokens into CSS.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Serif:ital,wght@1,300&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* Colors */
  --color-primary: #0F172A;
  --color-accent: #2563EB;
  --color-accent-hover: #1D4ED8;
  --color-ai-signal: #7C3AED;
  --color-ai-signal-bg: #F3EBFF;
  --color-canvas: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-ink-secondary: #475569;
  --color-ink-tertiary: #94A3B8;
  --color-hairline: #E2E8F0;
  --color-highlight: #F59E0B;
  --color-success: #059669;
  --color-warning: #D97706;
  --color-error: #DC2626;

  /* Type families */
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'JetBrains Mono', monospace;
  --font-serif: 'IBM Plex Serif', Georgia, serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-section: 96px;
  --max-content: 1200px;
  --max-content-narrow: 880px;
  --prose-measure: 68ch;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 9999px;

  /* Elevation */
  --shadow-default: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-raised: 0 4px 16px rgba(15, 23, 42, 0.08);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-primary);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--color-accent); text-decoration: underline; }
a:hover { color: var(--color-accent-hover); }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-canvas);
  padding: 8px 16px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: var(--max-content-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-canvas);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--color-hairline); }
.nav-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-brand .nav-brand-ai {
  color: var(--color-ai-signal);
  font-weight: 600;
}
.nav-brand .nav-brand-suffix {
  color: var(--color-ink-tertiary);
  font-weight: 400;
  margin-left: 6px;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-cta { display: flex; gap: 12px; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-primary);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

/* ---------- Typography classes ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: var(--color-ink-secondary);
}
.eyebrow-on-dark { color: var(--color-ink-tertiary); }

.h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.body-lg {
  font-size: 19px;
  line-height: 1.6;
}
.body-md {
  font-size: 16px;
  line-height: 1.65;
}
.body-sm {
  font-size: 14px;
  line-height: 1.55;
}
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-ink-secondary);
  letter-spacing: -0.005em;
}
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--color-primary);
}
.display-numeral {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 160px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--color-ink-tertiary);
  opacity: 0.35;
}

.text-secondary { color: var(--color-ink-secondary); }
.text-tertiary { color: var(--color-ink-tertiary); }

@media (max-width: 768px) {
  .h1 { font-size: 36px; }
  .h2 { font-size: 28px; }
  .h3 { font-size: 22px; }
  .body-lg { font-size: 17px; }
  .hero-subtitle { font-size: 19px; }
  .pull-quote { font-size: 22px; }
  .display-numeral { font-size: 96px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
  min-height: 44px;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-canvas);
}
.btn-primary:hover { background: var(--color-accent-hover); color: var(--color-canvas); }
.btn-secondary {
  background: var(--color-canvas);
  color: var(--color-primary);
  border: 1px solid var(--color-hairline);
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-priority {
  background: var(--color-highlight);
  color: var(--color-primary);
  font-weight: 500;
}
.btn-priority:hover { background: #E08900; color: var(--color-primary); }
.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.4);
  outline-offset: 2px;
}

/* Secondary on dark band */
.on-dark .btn-secondary {
  background: transparent;
  color: var(--color-canvas);
  border-color: rgba(255, 255, 255, 0.2);
}
.on-dark .btn-secondary:hover {
  border-color: var(--color-canvas);
  color: var(--color-canvas);
}

/* ---------- Badges ---------- */
.badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-ai-signal-bg);
  color: var(--color-ai-signal);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.badge-ai::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-ai-signal);
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-default);
  transition: box-shadow 200ms ease;
}
.card-hover:hover { box-shadow: var(--shadow-raised); }

/* ---------- Inputs ---------- */
.input {
  width: 100%;
  background: var(--color-canvas);
  color: var(--color-primary);
  padding: 12px 14px;
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.4;
}
.input:focus {
  border-color: var(--color-accent);
  outline: 3px solid rgba(37, 99, 235, 0.15);
  outline-offset: 0;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 120px;
  padding-bottom: 96px;
  text-align: center;
}
.hero .eyebrow { display: block; margin-bottom: 24px; }
.hero .h1 { margin-bottom: 24px; }
.hero .hero-subtitle { margin: 0 auto 40px; max-width: 720px; }
.hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-cue {
  margin-top: 64px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
}
@media (max-width: 768px) {
  .hero { padding-top: 64px; padding-bottom: 56px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
}

/* ---------- Trust band ---------- */
.trust-band {
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
  padding: 32px 0;
}
.trust-introducer {
  text-align: center;
  margin-bottom: 16px;
}
.trust-verticals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  color: var(--color-ink-secondary);
}
.trust-verticals span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ---------- The shift (2-col asymmetric) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-balanced {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .two-col, .two-col-balanced { grid-template-columns: 1fr; gap: 24px; }
}
.shift-left .eyebrow { margin-bottom: 16px; }
.shift-left .h2 { margin-bottom: 0; }
.shift-right .body-lg { margin-bottom: 24px; }
.shift-right blockquote {
  margin: 0;
  border-left: 2px solid var(--color-accent);
  padding-left: 24px;
}

/* ---------- Tool consolidation diagram ---------- */
.diagram-band {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 48px;
}
.diagram-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.5fr;
  gap: 32px;
  align-items: center;
}
.tool-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tool-tile {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-ink-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tool-tile-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-ink-tertiary);
}
.diagram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.layer-card {
  background: var(--color-primary);
  color: var(--color-canvas);
  border-radius: var(--radius-md);
  padding: 28px;
}
.layer-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
  margin-bottom: 8px;
}
.layer-card-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.layer-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.layer-card .badge-ai {
  background: rgba(124, 58, 237, 0.15);
  color: #C4B5FD;
}
.layer-card .badge-ai::before { background: #C4B5FD; }

.diagram-caption {
  text-align: center;
  margin-top: 24px;
  color: var(--color-ink-secondary);
  font-size: 14px;
}
@media (max-width: 880px) {
  .diagram-grid { grid-template-columns: 1fr; gap: 16px; }
  .tool-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .diagram-arrow svg { transform: rotate(90deg); }
}

/* ---------- 3-card pillar grid ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-grid .card { padding: 40px; min-height: 280px; }
.pillar-grid .eyebrow { margin-bottom: 12px; display: block; }
.pillar-grid .h3 { margin-bottom: 16px; }
.pillar-grid p { color: var(--color-ink-secondary); }
@media (max-width: 880px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Agents teaser grid ---------- */
.section-intro {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-intro .eyebrow { display: block; margin-bottom: 16px; }
.section-intro .h2 { margin-bottom: 16px; }
.section-intro p { color: var(--color-ink-secondary); }

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.agents-grid .card {
  position: relative;
  padding: 28px;
}
.agents-grid .card .badge-ai {
  position: absolute;
  top: 20px;
  right: 20px;
}
.agents-grid .card .h3 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.agents-grid .card p {
  color: var(--color-ink-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}
.agents-grid .card .fit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-ink-tertiary);
  letter-spacing: 0.04em;
}
.catalog-link {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .agents-grid { grid-template-columns: 1fr; }
}

/* ---------- National+local inverted band ---------- */
.dark-band {
  background: var(--color-primary);
  color: var(--color-canvas);
}
.dark-band .h2,
.dark-band .h3 { color: var(--color-canvas); }
.dark-band .eyebrow { color: rgba(255, 255, 255, 0.55); }
.dark-band .body-md,
.dark-band p { color: rgba(255, 255, 255, 0.75); }
.dark-band hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 24px 0;
}
.local-lines .eyebrow { display: block; margin-bottom: 8px; }
.local-lines .h3 { margin-bottom: 8px; font-size: 22px; }
.local-lines > div + div {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Vertical grid ---------- */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vertical-grid .card { padding: 0; overflow: hidden; }
.vertical-grid .card-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-hairline);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.vertical-grid .card-photo-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-ink-tertiary);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.vertical-grid .card-body { padding: 24px; }
.vertical-grid .card-body .h3 { font-size: 20px; margin-bottom: 12px; }
.vertical-grid .card-body p { color: var(--color-ink-secondary); font-size: 15px; }
@media (max-width: 880px) {
  .vertical-grid { grid-template-columns: 1fr; }
}

/* ---------- Mid-page CTA ---------- */
.midpage-cta {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.midpage-cta .eyebrow { display: block; margin-bottom: 16px; }
.midpage-cta .h2 { margin-bottom: 16px; }
.midpage-cta .body-lg { color: var(--color-ink-secondary); margin-bottom: 32px; }
.midpage-cta-link {
  display: block;
  margin-top: 16px;
  font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--color-hairline);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--color-hairline); }
.faq-question {
  /* Reset h3 defaults so element switch to <h3> doesn't affect layout */
  margin: 0;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 19px;
  font-weight: 500;
  color: var(--color-primary);
  cursor: default;
}
.faq-question-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-ink-tertiary);
}
.faq-answer {
  margin-top: 12px;
  color: var(--color-ink-secondary);
  max-width: 720px;
}

/* ---------- Step bands ---------- */
.step-band {
  padding: 96px 0;
  border-top: 1px solid var(--color-hairline);
}
.step-band:first-of-type { border-top: none; }
.step-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 64px;
  align-items: start;
}
.step-left .display-numeral { display: block; margin-bottom: 16px; }
.step-left .eyebrow { display: block; margin-bottom: 12px; }
.step-left .h2 { margin-bottom: 0; }
.step-right .body-lg { color: var(--color-ink-secondary); }
.step-visual {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-ink-tertiary);
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 880px) {
  .step-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-band { padding: 56px 0; }
}

/* ---------- Catalog filter bar ---------- */
.filter-bar {
  background: var(--color-surface);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-primary);
  cursor: pointer;
}
.filter-pill.active {
  background: var(--color-primary);
  color: var(--color-canvas);
  border-color: var(--color-primary);
}
.filter-sort {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-ink-secondary);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.catalog-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-default);
  position: relative;
}
.catalog-card .badge-ai {
  position: absolute;
  top: 24px;
  right: 24px;
}
.catalog-card .h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 12px;
}
.catalog-card .outcome {
  color: var(--color-ink-secondary);
  font-size: 17px;
  margin-bottom: 24px;
}
.catalog-card hr {
  border: none;
  border-top: 1px solid var(--color-hairline);
  margin: 20px 0;
}
.catalog-output {
  margin-bottom: 12px;
}
.catalog-output .eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink-secondary);
}
.catalog-output p {
  color: var(--color-ink-secondary);
  font-size: 14px;
}
.catalog-fit {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-ink-tertiary);
}
@media (max-width: 880px) {
  .catalog-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Audit LP ---------- */
.lp-page .footer { padding: 24px 0; }
.lp-hero { padding-top: 96px; padding-bottom: 64px; }
.lp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.lp-hero .eyebrow { display: block; margin-bottom: 16px; }
.lp-hero .h1 { margin-bottom: 16px; }
.lp-hero .hero-subtitle { text-align: left; max-width: none; margin-left: 0; margin-bottom: 32px; }
.lp-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.lp-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lp-bullet-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-canvas);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.lp-bullet p {
  color: var(--color-ink-secondary);
  font-size: 16px;
}
.wizard-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-raised);
  overflow: hidden;
}
.wizard-progress {
  height: 4px;
  background: var(--color-hairline);
}
.wizard-progress-fill {
  width: 20%;
  height: 100%;
  background: var(--color-accent);
}
.wizard-body { padding: 32px; }
.wizard-step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
  margin-bottom: 12px;
}
.wizard-question {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.wizard-helper {
  color: var(--color-ink-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}
.wizard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.wizard-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 14px;
  color: var(--color-primary);
  cursor: pointer;
}
.wizard-chip.selected {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.wizard-add {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.wizard-add .input { flex: 1; }
.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-hairline);
  padding: 16px 32px;
  background: var(--color-surface);
}
.wizard-back {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-ink-tertiary);
  background: none;
  border: none;
  cursor: pointer;
}

.report-band {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 48px;
}
.report-headline {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.report-subhead {
  font-size: 18px;
  color: var(--color-ink-secondary);
  margin-bottom: 40px;
}
.report-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 15px;
}
.report-table thead {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-ink-secondary);
  letter-spacing: 0.06em;
}
.report-table th,
.report-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-hairline);
}
.report-table tbody tr:nth-child(even) { background: rgba(15, 23, 42, 0.02); }
.report-savings { color: var(--color-success); font-weight: 500; }

@media (max-width: 880px) {
  .lp-grid { grid-template-columns: 1fr; gap: 24px; }
  .lp-hero .hero-subtitle { text-align: left; }
  .report-headline { font-size: 40px; }
  .report-table { font-size: 13px; }
  .report-table th, .report-table td { padding: 10px 8px; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.calendar-mock {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-default);
}
.calendar-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.calendar-mock-month {
  font-size: 17px;
  font-weight: 500;
}
.calendar-mock-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}
.calendar-mock-grid .day-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-ink-tertiary);
  text-align: center;
  letter-spacing: 0.08em;
  padding: 4px 0;
}
.calendar-mock-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.calendar-mock-grid .day.muted { color: var(--color-ink-tertiary); }
.calendar-mock-grid .day.available {
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-accent);
  font-weight: 500;
}
.calendar-mock-grid .day.selected {
  background: var(--color-accent);
  color: var(--color-canvas);
  font-weight: 500;
}
.calendar-mock-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.calendar-mock-time {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: var(--color-primary);
  font-family: var(--font-mono);
}
.calendar-mock-time.selected {
  background: var(--color-primary);
  color: var(--color-canvas);
  border-color: var(--color-primary);
}

.after-call-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.after-call-block .display-numeral {
  display: block;
  font-size: 64px;
  margin-bottom: 16px;
}
.after-call-block .h3 { font-size: 22px; margin-bottom: 12px; }
.after-call-block p { color: var(--color-ink-secondary); }

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.local-grid .h2 { margin-bottom: 16px; }
.local-list-header {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}
.local-list-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}
.local-list-item:first-child { border-top: none; }
@media (max-width: 880px) {
  .contact-grid, .after-call-grid, .local-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary);
  color: var(--color-canvas);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .tagline {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-brand .parent {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
}
.footer-col a:hover { color: var(--color-canvas); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ---------- Sticky nav scroll effect ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Utility ---------- */
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 48px; }
.hidden { display: none; }
.text-center { text-align: center; }

/* ============================================================
   v2 ADDITIONS — tech-company feel + animations
   ============================================================ */

/* ---------- Scroll-triggered reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hero — tech-company refresh ---------- */
.hero-v2 {
  position: relative;
  padding-top: 144px;
  padding-bottom: 120px;
  overflow: hidden;
  text-align: center;
  background: var(--color-canvas);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-pattern svg { width: 100%; height: 100%; display: block; }
.hero-pattern circle { animation: pulseDot 4s ease-in-out infinite; }
.hero-pattern .node-a { animation-delay: 0s; }
.hero-pattern .node-b { animation-delay: 0.4s; }
.hero-pattern .node-c { animation-delay: 0.8s; }
.hero-pattern .node-d { animation-delay: 1.2s; }
.hero-pattern .node-e { animation-delay: 1.6s; }
.hero-pattern .flow-line {
  stroke-dasharray: 4 8;
  animation: flowDash 14s linear infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 0.55; transform: scale(1); transform-origin: center; }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes flowDash {
  to { stroke-dashoffset: -240; }
}
.hero-v2 .container-narrow { position: relative; z-index: 1; }
.hero-v2 .hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-ink-secondary);
  background: var(--color-surface);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 32px;
}
.hero-v2 .hero-meta .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  position: relative;
}
.hero-v2 .hero-meta .status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--color-success);
  opacity: 0.3;
  animation: liveBeat 2s ease-out infinite;
}
@keyframes liveBeat {
  0% { transform: scale(0.6); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero-v2 .h1 { margin-bottom: 24px; }
.hero-v2 .hero-subtitle { margin: 0 auto 40px; max-width: 760px; }
@media (max-width: 768px) {
  .hero-v2 { padding-top: 72px; padding-bottom: 64px; }
}

/* ---------- Dot grid background ---------- */
.dot-grid {
  position: relative;
}
.dot-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-hairline) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.dot-grid > * { position: relative; z-index: 1; }

/* ---------- Spec sheet eyebrow (tech-company style) ---------- */
.spec-eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-ink-secondary);
  margin-bottom: 24px;
}
.spec-eyebrow .spec-token {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.spec-eyebrow .spec-token::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.spec-eyebrow .spec-token:nth-child(2)::before { background: var(--color-ai-signal); }
.spec-eyebrow .spec-token:nth-child(3)::before { background: var(--color-highlight); }
.spec-eyebrow .spec-divider {
  color: var(--color-ink-tertiary);
  opacity: 0.5;
}

/* ---------- Animated tool consolidation diagram ---------- */
.diagram-band-v2 {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.diagram-band-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.diagram-band-v2 > * { position: relative; }

.diagram-v2 {
  display: grid;
  grid-template-columns: 1fr auto 1.6fr;
  gap: 40px;
  align-items: center;
}
.diagram-v2 .tool-tile-v2 {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.diagram-v2.visible .tool-tile-v2 { opacity: 1; transform: translateX(0); }
.diagram-v2.visible .tool-tile-v2:nth-child(1) { transition-delay: 0ms; }
.diagram-v2.visible .tool-tile-v2:nth-child(2) { transition-delay: 80ms; }
.diagram-v2.visible .tool-tile-v2:nth-child(3) { transition-delay: 160ms; }
.diagram-v2.visible .tool-tile-v2:nth-child(4) { transition-delay: 240ms; }
.diagram-v2.visible .tool-tile-v2:nth-child(5) { transition-delay: 320ms; }
.diagram-v2 .tool-tile-v2 .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-ink-tertiary);
}
.diagram-v2 .tool-tile-v2 .label {
  flex: 1;
}
.diagram-v2 .tool-tile-v2 .cost {
  color: var(--color-ink-tertiary);
  font-size: 11px;
}

.diagram-v2 .arrow-v2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diagram-v2 .arrow-v2 svg {
  width: 80px;
  height: 32px;
}
.diagram-v2 .arrow-v2 .arrow-line {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 800ms ease-out 400ms;
}
.diagram-v2.visible .arrow-v2 .arrow-line { stroke-dashoffset: 0; }
.diagram-v2 .arrow-v2 .arrow-head {
  opacity: 0;
  transition: opacity 300ms ease 1100ms;
}
.diagram-v2.visible .arrow-v2 .arrow-head { opacity: 1; }

.diagram-v2 .layer-card-v2 {
  background: var(--color-primary);
  color: var(--color-canvas);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 600ms ease 600ms, transform 600ms ease 600ms;
}
.diagram-v2.visible .layer-card-v2 { opacity: 1; transform: translateX(0); }
.diagram-v2 .layer-card-v2 .layer-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.diagram-v2 .layer-card-v2 .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  position: relative;
}
.diagram-v2 .layer-card-v2 .live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--color-success);
  opacity: 0.3;
  animation: liveBeat 2s ease-out infinite;
}
.diagram-v2 .layer-card-v2 .layer-card-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.diagram-v2 .layer-card-v2 .layer-card-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 20px;
}
.diagram-v2 .layer-card-v2 .layer-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.diagram-v2 .layer-card-v2 .badge-ai {
  background: rgba(124, 58, 237, 0.18);
  color: #C4B5FD;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 300ms ease, transform 300ms ease;
}
.diagram-v2 .layer-card-v2 .badge-ai::before { background: #C4B5FD; }
.diagram-v2.visible .layer-card-v2 .badge-ai {
  opacity: 1;
  transform: scale(1);
}
.diagram-v2.visible .layer-card-v2 .badge-ai:nth-child(1) { transition-delay: 1000ms; }
.diagram-v2.visible .layer-card-v2 .badge-ai:nth-child(2) { transition-delay: 1100ms; }
.diagram-v2.visible .layer-card-v2 .badge-ai:nth-child(3) { transition-delay: 1200ms; }
.diagram-v2.visible .layer-card-v2 .badge-ai:nth-child(4) { transition-delay: 1300ms; }
.diagram-v2.visible .layer-card-v2 .badge-ai:nth-child(5) { transition-delay: 1400ms; }
.diagram-v2.visible .layer-card-v2 .badge-ai:nth-child(6) { transition-delay: 1500ms; }

.diagram-v2 .layer-card-v2 .layer-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 11px;
}
.diagram-v2 .layer-card-v2 .layer-stat .num {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-canvas);
  display: block;
  letter-spacing: -0.01em;
}
.diagram-v2 .layer-card-v2 .layer-stat .lbl {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

@media (max-width: 880px) {
  .diagram-v2 { grid-template-columns: 1fr; gap: 16px; }
  .diagram-v2 .arrow-v2 svg { transform: rotate(90deg); }
}

/* ---------- Small abstract intelligence diagrams ---------- */
.intel-glyph {
  width: 100%;
  height: auto;
  max-width: 280px;
}
.intel-glyph .core {
  fill: var(--color-ai-signal);
}
.intel-glyph .node {
  fill: var(--color-primary);
}
.intel-glyph .link {
  stroke: var(--color-hairline);
  stroke-width: 1.5;
  fill: none;
}

/* ---------- Mono spec banner ---------- */
.spec-banner {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-banner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.spec-banner .accent { color: var(--color-canvas); }
.spec-banner .sep { color: rgba(255, 255, 255, 0.35); }

/* ---------- Tech card style override ---------- */
.tech-card {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease;
}
.tech-card:hover {
  border-color: var(--color-ink-tertiary);
  transform: translateY(-2px);
}
.tech-card .tech-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tech-card .tech-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-ai-signal);
}

/* ---------- Section divider line ---------- */
.divider-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: var(--max-content);
  margin: 0 auto;
}
.divider-line::before,
.divider-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-hairline);
}
.divider-line span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-ink-tertiary);
}

/* ---------- Pillar v2 cards with tech-company touches ---------- */
.pillar-card-v2 {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease;
}
.pillar-card-v2:hover { border-color: var(--color-primary); }
.pillar-card-v2 .pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-ai-signal);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.pillar-card-v2 .pillar-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--color-accent);
}
.pillar-card-v2 .h3 { margin-bottom: 16px; }
.pillar-card-v2 p { color: var(--color-ink-secondary); flex: 1; }
.pillar-card-v2 .pillar-tag {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
}

/* ---------- Footer dot-grid touch ---------- */
.footer-tech {
  position: relative;
  overflow: hidden;
}
.footer-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.footer-tech > * { position: relative; }

/* ---------- Misc ---------- */
.relative { position: relative; }
.z-1 { z-index: 1; }

/* ============================================================
   v3 ADDITIONS — Voice agent try-it section
   ============================================================ */

.try-it-band {
  position: relative;
  background: var(--color-surface);
  padding: var(--space-section) 0;
  overflow: hidden;
}
.try-it-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.try-it-band > * { position: relative; }

.try-it-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 880px) {
  .try-it-grid { grid-template-columns: 1fr; gap: 32px; }
  .try-it-band { padding: 56px 0; }
}

.try-it-text .spec-eyebrow { margin-bottom: 24px; }
.try-it-text .h2 { margin-bottom: 20px; }
.try-it-text .body-lg { color: var(--color-ink-secondary); margin-bottom: 24px; }
.try-it-text .micro {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-ink-tertiary);
}

.try-it-visual {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  box-shadow: var(--shadow-default);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.try-it-visual .button-pulse {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-ai-signal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-canvas);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.try-it-visual .button-pulse::before,
.try-it-visual .button-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-ai-signal);
  animation: ringPulse 2.4s ease-out infinite;
  opacity: 0;
}
.try-it-visual .button-pulse::after { animation-delay: 1.2s; }
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.try-it-visual .button-pulse svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-canvas);
  fill: none;
  stroke-width: 2;
}
.try-it-visual .button-callout {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
  text-align: center;
  max-width: 320px;
}
.try-it-visual .button-callout .arrow-down {
  display: block;
  margin-top: 8px;
  color: var(--color-ai-signal);
  font-size: 16px;
}
.try-it-visual .sample-transcript {
  margin-top: 16px;
  padding: 16px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--color-ink-secondary);
}
.try-it-visual .sample-transcript .turn-agent { color: var(--color-ai-signal); }
.try-it-visual .sample-transcript .turn-caller { color: var(--color-primary); }

/* Hide on top of widget if conflict */
.widget-placeholder {
  display: none;
}


/* ============================================================
   v4 ADDITIONS — 9-agent grid, voice call-out card, no widget
   ============================================================ */

/* Catalog now 3-col for 9 cards */
@media (min-width: 881px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-card .h2 { font-size: 24px; }
  .catalog-card { padding: 28px; }
}

/* Voice call-out card — static inline replacement for floating widget */
.voice-callout {
  background: var(--color-canvas);
  border: 1px solid var(--color-ai-signal);
  border-radius: var(--radius-md);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}
.voice-callout-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-ai-signal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  /* Reset button defaults when this element is a <button> */
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
button.voice-callout-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}
button.voice-callout-icon:active {
  transform: scale(0.98);
}
button.voice-callout-icon:focus-visible {
  outline: 3px solid var(--color-ai-signal);
  outline-offset: 4px;
}
.voice-callout-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-canvas);
  fill: none;
  stroke-width: 2;
}
.voice-callout-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-ai-signal);
  opacity: 0.3;
  animation: ringPulse 2.4s ease-out infinite;
}
.voice-callout-text .spec-eyebrow { margin-bottom: 12px; }
.voice-callout-text .h3 { margin-bottom: 8px; font-size: 22px; }
.voice-callout-text p {
  color: var(--color-ink-secondary);
  font-size: 15px;
  margin: 0;
}
.voice-callout-cta { flex-shrink: 0; }

@media (max-width: 768px) {
  .voice-callout {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 32px 24px;
  }
  .voice-callout-icon { margin: 0 auto; }
  .voice-callout-cta { width: 100%; }
  .voice-callout-cta .btn { width: 100%; }
}


/* ============================================================
   v5 ADDITIONS — Hero blue frame + livelier agent network
   ============================================================ */

/* Hero outline frame — sits behind the H1 */
.hero-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 760px;
  pointer-events: none;
  z-index: 0;
}
.hero-frame svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-frame .ring-outer {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  opacity: 0.35;
}
.hero-frame .ring-inner {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1;
  opacity: 0.15;
}
.hero-frame .ring-rotator {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  stroke-dasharray: 6 12;
  opacity: 0.5;
  transform-origin: center;
  animation: ringRotate 60s linear infinite;
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}
@media (max-width: 768px) {
  .hero-frame { width: 360px; height: 360px; }
}

/* Hero-v2 needs container-narrow z-indexed above the frame */
.hero-v2 .container-narrow { z-index: 2; position: relative; }

/* Enhance the agent network — bigger nodes, brighter lines, data packets */
.hero-pattern .node-large {
  r: 5;
}
.hero-pattern .agent-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--color-ink-tertiary);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: labelFade 12s ease-in-out infinite;
}
.hero-pattern .label-a { animation-delay: 0s; }
.hero-pattern .label-b { animation-delay: 3s; }
.hero-pattern .label-c { animation-delay: 6s; }
.hero-pattern .label-d { animation-delay: 9s; }
@keyframes labelFade {
  0%, 80%, 100% { opacity: 0; }
  10%, 70% { opacity: 0.6; }
}
.hero-pattern .data-packet {
  fill: var(--color-accent);
  filter: none;
  r: 2.5;
}
.hero-pattern .packet-path-1 {
  offset-path: path('M 100 100 L 320 220 L 560 140 L 800 280 L 1040 180 L 1280 320');
  animation: travelPath 8s linear infinite;
}
.hero-pattern .packet-path-2 {
  offset-path: path('M 200 480 L 440 360 L 680 460 L 920 340 L 1160 440');
  animation: travelPath 10s linear infinite 2s;
}
.hero-pattern .packet-path-3 {
  offset-path: path('M 150 300 L 380 380 L 620 280 L 860 420 L 1100 300 L 1340 380');
  animation: travelPath 12s linear infinite 4s;
}
@keyframes travelPath {
  from { offset-distance: 0%; opacity: 1; }
  90% { opacity: 1; }
  to { offset-distance: 100%; opacity: 0; }
}


/* ============================================================
   v6 ADDITIONS — Hero glass fill + glow (brand kit override)
   ============================================================ */

.hero-frame .ring-fill {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(37, 99, 235, 0.12);
  stroke-width: 1;
  filter: drop-shadow(0 8px 32px rgba(15, 23, 42, 0.05));
}
.hero-frame .ring-outer-glow {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.5;
  opacity: 0.55;
  filter: drop-shadow(0 0 16px rgba(37, 99, 235, 0.45)) drop-shadow(0 0 32px rgba(37, 99, 235, 0.25));
}
.hero-frame .ring-mid {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1;
  opacity: 0.22;
}


/* ============================================================
   v7 — Hero blue-fill + white text treatment
   ============================================================ */

/* Override v6 ring-fill: was white, now brand accent blue */
.hero-frame .ring-fill {
  fill: rgba(37, 99, 235, 0.96);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.5;
  filter: drop-shadow(0 16px 56px rgba(37, 99, 235, 0.28));
}
.hero-frame .ring-mid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
  opacity: 1;
}
.hero-frame .ring-outer-glow {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.5;
  opacity: 0.75;
  filter: drop-shadow(0 0 24px rgba(37, 99, 235, 0.6)) drop-shadow(0 0 56px rgba(37, 99, 235, 0.35));
}
.hero-frame .ring-rotator {
  stroke: rgba(255, 255, 255, 0.5);
  opacity: 0.6;
}

/* Hero text colors on blue circle */
.hero-v2 .h1 {
  color: #FFFFFF;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
@media (max-width: 768px) {
  .hero-v2 .h1 { font-size: 44px; }
}
.hero-v2 .hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
}
.hero-v2 .hero-meta {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-v2 .hero-meta .status-dot {
  background: #34D399;
}
.hero-v2 .hero-meta .status-dot::after {
  background: #34D399;
}
.hero-v2 .hero-scroll-cue {
  color: rgba(255, 255, 255, 0.6);
}
/* Secondary CTA needs adjustment on blue */
.hero-v2 .hero-cta-row .btn-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.96);
}
.hero-v2 .hero-cta-row .btn-secondary:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-primary);
}


/* ---------- Mobile nav open state (added by polish pass) ---------- */
@media (max-width: 880px) {
  .nav.nav-open .nav-inner {
    flex-wrap: wrap;
  }
  .nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0 8px;
    margin-top: 12px;
    border-top: 1px solid var(--color-hairline);
  }
  .nav.nav-open .nav-links a {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--color-hairline);
  }
  .nav.nav-open .nav-links a:last-child {
    border-bottom: none;
  }
  .nav.nav-open .nav-cta {
    flex-basis: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
  }
  .nav.nav-open .nav-cta .btn {
    width: 100%;
    text-align: center;
  }
  .nav.nav-open .nav-cta .btn-secondary {
    display: inline-flex;
  }
  .nav-mobile-toggle[aria-expanded="true"] {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
  }
}

/* ---------- 2-column footer variant (post-link-strip) ---------- */
.footer-grid.footer-grid-2col {
  grid-template-columns: 2fr 1fr;
  max-width: 880px;
}
@media (max-width: 880px) {
  .footer-grid.footer-grid-2col { grid-template-columns: 1fr; }
}


/* ============================================================
   v8 — Hero finalization: solid blue fill, white glow ring,
        single CTA inside circle, content fits the circle bounds
   ============================================================ */

/* Section needs more breathing room since circle is centered */
.hero-v2 {
  padding-top: 120px;
  padding-bottom: 96px;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-v2 { min-height: 620px; padding-top: 80px; padding-bottom: 64px; }
}

/* Solid blue fill — no transparency, no see-through */
.hero-frame .ring-fill {
  fill: #2563EB;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2;
  filter: drop-shadow(0 24px 64px rgba(37, 99, 235, 0.32));
}

/* White glow ring (was blue) — user spec: "mild white glow ring" */
.hero-frame .ring-outer-glow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2;
  opacity: 1;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.6))
          drop-shadow(0 0 36px rgba(255, 255, 255, 0.35));
}

/* Subtle mid ring stays a hint of white */
.hero-frame .ring-mid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
  opacity: 1;
}

/* Rotator ring — soft white dashed orbit */
.hero-frame .ring-rotator {
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1.2;
  opacity: 0.7;
}

/* Constrain hero content to fit inside the visible circle */
.hero-v2 .container-narrow {
  max-width: 580px;
  text-align: center;
}

/* Tighten H1 so it lands inside the circle on desktop */
.hero-v2 .h1 {
  color: #FFFFFF;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-v2 .h1 { font-size: 40px; }
}

/* Subtitle */
.hero-v2 .hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* Hero meta pill — glass on blue */
.hero-v2 .hero-meta {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

/* Single CTA inside the circle */
.hero-v2 .hero-cta-row.hero-cta-single {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.hero-v2 .hero-cta-row.hero-cta-single .btn-priority {
  background: #F59E0B;
  color: #0F172A;
  border-color: #F59E0B;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.28);
}
.hero-v2 .hero-cta-row.hero-cta-single .btn-priority:hover {
  background: #FBBF24;
  border-color: #FBBF24;
  color: #0F172A;
}

/* Subtle secondary link under the single CTA (inside circle) */
.hero-v2 .hero-secondary-link {
  margin-bottom: 28px;
}
.hero-v2 .hero-secondary-link a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
}
.hero-v2 .hero-secondary-link a:hover {
  color: #FFFFFF;
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

/* Scroll cue stays inside the circle as final element */
.hero-v2 .hero-scroll-cue {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}



/* ============================================================
   v8.1 — Trust band: vertical icons + hover tooltips
   ============================================================ */

.trust-band { padding: 56px 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 24px auto 0;
}
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

.trust-card {
  position: relative;
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  outline: none;
}
.trust-card:hover,
.trust-card:focus-visible {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.trust-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: color 200ms ease, transform 200ms ease;
}
.trust-icon svg {
  width: 100%;
  height: 100%;
}
.trust-card:hover .trust-icon,
.trust-card:focus-visible .trust-icon {
  color: var(--color-ai-signal);
  transform: scale(1.06);
}

.trust-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-ink-secondary);
  line-height: 1.3;
}

/* Tooltip — shown above card on hover/focus */
.trust-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 280px;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  z-index: 30;
  text-align: left;
}
.trust-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-primary);
}
.trust-card:hover .trust-tooltip,
.trust-card:focus-visible .trust-tooltip,
.trust-card.is-active .trust-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

/* Stagger the entrance — uses .reveal class + .visible */
.trust-card.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.trust-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.trust-card[data-stagger="1"].visible { transition-delay: 0ms; }
.trust-card[data-stagger="2"].visible { transition-delay: 80ms; }
.trust-card[data-stagger="3"].visible { transition-delay: 160ms; }
.trust-card[data-stagger="4"].visible { transition-delay: 240ms; }
.trust-card[data-stagger="5"].visible { transition-delay: 320ms; }
.trust-card[data-stagger="6"].visible { transition-delay: 400ms; }

/* On narrow screens the tooltip would overflow — center it on the row instead */
@media (max-width: 560px) {
  .trust-tooltip {
    width: 260px;
  }
}


/* ============================================================
   v8.2 — Market Research tool showcase + lead-capture form
   (Replaces tool-prices consolidation diagram)
   ============================================================ */

.market-research-section { background: var(--color-canvas); }

.mr-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .mr-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Preview side ---------- */
.mr-preview { }

.mr-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.mr-preview-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
}
.mr-preview-title {
  margin-bottom: 12px;
}
.mr-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mr-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-ink-secondary);
  font-size: 15px;
  line-height: 1.55;
}
.mr-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-top: 9px;
}

.mr-sample-card {
  margin-top: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  position: relative;
}
.mr-sample-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: var(--color-ai-signal);
  border-radius: 0 2px 2px 0;
}
.mr-sample-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-ai-signal);
  margin-bottom: 8px;
}
.mr-sample-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
  margin: 0 0 10px;
}
.mr-sample-source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
}

/* ---------- Form side ---------- */
.mr-form-card {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}
.mr-form-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.45), transparent 70%);
  pointer-events: none;
}
.mr-form-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
  pointer-events: none;
}
.mr-form-card > * { position: relative; z-index: 1; }

.mr-form-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.mr-form-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.mr-form-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 22px;
}

.mr-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mr-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mr-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}
.mr-field input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  transition: border-color 200ms ease, background 200ms ease;
}
.mr-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.mr-field input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}
.mr-submit {
  margin-top: 6px;
  background: #F59E0B;
  border-color: #F59E0B;
  color: #0F172A;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
}
.mr-submit:hover {
  background: #FBBF24;
  border-color: #FBBF24;
  color: #0F172A;
}
.mr-form-micro {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}


/* ============================================================
   v9 — Hero refinements: kill the "light blue box", make
        the circle dynamic, fix headline line layout
   ============================================================ */

/* (1) Kill the rectangular pattern halo — dial way down + radial fade */
.hero-pattern {
  opacity: 0.22;
  /* Radial fade — pattern is strongest near the circle, transparent at corners */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, rgba(0,0,0,0.55) 60%, transparent 85%);
          mask-image: radial-gradient(ellipse at center, #000 35%, rgba(0,0,0,0.55) 60%, transparent 85%);
}
.hero-pattern .flow-line { stroke-width: 0.8; }

/* Tone down the rectangular drop-shadow under the circle */
.hero-frame .ring-fill {
  fill: #2563EB;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 2;
  filter: drop-shadow(0 10px 28px rgba(37, 99, 235, 0.18));
}

/* (2) Headline — non-breaking sentence spans, sized to fit the circle */
.hero-v2 .h1 .h1-line {
  display: inline-block;
  white-space: nowrap;
}
.hero-v2 .container-narrow { max-width: 620px; }
.hero-v2 .h1 {
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 500;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .hero-v2 .h1 { font-size: 36px; }
  .hero-v2 .container-narrow { max-width: 92%; }
}

/* (3) Dynamic circle — breathing, glow pulse, radar ripples */

/* Breathing scale on the whole frame (subtle) */
.hero-frame {
  animation: heroBreathe 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heroBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.018); }
}

/* Glow pulse — the white outer ring pulses opacity */
.hero-frame .ring-outer-glow {
  animation: glowPulse 3.6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; stroke-width: 2; }
  50%      { opacity: 1;   stroke-width: 2.4; }
}

/* Radar ripple rings — two soft white rings expanding outward from the circle */
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  opacity: 0;
  animation: heroRipple 4.4s ease-out infinite;
}
.hero-frame::after { animation-delay: 2.2s; }
@keyframes heroRipple {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 0.55; }
  90%  { opacity: 0.04; }
  100% { transform: translate(-50%, -50%) scale(1.18); opacity: 0; }
}
@media (max-width: 768px) {
  .hero-frame::before,
  .hero-frame::after { width: 320px; height: 320px; }
}

/* Speed the rotator a touch for more energy */
.hero-frame .ring-rotator {
  animation: ringRotate 42s linear infinite;
}

/* Reduce motion — disable all the new animations */
@media (prefers-reduced-motion: reduce) {
  .hero-frame,
  .hero-frame .ring-outer-glow,
  .hero-frame::before,
  .hero-frame::after,
  .hero-frame .ring-rotator {
    animation: none !important;
  }
  .hero-frame::before,
  .hero-frame::after { display: none; }
}


/* ============================================================
   v10 — Hero background: pronounced orbs + agent labels
        (flow-lines stay subtle so we don't bring the box back)
   ============================================================ */

/* Boost overall pattern visibility */
.hero-pattern {
  opacity: 0.55;
  /* Slightly less aggressive mask so dots near the corners remain visible */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 45%, rgba(0,0,0,0.7) 70%, transparent 95%);
          mask-image: radial-gradient(ellipse at center, #000 45%, rgba(0,0,0,0.7) 70%, transparent 95%);
}

/* Keep flow lines subtle — these were the main cause of the rectangular feel */
.hero-pattern .flow-line {
  stroke-width: 0.9;
  opacity: 0.45;
}

/* Brighten the violet network nodes + add a soft glow */
.hero-pattern g[fill="#7C3AED"] circle {
  fill: #A78BFA;
  filter: drop-shadow(0 0 4px rgba(167, 139, 250, 0.85));
}

/* Brighten the larger blue nodes (the three "hub" points) — make them clearly orb-like */
.hero-pattern g[fill="#2563EB"] circle {
  fill: #60A5FA;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.9))
          drop-shadow(0 0 18px rgba(96, 165, 250, 0.45));
}

/* Strengthen the pulseDot animation amplitude */
@keyframes pulseDot {
  0%, 100% { opacity: 0.7; transform: scale(1); transform-origin: center; }
  50%      { opacity: 1;   transform: scale(1.35); }
}

/* Pump the agent labels — bigger, bolder, brighter, hold longer */
.hero-pattern .agent-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  fill: var(--color-primary);
  letter-spacing: 0.14em;
}
@keyframes labelFade {
  0%, 85%, 100% { opacity: 0; }
  12%, 70%      { opacity: 0.92; }
}

/* Data packets — slightly larger and brighter so they're more readable as moving "data" */
.hero-pattern .data-packet {
  r: 3.5;
  fill: #2563EB;
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.8));
}


/* ============================================================
   v11 — Bolder hero orbs/labels, centered subtitle (2 lines),
        gentle pulse on the blue circle
   ============================================================ */

/* (1) Hero subtitle: two centered lines, hard break between them */
.hero-v2 .hero-subtitle {
  text-align: center;
  display: block;
}
.hero-v2 .hero-subtitle .subtitle-line {
  display: block;
  text-align: center;
}
.hero-v2 .hero-subtitle .subtitle-line + .subtitle-line {
  margin-top: 4px;
}

/* (2) BOLDER hero background — orbs and labels both louder */

/* Push pattern container even higher visibility */
.hero-pattern {
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, rgba(0,0,0,0.8) 78%, transparent 98%);
          mask-image: radial-gradient(ellipse at center, #000 50%, rgba(0,0,0,0.8) 78%, transparent 98%);
}

/* Violet network orbs — bigger and more luminous */
.hero-pattern g[fill="#7C3AED"] circle {
  fill: #C4B5FD;
  filter: drop-shadow(0 0 6px rgba(196, 181, 253, 0.95))
          drop-shadow(0 0 14px rgba(167, 139, 250, 0.55));
}

/* Three large blue hub orbs — clearly orb-like with strong halo */
.hero-pattern g[fill="#2563EB"] circle {
  fill: #93C5FD;
  filter: drop-shadow(0 0 10px rgba(147, 197, 253, 1))
          drop-shadow(0 0 24px rgba(96, 165, 250, 0.7))
          drop-shadow(0 0 48px rgba(37, 99, 235, 0.35));
}

/* Bigger pulse amplitude */
@keyframes pulseDot {
  0%, 100% { opacity: 0.75; transform: scale(1);    transform-origin: center; }
  50%      { opacity: 1;    transform: scale(1.55); }
}

/* Agent labels — bolder, bigger, brighter */
.hero-pattern .agent-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  fill: var(--color-primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  paint-order: stroke fill;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 3px;
  stroke-linejoin: round;
}
@keyframes labelFade {
  0%, 88%, 100% { opacity: 0; }
  10%, 72%      { opacity: 1; }
}

/* Data packets — bigger, brighter */
.hero-pattern .data-packet {
  r: 4.5;
  fill: #2563EB;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.95))
          drop-shadow(0 0 16px rgba(96, 165, 250, 0.55));
}

/* (3) Gentle pulse on the blue circle */

/* Stronger breathing scale */
@keyframes heroBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);     }
  50%      { transform: translate(-50%, -50%) scale(1.03);  }
}
.hero-frame { animation: heroBreathe 4.5s ease-in-out infinite; }

/* Circle fill itself pulses — subtle brightness/glow shift */
.hero-frame .ring-fill {
  animation: circlePulse 4.5s ease-in-out infinite;
}
@keyframes circlePulse {
  0%, 100% {
    filter: drop-shadow(0 10px 28px rgba(37, 99, 235, 0.18));
  }
  50% {
    filter: drop-shadow(0 14px 40px rgba(37, 99, 235, 0.32))
            drop-shadow(0 0 28px rgba(96, 165, 250, 0.35));
  }
}

/* Make the radar ripples a touch more visible too */
@keyframes heroRipple {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 0.7; }
  90%  { opacity: 0.05; }
  100% { transform: translate(-50%, -50%) scale(1.22); opacity: 0; }
}


/* ============================================================
   v18 — Pulsing dot animation for the contact-page live signal
        next to 'Real advisor on the call. Same person...'
   ============================================================ */

.contact-live-dot {
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5);
  animation: contactLivePulse 2.4s ease-out infinite;
}
@keyframes contactLivePulse {
  0%   { box-shadow: 0 0 0 0   rgba(124, 58, 237, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0   rgba(124, 58, 237, 0); }
}


/* ============================================================
   v17 — Step 01 discovery-call visual becomes a clickable link to
        contact. Adds hover/focus states without changing layout.
   ============================================================ */

a.step-visual-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
a.step-visual-link:hover {
  transform: translateY(-3px);
}
a.step-visual-link:hover .center-disc {
  filter: drop-shadow(0 12px 32px rgba(37, 99, 235, 0.35));
}
a.step-visual-link:focus-visible {
  outline: 3px solid var(--color-ai-signal);
  outline-offset: 6px;
}


/* ============================================================
   v16 — Voice modal: hide floating orb by default, move it into
        a centered modal when user clicks a .js-launch-voice CTA.
        Removes the unreliable programmatic-click flow — user
        clicks the orb directly inside the modal, which is its
        native action and always works.
   ============================================================ */

/* Hide the floating orb by default. It only appears inside the modal. */
.vo-wrap { display: none !important; }

.voice-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.voice-modal.open { display: flex; }
.voice-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.voice-modal-content {
  position: relative;
  background: var(--color-canvas);
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  animation: voiceModalIn 220ms ease-out;
}
@keyframes voiceModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.voice-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--color-ink-tertiary);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
}
.voice-modal-close:hover {
  color: var(--color-primary);
  background: var(--color-surface);
}
.voice-modal-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.voice-modal-subtitle {
  margin: 0 0 32px;
  color: var(--color-ink-secondary);
  font-size: 15px;
  line-height: 1.55;
}
.voice-modal-orb-target {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 130px;
  margin: 0 auto;
}
/* When the orb is moved inside the modal, override its fixed
   positioning so it sits in the modal flow. */
.voice-modal-orb-target .vo-wrap {
  display: block !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}
.voice-modal-hint {
  margin: 24px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-tertiary);
}


/* ============================================================
   v15 — Voice-orb visible feedback. Botdisplay sets .loading
        when the call is being set up and .connected when WebRTC
        is established, but provides no visual cue. We add a
        spinner-style pulse for loading and an outward radar
        pulse for connected so the user sees that the call is
        actually live.
   ============================================================ */

.vo-orb.loading {
  opacity: 0.75;
  animation: voOrbLoading 1.1s ease-in-out infinite;
}
@keyframes voOrbLoading {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.06); }
}

.vo-orb.connected {
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.55);
  animation: voOrbConnected 1.6s ease-out infinite;
}
@keyframes voOrbConnected {
  0%   { box-shadow: 0 0 0 0   rgba(124, 58, 237, 0.55); }
  70%  { box-shadow: 0 0 0 22px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0   rgba(124, 58, 237, 0); }
}


/* ============================================================
   v14 — Even bolder: violet orbs at r=7, white pill backgrounds
        behind agent labels (group-level fade keeps pill + text
        synced). Pulse animation preserved.
   ============================================================ */

/* Bump violet orbs further */
.hero-pattern g[fill="#7C3AED"] circle {
  r: 7;
}

/* Pill background behind each label */
.hero-pattern .agent-label-pill {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(124, 58, 237, 0.35);
  stroke-width: 1.5;
  rx: 14;
  ry: 14;
  filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.12));
}

/* Group-level fade so pill + text appear/disappear together.
   Overrides the per-text animation defined in v8. */
.hero-pattern .agent-label-group {
  opacity: 0;
  animation: labelFade 12s ease-in-out infinite;
}
.hero-pattern .agent-label-group.label-a { animation-delay: 0s; }
.hero-pattern .agent-label-group.label-b { animation-delay: 3s; }
.hero-pattern .agent-label-group.label-c { animation-delay: 6s; }
.hero-pattern .agent-label-group.label-d { animation-delay: 9s; }

.hero-pattern .agent-label-group .agent-label {
  animation: none;
  opacity: 1;
}


/* ============================================================
   v13 — Bolder hero network: bigger orbs, brighter halos,
        more prominent agent labels. Pulse animation preserved.
   ============================================================ */

/* Violet network orbs — uniformly larger with stronger halo */
.hero-pattern g[fill="#7C3AED"] circle {
  r: 5;
  fill: #C4B5FD;
  filter: drop-shadow(0 0 8px rgba(196, 181, 253, 1))
          drop-shadow(0 0 18px rgba(167, 139, 250, 0.7));
}

/* Blue hub orbs — bigger and more luminous */
.hero-pattern g[fill="#2563EB"] circle {
  r: 8;
  fill: #BFDBFE;
  filter: drop-shadow(0 0 14px rgba(191, 219, 254, 1))
          drop-shadow(0 0 32px rgba(96, 165, 250, 0.8))
          drop-shadow(0 0 60px rgba(37, 99, 235, 0.45));
}

/* Center hub orb (cx=720) — anchor point, slightly larger */
.hero-pattern g[fill="#2563EB"] circle:first-child {
  r: 10;
}

/* Agent labels — larger, bolder, hold on screen longer */
.hero-pattern .agent-label {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.18em;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 4px;
}
@keyframes labelFade {
  0%, 92%, 100% { opacity: 0; }
  8%, 78%       { opacity: 1; }
}

/* Data packets — bigger, brighter trail */
.hero-pattern .data-packet {
  r: 5.5;
  fill: #2563EB;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 1))
          drop-shadow(0 0 22px rgba(96, 165, 250, 0.7));
}


/* ============================================================
   v12 — Approved logo integration (nav + footer + favicon)
   ============================================================ */

/* Nav wordmark replaced with image lockup */
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.nav-brand-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 200ms ease;
}
.nav-brand:hover .nav-brand-img { opacity: 0.88; }
@media (max-width: 560px) {
  .nav-brand-img { height: 32px; }
}

/* Footer brand row — mark beside the text wordmark */
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-mark {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}
.footer-brand-text { line-height: 1; }


/* ============================================================
   v13 — Hero H1: 3-line title-case stack, centered, with
        underline emphasis on "Layer." (coined-term treatment)
   ============================================================ */

.hero-v2 .h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 60px;
  line-height: 1.02;
}
.hero-v2 .h1 .h1-line {
  display: block;
  white-space: nowrap;
  text-align: center;
}

/* Coined-term emphasis on "Layer." */
.hero-v2 .h1 .h1-emphasis {
  font-style: italic;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 2.5px;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  text-underline-offset: 8px;
}

@media (max-width: 768px) {
  .hero-v2 .h1 { font-size: 34px; gap: 4px; }
  .hero-v2 .h1 .h1-emphasis {
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
}


/* ============================================================
   v14 — Live booking iframe embed (contact page)
   ============================================================ */

.booking-embed {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.booking-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.booking-embed-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-ink-tertiary);
}
.booking-embed-frame {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 720px;
}
.booking-embed-frame iframe {
  width: 100%;
  border: none;
  overflow: hidden;
  display: block;
  min-height: 720px;
  background: transparent;
}
.booking-embed-fallback {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-ink-tertiary);
  text-align: center;
}
.booking-embed-fallback a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.booking-embed-fallback a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .booking-embed-frame,
  .booking-embed-frame iframe { min-height: 580px; }
}


/* ============================================================
   v15 — Testable agent cards: "Try it" inline links
   ============================================================ */

.card-testable {
  position: relative;
  border-color: var(--color-accent);
  border-color: rgba(37, 99, 235, 0.25);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.card-testable:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}
.card-testable .card-try {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--color-accent);
  color: #FFFFFF !important;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 180ms ease, transform 180ms ease;
}
.card-testable .card-try:hover {
  background: var(--color-accent-hover);
  transform: translateX(2px);
}
.card-testable .card-try span { transition: transform 200ms ease; }
.card-testable .card-try:hover span { transform: translateX(3px); }


/* ============================================================
   v16 — Nine Agents grid: darker frames + staggered 3D flip
        (eye-catching, content stays readable 92% of cycle)
   ============================================================ */

/* Grid container gets the perspective for 3D depth */
.agents-grid {
  perspective: 1600px;
}

/* Flip-enabled agent card */
.agents-grid .card.flip-card {
  position: relative;
  background: transparent;
  transform-style: preserve-3d;
  border: none;
  padding: 0;
  min-height: 280px;
  animation: agentFlip 54s linear infinite;
  will-change: transform;
}

/* Front and back faces — both absolutely positioned within the card */
.agents-grid .card.flip-card .card-front,
.agents-grid .card.flip-card .card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

/* Front face — the readable content, with the darker border */
.agents-grid .card.flip-card .card-front {
  background: var(--color-canvas);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transform: rotateY(0);
}

/* Back face — dark, branded, minimal */
.agents-grid .card.flip-card .card-back {
  background: var(--color-primary);
  color: var(--color-canvas);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.card-back-mark {
  width: 64px;
  height: 64px;
  display: block;
  opacity: 0.92;
}
.card-back-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(196, 181, 253, 0.85);
  margin-top: 4px;
}
.card-back-name {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

/* Testable card override — keep the blue tint on front face */
.agents-grid .card.flip-card.card-testable .card-front {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.14);
}

/* Hover pause so user can read or interact with the card */
.agents-grid .card.flip-card:hover {
  animation-play-state: paused;
}

/* Flip cycle — card holds at 0deg for 92% of cycle,
   then flips through to back-face at 96%, then back to front at 100% */
@keyframes agentFlip {
  0%,
  92%   { transform: rotateY(0deg); }
  96%   { transform: rotateY(180deg); }
  100%  { transform: rotateY(360deg); }
}

/* Stagger — 9 cards, evenly distributed across the 54s cycle.
   Negative delays put each card at a different phase on page load,
   so the flips never overlap. ~6s between any two flips. */
.agents-grid .card.flip-card:nth-child(1) { animation-delay: 0s; }
.agents-grid .card.flip-card:nth-child(2) { animation-delay: -6s; }
.agents-grid .card.flip-card:nth-child(3) { animation-delay: -12s; }
.agents-grid .card.flip-card:nth-child(4) { animation-delay: -18s; }
.agents-grid .card.flip-card:nth-child(5) { animation-delay: -24s; }
.agents-grid .card.flip-card:nth-child(6) { animation-delay: -30s; }
.agents-grid .card.flip-card:nth-child(7) { animation-delay: -36s; }
.agents-grid .card.flip-card:nth-child(8) { animation-delay: -42s; }
.agents-grid .card.flip-card:nth-child(9) { animation-delay: -48s; }

/* Reduce motion — disable flip entirely, keep darker border */
@media (prefers-reduced-motion: reduce) {
  .agents-grid .card.flip-card {
    animation: none;
  }
  .agents-grid .card.flip-card .card-back { display: none; }
}

/* The card-try button inside the front face still needs to override the absolute-position default */
.agents-grid .card.flip-card .card-front .card-try {
  align-self: flex-start;
  margin-top: auto;
}


/* ============================================================
   v17 — Vertical proof grid: real photos with colored frames
        + H2 two-line stack ("Different Vertical." / "Same Intelligence Layer.")
   ============================================================ */

/* H2 two-line stack — applies wherever .h2 contains .h2-line spans */
.h2 .h2-line {
  display: block;
}

/* Each card-photo block keeps a colored gradient as a frame (matte),
   and the photo sits on top, cropped via object-fit: cover */
.card-photo {
  position: relative;
  padding: 12px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

/* Vertical-specific frame gradients */
.card-photo-home-services {
  background: linear-gradient(135deg, #475569 0%, #0F172A 100%);
}
.card-photo-hotels-restaurants {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
}
.card-photo-insurance {
  background: linear-gradient(135deg, #94A3B8 0%, #475569 100%);
}
.card-photo-real-estate {
  background: linear-gradient(135deg, #F59E0B 0%, #475569 100%);
}
.card-photo-health-wellness {
  background: linear-gradient(135deg, #F8FAFC 0%, #94A3B8 100%);
}
.card-photo-coaches-b2b {
  background: linear-gradient(135deg, #2563EB 0%, #0F172A 100%);
}

/* Subtle hover lift on each vertical card */
.vertical-grid .card {
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.vertical-grid .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.vertical-grid .card:hover .card-photo-img {
  transform: scale(1.02);
  transition: transform 350ms ease;
}
.vertical-grid .card .card-photo-img {
  transition: transform 350ms ease;
}


/* ============================================================
   v18 — Vertical-grid photo fix: kill the old flex/fixed-height
        rules so the photo fills its colored frame and centers
   ============================================================ */

.vertical-grid .card-photo {
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 12px;
  display: block;
  background-color: transparent;
  background-image: none;
  background-size: auto;
  background-position: 50% 50%;
  align-items: initial;
}

.vertical-grid .card-photo .card-photo-img,
.vertical-grid .card-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: var(--radius-sm);
}

/* Per-photo focal point tweaks — nudge the crop where the subject lives */
.card-photo-home-services .card-photo-img       { object-position: center 35%; }
.card-photo-hotels-restaurants .card-photo-img  { object-position: 45% center; }
.card-photo-insurance .card-photo-img           { object-position: center 40%; }
.card-photo-real-estate .card-photo-img         { object-position: center 45%; }
.card-photo-health-wellness .card-photo-img     { object-position: 65% center; }
.card-photo-coaches-b2b .card-photo-img         { object-position: 55% center; }


/* ============================================================
   v19 — Restore vertical-specific color frames behind photos
        (higher specificity wins over .vertical-grid .card-photo)
   ============================================================ */

.vertical-grid .card-photo.card-photo-home-services {
  background: linear-gradient(135deg, #475569 0%, #0F172A 100%);
}
.vertical-grid .card-photo.card-photo-hotels-restaurants {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
}
.vertical-grid .card-photo.card-photo-insurance {
  background: linear-gradient(135deg, #94A3B8 0%, #475569 100%);
}
.vertical-grid .card-photo.card-photo-real-estate {
  background: linear-gradient(135deg, #F59E0B 0%, #475569 100%);
}
.vertical-grid .card-photo.card-photo-health-wellness {
  background: linear-gradient(135deg, #F8FAFC 0%, #94A3B8 100%);
}
.vertical-grid .card-photo.card-photo-coaches-b2b {
  background: linear-gradient(135deg, #2563EB 0%, #0F172A 100%);
}


/* ============================================================
   v20 — Market Insight form: 2-line H3, expanded fields,
        consent checkbox, inline success state, submit spinner
   ============================================================ */

/* H3 with 2-line split */
.mr-form-card .h3 .h3-line {
  display: block;
}

/* 2-column field row */
.mr-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .mr-field-row { grid-template-columns: 1fr; }
}

/* Required marker + optional marker */
.mr-req {
  color: var(--color-highlight);
  font-weight: 500;
  margin-left: 2px;
}
.mr-optional {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-left: 4px;
}

/* Textarea matches input styling */
.mr-field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  resize: vertical;
  min-height: 56px;
  transition: border-color 200ms ease, background 200ms ease;
}
.mr-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.mr-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}

/* Consent checkbox row */
.mr-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}
.mr-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.mr-consent label {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
}

/* Submit button with spinner state */
.mr-submit { position: relative; }
.mr-submit-spinner {
  display: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
}
.mr-submit-spinner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(15, 23, 42, 0.25);
  border-top-color: #0F172A;
  border-radius: 50%;
  animation: mrSpin 0.7s linear infinite;
}
@keyframes mrSpin {
  to { transform: rotate(360deg); }
}
.mr-submit.is-submitting .mr-submit-label { visibility: hidden; }
.mr-submit.is-submitting .mr-submit-spinner { display: block; }
.mr-submit:disabled { cursor: not-allowed; opacity: 0.8; }

/* Error state */
.mr-error {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--radius-sm);
  color: #FCA5A5;
  font-size: 13px;
  line-height: 1.5;
}

/* Inline success state — replaces form on submit */
.mr-success {
  text-align: center;
  padding: 16px 8px;
  animation: mrFadeIn 400ms ease;
}
@keyframes mrFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mr-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: #34D399;
}
.mr-success-icon svg { width: 100%; height: 100%; }
.mr-success-title {
  color: #FFFFFF;
  margin-bottom: 10px;
}
.mr-success-body {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
  margin: 0 auto;
}


/* ============================================================
   v21 — Market Research preview: 2x2 deliverable cards,
        stacked sample findings, closing trust line
   ============================================================ */

/* 2x2 grid of mini deliverable cards — replaces the plain bullet list */
.mr-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
}
@media (max-width: 560px) {
  .mr-deliverables { grid-template-columns: 1fr; }
}

.mr-deliverable {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.mr-deliverable:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.mr-deliverable-icon {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.mr-deliverable-icon svg { width: 100%; height: 100%; display: block; }
.mr-deliverable-label {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.mr-deliverable p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink-secondary);
  margin: 0;
}

/* Two stacked sample finding cards */
.mr-sample-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Closing trust line */
.mr-trust-line {
  margin: 20px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-tertiary);
  text-align: center;
  padding: 12px;
  border-top: 1px solid var(--color-hairline);
}

/* Hide the now-unused mr-feature-list rule if it still cascades anywhere */
.mr-feature-list { display: none; }


/* ============================================================
   v22 — FAQ accordion: click to expand, animated
   ============================================================ */

.faq-question {
  cursor: pointer;
  user-select: none;
  padding: 16px 0;
  transition: color 200ms ease;
}
.faq-question:hover {
  color: var(--color-accent);
}
.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* The + icon rotates to × on open */
.faq-question-icon {
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 280ms ease, color 280ms ease;
}
.faq-item.is-open .faq-question {
  color: var(--color-accent);
}
.faq-item.is-open .faq-question-icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

/* Hide answer by default, animate open */
.faq-answer {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 380ms ease,
    margin-top 280ms ease,
    opacity 220ms ease;
}
.faq-item.is-open .faq-answer {
  max-height: 800px;
  margin-top: 14px;
  opacity: 1;
}

/* Reduce motion — disable animation, just toggle visibility */
@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}


/* ============================================================
   v23 — Footer: 3-column layout (Brand / PRODUCT / CONTACT)
   ============================================================ */

.footer-grid.footer-grid-3col {
  grid-template-columns: 1.6fr 1fr 1.2fr;
  max-width: 1120px;
  gap: 48px;
}
@media (max-width: 880px) {
  .footer-grid.footer-grid-3col { grid-template-columns: 1fr; gap: 32px; }
}

/* CONTACT column items */
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer-contact-item a:hover {
  color: var(--color-canvas);
  text-decoration: underline;
}
.footer-contact-item address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}
.footer-contact-item-address { align-items: flex-start; }


/* ============================================================
   v24 — Footer contact: phone label styling (main / cell)
   ============================================================ */
.footer-contact-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}


/* ============================================================
   v25 — Hero modifiers for pages with longer H1 content,
        + reinforce white text + container fit inside circle
   ============================================================ */

/* Default safe content width inside the visible blue circle.
   The circle's widest point is 640px diameter; corners curve in,
   so 540px is a safe content max for content near top/bottom. */
.hero-v2 .container-narrow { max-width: 580px; }

/* Reinforce text-on-blue (defensive — wins specificity battles) */
.hero-v2 .h1,
.hero-v2 .h1 .h1-line {
  color: #FFFFFF;
  text-align: center;
}
.hero-v2 .hero-subtitle,
.hero-v2 .hero-subtitle .subtitle-line {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.hero-v2 .hero-meta { color: rgba(255, 255, 255, 0.95); }

/* MODIFIER: hero-v2-stacked-4 — 4-line H1 stack (how-it-works)
   Each line is short, but vertical stack is tall. Smaller font keeps
   all 4 lines comfortably inside the visible circle, away from edges. */
.hero-v2.hero-v2-stacked-4 .h1 {
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero-v2.hero-v2-stacked-4 .h1 .h1-line {
  display: block;
  white-space: nowrap;
}
.hero-v2.hero-v2-stacked-4 .container-narrow {
  max-width: 540px;
}
@media (max-width: 768px) {
  .hero-v2.hero-v2-stacked-4 .h1 { font-size: 28px; }
}

/* MODIFIER: hero-v2-wide-line — H1 has at least one long sentence (agents)
   Drop font to keep wide line inside 580px content area. */
.hero-v2.hero-v2-wide-line .h1 {
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-v2.hero-v2-wide-line .h1 .h1-line {
  display: block;
  white-space: nowrap;
}
.hero-v2.hero-v2-wide-line .container-narrow {
  max-width: 580px;
}
@media (max-width: 768px) {
  .hero-v2.hero-v2-wide-line .h1 { font-size: 28px; }
}

/* Default hero subtitle on non-home hero pages — also white, centered */
.hero-v2.hero-v2-stacked-4 .hero-subtitle,
.hero-v2.hero-v2-wide-line .hero-subtitle {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
}


/* ============================================================
   v26 — Hero eyebrow visibility on blue circle
        Default .spec-eyebrow uses dark/gray colors. On the blue
        circle backdrop they disappear. Force light variants.
   ============================================================ */

.hero-v2 .spec-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.hero-v2 .spec-eyebrow .spec-token {
  color: #FFFFFF;
  font-weight: 600;
}
.hero-v2 .spec-eyebrow .spec-divider {
  color: rgba(255, 255, 255, 0.4);
}
.hero-v2 .spec-eyebrow > span {
  color: rgba(255, 255, 255, 0.85);
}
.hero-v2 .spec-eyebrow > span.spec-token {
  color: #FFFFFF;
}
.hero-v2 .spec-eyebrow > span.spec-divider {
  color: rgba(255, 255, 255, 0.4);
}

/* And give the eyebrow a touch more presence on the circle —
   subtle glass pill background so it reads as a UI element, not floating text */
.hero-v2 .spec-eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

/* Wrapping the eyebrow in a centered block — the parent layout still works */
.hero-v2 .spec-eyebrow[style*="justify-content: center"] {
  /* Override the inline style behavior: we want the whole pill centered, 
     not the content inside spread out. Center via the parent text-align. */
}
.hero-v2 .container-narrow {
  text-align: center;
}


/* ============================================================
   v27 — How It Works step visuals: rich graphics + animations
        + hero content centering verification
   ============================================================ */

/* Common step-visual frame */
.step-visual {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.step-visual-graphic {
  width: 100%;
  max-width: 320px;
}
.step-visual-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}
.step-visual-meta { text-align: center; }
.step-visual-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.step-visual-sublabel {
  font-size: 13px;
  color: var(--color-ink-secondary);
  line-height: 1.5;
}

/* ---------- Step 1 — Listening pulses ---------- */
.step-visual-listen .center-disc {
  fill: var(--color-accent);
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
}
.step-visual-listen .pulse-ring {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  transform-origin: 140px 90px;
  opacity: 0;
}
.step-band.visible .step-visual-listen .pulse-ring {
  animation: listenPulse 3s ease-out infinite;
}
.step-band.visible .step-visual-listen .pulse-ring.pulse-delay-1 { animation-delay: 1s; }
.step-band.visible .step-visual-listen .pulse-ring.pulse-delay-2 { animation-delay: 2s; }
@keyframes listenPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0;   }
}

/* ---------- Step 2 — Agent deployment connecting lines ---------- */
.step-visual-deploy .deploy-hub {
  filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.25));
}
.step-visual-deploy .deploy-hub-inner {
  animation: deployCorePulse 2s ease-in-out infinite;
  transform-origin: 160px 90px;
}
@keyframes deployCorePulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.25); opacity: 0.85; }
}
.step-visual-deploy .deploy-node {
  opacity: 0;
  transform: translateX(0);
}
.step-band.visible .step-visual-deploy .connect-line {
  animation: drawLine 700ms ease-out forwards;
}
.step-band.visible .step-visual-deploy .connect-line-2 { animation-delay: 200ms; }
.step-band.visible .step-visual-deploy .connect-line-3 { animation-delay: 400ms; }
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.step-band.visible .step-visual-deploy .deploy-node {
  animation: nodeIn 400ms ease-out forwards;
}
.step-band.visible .step-visual-deploy .deploy-node-1 { animation-delay: 700ms; }
.step-band.visible .step-visual-deploy .deploy-node-2 { animation-delay: 900ms; }
.step-band.visible .step-visual-deploy .deploy-node-3 { animation-delay: 1100ms; }
@keyframes nodeIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- Step 3 — Weekly report dashboard card ---------- */
.step-visual-run { background: transparent; border: none; padding: 0; }
.report-card {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.92);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}
.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.report-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.report-card-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(52, 211, 153, 0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);   }
}
.report-card-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}
.report-card-row {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.report-row-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
}
.report-row-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.report-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #7C3AED);
  border-radius: inherit;
  width: 0;
  transition: width 1.4s ease-out;
}
.step-band.visible .report-bar-fill { width: var(--data-fill); }
.report-row-value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: right;
}
.report-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.report-card-pipeline-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}
.report-card-pipeline-value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: #34D399;
}

/* ---------- Step 4 — Compound growth chart ---------- */
.step-visual-compound .compound-bar {
  transform-origin: bottom;
  transform: scaleY(0);
}
.step-band.visible .step-visual-compound .compound-bar {
  animation: barGrow 800ms ease-out forwards;
}
.step-band.visible .step-visual-compound .compound-bar-1 { animation-delay: 200ms; }
.step-band.visible .step-visual-compound .compound-bar-2 { animation-delay: 450ms; }
.step-band.visible .step-visual-compound .compound-bar-3 { animation-delay: 700ms; }
@keyframes barGrow {
  to { transform: scaleY(1); }
}
.step-band.visible .step-visual-compound .compound-line {
  animation: drawLine 1.2s ease-out 1000ms forwards;
}
.step-visual-compound .compound-dot {
  opacity: 0;
}
.step-band.visible .step-visual-compound .compound-dot {
  animation: dotIn 300ms ease-out forwards;
}
.step-band.visible .step-visual-compound .compound-dot-1 { animation-delay: 1100ms; }
.step-band.visible .step-visual-compound .compound-dot-2 { animation-delay: 1400ms; }
.step-band.visible .step-visual-compound .compound-dot-3 { animation-delay: 1700ms; }
@keyframes dotIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- Hero centering verification ---------- */
.hero-v2 .container-narrow {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-v2 .container-narrow > * { width: 100%; }
.hero-v2 .container-narrow .spec-eyebrow,
.hero-v2 .container-narrow .hero-meta {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .step-visual-listen .pulse-ring,
  .step-visual-deploy .deploy-node,
  .step-visual-deploy .connect-line,
  .step-visual-compound .compound-bar,
  .step-visual-compound .compound-line,
  .step-visual-compound .compound-dot,
  .report-bar-fill {
    animation: none !important;
    transition: none !important;
  }
  .step-visual-compound .compound-bar { transform: scaleY(1); }
  .step-visual-deploy .deploy-node { opacity: 1; transform: scale(1); }
  .step-visual-compound .compound-line { stroke-dashoffset: 0; }
  .step-visual-deploy .connect-line { stroke-dashoffset: 0; }
  .report-bar-fill { width: var(--data-fill); }
}


/* ============================================================
   v28 — Hero balance: shrink circle on lower-density pages,
        proportional vertical distribution
   ============================================================ */

/* For pages with less content than home, shrink the circle so content
   fills the visible area instead of floating in a huge blue void. */
.hero-v2.hero-v2-stacked-4 .hero-frame,
.hero-v2.hero-v2-wide-line .hero-frame {
  width: 680px;
  height: 680px;
}
.hero-v2.hero-v2-stacked-4,
.hero-v2.hero-v2-wide-line {
  min-height: 720px;
  padding-top: 96px;
  padding-bottom: 80px;
}

/* And shrink the ripple pseudo-elements to match */
.hero-v2.hero-v2-stacked-4 .hero-frame::before,
.hero-v2.hero-v2-stacked-4 .hero-frame::after,
.hero-v2.hero-v2-wide-line .hero-frame::before,
.hero-v2.hero-v2-wide-line .hero-frame::after {
  width: 560px;
  height: 560px;
}

/* Mobile fallback for smaller circles */
@media (max-width: 768px) {
  .hero-v2.hero-v2-stacked-4 .hero-frame,
  .hero-v2.hero-v2-wide-line .hero-frame {
    width: 340px;
    height: 340px;
  }
  .hero-v2.hero-v2-stacked-4,
  .hero-v2.hero-v2-wide-line {
    min-height: 560px;
  }
  .hero-v2.hero-v2-stacked-4 .hero-frame::before,
  .hero-v2.hero-v2-stacked-4 .hero-frame::after,
  .hero-v2.hero-v2-wide-line .hero-frame::before,
  .hero-v2.hero-v2-wide-line .hero-frame::after {
    width: 280px;
    height: 280px;
  }
}

/* Tighten vertical rhythm so the eyebrow, H1, subtitle, scroll cue
   distribute evenly across the visible circle */
.hero-v2.hero-v2-stacked-4 .hero-subtitle,
.hero-v2.hero-v2-wide-line .hero-subtitle {
  margin-top: 12px;
  margin-bottom: 24px;
}

/* Style the scroll cue we just added on these pages */
.hero-v2.hero-v2-stacked-4 .hero-scroll-cue,
.hero-v2.hero-v2-wide-line .hero-scroll-cue {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 12px;
}


/* ============================================================
   v29 — Mobile touch-target safety + final mobile polish
   ============================================================ */
@media (max-width: 768px) {
  /* Min 44x44 touch targets per WCAG/Apple guidelines */
  .btn,
  .nav-mobile-toggle,
  .nav-links a,
  .faq-question,
  .trust-card,
  .card-try,
  .mr-consent input[type="checkbox"] {
    min-height: 44px;
  }
  .nav-links a {
    display: flex;
    align-items: center;
  }
  /* Form input height bump for mobile */
  .mr-field input,
  .mr-field textarea {
    font-size: 16px;  /* prevents iOS zoom on focus */
    padding: 14px 14px;
  }
  /* Container padding tighter on mobile */
  .container,
  .container-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Section padding tighter on mobile */
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  /* Trust tooltips reposition below card on narrow mobile */
  .trust-tooltip {
    width: calc(100vw - 80px);
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .footer-grid.footer-grid-3col,
  .footer-grid.footer-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
