:root {
  --navy: #0f2a44;
  --navy-soft: #173b5f;
  --gold: #b88a45;
  --sand: #c9beb1;
  --cream: #faf7f3;
  --paper: #fffdf9;
  --ink: #1f2d35;
  --muted: #6e7477;
  --line: rgba(15, 42, 68, 0.14);
  --shadow: 0 24px 70px rgba(15, 42, 68, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button,
a,
input,
summary {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 138, 69, 0.72);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(15, 42, 68, 0.5), rgba(15, 42, 68, 0));
  backdrop-filter: blur(4px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 252px;
  height: 64px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.28));
}

.brand-logo-icon {
  width: 118px;
  height: 78px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 44px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  transform: translateY(-2px);
}

.button-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.button-light:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.button-small {
  min-height: 46px;
  padding: 11px 22px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 890px;
  padding: 150px max(24px, calc((100vw - 1240px) / 2)) 118px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 42, 68, 0.86) 0%, rgba(15, 42, 68, 0.63) 28%, rgba(15, 42, 68, 0.18) 56%, rgba(15, 42, 68, 0.03) 100%),
    linear-gradient(0deg, rgba(15, 42, 68, 0.7) 0%, rgba(15, 42, 68, 0.2) 24%, transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: rgba(250, 247, 243, 0.72);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 590px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(50px, 5.5vw, 76px);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4.8vw, 70px);
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.hero-intro {
  max-width: 525px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-disclosure {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
}

.text-link {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.launch-line {
  width: fit-content;
  margin: 34px 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--serif);
  font-size: 20px;
}

.intro-band {
  position: relative;
  width: 100%;
  min-height: min(104vh, 960px);
  margin: 0;
  padding: 176px 48px 158px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: var(--navy);
}

.intro-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 42, 68, 0.84), rgba(15, 42, 68, 0.67)),
    radial-gradient(circle at 50% 42%, rgba(184, 138, 69, 0.18), transparent 48%);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(15, 42, 68, 0.96), transparent 24%, transparent 74%, rgba(15, 42, 68, 0.96)),
    linear-gradient(90deg, rgba(15, 42, 68, 0.18), transparent 18%, transparent 82%, rgba(15, 42, 68, 0.18));
}

.intro-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  opacity: 0.72;
}

.intro-content {
  max-width: 940px;
}

.intro-band .eyebrow {
  color: rgba(250, 247, 243, 0.72);
  font-size: 13px;
}

.intro-band h2 {
  margin: 0;
  color: #fff;
}

.panel-statement {
  width: min(1120px, calc(100% - 64px));
  margin: 96px auto 0;
  padding: clamp(42px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(15, 42, 68, 0.98), rgba(23, 59, 95, 0.98));
  border: 1px solid rgba(250, 247, 243, 0.12);
  box-shadow: var(--shadow);
}

.panel-statement p {
  max-width: 1030px;
  margin: 0 auto;
  color: rgba(250, 247, 243, 0.9);
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 58px);
  letter-spacing: -0.052em;
  line-height: 1.08;
  text-align: center;
}

.panel-statement strong {
  color: #fff;
  font-weight: 400;
}

.panel-statement em {
  color: var(--gold);
  font-style: normal;
}

.panel-brand {
  color: var(--gold);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 118px 0;
}

.care-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.care-item {
  min-height: 318px;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-item + .care-item {
  border-left: 1px solid var(--line);
}

.care-item span {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
}

.care-item p,
.membership p,
.doctor-copy p,
.join-copy p {
  color: var(--muted);
}

.microcopy {
  margin-top: 16px;
  color: rgba(110, 116, 119, 0.9) !important;
  font-size: 12px;
  line-height: 1.5;
}

.shared-disclaimer {
  width: min(1040px, calc(100% - 48px));
  margin: -58px auto 104px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: start;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(250, 247, 243, 0.82));
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(15, 42, 68, 0.08);
}

.shared-disclaimer p {
  margin: 0;
  font-size: 15px;
}

.shared-disclaimer p + p {
  margin-top: 6px;
}

.shared-disclaimer p:first-child {
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 800;
}

.disclaimer-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whole-person-note {
  width: min(920px, calc(100% - 48px));
  margin: -48px auto 94px;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--gold);
}

.whole-person-note p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.photo-statement {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 68px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(15, 42, 68, 0.86), rgba(15, 42, 68, 0.56)),
    url("assets/ai-office.png");
  background-size: cover;
  background-position: center;
}

.photo-statement h2 {
  margin: 0;
  color: #fff;
}

.photo-statement p:last-child {
  margin: auto 0 0;
  color: rgba(250, 247, 243, 0.84);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.photo-statement p:last-child span {
  color: #fff;
}

.pricing-card {
  padding: clamp(38px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fine-print {
  max-width: 650px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.membership-secondary {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
}

.insurance-details {
  max-width: 650px;
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(15, 42, 68, 0.04);
  border: 1px solid var(--line);
}

.price-table {
  display: grid;
  gap: 16px;
}

.price-table article {
  padding: 30px;
  border: 1px solid var(--line);
}

.price-table span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-table strong {
  display: block;
  margin: 12px 0 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.price-table small {
  color: var(--muted);
}

.featured-price {
  color: #fff;
  background: var(--navy);
}

.featured-price span,
.featured-price small {
  color: rgba(250, 247, 243, 0.72);
}

.featured-price strong {
  color: #fff;
}

.pricing-side {
  display: grid;
  gap: 18px;
}

.pricing-support,
.pricing-limit {
  margin: 0;
  color: var(--muted);
}

.pricing-support {
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
}

.pricing-limit {
  font-size: 13px;
}

.inline-details {
  color: var(--muted);
  font-size: 13px;
}

.inline-details summary {
  width: fit-content;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 69, 0.45);
  text-underline-offset: 5px;
}

.inline-details p {
  margin: 14px 0 0;
}

.membership-expectations {
  margin-top: 26px;
  padding: clamp(30px, 5vw, 46px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid var(--line);
}

.membership-expectations h3 {
  margin-bottom: 14px;
}

.membership-expectations a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 69, 0.45);
  text-underline-offset: 4px;
}

.detail-columns {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.detail-columns h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.detail-columns ul {
  margin: 0;
  padding-left: 20px;
}

.doctor {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 78px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.doctor-quote {
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.doctor-side {
  display: grid;
  gap: 18px;
}

.doctor-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.doctor-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.credential-panel {
  padding: 34px;
  display: grid;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.credential-panel span {
  padding-bottom: 16px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  border-bottom: 1px solid var(--line);
}

.credential-panel span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.credential-board strong,
.credential-board small {
  display: block;
}

.credential-board strong {
  font-weight: 400;
}

.credential-board small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

.join {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: start;
}

.join-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.join-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.join-note p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.48;
}

.interest-form {
  padding: clamp(30px, 5vw, 52px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.interest-form label:not(.checkbox-label) {
  display: block;
  margin-bottom: 18px;
}

.interest-form label > span,
.language-field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 10px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  outline: none;
}

.interest-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 69, 0.14);
}

.interest-form input[aria-invalid="true"] {
  border-color: #9b2c2c;
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.1);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 16px;
}

.checkbox-label {
  margin: 6px 0 22px;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-label input {
  margin-top: 3px;
  accent-color: var(--navy);
}

.checkbox-label span,
.radio-label span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.checkbox-label a,
.form-privacy a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.language-field {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.language-field legend {
  padding: 0;
}

.radio-label {
  margin: 8px 18px 0 0;
  display: inline-grid;
  grid-template-columns: 16px auto;
  gap: 8px;
  align-items: center;
}

.radio-label input {
  accent-color: var(--navy);
}

.form-safety-panel,
.error-summary {
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
}

.form-safety-panel {
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(250, 247, 243, 0.92), rgba(255, 253, 249, 0.98));
  border-left: 3px solid var(--gold);
}

.form-safety-panel p,
.error-summary p {
  font-size: 13px;
  line-height: 1.55;
}

.form-safety-panel p,
.error-summary p {
  margin: 0;
}

.form-safety-panel p + p {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.form-safety-panel strong {
  color: var(--navy);
}

.error-summary {
  color: #6f1d1d;
  background: #fff7f7;
  border-color: rgba(155, 44, 44, 0.28);
}

.error-summary ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.error-summary a {
  color: #6f1d1d;
  text-decoration: underline;
}

.form-button {
  width: 100%;
  cursor: pointer;
}

.form-privacy,
.form-message {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-message {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.social-section {
  width: var(--page);
  margin: 0 auto;
  padding: 8px 0 76px;
  text-align: center;
}

.social-section p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover {
  color: #fff;
  background: var(--navy);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

footer {
  width: var(--page);
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 230px 0.85fr 1fr;
  gap: 54px;
  align-items: center;
  border-top: 1px solid var(--line);
}

footer img {
  width: 230px;
  height: 78px;
  object-fit: contain;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

footer a:hover {
  color: var(--gold);
}

.footer-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 69, 0.45);
  text-underline-offset: 4px;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(250, 247, 243, 0.96), rgba(255, 253, 249, 0.98));
}

.legal-header {
  position: static;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.legal-header .desktop-nav {
  color: var(--navy);
}

.legal-header .desktop-nav a:hover {
  color: var(--gold);
}

.legal-header .button-light {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.legal-header .brand-logo {
  filter: none;
}

.legal-main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 104px;
}

.legal-main h1 {
  max-width: none;
  color: var(--navy);
  font-size: clamp(46px, 5vw, 72px);
}

.legal-main h2 {
  margin: 48px 0 12px;
  font-size: clamp(30px, 3vw, 42px);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

  .pricing-card,
  .doctor,
  .join,
  .photo-statement,
  .membership-expectations {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 780px;
    padding-top: 112px;
    padding-bottom: 94px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(15, 42, 68, 0.86) 0%, rgba(15, 42, 68, 0.66) 45%, rgba(15, 42, 68, 0.14) 100%),
      linear-gradient(90deg, rgba(15, 42, 68, 0.34), transparent);
  }

  .hero-content {
    margin-top: auto;
  }

  .care-flow {
    grid-template-columns: 1fr 1fr;
  }

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

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .brand-logo {
    width: 184px;
    height: 48px;
  }

  .brand-logo-icon {
    width: 86px;
    height: 58px;
  }

  .button-small {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 94px 16px 34px;
  }

  .hero-content {
    padding: 0 6px;
  }

  h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  h2 {
    font-size: 43px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    width: fit-content;
  }

  .launch-line {
    font-size: 18px;
  }

  .hero-disclosure {
    font-size: 15px;
  }

  .intro-band {
    min-height: 760px;
    padding: 132px 24px 118px;
  }

  .intro-video {
    opacity: 0.58;
    object-position: center 8%;
  }

  .panel-statement {
    width: calc(100% - 32px);
    margin-top: 68px;
    padding: 44px 24px;
  }

  .panel-statement p {
    font-size: 34px;
  }

  .section {
    padding: 78px 0;
  }

  .care-flow {
    grid-template-columns: 1fr;
  }

  .care-item {
    min-height: 0;
    padding: 28px 0;
    border-left: 0 !important;
    border-bottom: 0;
  }

  .care-item span {
    margin-bottom: 26px;
  }

  .whole-person-note {
    width: calc(100% - 32px);
    margin: 0 auto 68px;
    padding-left: 20px;
  }

  .shared-disclaimer {
    width: calc(100% - 32px);
    margin: -28px auto 68px;
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .photo-statement {
    width: calc(100% - 32px);
    padding: 38px 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-main {
    width: calc(100% - 32px);
    padding-top: 64px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .intro-video {
    display: none;
  }
}
