:root {
  --background: oklch(100% 0 0);
  --foreground: oklch(24% 0.015 200);
  --primary: oklch(55.8% 0.1 213);
  --primary-foreground: oklch(98% 0.005 200);
  --secondary: oklch(96.5% 0.025 200);
  --muted: oklch(55% 0.02 230);
  --accent: oklch(85% 0.16 197);
  --card: oklch(100% 0 0);
  --border: oklch(92% 0.02 200);
  --radius: 0.625rem;
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.08);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px color-mix(in oklab, var(--primary) 25%, transparent),
    0 4px 6px -4px color-mix(in oklab, var(--primary) 25%, transparent);
  --max: 72rem;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  line-height: 1.5;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--wide {
  max-width: var(--max);
}

.container--copy {
  max-width: 56rem;
}

.container--narrow {
  max-width: 48rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 1rem 1.5rem;
}

.logo {
  height: 2rem;
  width: auto;
}

.logo--footer {
  height: 1.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  background: color-mix(in oklab, var(--primary) 90%, black);
  box-shadow: 0 10px 15px -3px color-mix(in oklab, var(--primary) 40%, transparent),
    0 4px 6px -4px color-mix(in oklab, var(--primary) 40%, transparent);
}

.btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(64px);
}

.hero__glow--left {
  left: -6rem;
  top: -6rem;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
}

.hero__glow--right {
  right: -6rem;
  top: 10rem;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
}

.hero__inner {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero h1 span {
  color: var(--primary);
}

.lede {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  color: var(--muted);
}

.promise {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-weight: 500;
}

.hero .btn {
  margin-top: 2.5rem;
}

/* Sections */

.section {
  padding: 5rem 0;
}

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

.section--brand {
  background: var(--primary);
  color: var(--primary-foreground);
}

.section--cta {
  padding: 6rem 0;
}

.section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
}

.section--narrow h2,
.section--cta h2 {
  text-align: center;
}

.section p.center,
.section--narrow p,
.section--cta p {
  text-align: center;
}

.section--narrow .lede,
.section--cta .lede {
  margin-top: 1.5rem;
}

.section--narrow .lede + .lede,
.section--cta p + p {
  margin-top: 1rem;
}

.section--cta .promise {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.section--cta .lede {
  margin-top: 1rem;
  font-size: 1rem;
}

.section--narrow .btn,
.section--cta .btn {
  margin-top: 2.5rem;
}

.center {
  text-align: center;
}

.closing {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Cards / grids */

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.grid--4 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.card--center {
  text-align: center;
}

.card--hover {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.card--hover:hover {
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
  box-shadow: var(--shadow-md);
}

.stat {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.stat + p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.card h3 + p,
.step p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.icon-wrap {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
}

.icon-wrap--sm {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
}

.step__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

/* Physician band */

.band {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

.band svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.9;
}

.band h2 {
  margin-top: 1.5rem;
}

.band p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

.band p + p {
  margin-top: 1rem;
}

.band__punch {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 1;
}

/* FAQ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq .plus {
  color: var(--primary);
  font-weight: 500;
  line-height: 1;
  transition: transform 0.15s ease;
}

.faq details[open] .plus {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 1rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-footer p {
  font-size: 0.875rem;
  color: var(--muted);
}

@media (max-width: 39.99rem) {
  .site-header__inner {
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .logo {
    height: 1.5rem;
  }

  .site-header .btn {
    flex-shrink: 0;
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .site-header .btn svg {
    display: none;
  }
}

@media (min-width: 40rem) {
  .hero__inner {
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section h2,
  .band h2 {
    font-size: 2.25rem;
  }

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

@media (min-width: 48rem) {
  .hero h1 {
    font-size: 3.75rem;
  }

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

@media (min-width: 64rem) {
  .grid--4,
  .grid--steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card--hover,
  .faq .plus {
    transition: none;
  }
}
