:root {
  --bg: #f8f7f2;
  --surface: #ffffff;
  --surface-soft: #eeefe6;
  --ink: #14211f;
  --muted: #586865;
  --line: #d9ded4;
  --accent: #185b4d;
  --accent-strong: #0f4037;
  --accent-soft: #dcebe4;
  --gold: #b88b4a;
  --shadow: 0 24px 80px rgba(20, 33, 31, 0.12);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(248, 247, 242, 0.82);
  border-bottom: 1px solid rgba(217, 222, 212, 0.8);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: -0.03em;
  font-size: 1.06rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.65);
}

.section {
  padding: 96px 0;
}

.hero {
  padding-top: 90px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(24, 91, 77, 0.16), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(184, 139, 74, 0.2), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  max-width: 780px;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.065em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.hero-subtitle,
.platform-copy p,
.care-panel p,
.early-grid > div p {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  min-height: 50px;
  border: 1px solid transparent;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px rgba(24, 91, 77, 0.22);
}

.button-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.trust-note {
  color: var(--muted);
  margin-top: 18px;
  font-size: 0.95rem;
}

.signal-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 222, 212, 0.9);
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-card-header,
.metric-row,
.clinician-loop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.signal-card-header {
  justify-content: flex-start;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 22px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px var(--accent-soft);
}

.metric-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.metric-row strong {
  color: var(--ink);
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 190px;
  padding: 26px;
  margin: 16px 0;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--surface-soft), #fff);
  border: 1px solid var(--line);
}

.mini-chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
}

.clinician-loop {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: var(--surface);
}

.clinician-loop p {
  margin: 0;
}

.small-label {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.8rem;
}

.proof-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

.two-column,
.platform-grid,
.care-grid,
.early-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
}

.steps,
.feature-grid,
.care-list {
  display: grid;
  gap: 18px;
}

.step-card,
.feature-card,
.care-panel,
.signup-card,
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.step-card p,
.feature-card p,
.care-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.step-number {
  display: inline-block;
  color: var(--gold);
  font-weight: 850;
  margin-bottom: 18px;
}

.section-muted {
  background: var(--surface-soft);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.care-panel {
  align-self: start;
  position: sticky;
  top: 104px;
}

.care-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.care-item span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 850;
}

.quote-section {
  padding-top: 0;
}

.quote-card {
  background: var(--ink);
  color: #fff;
  padding: clamp(34px, 7vw, 76px);
}

.quote-card blockquote {
  font-size: clamp(2rem, 4.8vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
  margin-bottom: 0;
  max-width: 950px;
}

.early-access {
  background:
    radial-gradient(circle at 90% 0%, rgba(24, 91, 77, 0.16), transparent 28%),
    var(--bg);
}

.signup-card {
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.signup-card label {
  font-weight: 760;
}

.signup-card input,
.signup-card select {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.signup-card input:focus,
.signup-card select:focus {
  outline: 3px solid var(--accent-soft);
  border-color: var(--accent);
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 4px 0 0;
}

.site-footer {
  padding: 48px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  grid-template-columns: 1.1fr 1fr 0.9fr;
}

.footer-brand,
.footer-heading {
  color: #fff;
}

.footer-heading {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-footer p {
  margin-bottom: 8px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .two-column,
  .platform-grid,
  .care-grid,
  .early-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .care-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-cta {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .signal-card {
    padding: 18px;
    border-radius: 24px;
  }

  .mini-chart {
    height: 150px;
    padding: 18px;
    gap: 8px;
  }
}


.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
