:root {
  --bg: #090d16;
  --bg-alt: #0c1220;
  --surface: #111a2c;
  --surface-2: #141f35;
  --border: #22314d;
  --text: #e7ecf7;
  --text-muted: #92a0bf;
  --text-dim: #5f6f92;
  --teal: #2dd4bf;
  --teal-soft: rgba(45, 212, 191, 0.14);
  --blue: #7c9cff;
  --good: #34d399;
  --warn: #f59e0b;
  --bad: #f87171;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --max: 1160px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  position: relative;
  margin: 0;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
svg { display: block; }

/* Background decoration */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
  z-index: 0;
  pointer-events: none;
}
.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 100vw);
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(45,212,191,0.16), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

/* Vibrant ambient blobs */
.bg-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: visible; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.30;
  will-change: transform;
}
.blob-a { width: 520px; height: 520px; top: 620px; left: -180px; background: radial-gradient(circle, #8B5CF6, transparent 70%); animation: blobFloat 22s ease-in-out infinite; }
.blob-b { width: 460px; height: 460px; top: 1500px; right: -160px; background: radial-gradient(circle, #F472B6, transparent 70%); animation: blobFloat 26s ease-in-out infinite reverse; }
.blob-c { width: 500px; height: 500px; top: 2600px; left: 10%; background: radial-gradient(circle, #38BDF8, transparent 70%); animation: blobFloat 24s ease-in-out infinite; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #05130f;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost { color: var(--text-muted); padding: 10px 12px; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 13px 24px; font-size: 15px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(9, 13, 22, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark { display: flex; }
.brand-accent { color: var(--teal); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  justify-content: center;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 6px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav-mobile a { padding: 10px 4px; color: var(--text-muted); font-size: 15px; }
.nav-mobile.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 88px 24px 60px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 22px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(45,212,191,0.6);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(45,212,191,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(45,212,191,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
}
.hero h1 {
  font-size: 48px;
  line-height: 1.08;
  margin-bottom: 20px;
}
.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-trust .dot { opacity: 0.5; }

/* Hero visual / score card */
.hero-visual { position: relative; display: flex; justify-content: center; }
.score-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}
.score-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.score-card-label { font-size: 12.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.score-card-tenant { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-top: 4px; }
.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-good { background: rgba(52,211,153,0.15); color: var(--good); border: 1px solid rgba(52,211,153,0.35); }
.badge-risk { background: rgba(248,113,113,0.14); color: var(--bad); border: 1px solid rgba(248,113,113,0.35); }

.score-ring-wrap { position: relative; width: 140px; height: 140px; margin: 8px auto 18px; }
.score-ring { width: 140px; height: 140px; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 10; }
.ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke: var(--teal);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 364;
  stroke-dashoffset: 80;
}
.score-ring-num {
  position: absolute; inset: 0;
  display: flex; align-items: baseline; justify-content: center; gap: 3px;
}
.score-ring-num .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; }
.score-ring-num .max { color: var(--text-dim); font-size: 15px; }

.ekg { width: 100%; height: 40px; margin-bottom: 16px; }
.ekg-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(45,212,191,0.5));
}

.score-mini-list { display: flex; flex-direction: column; gap: 10px; }
.score-mini-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.score-mini-list li:first-child { border-top: none; padding-top: 0; }
.score-mini-list b { margin-left: auto; color: var(--text); font-weight: 700; }
.dotcolor { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dotcolor.good { background: var(--good); }
.dotcolor.warn { background: var(--warn); }
.dotcolor.bad { background: var(--bad); }

.mini-toast {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.5);
  max-width: 220px;
}
.toast-1 { top: -6px; right: -20px; }
.toast-2 { bottom: -18px; left: -34px; }

.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty2 { animation: floaty 5s ease-in-out infinite; animation-delay: 0.4s; }
.floaty3 { animation: floaty 5.5s ease-in-out infinite; animation-delay: 0.9s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.trust-strip-inner { display: flex; align-items: center; gap: 28px; padding: 22px 24px; flex-wrap: wrap; }
.trust-strip-inner p { font-size: 13px; color: var(--text-dim); white-space: nowrap; }
.trust-logos { display: flex; gap: 26px; flex-wrap: wrap; }
.trust-logos span { font-size: 13.5px; font-weight: 600; color: var(--text-muted); }

/* ---------- Wellbeing illustration ---------- */
.wellbeing { padding: 90px 0 40px; position: relative; }
.wellbeing-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.wellbeing-copy h2 { font-size: 32px; margin: 12px 0 16px; }
.wellbeing-copy p { color: var(--text-muted); font-size: 16px; }
.wellbeing-visual { display: flex; justify-content: center; }
.wellbeing-svg { width: 100%; max-width: 560px; }
.orbit-slow { transform-origin: 300px 230px; animation: spin 60s linear infinite; }
.orbit-rev { transform-origin: 300px 230px; animation: spin 40s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.node-group { animation: nodeFloat 5s ease-in-out infinite; transform-origin: center; }
.node-group:nth-child(odd) { animation-delay: 0.6s; }
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.pulse-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawPulse 3.2s ease-in-out infinite;
}
@keyframes drawPulse {
  0% { stroke-dashoffset: 220; }
  55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -220; }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-head h2 { font-size: 34px; margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 16px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 14.5px; }

/* Vitals grid */
.vitals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vital-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.vital-card:hover { border-color: rgba(45,212,191,0.4); transform: translateY(-3px); }
.vital-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal);
  margin-bottom: 16px;
}
.vital-icon svg { width: 22px; height: 22px; }

/* Vibrant per-card icon colors */
.vital-icon.c-violet  { background: linear-gradient(135deg, rgba(139,92,246,0.22), rgba(139,92,246,0.08)); color: #A78BFA; }
.vital-icon.c-orange  { background: linear-gradient(135deg, rgba(251,146,60,0.22), rgba(251,146,60,0.08)); color: #FB923C; }
.vital-icon.c-sky     { background: linear-gradient(135deg, rgba(56,189,248,0.22), rgba(56,189,248,0.08)); color: #38BDF8; }
.vital-icon.c-emerald { background: linear-gradient(135deg, rgba(52,211,153,0.22), rgba(52,211,153,0.08)); color: #34D399; }
.vital-icon.c-pink    { background: linear-gradient(135deg, rgba(244,114,182,0.22), rgba(244,114,182,0.08)); color: #F472B6; }
.vital-icon.c-amber   { background: linear-gradient(135deg, rgba(251,191,36,0.22), rgba(251,191,36,0.08)); color: #FBBF24; }
.vital-icon.c-teal    { background: linear-gradient(135deg, rgba(45,212,191,0.22), rgba(45,212,191,0.08)); color: #2DD4BF; }
.vital-icon.c-indigo  { background: linear-gradient(135deg, rgba(129,140,248,0.22), rgba(129,140,248,0.08)); color: #818CF8; }
.vital-icon.c-cyan    { background: linear-gradient(135deg, rgba(34,211,238,0.22), rgba(34,211,238,0.08)); color: #22D3EE; }
.vital-icon.c-rose    { background: linear-gradient(135deg, rgba(251,113,133,0.22), rgba(251,113,133,0.08)); color: #FB7185; }
.vital-icon.c-purple  { background: linear-gradient(135deg, rgba(192,132,252,0.22), rgba(192,132,252,0.08)); color: #C084FC; }
.vital-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.vital-card p { color: var(--text-muted); font-size: 14px; }
.vital-card-feature {
  background: linear-gradient(160deg, rgba(45,212,191,0.10), var(--surface) 55%);
  border-color: rgba(45,212,191,0.35);
}
.vital-link { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--teal); }

/* Report showcase */
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.report-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.55);
}
.report-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.report-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.report-card-sub { font-size: 12.5px; color: var(--text-dim); margin-top: 4px; }
.report-bars { display: flex; flex-direction: column; gap: 13px; }
.report-bar { display: grid; grid-template-columns: 140px 1fr 30px; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.report-bar .bar { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.report-bar .bar i { display: block; height: 100%; border-radius: 999px; }
.report-bar .bar i.good { background: var(--good); }
.report-bar .bar i.warn { background: var(--warn); }
.report-bar .bar i.bad { background: var(--bad); }
.report-bar b { color: var(--text); text-align: right; font-size: 13px; }
.report-card-footer {
  display: flex; align-items: center; gap: 9px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-dim);
}

.report-copy h2 { font-size: 32px; margin-bottom: 14px; }
.report-copy > p { color: var(--text-muted); font-size: 16px; margin-bottom: 22px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text-muted);
}
.check-list li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 5px;
  background: var(--teal-soft);
  border: 1px solid rgba(45,212,191,0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l3 3 6-6.4' stroke='%232dd4bf' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Copilot governance showcase */
.copilot-kpis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.copilot-kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.copilot-kpi-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.copilot-kpi-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.copilot-kpi-num small {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
}
.copilot-kpi-num.kpi-good { color: var(--good); }
.copilot-kpi-num.kpi-bad { color: var(--bad); }

.exposure-list { display: flex; flex-direction: column; }
.exposure-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  min-width: 0;
}
.exposure-app {
  flex: none;
  font-weight: 700;
  color: var(--text-muted);
  width: 74px;
}
.exposure-file {
  flex: 1;
  min-width: 0;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.label-chip {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.chip-confidential { background: rgba(251,191,36,0.14); color: #FBBF24; border: 1px solid rgba(251,191,36,0.35); }
.chip-sensitive { background: rgba(248,113,113,0.14); color: var(--bad); border: 1px solid rgba(248,113,113,0.35); }
.chip-internal { background: rgba(124,156,255,0.14); color: var(--blue); border: 1px solid rgba(124,156,255,0.35); }
.shadow-flag {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--bad);
  white-space: nowrap;
}

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.why-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-dim); margin-bottom: 14px; }
.why-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.why-card p { font-size: 13.8px; color: var(--text-muted); }

/* Pricing */
.price-users { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.price-amount { font-family: var(--font-display); font-size: 34px; font-weight: 700; margin: 6px 0 2px; }
.price-amount span { font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--text-muted); }
.price-note { font-size: 12.5px; color: var(--text-dim); margin-bottom: 16px; }
.price-features { display: flex; flex-direction: column; gap: 9px; margin: 0 0 22px; }
.price-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.8px; color: var(--text-muted); }
.price-features li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 5px;
  background: var(--teal-soft);
  border: 1px solid rgba(45,212,191,0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l3 3 6-6.4' stroke='%232dd4bf' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.price-cta { width: 100%; justify-content: center; margin-top: auto; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #05130f;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* CTA banner */
.cta-banner { padding: 40px 0 100px; }
.cta-banner-inner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 32px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(45,212,191,0.14), rgba(124,156,255,0.10));
  border: 1px solid rgba(45,212,191,0.28);
}
.cta-banner-inner h2 { font-size: 32px; margin-bottom: 12px; }
.cta-banner-inner > p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }
.ekg-bg { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; overflow: hidden; }
.ekg-bg svg { width: 100%; height: 100%; }
.ekg-bg polyline { fill: none; stroke: var(--teal); stroke-width: 1.4; }
.blob-cta-a { width: 320px; height: 320px; top: -140px; left: -80px; background: radial-gradient(circle, #8B5CF6, transparent 70%); opacity: 0.35; }
.blob-cta-b { width: 300px; height: 300px; bottom: -160px; right: -60px; background: radial-gradient(circle, #F472B6, transparent 70%); opacity: 0.3; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding-top: 64px; background: var(--bg-alt); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-dim); font-size: 13.5px; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text-muted); }
.footer-col a:hover { color: var(--text); }
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
}
.footer-link-btn:hover { color: var(--text); }

/* ---------- Contact modal ---------- */
body.modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 8, 14, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.24s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--text); border-color: var(--teal); }
.modal-head { margin-bottom: 22px; padding-right: 20px; }
.modal-head .pill { margin-bottom: 14px; }
.modal-head h3 { font-size: 22px; margin-bottom: 10px; }
.modal-head p { color: var(--text-muted); font-size: 14px; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.modal-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-muted); min-width: 0; }
.modal-form input,
.modal-form textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  resize: vertical;
  transition: border-color 0.15s ease;
}
.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.modal-submit { justify-content: center; margin-top: 4px; }
.modal-note { font-size: 12.5px; color: var(--text-dim); text-align: center; margin-top: -2px; }

@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .modal { padding: 26px 22px; }
}
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 24px; }
.footer-bottom p { font-size: 12.5px; color: var(--text-dim); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-visual { margin-bottom: 12px; }
  .hero h1 { font-size: 38px; }
  .steps, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .vitals-grid { grid-template-columns: repeat(2, 1fr); }
  .report-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .wellbeing-inner { grid-template-columns: 1fr; text-align: center; }
  .wellbeing-copy p { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero h1 { font-size: 32px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .steps, .vitals-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 27px; }
  .toast-1, .toast-2 { display: none; }
  .exposure-row { flex-wrap: wrap; row-gap: 6px; }
  .exposure-app { width: auto; }
  .exposure-file { flex-basis: 100%; order: 3; }
  .cta-banner-inner { padding: 48px 20px; }
  .cta-banner-inner h2 { font-size: 26px; }
}
