/* Status Health — shared design system
   Brand tokens carried over from statushealth.com:
   navy #404B69 · lime #9CBB04 · teal hsl(178 100% 41%) · cyan hsl(192 94% 44%)
   Noto Serif (display) · Source Sans 3 (body) · radius 1rem */

:root {
  --navy: #404b69;
  --navy-deep: #1c2337;      /* darkened brand navy for premium hero surfaces */
  --navy-deeper: #141a2a;
  --navy-ink: #2d3550;
  --lime: #9cbb04;
  --lime-dark: #7a9503;
  --teal: #9cbb04;           /* hsl(178 100% 41%) */
  --cyan: #07a8d9;           /* hsl(192 94% 44%) */
  --bg: #f7f7f7;
  --card: #ffffff;
  --text: #404b69;
  --text-2: rgba(64, 75, 105, .78);
  --text-3: rgba(64, 75, 105, .6);
  --border: rgba(64, 75, 105, .12);
  --border-strong: rgba(64, 75, 105, .2);
  --on-dark: #ffffff;
  --on-dark-2: rgba(255, 255, 255, .74);
  --on-dark-3: rgba(255, 255, 255, .55);
  --border-dark: rgba(255, 255, 255, .12);
  --optimal: #9cbb04;
  --monitor: #f7c02f;
  --attention: #ff9f43;
  --radius: 1rem;
  --shadow-card: 0 2px 8px rgba(64,75,105,.08), 0 8px 32px rgba(64,75,105,.06);
  --shadow-elevated: 0 4px 12px rgba(64,75,105,.1), 0 16px 48px rgba(64,75,105,.08);
  --font-display: "Noto Serif", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.25, .1, .25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 17px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
}
h1.display { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2.display { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.on-dark { color: var(--teal); }
.eyebrow.on-light { color: var(--cyan); }
.lead { font-size: 1.15rem; color: var(--text-2); }
.lead.on-dark { color: var(--on-dark-2); }
.accent-teal { color: var(--teal); }
.accent-lime { color: var(--lime); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  font-size: 1.02rem;
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #1c2337;
  box-shadow: 0 6px 24px rgba(156,187,4, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(156,187,4, .45); }
.btn-ghost-dark {
  background: rgba(255,255,255,.06);
  color: var(--on-dark);
  border: 1px solid var(--border-dark);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.12); }
.btn-ghost-light {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border-strong);
}
.btn-ghost-light:hover { background: rgba(64,75,105,.05); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-sm { padding: 10px 22px; font-size: .92rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(20, 26, 42, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(20, 26, 42, .92); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--on-dark-2);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  width: 44px; height: 44px;
}
.mobile-menu {
  display: none;
  background: rgba(20,26,42,.98);
  border-top: 1px solid var(--border-dark);
  padding: 12px 24px 28px;
}
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  color: var(--on-dark-2);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu .btn { margin-top: 18px; width: 100%; }
.mobile-menu.open { display: block; }

/* ---------- Hero (dark premium) ---------- */
.hero-dark {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(7,168,217,.16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(156,187,4,.1), transparent 55%),
    linear-gradient(180deg, var(--navy-deeper) 0%, var(--navy-deep) 55%, var(--navy-ink) 100%);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("topography3.webp") center / cover no-repeat;
  opacity: .05;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 90px;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 14px; max-width: 34em; }
.hero-sub { color: var(--on-dark-3); font-size: .98rem; margin-bottom: 32px; max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* hero video: full-bleed montage (collection → centrifuge → analysis)
   playing softly behind the copy, like the original statushealth.com hero */
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #141a2a 0, rgba(20,26,42,.82) 34%, rgba(20,26,42,.3) 72%, rgba(20,26,42,.55) 100%),
    linear-gradient(to top, rgba(28,35,55,.92) 0, rgba(28,35,55,0) 32%);
  pointer-events: none;
}
/* full-window hero like the original statushealth.com */
.hero-home { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
.hero-home .hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 40px;
}
.hero-home .hero-copy { position: relative; z-index: 1; max-width: 580px; }
.hero-card {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%) rotate(0deg);
  z-index: 1;
  max-width: 410px;
}
@media (max-width: 1000px) {
  .hero-home { min-height: 0; }
  .hero-home .hero-inner { padding-top: 120px; }
  .hero-card { position: static; margin: 40px auto 0; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg video { display: none; }
}

/* trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 46px;
  justify-content: center;
  font-size: .92rem;
  font-weight: 600;
  color: var(--on-dark-2);
}
.trust-items span { display: inline-flex; align-items: center; gap: 9px; }
.trust-items svg { color: var(--teal); flex: none; }

/* ---------- Dashboard preview card (hero) ---------- */
.score-card {
  background: #fff;
  color: var(--text);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  padding: 26px 26px 20px;
  max-width: 430px;
  margin-left: auto;
  transform: rotate(.6deg);
}
.score-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 18px; }
.score-card-top { display: flex; gap: 22px; align-items: center; }
.score-ring { position: relative; width: 132px; height: 132px; flex: none; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring .val {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.score-ring .val b { font-size: 2.1rem; line-height: 1; }
.score-ring .val i { font-style: normal; font-size: .72rem; color: var(--text-3); margin-top: 3px; }
.compound-rows { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.compound-rows .row { display: grid; grid-template-columns: 52px 1fr 26px; gap: 10px; align-items: center; font-size: .8rem; font-weight: 600; }
.compound-rows .bar { height: 6px; border-radius: 3px; background: rgba(64,75,105,.1); overflow: hidden; }
.compound-rows .bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--cyan), var(--teal)); }
.compound-rows .n { color: var(--text-3); font-size: .74rem; text-align: right; }
.score-card-note {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .85rem; font-weight: 700;
}
.score-card-note a { color: var(--lime-dark); }
.badge-moderate {
  background: rgba(247,192,47,.15);
  color: #a5770a;
  border-radius: 999px;
  padding: 3px 12px;
  font-size: .76rem;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-dark { background: linear-gradient(180deg, var(--navy-deep), var(--navy-ink)); color: var(--on-dark); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }

/* card grids */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { font-size: .95rem; color: var(--text-2); }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(7,168,217,.1);
  color: var(--cyan);
}
.card .icon.lime { background: rgba(156,187,4,.14); color: var(--lime-dark); }
.card .icon.teal { background: rgba(156,187,4,.12); color: #7a9503; }
.card-link { font-weight: 700; font-size: .92rem; color: var(--cyan); display: inline-flex; gap: 6px; align-items: center; margin-top: 14px; }

/* pathway (photo) cards */
.pathway-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--navy-ink);
  color: #fff;
}
.pathway-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .5s var(--ease); }
.pathway-card:hover img { transform: scale(1.05); }
.pathway-card .label {
  position: absolute; inset: auto 0 0 0;
  padding: 44px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(20,26,42,.9));
  font-weight: 700;
}

/* chips */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .92rem; font-weight: 700;
  border: 1px solid var(--border);
  background: #fff;
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; }

/* steps */
.step-row { counter-reset: step; }
.step {
  position: relative;
  padding: 26px 22px;
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem;
  margin-bottom: 16px;
  background: rgba(156,187,4,.06);
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--on-dark-2); }
.section-light .step p { color: var(--text-2); }

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 1.02rem; font-weight: 700; color: var(--text);
}
.faq-q .chev { transition: transform .3s var(--ease); flex: none; color: var(--cyan); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-2); font-size: .97rem; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(156,187,4,.14), transparent 60%),
    linear-gradient(120deg, var(--navy-deeper), var(--navy-ink));
  color: #fff;
  border-radius: 24px;
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--on-dark-2); margin-bottom: 26px; max-width: 30em; }
.cta-band img { border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deeper);
  color: var(--on-dark-2);
  padding: 64px 0 36px;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-grid img { height: 34px; margin-bottom: 16px; }
.footer-grid h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-grid a { display: block; padding: 5px 0; color: var(--on-dark-2); }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  color: var(--on-dark-3);
  font-size: .85rem;
}
.footer-disclaimer { font-size: .8rem; color: var(--on-dark-3); max-width: 62em; margin-top: 18px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(20,26,42,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-dark);
}
.sticky-cta .btn { width: 100%; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Dashboard demo styles ---------- */
.dash-wrap { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 26px; }
.dash-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.dash-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: var(--shadow-card); }
.dash-card h4 { font-size: .95rem; margin-bottom: 14px; }
.dash-kpi { font-size: 2rem; font-weight: 800; line-height: 1.1; }
.dash-note { font-size: .82rem; color: var(--text-3); }
.bar-row { display: grid; grid-template-columns: 58px 1fr 40px; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; margin-bottom: 10px; }
.bar-row .track { height: 8px; background: rgba(64,75,105,.08); border-radius: 4px; overflow: hidden; }
.bar-row .track i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, #7f9be0, #4f6ac9); }
.bar-row .pct { text-align: right; color: var(--text-3); }
.delta-up { color: var(--attention); font-weight: 800; }
.delta-down { color: #1e9e63; font-weight: 800; }
.plan-step { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.plan-step:last-child { border-bottom: none; }
.plan-step .pnum { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--navy); color: #fff; font-size: .78rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.plan-step h5 { font-size: .95rem; }
.plan-step p { font-size: .85rem; color: var(--text-2); }

/* ---------- Product page ---------- */
.price-line { display: flex; align-items: baseline; gap: 14px; margin: 6px 0 26px; }
.price-line .price { font-size: 2.6rem; font-weight: 800; color: #fff; }
.price-line .terms { color: var(--on-dark-3); font-size: .95rem; }
.kit-shot { border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.included-list { display: grid; gap: 14px; }
.included-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.included-list svg { color: var(--teal); flex: none; margin-top: 4px; }
.logi-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.logi-strip .card { padding: 22px; }
.logi-strip h3 { font-size: .98rem; }
.logi-strip p { font-size: .88rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; gap: 44px; }
  .score-card { margin: 0 auto; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 44px 32px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-ghost-dark { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .logi-strip { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .sticky-cta.enabled { display: block; }
  body.has-sticky-cta { padding-bottom: 84px; }
}
@media (max-width: 520px) {
  .grid-4, .grid-5, .logi-strip { grid-template-columns: 1fr; }
  .pathway-card { aspect-ratio: 16 / 9; }
}
