:root {
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --surface: #f7f8fa;
  --border: #e4e7ec;
  --text: #12151c;
  --text-muted: #5b6472;
  --accent: #3358e0;
  --accent-hover: #2646c2;
  --on-accent: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.9);
  --radius: 10px;
  --max-width: 1080px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 2px 8px rgba(16, 24, 40, 0.04);
  --shadow-hover: 0 4px 12px rgba(16, 24, 40, 0.08), 0 2px 4px rgba(16, 24, 40, 0.06);
  --risk-low: #067647;
  --risk-low-bg: #ecfdf3;
  --risk-medium: #b54708;
  --risk-medium-bg: #fffaeb;
  --risk-high: #b42318;
  --risk-high-bg: #fef3f2;
  --hero-glow: radial-gradient(circle, rgba(51, 88, 224, 0.10), transparent 70%);
  --accent-soft: rgba(51, 88, 224, 0.10);
}

[data-theme="dark"] {
  --bg: #0b0e14;
  --bg-alt: #10141d;
  --surface: #151a24;
  --border: #232936;
  --text: #e8ebf1;
  --text-muted: #9aa4b5;
  --accent: #5b8cff;
  --accent-hover: #7aa2ff;
  --on-accent: #0b0e14;
  --header-bg: rgba(11, 14, 20, 0.9);
  --shadow: none;
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.35);
  --risk-low: #4ade80;
  --risk-low-bg: rgba(74, 222, 128, 0.12);
  --risk-medium: #fbbf24;
  --risk-medium-bg: rgba(251, 191, 36, 0.12);
  --risk-high: #f87171;
  --risk-high-bg: rgba(248, 113, 113, 0.12);
  --hero-glow: radial-gradient(circle, rgba(91, 140, 255, 0.16), transparent 70%);
  --accent-soft: rgba(91, 140, 255, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Disclaimer */
.disclaimer {
  background: var(--bg-alt);
  color: var(--text-muted);
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  z-index: 10;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

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

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-moon { display: none; }

[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.site-header nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.site-header nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.site-header nav a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

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

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: var(--hero-glow);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  align-items: center;
  gap: 48px;
  text-align: left;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.subheadline {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.microcopy {
  font-size: 13px;
  color: var(--text-muted);
}

/* Product tour: Lightning-style console recreation */
.pt-section { --pt-accent: #6d4aeb; --pt-accent-soft: rgba(109,74,235,.10); padding-bottom: 88px; }
.pt-section + .stats { border-top-width: 1px; padding-top: 88px; }
.pt-intro { color: var(--text-muted); font-size: 16px; margin-top: -8px; }

.pt-frame {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg);
  margin-top: 28px;
}

.pt-mobile-only { display: none; }

.pt-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  border-bottom: 2px solid var(--pt-accent);
  background: var(--bg);
  flex-wrap: wrap;
}
.pt-topbar-left { display: flex; align-items: center; gap: 18px; }
.pt-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(3, 4px);
  gap: 2px;
}
.pt-app-grid span { width: 4px; height: 4px; border-radius: 1px; background: var(--text-muted); }
.pt-wordmark { font-weight: 800; font-size: 15px; }
.pt-nav { display: flex; gap: 18px; }
.pt-nav-item { display: flex; align-items: center; gap: 3px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.pt-nav-active { color: var(--pt-accent); font-weight: 700; }
.pt-topbar-right { display: flex; align-items: center; gap: 10px; }
.pt-search {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 7px;
  padding: 6px 12px; min-width: 140px;
}
.pt-icon-btn {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-muted); border: 1px solid var(--border);
}
.pt-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--pt-accent-soft); color: var(--pt-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.pt-body { display: flex; }

.pt-sidebar {
  width: 190px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  background: var(--bg-alt);
}
.pt-sidebar-item { font-size: 12.5px; color: var(--text-muted); padding: 7px 10px; border-radius: 6px; margin-bottom: 2px; }
.pt-sidebar-active { background: var(--pt-accent-soft); color: var(--pt-accent); font-weight: 700; }
.pt-sidebar-heading { font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); font-weight: 700; margin: 14px 10px 6px; opacity: .7; }
.pt-sidebar-promo {
  margin-top: 20px; padding: 14px; border-radius: 10px;
  background: linear-gradient(135deg, var(--pt-accent), #4c2fc7); color: #fff;
}
.pt-sidebar-promo-title { font-weight: 800; font-size: 13px; }
.pt-sidebar-promo-sub { font-size: 11.5px; opacity: .85; margin-top: 3px; }

.pt-main { flex: 1; min-width: 0; padding: 20px 24px; }

.pt-page-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.pt-greeting { font-size: 19px; font-weight: 800; }
.pt-greeting-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.pt-page-head-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pt-chip { font-size: 12px; border: 1px solid var(--border); border-radius: 7px; padding: 6px 10px; color: var(--text-muted); white-space: nowrap; }
.pt-updated { font-size: 11.5px; color: var(--text-muted); }

.pt-kpi-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.pt-kpi-card { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; position: relative; }
.pt-kpi-label { font-size: 11.5px; color: var(--text-muted); font-weight: 600; }
.pt-kpi-line { display: flex; align-items: baseline; gap: 6px; margin-top: 3px; flex-wrap: nowrap; }
.pt-kpi-num { font-size: 19px; font-weight: 800; white-space: nowrap; }
.pt-kpi-delta { font-size: 11px; font-weight: 700; color: #16a34a; white-space: nowrap; }
.pt-up-red { color: var(--risk-high); }
.pt-green { color: #16a34a; }
.pt-red { color: var(--risk-high); }
.pt-spark { width: 100%; height: 22px; margin-top: 6px; }
.pt-kpi-note { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.pt-kpi-committed { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pt-kpi-committed .pt-kpi-text { min-width: 0; }
.pt-kpi-committed .pt-donut-mini { flex-shrink: 0; width: 44px; height: 44px; }

.pt-mid-row { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 12px; margin-top: 14px; align-items: start; }
.pt-panel { border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.pt-panel-title { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.pt-panel-title-row { display: flex; justify-content: space-between; align-items: center; }
.pt-close { color: var(--text-muted); font-size: 15px; cursor: default; }

.pt-confidence-panel { text-align: center; }
.pt-donut-big { width: 110px; height: 110px; }
.pt-donut-label { margin-top: -6px; }
.pt-donut-num { font-size: 24px; font-weight: 800; }
.pt-donut-sub { font-size: 11px; color: var(--text-muted); }
.pt-drivers-title { font-size: 11.5px; font-weight: 700; margin: 14px 0 8px; text-align: left; }
.pt-drivers { list-style: none; padding: 0; margin: 0; text-align: left; display: flex; flex-direction: column; gap: 6px; }
.pt-drivers li { font-size: 12px; padding-left: 18px; position: relative; color: var(--text-muted); }
.pt-driver-ok::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.pt-driver-warn::before { content: "!"; position: absolute; left: 2px; color: var(--risk-medium); font-weight: 700; }

.pt-legend-row { display: flex; gap: 12px; flex-wrap: wrap; font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.pt-legend-row span { display: inline-flex; align-items: center; gap: 5px; }
.pt-line-swatch { width: 12px; height: 2px; display: inline-block; }
.pt-line-swatch.pt-dashed { border-top: 2px dashed; height: 0; }
.pt-line-swatch.pt-dotted { border-top: 2px dotted; height: 0; }
.pt-timeline-chart { width: 100%; height: 110px; }
.pt-timeline-axis { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-top: 4px; }

.pt-inspector-deal { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.pt-inspector-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--pt-accent-soft); color: var(--pt-accent); font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.pt-inspector-name { font-size: 13px; font-weight: 700; }
.pt-inspector-sub { font-size: 11.5px; color: var(--text-muted); }
.pt-inspector-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .03em; margin: 12px 0 6px; }
.pt-inspector-health-row { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 6px; }
.pt-bar-track { height: 6px; border-radius: 4px; background: var(--bg-alt); overflow: hidden; }
.pt-bar-fill { height: 100%; border-radius: 4px; }
.pt-inspector-rows { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.pt-inspector-row { display: flex; justify-content: space-between; font-size: 12.5px; }
.pt-tag { font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.pt-tag-green { background: var(--risk-low-bg); color: var(--risk-low); }
.pt-tag-red { background: var(--risk-high-bg); color: var(--risk-high); }
.pt-tag-orange { background: var(--risk-medium-bg); color: var(--risk-medium); }
.pt-risk-factors { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.pt-risk-factors li { font-size: 12px; color: var(--text-muted); padding-left: 14px; position: relative; }
.pt-risk-factors li::before { content: "•"; position: absolute; left: 0; color: var(--risk-high); }
.pt-next-step { margin-top: 14px; background: var(--pt-accent-soft); border-radius: 8px; padding: 10px 12px; }
.pt-next-step-title { font-size: 11px; font-weight: 700; color: var(--pt-accent); }
.pt-next-step-text { font-size: 12px; margin: 4px 0 8px; }
.pt-btn-small { display: inline-block; font-size: 11.5px; font-weight: 700; background: var(--pt-accent); color: #fff; padding: 5px 10px; border-radius: 6px; }

.pt-lower-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-top: 12px; }
.pt-mini-table { display: flex; flex-direction: column; }
.pt-mini-thead, .pt-mini-row { display: grid; grid-template-columns: 2fr 1fr 0.8fr 0.7fr 0.8fr; gap: 8px; align-items: center; padding: 7px 0; font-size: 12px; }
.pt-mini-thead { color: var(--text-muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .03em; border-bottom: 1px solid var(--border); font-weight: 700; }
.pt-mini-row { border-bottom: 1px solid var(--border); }
.pt-mini-row .pt-tag { justify-self: start; }
.pt-view-all { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--pt-accent); font-weight: 600; }

.pt-funnel { display: flex; flex-direction: column; gap: 7px; }
.pt-funnel-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.pt-funnel-bar {
  width: var(--w); background: var(--pt-accent-soft); color: var(--text);
  border-radius: 5px; padding: 6px 10px; font-weight: 600; font-size: 11.5px;
  border-left: 3px solid var(--pt-accent);
}
.pt-funnel-won { border-left-color: #16a34a; background: rgba(22,163,74,.10); }
.pt-funnel-row > span:last-child { flex-shrink: 0; color: var(--text-muted); font-size: 11.5px; }

.pt-alerts-row { display: flex; align-items: center; gap: 20px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.pt-alerts-title { font-size: 12.5px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.pt-alerts-count { background: var(--pt-accent); color: #fff; font-size: 10.5px; font-weight: 700; border-radius: 20px; padding: 1px 7px; }
.pt-alert-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.pt-alert-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.pt-alert-warn { background: var(--risk-medium-bg); color: var(--risk-medium); }
.pt-alert-info { background: var(--accent-soft); color: var(--accent); }
.pt-alert-good { background: var(--risk-low-bg); color: var(--risk-low); }
.pt-alert-link { color: var(--pt-accent); font-weight: 600; }

/* Mobile condensed tour */
.pt-mobile-only { padding: 20px; }
.pt-mobile-head { margin-bottom: 14px; }
.pt-mobile-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pt-mobile-kpis .pt-kpi-card { padding: 12px 14px; }
.pt-mobile-confidence { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.pt-mobile-alert { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-top: 14px; padding: 12px; border-radius: 10px; background: var(--risk-medium-bg); color: var(--text); }
.pt-mobile-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .pt-desktop-only { display: none; }
  .pt-mobile-only { display: block; }
}

/* Stats */
.stats {
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.sparkline {
  width: 64px;
  height: 24px;
  margin-bottom: 4px;
}

.sparkline-line {
  stroke: var(--accent);
  fill: none;
}

.sparkline-dot {
  fill: var(--accent);
}

/* Sections */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section-alt {
  background: var(--bg-alt);
}

.section-alt .step,
.section-alt blockquote {
  background: var(--bg);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}

.section h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 0 24px;
}

.section p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 720px;
}

.symptom-list {
  margin-top: 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.symptom-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-size: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.symptom-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.step h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.step p {
  font-size: 14px;
  margin: 0;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--text);
}

.feature p {
  font-size: 14px;
  margin: 0;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

blockquote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

blockquote p {
  color: var(--text);
  font-size: 15px;
  margin: 0 0 14px;
}

blockquote footer {
  font-size: 13px;
  color: var(--text-muted);
}

/* Objections / FAQ */
.objection, .faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.objection:first-of-type, .faq-item:first-of-type {
  border-top: none;
}

.objection h3, .faq-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text);
}

.objection p, .faq-item p {
  font-size: 15px;
  margin: 0;
}

/* CTA final */
.cta-final {
  text-align: center;
}

.cta-final h2, .cta-final p {
  margin-left: auto;
  margin-right: auto;
}

.cta-final .hero-actions {
  margin-top: 32px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-security {
  color: var(--text-muted);
  font-size: 13px;
  max-width: 320px;
  margin-top: 10px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover { color: var(--text); }

.footer-legal {
  text-align: center;
  color: #5a6273;
  font-size: 12px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header nav { display: none; }
  .steps, .feature-grid, .testimonials {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy .subheadline { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero { padding: 56px 0 48px; }
  .hero::before { width: 420px; height: 420px; top: -140px; right: -140px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .section { padding: 56px 0; }
}
