:root {
  --teal: #1A5C5E;
  --teal-deep: #10403F;
  --teal-ink: #173231;
  --paper: #F5F7F6;
  --surface: #FFFFFF;
  --line: #DCE4E2;
  --muted: #5B6F6D;
  --mist: #E6EFEE;
  --marker: #F6E3A1;
  --alert: #9A5B12;
  --wa: #25D366;
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--teal-ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid #E0A526; outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 24px; }
.sr, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { position: fixed; top: 12px; left: 12px; z-index: 99; background: var(--surface); padding: 8px 14px; border-radius: 8px; }

/* Buttons & links */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px;
  border-radius: 999px; border: 1.5px solid var(--teal);
  background: var(--teal); color: #fff;
  font: 600 16px/1 var(--font); text-decoration: none; cursor: pointer;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--teal-deep); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--teal); }
.btn--ghost:hover { background: var(--mist); }
.btn--small { min-height: 40px; padding: 0 18px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--light { background: #fff; color: var(--teal); border-color: #fff; }
.btn--light:hover { background: var(--mist); }
.link { color: var(--teal); font-weight: 600; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
.link--light { color: #fff; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgb(245 247 246 / .88); backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 700 19px/1 var(--display); letter-spacing: -.02em; text-decoration: none; color: var(--teal-ink); }
.brand__mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--teal); color: #fff; font-size: 16px; }
.brand--small { font-size: 16px; }
.brand--small .brand__mark { width: 24px; height: 24px; border-radius: 7px; font-size: 13px; }
.nav nav { margin-left: auto; }
.nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 15px; }
.nav__links a { text-decoration: none; color: var(--muted); }
.nav__links a:hover { color: var(--teal-ink); }
@media (max-width: 820px) { .nav nav { display: none; } .nav .btn { margin-left: auto; } }

/* Hero */
.hero { padding-block: 56px 88px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; align-items: center; }
.hero__title {
  font: 800 clamp(44px, 6.4vw, 80px)/0.98 var(--display);
  letter-spacing: -.045em; color: var(--teal); max-width: 11ch;
  text-wrap: balance;
}
.hero__en { margin-top: 18px; font-size: 19px; color: var(--muted); }
.hero__sub { margin-top: 24px; font-size: 20px; line-height: 1.5; max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; margin: 36px 0 0; padding: 0; font-size: 14px; color: var(--muted); }
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 16px; height: 16px; fill: var(--teal); flex: none; }

/* Phone story */
.story { position: relative; display: grid; justify-items: center; gap: 18px; }
.phone {
  position: relative; width: 300px; max-width: 100%; aspect-ratio: 300 / 610;
  border-radius: 46px; background: #0E2423; padding: 11px;
  box-shadow: 0 40px 80px -30px rgb(16 64 63 / .45), inset 0 0 0 2px #2b4948;
}
.phone__notch { position: absolute; top: 20px; left: 50%; translate: -50% 0; width: 92px; height: 26px; border-radius: 20px; background: #0E2423; z-index: 3; }
.phone__screen { position: relative; height: 100%; border-radius: 36px; overflow: hidden; background: var(--paper); }
.panel { position: absolute; inset: 0; padding: 58px 16px 16px; opacity: 0; transform: translateX(24px); transition: opacity .5s ease, transform .5s ease; }
.panel.is-on { opacity: 1; transform: none; }
.panel.is-past { opacity: 0; transform: translateX(-24px); }
.panel__app { font: 700 22px/1.1 var(--display); letter-spacing: -.02em; margin-bottom: 14px; }
.panel__day { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.panel--cal { background: #fff; }
.cal-slot { display: flex; align-items: center; gap: 8px; height: 52px; font-size: 11px; color: #8a9896; }
.cal-slot__line { flex: 1; height: 1px; background: var(--line); }
.cal-event { display: grid; gap: 2px; margin-left: 42px; padding: 10px 12px; border-radius: 8px; background: #4285F4; color: #fff; min-height: 64px; }
.cal-event__text { font-weight: 600; font-size: 15px; }
.cal-event__time { font-size: 12px; opacity: .85; }
.caret { display: inline-block; width: 2px; height: 1em; background: #fff; margin-left: 1px; vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.detect { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; opacity: 0; transform: translateY(6px); transition: .4s ease; }
.detect.is-on { opacity: 1; transform: none; }
.chip { font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 999px; background: var(--mist); color: var(--teal); }

.appt { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: 0 1px 0 var(--line), 0 10px 24px -18px rgb(16 64 63 / .5); }
.appt__head { display: flex; justify-content: space-between; align-items: start; }
.appt__name { font-weight: 700; font-size: 17px; }
.appt__meta { font-size: 13px; color: var(--muted); }
.lang { font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 6px; border: 1px solid var(--line); color: var(--muted); }
.appt__flags { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 6px; }
.flag { font-size: 13px; padding: 8px 10px; border-radius: 10px; background: var(--paper); color: var(--muted); }
.flag--on { background: var(--mist); color: var(--teal); font-weight: 600; }
.appt__calc { font-size: 13px; padding: 10px; border-radius: 10px; background: var(--marker); color: #5a4200; }

.timeline { list-style: none; display: flex; padding: 0; margin: 14px 0 0; font-size: 11px; color: var(--muted); }
.timeline li { flex: 1; position: relative; padding-top: 16px; }
.timeline li::before { content: ""; position: absolute; top: 0; left: 0; width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--line); background: #fff; }
.timeline li:not(:last-child)::after { content: ""; position: absolute; top: 5px; left: 12px; right: 4px; height: 2px; background: var(--line); }
.timeline .done { color: var(--teal); }
.timeline .done::before { background: var(--teal); border-color: var(--teal); }
.timeline .done:not(:last-child)::after { background: var(--teal); }
.timeline .now { color: var(--teal-ink); font-weight: 700; }
.timeline .now::before { border-color: var(--teal); }
.timeline--lg { font-size: 13px; margin-top: 18px; max-width: 340px; }

.panel--wa { background: #EFE7DC; padding-inline: 12px; }
.panel__app--wa { font-size: 16px; background: #F6F6F6; margin: -58px -12px 16px; padding: 56px 16px 12px; border-bottom: 1px solid #ddd; }
.wa { display: grid; gap: 10px; }
.wa__bubble { position: relative; max-width: 88%; padding: 8px 10px 20px; border-radius: 10px; font-size: 13px; line-height: 1.4; background: #fff; }
.wa__bubble--doc { justify-self: end; background: #D9FDD3; opacity: 0; transform: translateY(10px) scale(.97); transition: .45s ease .3s; }
.wa__bubble--in { justify-self: start; opacity: 0; transition: .4s ease 1.6s; }
.panel--wa.is-on .wa__bubble { opacity: 1; transform: none; }
.wa__file { display: flex; gap: 8px; align-items: center; background: rgb(0 0 0 / .05); padding: 8px; border-radius: 8px; margin-bottom: 6px; }
.wa__file strong { display: block; font-size: 11px; word-break: break-all; }
.wa__file small { color: #667; font-size: 11px; }
.wa__pdf { flex: none; display: grid; place-items: center; width: 30px; height: 36px; border-radius: 4px; background: #E5453B; color: #fff; font-size: 9px; font-weight: 800; }
.wa__tick { position: absolute; right: 8px; bottom: 4px; font-size: 10px; color: #53BDEB; }
.wa__bubble--in .wa__tick { color: #999; }

.story__steps { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--muted); }
.story__steps li { padding: 6px 12px; border-radius: 999px; transition: .3s; }
.story__steps li.is-on { background: var(--teal); color: #fff; }
.replay { font: 600 14px var(--font); color: var(--teal); background: none; border: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; opacity: 0; transition: opacity .3s; }
.replay.is-on { opacity: 1; }

@media (max-width: 900px) {
  .hero { padding-top: 32px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Problem */
.problem { background: var(--teal); color: #fff; padding-block: 88px; }
.problem__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 64px; align-items: end; }
.problem__text { font: 500 clamp(22px, 2.6vw, 30px)/1.4 var(--display); letter-spacing: -.012em; max-width: 36em; }
.problem__num { font: 800 clamp(64px, 9vw, 112px)/.9 var(--display); letter-spacing: -.05em; }
.problem__label { margin-top: 14px; color: #CFE3E1; max-width: 26em; }
@media (max-width: 820px) { .problem__grid { grid-template-columns: 1fr; gap: 36px; } }

/* Sections */
.section { padding-block: 104px; }
.section--tint { background: var(--mist); }
.section--deep { background: var(--teal-ink); color: #fff; }
.h2 { font: 750 clamp(32px, 4.2vw, 50px)/1.05 var(--display); letter-spacing: -.035em; max-width: 20ch; text-wrap: balance; }
.h2--light { color: #fff; }
.center { text-align: center; margin-inline: auto; }
@media (max-width: 700px) { .section { padding-block: 72px; } }

/* Steps */
.steps { list-style: none; padding: 0; margin: 56px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.step { position: relative; padding-top: 28px; border-top: 2px solid var(--teal); }
.step__n { display: block; font: 800 15px/1 var(--display); color: var(--teal); margin-bottom: 18px; }
.step h3 { font: 700 23px/1.2 var(--display); letter-spacing: -.02em; margin-bottom: 10px; }
.step p { color: var(--muted); max-width: 32em; }
.step__aside { margin-top: 10px; font-size: 15px; }
.steps__foot { margin-top: 56px; font: 600 20px/1.4 var(--display); color: var(--teal); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 32px; } }

/* Feature rows */
.feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; align-items: center; }
.feature--flip .feature__copy { order: 2; }
.feature__copy p { margin-top: 18px; font-size: 18px; max-width: 32em; }
.feature__copy .h2 { margin-bottom: 6px; }
.feature__copy .link { display: inline-block; margin-top: 22px; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature--flip .feature__copy { order: 0; }
}

.sync { display: grid; grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr); gap: 12px; align-items: center; }
.sync__col { background: #fff; border-radius: var(--radius); padding: 16px; display: grid; gap: 8px; box-shadow: 0 18px 40px -30px rgb(16 64 63 / .6); }
.sync__h { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.sync__arrows { width: 40px; color: var(--teal); }
.gev { font-size: 13px; font-weight: 600; padding: 8px 10px; border-radius: 6px; background: #E3ECFD; color: #1E4FA8; border-left: 3px solid #4285F4; }
.gev small, .pev small { display: block; font-weight: 400; opacity: .8; }
.gev--x { background: #F1F1F1; color: #777; border-color: #bbb; text-decoration: line-through; }
.gev--new { background: #4285F4; color: #fff; }
.pev { position: relative; font-size: 12px; color: var(--muted); padding: 8px 10px; border-radius: 10px; background: var(--paper); }
.pev b { display: block; font-size: 13px; color: var(--teal-ink); }
.pev--x { opacity: .6; }
.st { position: absolute; right: 8px; top: 50%; translate: 0 -50%; font-style: normal; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 999px; background: #E4E4E4; color: #666; }
.st--sent { background: var(--mist); color: var(--teal); }
.st--new { background: var(--marker); color: #5a4200; }
@media (max-width: 520px) {
  .sync { grid-template-columns: 1fr; }
  .sync__arrows { justify-self: center; rotate: 90deg; }
  .st { position: static; translate: none; display: inline-block; margin-top: 4px; }
}

/* Clinical lab */
.clinical__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: end; }
.clinical__intro p { font-size: 19px; max-width: 32em; }
.lab { margin-top: 56px; display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 32px; align-items: start; }
@media (max-width: 900px) {
  .clinical__intro { grid-template-columns: 1fr; gap: 20px; }
  .lab { grid-template-columns: 1fr; }
}

.controls { position: sticky; top: 88px; background: var(--surface); border-radius: var(--radius); padding: 24px; box-shadow: 0 1px 0 var(--line); display: grid; gap: 24px; }
@media (max-width: 900px) { .controls { position: static; } }
fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 10px; min-width: 0; }
legend { font-size: 14px; font-weight: 700; margin-bottom: 10px; padding: 0; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper); border-radius: 12px; padding: 4px; gap: 4px; }
.seg label { position: relative; }
.seg input, .billing input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg span { display: block; text-align: center; font-size: 14px; font-weight: 600; padding: 9px 4px; border-radius: 9px; color: var(--muted); }
.seg input:checked + span { background: var(--teal); color: #fff; }
.seg input:focus-visible + span, .billing input:focus-visible + span { outline: 3px solid #E0A526; outline-offset: 2px; }
select { width: 100%; font: 500 16px var(--font); color: var(--teal-ink); padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A5C5E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.days { display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--muted); }
.days.is-off { opacity: .4; pointer-events: none; }
.stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--paper); border-radius: 10px; padding: 3px; }
.stepper button { width: 34px; height: 34px; border: 0; border-radius: 8px; background: #fff; color: var(--teal); font-size: 18px; cursor: pointer; }
.stepper output { min-width: 28px; text-align: center; font-weight: 700; color: var(--teal-ink); font-variant-numeric: tabular-nums; }
.toggles { gap: 4px; }
.tog { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; font-size: 15px; cursor: pointer; border-top: 1px solid var(--line); }
.tog:first-of-type { border-top: 0; }
.tog input { order: 2; appearance: none; flex: none; width: 46px; height: 28px; border-radius: 999px; background: var(--line); position: relative; cursor: pointer; transition: background .2s; margin: 0; }
.tog input::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgb(0 0 0 / .2); transition: transform .2s; }
.tog input:checked { background: var(--teal); }
.tog input:checked::after { transform: translateX(18px); }
.controls__note { font-size: 13px; color: var(--muted); }

.sheet {
  background: #fff; border-radius: 6px; padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 1px 2px rgb(16 64 63 / .08), 0 30px 60px -36px rgb(16 64 63 / .45);
  font-size: 15px; line-height: 1.55; min-height: 560px;
}
.sheet__head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 2px solid var(--teal); }
.sheet__logo { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 800; font-size: 15px; flex: none; }
.sheet__dr { font-weight: 700; font-size: 17px; }
.sheet__spec { font-size: 13px; color: var(--muted); }
.sheet__qr { margin-left: auto; width: 48px; height: 48px; flex: none; border-radius: 4px;
  background: conic-gradient(from 90deg at 33% 33%, var(--teal-ink) 25%, transparent 0) 0 0 / 12px 12px, repeating-linear-gradient(90deg, var(--teal-ink) 0 4px, transparent 4px 9px); opacity: .85; }
.sheet__title { font: 750 26px/1.15 var(--display); letter-spacing: -.02em; margin: 24px 0 16px; color: var(--teal); }
.sheet__meta { display: grid; gap: 4px; margin: 0 0 8px; }
.sheet__meta div { display: grid; grid-template-columns: 90px 1fr; gap: 8px; }
.sheet__meta dt { color: var(--muted); }
.sheet__meta dd { margin: 0; font-weight: 600; }
.sheet__block:empty { display: none; }
.sheet__block { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); animation: land .35s ease; }
.sheet__block h4 { margin: 0 0 6px; font-size: 15px; }
.sheet__block p + p { margin-top: 6px; }
.sheet__block--alert h4 { color: var(--alert); }
.sheet mark { background: var(--marker); color: inherit; padding: 1px 4px; border-radius: 4px; font-weight: 700; }
@keyframes land { from { background: #FBF3D6; } to { background: transparent; } }

.rules { list-style: none; padding: 0; margin: 48px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; color: var(--muted); }
.rules strong { display: block; color: var(--teal-ink); margin-bottom: 4px; }
@media (max-width: 820px) { .rules { grid-template-columns: 1fr; gap: 18px; } }

/* Compare */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mini { margin: 0; background: #fff; border-radius: 6px; padding: 20px 18px 16px; display: grid; gap: 8px; box-shadow: 0 24px 40px -30px rgb(16 64 63 / .6); }
.mini--paper { background: #FBFBF8; rotate: -2deg; }
.mini__head { display: flex; gap: 8px; align-items: center; padding-bottom: 10px; border-bottom: 2px solid var(--teal); margin-bottom: 4px; }
.mini__head i { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); }
.mini__head span { flex: 1; height: 8px; border-radius: 4px; background: var(--line); }
.mini__t { height: 12px; width: 70%; border-radius: 4px; background: var(--teal); opacity: .8; }
.mini > span { height: 7px; border-radius: 4px; background: var(--line); }
.mini > span.short { width: 60%; }
.mini .scribble { height: auto; background: none; font: italic 600 15px/1.2 "Bradley Hand", "Segoe Print", cursive; color: #C0392B; }
.mini .hl { height: auto; background: var(--marker); font-size: 12px; font-weight: 700; padding: 4px 6px; color: #5a4200; }
.mini figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* More */
.more { margin-top: 56px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 64px; }
.more__item { padding-block: 28px; border-top: 1px solid var(--line); }
.more__item h3 { font: 700 21px/1.25 var(--display); letter-spacing: -.015em; margin-bottom: 8px; }
.more__item p { color: var(--muted); max-width: 34em; }
@media (max-width: 820px) { .more { grid-template-columns: 1fr; } }

/* Proof */
.proof__grid { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 64px; align-items: center; }
.proof__photo { aspect-ratio: 4 / 5; max-width: 100%; border-radius: var(--radius); background: repeating-linear-gradient(135deg, #1f403f 0 12px, #234846 12px 24px); display: grid; place-items: center; color: #9FC0BE; font-size: 14px; }
.quote { margin: 32px 0 0; }
.quote p { font: 500 clamp(22px, 2.4vw, 28px)/1.4 var(--display); letter-spacing: -.01em; max-width: 30em; }
.quote footer { margin-top: 14px; color: #9FC0BE; font-size: 15px; }
.quote--pending p { color: #9FC0BE; }
.figures { display: flex; flex-wrap: wrap; gap: 20px 48px; margin: 36px 0 0; padding-top: 28px; border-top: 1px solid #2f5352; }
.figures dt { font-size: 14px; color: #9FC0BE; }
.figures dd { margin: 4px 0 0; font: 700 24px var(--display); }
@media (max-width: 820px) { .proof__grid { grid-template-columns: 1fr; gap: 36px; } .proof__photo { max-width: 260px; } }

/* Pricing */
.founder { margin: 40px auto 0; max-width: 820px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; padding: 18px 24px; border-radius: var(--radius); background: var(--marker); color: #4a3700; }
.founder p { max-width: 36em; }
.founder__count { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; white-space: nowrap; }
.founder__dots { display: flex; gap: 4px; }
.founder__dots i { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid #8a6a10; }
.founder__dots i.taken { background: #8a6a10; }

.plans { margin: 24px auto 0; max-width: 820px; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 20px; align-items: stretch; }
.plan { background: #fff; border-radius: var(--radius); padding: 32px; border: 2px solid var(--teal); }
.plan__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.plan h3 { font: 700 22px var(--display); letter-spacing: -.015em; }
.billing { display: inline-grid; grid-template-columns: 1fr 1fr; padding: 3px; gap: 3px; border-radius: 999px; background: var(--paper); }
.billing label { position: relative; }
.billing span { display: block; padding: 6px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); }
.billing input:checked + span { background: var(--teal); color: #fff; }
.price { margin-top: 24px; }
.price__n { font: 800 56px/1 var(--display); letter-spacing: -.04em; color: var(--teal); font-variant-numeric: tabular-nums; }
.price__u { font-size: 17px; color: var(--muted); }
.price__note { font-size: 15px; color: var(--muted); margin-top: 6px; min-height: 1.5em; }
.checks { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 28px; }
.checks li::before { content: ""; position: absolute; left: 2px; top: 5px; width: 14px; height: 8px; border-left: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal); rotate: -45deg; }
.plan--soon { border: 2px dashed #C5D2D0; background: transparent; color: var(--muted); }
.plan--soon h3 { color: var(--teal-ink); }
.soon { display: inline-block; margin: 8px 0 16px; font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: #E4EAE9; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } .plan { padding: 24px; } }

/* FAQ */
.faq { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 56px; align-items: start; }
.faq__list { border-top: 1px solid #C9D8D6; }
details { border-bottom: 1px solid #C9D8D6; }
summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; padding: 20px 0; font-weight: 600; font-size: 18px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: ""; flex: none; width: 10px; height: 10px; margin-top: 6px; margin-right: 4px; border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal); rotate: 45deg; transition: rotate .2s; }
details[open] summary::after { rotate: -135deg; }
details p { padding: 0 32px 22px 0; color: var(--muted); max-width: 40em; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; gap: 28px; } }

/* Final */
.final { background: var(--teal); color: #fff; padding-block: 112px; text-align: center; }
.final__inner { display: grid; justify-items: center; gap: 18px; }
.final__title { font: 800 clamp(48px, 8vw, 96px)/.95 var(--display); letter-spacing: -.05em; }
.final p { font-size: 20px; color: #D6E8E6; max-width: 30em; }
.access { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; width: 100%; max-width: 520px; }
.access input { flex: 1 1 240px; min-height: 50px; padding: 0 20px; border-radius: 999px; border: 0; font: 16px var(--font); color: var(--teal-ink); }
.access__msg { font-size: 16px !important; color: #fff !important; }
.final .link { margin-top: 8px; }

.foot { padding-block: 32px; font-size: 14px; color: var(--muted); }
.foot__inner { display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: center; }
.foot__inner > :last-child { margin-left: auto; }

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