:root {
  --ink: #10292a;
  --ink-soft: #456667;
  --teal-950: #004e4a;
  --teal-900: #00675f;
  --teal-800: #087d72;
  --teal-700: #119c8d;
  --teal-500: #18b8a6;
  --mint: #e8f8f5;
  --mint-2: #f3fbf9;
  --paper: #fffefb;
  --line: #dce9e6;
  --gold: #ecae35;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 41, 42, .08);
  background: rgba(255, 254, 251, .9);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__icon { width: 50px; height: 50px; border-radius: 14px; object-fit: cover; box-shadow: 0 10px 28px rgba(0, 78, 74, .16); }
.brand__text { font-family: Georgia, "Times New Roman", serif; font-size: 25px; letter-spacing: -.8px; white-space: nowrap; }
.brand__text strong { color: var(--teal-800); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 750; letter-spacing: -1.2px; }
.brand--compact .brand__icon { width: 42px; height: 42px; border-radius: 12px; }
.brand--compact .brand__text { font-size: 22px; }
nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
nav a, footer a { color: var(--ink-soft); text-decoration: none; font-weight: 650; font-size: 14px; }
nav a:hover, footer a:hover { color: var(--teal-800); }

.button { min-height: 52px; padding: 0 23px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: linear-gradient(135deg, var(--teal-900), var(--teal-700)); box-shadow: 0 14px 34px rgba(0, 103, 95, .2); }
.button--outline { border: 1px solid var(--line); background: white; }
.button--small { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.button--text { color: var(--teal-900); padding-inline: 8px; }

.hero { min-height: 700px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding-block: 78px 88px; position: relative; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; left: -390px; top: 40px; background: #eaf9f6; filter: blur(2px); z-index: -1; }
.eyebrow, .kicker { color: var(--teal-800); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 5px var(--mint); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; max-width: 710px; font-size: clamp(48px, 5.6vw, 74px); line-height: .99; letter-spacing: -.055em; font-weight: 780; }
h1 em { color: var(--teal-800); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero__lede { max-width: 650px; color: var(--ink-soft); font-size: 19px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin: 32px 0 24px; }
.medical-note { max-width: 610px; color: #6c8282; font-size: 13px; line-height: 1.6; padding-left: 15px; border-left: 2px solid var(--gold); }
.hero__visual { min-height: 520px; display: grid; place-items: center; position: relative; }
.hero__visual::before, .hero__visual::after { content: ""; position: absolute; border-radius: 50%; }
.hero__visual::before { width: 420px; height: 420px; background: linear-gradient(145deg, #c9f5ed, #effbf8); }
.hero__visual::after { width: 350px; height: 350px; border: 1px dashed rgba(0, 103, 95, .28); }
.brand-card { width: 340px; min-height: 445px; z-index: 1; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 45px 34px 34px; border: 1px solid rgba(255,255,255,.8); border-radius: 36px; background: rgba(255,255,255,.92); box-shadow: 0 35px 80px rgba(0, 78, 74, .18); }
.brand-card__glow { position: absolute; inset: -80px auto auto -80px; width: 220px; height: 220px; border-radius: 50%; background: #d8faf3; filter: blur(35px); }
.brand-card__icon { width: 138px; height: 138px; border-radius: 32px; object-fit: cover; box-shadow: 0 22px 50px rgba(0, 78, 74, .22); z-index: 1; }
.brand-card__wordmark { width: 255px; height: 86px; object-fit: contain; margin-top: 15px; mix-blend-mode: multiply; }
.brand-card > p { color: var(--teal-900); font-size: 17px; font-weight: 800; margin: -7px 0 24px; }
.brand-card__status { padding: 10px 13px; border-radius: 999px; background: var(--mint-2); color: var(--ink-soft); font-size: 12px; font-weight: 650; display: flex; align-items: center; gap: 8px; }
.brand-card__status span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); }

.trust-strip { background: var(--ink); color: white; }
.trust-grid { min-height: 154px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-grid > div { position: relative; padding: 15px 38px 15px 70px; }
.trust-grid > div + div { border-left: 1px solid rgba(255,255,255,.13); }
.trust-grid span { position: absolute; left: 20px; top: 16px; color: #69d5c8; font-family: Georgia, serif; font-size: 16px; }
.trust-grid strong { display: block; font-size: 17px; margin-bottom: 3px; }
.trust-grid p { color: #a9c0bf; margin: 0; font-size: 14px; }

.section { padding-block: 110px; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.kicker { margin-bottom: 13px; }
.section-heading h2, .privacy-intro h2, .policy__title h2, .support h2 { font-size: clamp(36px, 4.2vw, 54px); line-height: 1.06; letter-spacing: -.045em; margin-bottom: 18px; }
.section-heading > p:last-child { color: var(--ink-soft); font-size: 18px; max-width: 650px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { min-height: 330px; padding: 32px; position: relative; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 16px 45px rgba(16,41,42,.055); }
.feature-card--teal { color: white; background: linear-gradient(145deg, var(--teal-900), var(--teal-700)); border-color: transparent; }
.feature-card__number { position: absolute; top: 28px; right: 29px; color: #9bb0af; font-family: Georgia, serif; font-size: 14px; }
.feature-card--teal .feature-card__number { color: #9be2da; }
.feature-card__icon { width: 58px; height: 58px; margin: 46px 0 30px; border-radius: 18px; display: grid; place-items: center; background: var(--mint); color: var(--teal-900); font-size: 27px; font-weight: 750; }
.feature-card--teal .feature-card__icon { background: rgba(255,255,255,.13); color: white; }
.feature-card h3 { font-size: 23px; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 11px; }
.feature-card p { color: var(--ink-soft); margin: 0; }
.feature-card--teal p { color: #cdeae6; }

.privacy-intro { padding-block: 100px; background: linear-gradient(135deg, #075f59, #003f3c); color: white; overflow: hidden; position: relative; }
.privacy-intro::after { content: ""; position: absolute; width: 560px; height: 560px; right: -260px; top: -290px; border-radius: 50%; border: 90px solid rgba(71, 223, 205, .07); }
.privacy-intro__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; position: relative; z-index: 1; }
.kicker--light { color: #8ce6dc; }
.privacy-intro__lede { color: #c8e0dd; font-size: 18px; }
.privacy-points { display: grid; gap: 14px; }
.privacy-points > div { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; padding: 20px 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.065); }
.privacy-points svg { width: 27px; height: 27px; padding: 5px; border-radius: 50%; background: #55d1c2; stroke: #004943; stroke-width: 2.5; fill: none; }
.privacy-points strong { color: white; }
.privacy-points span { color: #cfe4e1; }

.policy { display: grid; grid-template-columns: 330px 1fr; gap: 92px; align-items: start; }
.policy__title { position: sticky; top: 120px; }
.policy__title h2 { font-size: 40px; }
.policy__title > p:last-child { color: var(--ink-soft); font-size: 14px; }
.policy__body article { padding: 0 0 29px; margin-bottom: 29px; border-bottom: 1px solid var(--line); }
.policy__body article:last-child { margin-bottom: 0; }
.policy__body h3 { font-size: 19px; margin-bottom: 8px; }
.policy__body p { margin: 0; color: var(--ink-soft); }
.policy__body a { color: var(--teal-800); font-weight: 750; }

.support { padding-block: 88px; background: var(--mint-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.support__inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.support h2 { margin-bottom: 12px; }
.support p { color: var(--ink-soft); margin-bottom: 0; }
.support-card { min-width: 430px; display: grid; grid-template-columns: 58px 1fr auto; gap: 16px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: white; text-decoration: none; box-shadow: 0 15px 40px rgba(16,41,42,.06); transition: transform .2s ease; }
.support-card:hover { transform: translateY(-3px); }
.support-card__icon { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; background: var(--mint); color: var(--teal-900); font-size: 24px; font-weight: 800; }
.support-card small { display: block; color: var(--ink-soft); font-size: 12px; }
.support-card strong { font-size: 17px; }

footer { padding-block: 34px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-inner p { color: #718888; font-size: 13px; margin: 0; }
.footer-inner > div { justify-self: end; display: flex; gap: 24px; }

@media (max-width: 900px) {
  nav { display: none; }
  .header-inner { gap: 12px; }
  .header-inner > .button { margin-left: auto; }
  .hero { grid-template-columns: 1fr; gap: 10px; padding-top: 64px; }
  .hero__content { text-align: center; }
  .hero__lede, .medical-note { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .medical-note { text-align: left; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
  .feature-card__icon { margin-top: 22px; }
  .privacy-intro__grid, .policy { grid-template-columns: 1fr; gap: 45px; }
  .policy__title { position: static; }
  .support__inner { grid-template-columns: 1fr; gap: 32px; }
  .support-card { min-width: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-inner > div { justify-self: center; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 70px; }
  .brand--compact .brand__text { font-size: 19px; }
  .header-inner > .button { display: none; }
  h1 { font-size: 46px; }
  .hero { min-height: auto; padding-block: 62px 65px; }
  .hero__visual { min-height: 470px; }
  .hero__visual::before { width: 350px; height: 350px; }
  .hero__visual::after { width: 300px; height: 300px; }
  .brand-card { width: min(330px, calc(100vw - 44px)); }
  .trust-grid { grid-template-columns: 1fr; padding-block: 18px; }
  .trust-grid > div { padding-block: 18px; }
  .trust-grid > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .section { padding-block: 78px; }
  .privacy-intro { padding-block: 76px; }
  .support { padding-block: 72px; }
  .support-card { grid-template-columns: 50px 1fr auto; padding: 18px; }
  .support-card__icon { width: 50px; height: 50px; }
  .support-card strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
