:root {
  --wl-font-heading: "Outfit", sans-serif;
  --wl-font-body: "Inter", sans-serif;
  --wl-bg: #f6fbff;
  --wl-surface: rgba(255, 255, 255, 0.86);
  --wl-surface-strong: #ffffff;
  --wl-panel: #f9fcff;
  --wl-border: rgba(44, 102, 157, 0.14);
  --wl-border-strong: rgba(15, 23, 42, 0.2);
  --wl-text: #1d2735;
  --wl-text-soft: #516174;
  --wl-text-muted: #6a7686;
  --wl-accent: #22c5ff;
  --wl-accent-deep: #0078c9;
  --wl-accent-soft: #e8f8ff;
  --wl-blush: #ff43aa;
  --wl-blush-deep: #df1d8c;
  --wl-blush-soft: #ffe7f3;
  --wl-cool: #0f7eb9;
  --wl-shadow-sm: 0 18px 40px rgba(15, 23, 42, 0.08);
  --wl-shadow-lg: 0 36px 96px rgba(15, 23, 42, 0.16);
  --wl-shadow-accent:
    0 24px 56px rgba(34, 197, 255, 0.24),
    0 14px 30px rgba(223, 29, 140, 0.18);
  --wl-radius-lg: 32px;
  --wl-radius-md: 22px;
  --wl-radius-sm: 16px;
  --wl-shell: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--wl-text);
  font-family: var(--wl-font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 255, 0.24), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(255, 67, 170, 0.16), transparent 26%),
    radial-gradient(circle at 72% 18%, rgba(255, 232, 245, 0.6), transparent 28%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, #eef8ff 0%, #d4f0ff 34%, #dff3ff 62%, #fae8f3 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.wl-page {
  overflow: clip;
}

.wl-shell {
  width: min(calc(100% - 2.5rem), var(--wl-shell));
  margin: 0 auto;
}

.wl-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  padding: 1.25rem 0;
  background: rgba(246, 251, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease,
    backdrop-filter 180ms ease,
    border-color 180ms ease;
}

.wl-header--scrolled {
  padding: 0.85rem 0;
  background: rgba(245, 250, 255, 0.94);
  backdrop-filter: blur(16px);
  border-color: rgba(46, 124, 190, 0.14);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.wl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wl-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wl-text);
  font-family: var(--wl-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wl-brand__mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wl-blush-deep) 0%, var(--wl-blush) 34%, var(--wl-accent) 100%);
  color: #fff;
  box-shadow:
    0 16px 30px rgba(34, 197, 255, 0.22),
    0 10px 22px rgba(223, 29, 140, 0.18);
}

.wl-brand__mark svg {
  width: 1.1rem;
  height: 1.1rem;
}

.wl-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wl-nav a {
  color: var(--wl-text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.wl-nav a:hover,
.wl-nav a:focus-visible {
  color: var(--wl-text);
}

.wl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--wl-font-heading);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    color 150ms ease;
}

.wl-btn:hover,
.wl-btn:focus-visible {
  transform: translateY(-1px);
}

.wl-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wl-blush-deep) 0%, var(--wl-blush) 38%, var(--wl-accent) 100%);
  box-shadow: var(--wl-shadow-accent);
}

.wl-btn--primary:hover,
.wl-btn--primary:focus-visible {
  box-shadow:
    0 28px 46px rgba(34, 197, 255, 0.24),
    0 14px 28px rgba(223, 29, 140, 0.2);
}

.wl-btn--secondary,
.wl-btn--ghost {
  color: var(--wl-text);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--wl-border);
  box-shadow: var(--wl-shadow-sm);
}

.wl-btn--secondary:hover,
.wl-btn--secondary:focus-visible,
.wl-btn--ghost:hover,
.wl-btn--ghost:focus-visible {
  border-color: var(--wl-border-strong);
}

.wl-hero {
  position: relative;
  padding: 8.25rem 0 5.25rem;
}

.wl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(34, 197, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 67, 170, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(0, 120, 201, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.wl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, 0.97fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.wl-hero__content {
  position: relative;
  z-index: 1;
  max-width: 35rem;
  animation: wl-rise 700ms ease both;
}

.wl-badge,
.wl-kicker,
.wl-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.wl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--wl-cool);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(34, 197, 255, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.wl-badge__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
}

.wl-kicker,
.wl-section__eyebrow {
  margin: 0 0 1.2rem;
  color: var(--wl-cool);
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.wl-hero h1,
.wl-section__intro h2,
.wl-plan-card h2,
.wl-footer h2,
.wl-intake__header h2 {
  margin: 0;
  font-family: var(--wl-font-heading);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.wl-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.1rem, 7vw, 5.85rem);
  text-wrap: balance;
}

.wl-hero__lede,
.wl-section__intro p,
.wl-plan-card__copy,
.wl-intake__header p,
.wl-footer p,
.wl-medication-panel__footer p {
  color: var(--wl-text-soft);
}

.wl-hero__lede {
  max-width: 34ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1.08rem, 1.55vw, 1.22rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.wl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.15rem;
}

.wl-trustbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 2.35rem 0 0;
}

.wl-trustbar div {
  min-height: 100%;
  padding: 1.1rem 1.15rem;
  border-radius: var(--wl-radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 248, 255, 0.9));
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.wl-trustbar dt {
  font-family: var(--wl-font-heading);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.wl-trustbar dd {
  margin: 0;
  color: var(--wl-text-soft);
  font-size: 0.95rem;
}

.wl-hero__media {
  position: relative;
  justify-self: end;
  max-width: 36rem;
  animation: wl-rise 820ms ease 120ms both;
}

.wl-hero__backdrop {
  position: absolute;
  inset: 1.8rem -1.25rem -1.5rem 1.8rem;
  border-radius: clamp(2rem, 5vw, 3.25rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(34, 197, 255, 0.26), rgba(255, 67, 170, 0.16));
  filter: blur(1px);
}

.wl-hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: clamp(2rem, 5vw, 3.25rem);
  box-shadow: var(--wl-shadow-lg);
}

.wl-section {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
}

.wl-section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(233, 247, 255, 0.36));
  border-block: 1px solid rgba(17, 24, 39, 0.04);
}

.wl-section__intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.wl-section__intro--tight {
  margin-bottom: 1.5rem;
}

.wl-section__intro h2,
.wl-plan-card h2,
.wl-intake__header h2,
.wl-footer h2 {
  font-size: clamp(2.15rem, 4vw, 3.4rem);
}

.wl-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wl-step-card,
.wl-plan-card,
.wl-medication-panel,
.wl-intake__summary,
.wl-intake__form-wrap {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--wl-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    var(--wl-surface);
  box-shadow: var(--wl-shadow-sm);
}

.wl-step-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 248, 255, 0.92));
}

.wl-step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--wl-accent);
  background: var(--wl-accent-soft);
  font-family: var(--wl-font-heading);
  font-weight: 700;
}

.wl-step-card h3,
.wl-medication-card__body h3,
.wl-intake__summary h3 {
  margin: 1rem 0 0.75rem;
  font-family: var(--wl-font-heading);
  font-size: 1.3rem;
  line-height: 1.05;
}

.wl-step-card p,
.wl-medication-card__meta,
.wl-medication-card__subhead,
.wl-intake__summary,
.wl-process-list,
.wl-faq__item p {
  color: var(--wl-text-soft);
}

.wl-pricing {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

.wl-plan-card,
.wl-medication-panel {
  padding: 2.1rem;
}

.wl-price {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.wl-price strong {
  font-family: var(--wl-font-heading);
  font-size: clamp(3.6rem, 7vw, 5rem);
  line-height: 0.9;
}

.wl-price span {
  color: var(--wl-text-muted);
  font-weight: 600;
}

.wl-feature-list,
.wl-medication-card ul,
.wl-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wl-feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.wl-feature-list li,
.wl-medication-card ul li,
.wl-process-list li {
  position: relative;
  padding-left: 1.55rem;
}

.wl-feature-list li::before,
.wl-medication-card ul li::before,
.wl-process-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wl-blush), var(--wl-accent));
}

.wl-plan-card__cta {
  width: 100%;
  margin-top: 2rem;
}

.wl-medication-grid {
  display: grid;
  gap: 1rem;
}

.wl-medication-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wl-medication-card {
  position: relative;
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  padding: 1.15rem 1.2rem 1.15rem 3rem;
  border-radius: var(--wl-radius-md);
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(252, 251, 247, 0.9);
  cursor: pointer;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.wl-medication-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
}

.wl-medication-option__input:focus-visible + .wl-medication-card,
.wl-medication-option__input:checked + .wl-medication-card {
  border-color: rgba(34, 197, 255, 0.36);
  background: #fffdf8;
  box-shadow:
    0 18px 40px rgba(34, 197, 255, 0.14),
    0 10px 22px rgba(223, 29, 140, 0.08);
}

.wl-medication-card__check {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 2px solid rgba(17, 24, 39, 0.16);
  background: #fff;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.wl-medication-option__input:checked + .wl-medication-card .wl-medication-card__check {
  border-color: var(--wl-accent);
  background: radial-gradient(circle at center, var(--wl-accent) 0 44%, #fff 48% 100%);
  box-shadow: 0 0 0 6px rgba(34, 197, 255, 0.1);
}

.wl-medication-card img {
  width: 100%;
  height: 128px;
  object-fit: contain;
}

.wl-medication-card__subhead {
  margin: 0;
  font-weight: 700;
}

.wl-medication-card__meta {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.95rem;
}

.wl-medication-card ul {
  display: grid;
  gap: 0.5rem;
}

.wl-medication-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.wl-medication-panel__footer p {
  margin: 0;
}

.wl-medication-panel__footer strong {
  color: var(--wl-text);
}

.wl-medication-panel__copy {
  max-width: 38ch;
  margin: 0 0 1.25rem;
  color: var(--wl-text-soft);
}

.wl-intake.is-hidden {
  display: none;
}

.wl-intake__shell {
  display: grid;
  gap: 1.5rem;
}

.wl-intake__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.wl-intake__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.wl-intake__summary,
.wl-intake__form-wrap {
  padding: 1.75rem;
}

.wl-intake__summary h3 {
  margin-top: 0;
}

.wl-process-list {
  display: grid;
  gap: 0.85rem;
}

.wl-intake__selection {
  margin-top: 1.5rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--wl-radius-sm);
  background: rgba(255, 241, 234, 0.75);
}

.wl-intake__selection span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--wl-text-soft);
  font-size: 0.92rem;
}

.wl-status {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
}

.wl-status--error {
  color: #7f1d1d;
  background: #fee2e2;
  border-color: #fecaca;
}

.is-hidden {
  display: none;
}

.wl-form {
  display: grid;
  gap: 1rem;
}

.wl-form__grid {
  display: grid;
  gap: 1rem;
}

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

.wl-form__grid--three {
  grid-template-columns: minmax(0, 2fr) minmax(120px, 1fr) minmax(120px, 1fr);
}

.wl-field {
  display: grid;
  grid-template-rows: auto minmax(3.35rem, auto) minmax(1.4em, auto);
  gap: 0.45rem;
  align-content: start;
}

.wl-field span {
  font-size: 0.95rem;
  font-weight: 600;
}

.wl-field__hint {
  display: block;
  color: var(--wl-text-muted);
  font-size: 0.84rem;
  line-height: 1.4;
  min-height: 1.4em;
}

.wl-field__error {
  display: block;
  color: #b42318;
  font-size: 0.84rem;
  line-height: 1.4;
  min-height: 1.4em;
}

.wl-field input,
.wl-field select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--wl-text);
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.wl-field input:focus,
.wl-field select:focus {
  border-color: rgba(89, 184, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(89, 184, 255, 0.16);
}

.wl-field.is-invalid input,
.wl-field.is-invalid select,
.wl-field input[aria-invalid="true"],
.wl-field select[aria-invalid="true"] {
  border-color: rgba(217, 45, 32, 0.8);
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.12);
}

.wl-field input::placeholder {
  color: rgba(81, 97, 116, 0.7);
}

.wl-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 0.94rem;
  color: var(--wl-text-soft);
}

.wl-consent input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
}

.wl-consent a {
  color: var(--wl-cool);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

.wl-form__submit {
  width: 100%;
}

.wl-faq {
  display: grid;
  gap: 0.9rem;
}

.wl-faq__item {
  padding: 0 1.35rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--wl-radius-sm);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--wl-shadow-sm);
}

.wl-faq__item summary {
  position: relative;
  padding: 1.3rem 2.2rem 1.3rem 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--wl-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
}

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

.wl-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--wl-accent);
  font-size: 1.6rem;
  line-height: 1;
}

.wl-faq__item[open] summary::after {
  content: "−";
}

.wl-faq__item p {
  margin: 0 0 1.25rem;
  padding-top: 0.15rem;
}

.wl-footer {
  padding: 2.75rem 0 5rem;
}

.wl-footer__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.35rem 2.5rem;
  border-radius: var(--wl-radius-lg);
  background: linear-gradient(135deg, #005e95 0%, #0b7dc3 58%, #0a69af 100%);
  color: #fff;
  box-shadow: var(--wl-shadow-lg);
}

.wl-footer__inner::before {
  content: "";
  position: absolute;
  inset: auto auto -4.5rem -3rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(34, 197, 255, 0.3);
  filter: blur(10px);
}

.wl-footer__inner::after {
  content: "";
  position: absolute;
  inset: -5rem -3rem auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(255, 67, 170, 0.22);
  filter: blur(14px);
}

.wl-footer__copy,
.wl-footer__inner .wl-btn {
  position: relative;
  z-index: 1;
}

.wl-footer__copy {
  max-width: 38rem;
}

.wl-footer__inner .wl-section__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.wl-footer__inner h2 {
  color: #fff;
  max-width: 13ch;
}

.wl-footer .wl-footer__note {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.84);
}

.wl-footer__inner .wl-btn {
  min-width: 11rem;
}

@keyframes wl-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .wl-medication-panel {
    order: -1;
  }

  .wl-hero__grid,
  .wl-pricing,
  .wl-intake__grid {
    grid-template-columns: 1fr;
  }

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

  .wl-hero__content {
    order: 1;
    max-width: none;
  }

  .wl-hero__media {
    order: 2;
    justify-self: center;
    max-width: min(100%, 32rem);
    margin: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-behavior: auto;
  }

  .wl-header {
    padding: 0.95rem 0;
    background: rgba(246, 251, 255, 0.96);
    backdrop-filter: none;
  }

  .wl-header--scrolled {
    backdrop-filter: none;
  }

  .wl-header__inner {
    gap: 0.75rem;
  }

  .wl-brand {
    gap: 0.65rem;
    font-size: 1rem;
  }

  .wl-brand__mark {
    width: 2.3rem;
    height: 2.3rem;
  }

  .wl-header__cta {
    min-height: 2.85rem;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
  }

  .wl-hero {
    padding-top: 6.9rem;
  }

  .wl-hero__backdrop {
    filter: none;
  }

  .wl-form__grid--two,
  .wl-form__grid--three,
  .wl-footer__inner,
  .wl-intake__header,
  .wl-medication-panel__footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .wl-trustbar {
    grid-template-columns: 1fr;
  }

  .wl-medication-card {
    grid-template-columns: 112px minmax(0, 1fr);
    text-align: left;
    padding: 1rem 1rem 1rem 2.85rem;
  }

  .wl-medication-card__check {
    top: 1rem;
    left: 1rem;
    transform: none;
  }

  .wl-medication-card img {
    height: 110px;
  }

  .wl-medication-panel__footer {
    text-align: left;
  }

  .wl-intake__form-wrap {
    order: -1;
  }

  .wl-intake__summary {
    order: 1;
    padding-top: 1.35rem;
  }

  .wl-process-list {
    gap: 0.7rem;
  }

  .wl-footer__inner {
    padding: 2rem 1.4rem;
  }

  .wl-footer__inner .wl-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .wl-shell {
    width: min(calc(100% - 1.25rem), var(--wl-shell));
  }

  .wl-section,
  .wl-footer {
    padding-block: 3.5rem;
  }

  .wl-plan-card,
  .wl-medication-panel,
  .wl-intake__summary,
  .wl-intake__form-wrap {
    padding: 1.2rem;
  }

  .wl-steps {
    grid-template-columns: 1fr;
  }

  .wl-btn {
    width: 100%;
  }

  .wl-header__cta {
    min-height: 2.65rem;
    width: auto;
    padding-inline: 0.95rem;
  }

  .wl-hero__actions {
    flex-direction: column;
  }

  .wl-hero__media {
    max-width: 100%;
  }

  .wl-hero__image {
    aspect-ratio: 4 / 4.9;
  }

  .wl-hero__backdrop {
    inset: 1rem -0.65rem -0.65rem 1rem;
  }

  .wl-medication-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.95rem 0.95rem 0.95rem 2.75rem;
  }

  .wl-medication-card img {
    height: 96px;
  }

  .wl-medication-panel__copy,
  .wl-field__hint {
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .wl-header__cta {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
