:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --surface: #ffffff;
  --muted: #f1f5f9;
  --text: #0f172a;
  --text-soft: #475569;
  --white: #ffffff;
  --white-soft: rgba(255,255,255,.78);
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(15,23,42,.1);
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --emerald: #34d399;
  --shadow: 0 24px 80px rgba(2, 6, 23, .2);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 860px; }
.center { text-align: center; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--cyan); color: var(--bg); font-weight: 900; }
.brand strong { font-size: 15px; }
.site-nav { display: flex; gap: 22px; color: var(--white-soft); font-size: 14px; font-weight: 700; }
.section { padding: 92px 0; background: var(--surface); }
.section-dark { position: relative; overflow: hidden; background: radial-gradient(circle at top right, rgba(34,211,238,.18), transparent 34%), radial-gradient(circle at top left, rgba(168,85,247,.18), transparent 28%), linear-gradient(180deg, #0f172a, #020617); color: var(--white); }
.section-muted { background: var(--muted); }
.hero { padding: 98px 0 88px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: #a5f3fc; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.eyebrow.dark { color: var(--cyan-strong); }
h1, h2, h3 { margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: .96; font-weight: 900; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.05; font-weight: 900; }
h3 { font-size: 21px; line-height: 1.2; }
.lead { margin: 24px 0 0; color: var(--white-soft); font-size: 18px; max-width: 680px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.center-row { justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 24px; border-radius: 18px; font-weight: 900; transition: transform .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cyan); color: var(--bg); box-shadow: 0 18px 48px rgba(34,211,238,.2); }
.btn-secondary { border: 1px solid var(--line); color: var(--white); background: rgba(255,255,255,.06); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.stat-card { border: 1px solid var(--line); border-radius: 22px; padding: 18px; background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.stat-card strong { display: block; font-size: 32px; color: var(--cyan); }
.stat-card span { display: block; margin-top: 6px; color: var(--white-soft); font-size: 13px; line-height: 1.45; }
.hero-panel { position: relative; }
.hero-panel:before { content: ""; position: absolute; inset: -20px; background: rgba(34,211,238,.12); filter: blur(38px); border-radius: 40px; }
.panel-inner { position: relative; border: 1px solid var(--line); border-radius: 34px; padding: 26px; background: rgba(15,23,42,.82); box-shadow: var(--shadow); }
.panel-heading { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.small-label { margin: 0 0 8px; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.pill { white-space: nowrap; border-radius: 999px; padding: 8px 12px; background: rgba(52,211,153,.16); color: #a7f3d0; font-size: 11px; font-weight: 900; }
.pain-list { margin-top: 28px; display: grid; gap: 14px; }
.pain-list div { display: flex; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; color: var(--white-soft); background: rgba(255,255,255,.04); line-height: 1.55; }
.pain-list span { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); margin-top: 7px; flex: 0 0 auto; }
.highlight-box { margin-top: 22px; padding: 20px; border: 1px solid rgba(34,211,238,.28); border-radius: 22px; background: rgba(34,211,238,.1); }
.highlight-box p { margin-bottom: 0; color: var(--white-soft); }
.section-intro p:not(.eyebrow) { color: var(--text-soft); font-size: 18px; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading p:not(.eyebrow) { color: var(--text-soft); font-size: 17px; }
.card-grid { display: grid; gap: 20px; }
.six-grid { grid-template-columns: repeat(3, 1fr); }
.three-grid { grid-template-columns: repeat(3, 1fr); }
.info-card, .surface-card { border: 1px solid var(--line-dark); border-radius: var(--radius); background: #fff; padding: 28px; box-shadow: 0 18px 50px rgba(15,23,42,.06); }
.info-card p, .surface-card p { color: var(--text-soft); margin-bottom: 0; }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.steps-section p { color: var(--white-soft); }
.step-list { display: grid; gap: 16px; }
.step-card { display: flex; gap: 18px; padding: 22px; border-radius: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.06); }
.step-number { width: 54px; height: 54px; border-radius: 18px; background: var(--cyan); color: var(--bg); display: grid; place-items: center; font-weight: 900; flex: 0 0 auto; }
.step-card p { margin: 8px 0 0; }
.maturity-section { background: #e2e8f0; }
.maturity-list { margin-top: 26px; display: grid; gap: 10px; }
.maturity-list div { display: flex; align-items: center; gap: 12px; padding: 13px; border-radius: 16px; background: var(--muted); font-weight: 800; }
.maturity-list span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(6,182,212,.14); color: var(--cyan-strong); }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding: 16px 16px 16px 48px; border-radius: 18px; background: var(--muted); color: var(--text-soft); line-height: 1.55; }
.check-list li:before { content: ""; position: absolute; left: 18px; top: 20px; width: 16px; height: 16px; border-radius: 50%; background: rgba(52,211,153,.28); box-shadow: inset 0 0 0 1px rgba(16,185,129,.4); }
.cta-section { padding: 104px 0; }
.cta-section p:not(.eyebrow) { color: var(--white-soft); font-size: 18px; }
.fine-print { font-size: 13px !important; color: rgba(255,255,255,.58) !important; }
.site-footer { background: #020617; color: rgba(255,255,255,.64); border-top: 1px solid var(--line); }
.footer-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 13px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@media (max-width: 900px) {
  .hero-grid, .two-column, .six-grid, .three-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .panel-heading { flex-direction: column; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 72px; }
  .section { padding: 70px 0; }
  .btn { width: 100%; }
  .brand strong { font-size: 13px; }
}
