:root {
  --bg: #fcfcf8;
  --surface: #ffffff;
  --surface-soft: #eff5fa;
  --text: #221e1b;
  --muted: #5f6368;
  --line: #d7e0e7;
  --primary: #0166ac;
  --primary-dark: #084c7b;
  --primary-deep: #0b3a63;
  --accent: #e89239;
  --accent-dark: #cf7822;
  --success: #00a33d;
  --shadow: 0 20px 60px rgba(10, 48, 87, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1740px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
  color: var(--text);
  font-family: "Red Hat Text", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--primary-deep);
  box-shadow: var(--shadow);
  transition: top 140ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #0a1b28 0%, #111a26 100%);
  color: #cee8ff;
  position: sticky;
  top: 0;
  z-index: 40;
}

.promo-bar__copy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.promo-bar__eyebrow {
  color: #ffffff;
}

.promo-timer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.promo-timer__unit {
  min-width: 56px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.promo-timer__unit span {
  display: block;
  color: #f0f0e4;
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.promo-timer__unit small {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-cta {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta__inner {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(1, 102, 172, 0.12);
  box-shadow: 0 16px 34px rgba(6, 47, 88, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sticky-cta__brand {
  margin: 0 0 2px;
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sticky-cta__text {
  margin: 0;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: #111111;
  box-shadow: 0 10px 24px rgba(232, 146, 57, 0.25);
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--ghost {
  background: #ffffff;
  color: var(--primary-deep);
}

.button--full {
  width: 100%;
}

.hero {
  padding: 56px 0 70px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 855px) minmax(420px, 1fr);
  gap: 26px;
  align-items: start;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__badge {
  align-self: flex-start;
  padding: 8px 18px;
  border: 1px solid rgba(31, 25, 21, 0.32);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__title,
.section-heading h2 {
  margin: 0;
  font-family: "Lora", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 500;
}

.hero__title span,
.section-heading h2 span {
  color: var(--primary);
  font-weight: 600;
}

.hero__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__price-label {
  margin: 0;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.hero__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 0;
  font-weight: 700;
}

.hero__price strong {
  font-size: 3.4rem;
  line-height: 0.95;
}

.hero__price span {
  font-size: 2rem;
  line-height: 1;
}

.hero__trust-strip {
  width: min(213px, 100%);
  border-radius: 10px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

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

.hero__rating strong {
  font-family: "Lora", serif;
  font-size: 3rem;
  font-weight: 500;
}

.hero__rating div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__rating img {
  width: 120px;
}

.hero__rating span {
  font-size: 1.05rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.info-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  min-height: 170px;
  padding: 18px 18px 20px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.info-card--dark {
  background: #0d1217;
  color: #ffffff;
}

.info-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 12px;
}

.info-card h3,
.plan-card__body h3,
.science-card h3 {
  margin: 0 0 8px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.info-card p,
.plan-card__body p,
.science-card p,
.review-card p,
.faq-item__content p,
.footer__disclaimer,
.feature-list,
.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-card--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.hero__right {
  display: flex;
  justify-content: stretch;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 720px;
  padding: 28px;
  border-radius: 36px;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.35), transparent 26%),
    linear-gradient(180deg, #38a6f0 0%, #0c6dac 100%);
  overflow: hidden;
}

.hero-visual__chip {
  position: absolute;
  right: 24px;
  top: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual img {
  position: absolute;
  inset: 56px 22px 24px;
  width: calc(100% - 44px);
  height: calc(100% - 80px);
  object-fit: contain;
  object-position: center;
}

.promo-bar {
  display: grid;
  grid-template-columns: 215px 1fr 215px;
  align-items: center;
  min-height: 48px;
  padding: 0 32px;
  gap: 0;
  background: #000000;
  color: #cee8ff;
}

.promo-bar__spacer {
  width: 215px;
  height: 1px;
}

.promo-bar__copy {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 22.4px;
  white-space: nowrap;
}

.promo-bar__eyebrow,
.promo-bar__strong {
  font-weight: 700;
}

.promo-bar__soft {
  font-weight: 400;
}

.promo-timer {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 215px;
}

.promo-timer__unit {
  min-width: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.promo-timer__unit span {
  color: #f0f0e4;
  font-family: "Red Hat Text", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
}

.promo-timer__unit small {
  margin-top: 2px;
  color: #f0f0e4;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 21px;
}

.site-header {
  position: sticky;
  top: 48px;
  z-index: 35;
  backdrop-filter: blur(2.5px);
  background: rgba(255, 255, 255, 0.5);
}

.site-header__inner {
  width: min(1736px, calc(100vw - 96px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand {
  display: inline-flex;
  align-items: flex-start;
  color: #221e1b;
  text-decoration: none;
}

.site-header__brand-trim {
  font-family: "Lora", serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.site-header__brand-rx {
  margin-left: 2px;
  font-family: "Lora", serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.site-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 99px;
  height: 40px;
  padding: 0 15px;
  border-radius: 20px;
  background: #221e1b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.plans {
  padding: 39px 0 100px;
  background: #eff5fa;
  border-radius: 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.section-heading--left {
  align-items: flex-start;
  text-align: left;
}

.section-heading--light h2,
.section-heading--light p {
  color: #f6fbff;
}

.section-heading p {
  max-width: 860px;
  font-size: 1.05rem;
}

.plans__inner {
  width: min(1525px, calc(100vw - 40px));
  margin: 0 auto;
}

.section-heading--plans {
  gap: 0;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.section-heading--plans h2 {
  font-family: "Lora", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
}

.section-heading--plans p {
  margin-top: 1px;
  max-width: none;
  font-size: 18px;
  line-height: 30px;
  color: #221e1b;
}

.plans__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.plan-card {
  display: flex;
  align-items: stretch;
  gap: 10px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 10px 14px rgba(0, 0, 0, 0.1);
}

.plan-card--left {
  width: 723px;
}

.plan-card--right {
  width: 761px;
}

.plan-card__media {
  flex: none;
  width: 384px;
  height: 384px;
  border-radius: 19px;
  overflow: hidden;
}

.plan-card--right .plan-card__media {
  width: 388px;
}

.plan-card__media--blue {
  background: linear-gradient(180deg, #095e99 0%, #154c7b 100%);
}

.plan-card__media--mint {
  background: linear-gradient(180deg, #d5f0e4 0%, #dceae5 100%);
}

.plan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card__body {
  width: 329px;
  height: 384px;
  padding: 32px 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card__body--wide {
  padding-left: 32px;
  padding-right: 32px;
}

.plan-card__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card__list,
.feature-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card__list li,
.feature-list li {
  position: relative;
  padding-left: 16.94px;
  color: #221e1b;
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
}

.plan-card__list li::before,
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #221e1b;
  font-size: 13px;
  line-height: 24px;
}

.plan-card__note {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: #221e1b;
}

.plan-card__pill {
  align-self: flex-start;
  padding: 4px 8px;
  border: 1px solid var(--success);
  border-radius: 999px;
  color: var(--success);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.plan-card__button {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  min-height: 40px;
  border-radius: 100px;
  background: #e89239;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}

.feature-matrix {
  width: 733px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15.27px 19.29px;
}

.feature-card {
  width: 356.855px;
  border-radius: 4.822px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8.037px 12.056px -2.411px rgba(0, 0, 0, 0.1), 0 3.215px 4.822px -3.215px rgba(0, 0, 0, 0.1);
}

.feature-card--tall {
  min-height: 186.465px;
}

.feature-card__included {
  height: 16.075px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.215px;
  background: #0166ac;
  color: #ffffff;
  font-size: 8.037px;
  font-weight: 400;
  line-height: 12.056px;
}

.feature-card__included img {
  width: 9.645px;
  height: 9.645px;
}

.feature-card__body {
  display: grid;
  align-items: center;
}

.feature-card__body--dark {
  grid-template-columns: 100px 1fr;
  min-height: 137.438px;
  padding-right: 12.86px;
  background: #000000;
}

.feature-card__body--light {
  grid-template-columns: 100px 1fr;
  min-height: 122.166px;
  padding-right: 12.86px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(43, 69, 197, 0.05) 100%);
}

.feature-card--tall .feature-card__body--light {
  min-height: 170.39px;
}

.feature-card__art {
  justify-self: center;
}

.feature-card__art--bottle {
  width: 86px;
  height: 86px;
  border-radius: 6.817px;
}

.feature-card__art--doctor {
  width: 100px;
  height: 122px;
  object-fit: cover;
}

.feature-card__art--truck {
  width: 95px;
  height: 116px;
  object-fit: contain;
}

.feature-card__art--badge {
  width: 103px;
  height: 103px;
  object-fit: contain;
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 6.43px;
  padding: 12.86px 12.86px 12.86px 0;
}

.feature-card__content h3,
.feature-card__heading-row-title {
  margin: 0;
  color: #0166ac;
  font-family: "Red Hat Text", sans-serif;
  font-size: 17.682px;
  font-weight: 500;
  line-height: 25.719px;
  letter-spacing: -0.1929px;
}

.feature-card__body--dark .feature-card__content h3 {
  color: #ffffff;
}

.feature-card__heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.feature-card__price-off {
  margin: 0;
  color: #000000;
  font-family: "Helvetica Neue", "Red Hat Text", sans-serif;
  font-size: 14.467px;
  font-weight: 500;
  line-height: 19.289px;
  letter-spacing: -0.1447px;
  white-space: nowrap;
}

.feature-card__price-off span {
  color: #b23c73;
  text-decoration: line-through;
}

.feature-card__line {
  display: flex;
  align-items: flex-start;
  gap: 9.645px;
}

.feature-card__line img {
  flex: none;
  width: 12.86px;
  height: 12.86px;
  margin-top: 2px;
}

.feature-card__line p {
  margin: 0;
  color: #374151;
  font-family: "Inter", "Red Hat Text", sans-serif;
  font-size: 11.252px;
  font-weight: 400;
  line-height: 16.075px;
}

.feature-card__line--light p {
  color: #ffffff;
}

.feature-card__line--top {
  margin-top: 2px;
}

.feature-card__line strong {
  color: #000000;
  font-family: "Red Hat Text", sans-serif;
  font-weight: 600;
  letter-spacing: -0.2009px;
}

.feature-note {
  margin: 0;
  padding: 0 0 32px;
  color: #031a30;
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
}

.logo-wall {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.logo-wall__row {
  display: flex;
  align-items: center;
  gap: 31.776px;
  flex-wrap: wrap;
}

.logo-wall__row--bottom {
  gap: 32px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dots__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(1, 102, 172, 0.2);
}

.dots__dot--active {
  background: var(--primary);
}

.performance {
  padding: 40px 0;
  background: #ffffff;
}

.performance__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 858px));
  gap: 20px;
  align-items: start;
}

.performance__visual {
  width: 858px;
}

.performance__visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 858 / 860;
  border-radius: 20px;
  overflow: hidden;
}

.performance__background {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
}

.performance__background-shade {
  position: absolute;
  inset: 0;
  background: rgba(31, 25, 21, 0.16);
  z-index: 1;
}

.performance__background-image {
  position: absolute;
  top: 0;
  left: -7.54%;
  width: 233%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.performance__chart-mask {
  position: absolute;
  left: 2.447%;
  top: 50%;
  width: 46.52%;
  height: 46.83%;
  border-radius: 13.704px;
  overflow: hidden;
  -webkit-mask-image: url("https://www.figma.com/api/mcp/asset/4bc7d90b-8bb0-46c0-8b28-873106c27ae6");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("https://www.figma.com/api/mcp/asset/4bc7d90b-8bb0-46c0-8b28-873106c27ae6");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.performance__chart-image {
  position: absolute;
  left: -147.3%;
  top: -11.49%;
  width: 289.17%;
  height: auto;
  max-width: none;
  object-fit: cover;
}

.performance__bottle {
  position: absolute;
  left: 37.38%;
  top: 53.21%;
  width: 26.25%;
  height: auto;
  border-radius: 8.342px;
  filter: drop-shadow(0 3.312px 19.874px rgba(0, 0, 0, 0.25));
}

.performance__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 858px;
}

.performance__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.performance__title {
  margin: 0;
  color: #221e1b;
  font-family: "Lora", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 60px;
}

.performance__title span {
  display: block;
  color: #1d6ead;
}

.performance__summary {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 648px;
}

.performance__summary p {
  flex: 1 1 auto;
  margin: 0;
  color: #221e1b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.performance__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  height: 60px;
  padding: 20px 40px;
  border-radius: 50px;
  background: #e89239;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.performance-stat {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  min-height: 168px;
  padding: 32px 60px;
  border-radius: 16px;
}

.performance-stat--light {
  background: #dbe9f6;
}

.performance-stat--blue {
  background: #1d6ead;
}

.performance-stat--dark {
  background: #000000;
}

.performance-stat__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.performance-stat__metric strong {
  display: block;
  margin: 0;
  font-family: "Red Hat Text", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -0.54px;
}

.performance-stat__metric span {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.performance-stat--light .performance-stat__metric strong,
.performance-stat--light .performance-stat__metric span,
.performance-stat--light p {
  color: #0166ac;
}

.performance-stat--blue .performance-stat__metric strong,
.performance-stat--blue .performance-stat__metric span,
.performance-stat--blue p,
.performance-stat--dark .performance-stat__metric strong,
.performance-stat--dark .performance-stat__metric span,
.performance-stat--dark p {
  color: #fefefe;
}

.performance-stat p {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
}

.performance__fineprint {
  margin: 0;
  color: #7d8fa0;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.stories.section-shell {
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #eff5fa;
  overflow: hidden;
}

.stories__heading {
  width: min(1740px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.6fr) minmax(180px, 0.7fr);
  align-items: start;
}

.stories__eyebrow,
.stories__heading-spacer {
  justify-self: center;
}

.stories__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 17px 9px;
  border: 1px solid rgba(31, 25, 21, 0.32);
  border-radius: 24px;
  color: #0166ac;
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 15.96px;
  text-transform: uppercase;
}

.stories__title {
  margin: 0;
  max-width: 860px;
  justify-self: center;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  color: #221e1b;
}

.stories__title span {
  color: #0166ac;
}

.stories__results-shell {
  width: 100%;
  margin-top: 40px;
}

.stories__results-viewport {
  width: min(1740px, calc(100vw - 40px));
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  background: #f5f8f9;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stories__results-viewport::-webkit-scrollbar,
.testimonials__viewport::-webkit-scrollbar {
  display: none;
}

.stories__results-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
  margin-left: -74px;
  padding: 40px 0;
}

.result-card {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  background: #fefefe;
  scroll-snap-align: start;
}

.result-card__image-wrap {
  height: 244px;
  overflow: hidden;
}

.result-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center center);
}

.result-card__meta {
  padding: 12px 16px;
  text-align: center;
}

.result-card__duration,
.result-card__range {
  margin: 0;
}

.result-card__duration {
  color: #949697;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.result-card__range {
  color: #221e1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.result-card__chip {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 69px;
  padding: 5px 10px;
  border-radius: 88px;
  background: #406a90;
  color: #fefefe;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  white-space: nowrap;
}

.testimonials {
  width: min(1080px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 100px 0;
  background: #ffffff;
}

.testimonials__carousel {
  position: relative;
}

.testimonials__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials__track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #221e1b;
  scroll-snap-align: start;
}

.testimonial-card__stars {
  width: 92px;
  height: 16px;
  margin-bottom: 10px;
}

.testimonial-card__title {
  margin: 0;
  color: #221e1b;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.testimonial-card__body {
  margin: 0;
  color: #221e1b;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  margin-top: 12px;
  border-radius: 40px;
  object-fit: cover;
}

.testimonial-card__name {
  margin: 0;
  color: #221e1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.testimonial-card__verified {
  width: 100px;
  height: 30px;
}

.testimonials__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  pointer-events: none;
}

.testimonials__control {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 140ms ease, transform 140ms ease;
}

.testimonials__control:hover {
  transform: translateY(-1px);
}

.testimonials__control.is-hidden,
.testimonials__control:disabled {
  opacity: 0;
  pointer-events: none;
}

.testimonials__control img {
  width: 40px;
  height: 40px;
}

.testimonials__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin-top: 30px;
  padding: 20px 40px;
  border-radius: 50px;
  background: #e89239;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: transform 140ms ease, background-color 140ms ease;
}

.testimonials__cta:hover {
  transform: translateY(-1px);
  background: #cf7822;
}

.evidence {
  padding: 40px 0 74px;
  background: linear-gradient(180deg, #0166ac 0%, #001c30 100%);
}

.evidence__inner {
  width: min(1736px, calc(100vw - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.evidence__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.evidence__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 17px 9px;
  border: 1px solid rgba(255, 253, 246, 0.32);
  border-radius: 24px;
  color: #f0f0e4;
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 15.96px;
  text-transform: uppercase;
}

.evidence__subhead,
.evidence__title {
  margin: 0;
  color: #f0f0e4;
}

.evidence__subhead {
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
}

.evidence__title {
  font-family: "Lora", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.04em;
}

.evidence__visuals {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  justify-items: center;
}

.evidence__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.evidence__visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.evidence__visual--intake img {
  width: min(201px, 100%);
}

.evidence__visual--doctor img {
  width: min(247px, 100%);
}

.evidence__visual--bottle img {
  width: min(235px, 100%);
}

.evidence__steps {
  width: min(1014px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.evidence-step {
  display: grid;
  grid-template-columns: 60.862px 1fr;
  gap: 20px;
  align-items: start;
  min-height: 195px;
  padding: 20px 0;
  border-radius: 20px;
}

.evidence-step__number {
  width: 60.862px;
  height: 60.862px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0166ac;
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 24px;
}

.evidence-step__content {
  padding-top: 10px;
  color: #ffffff;
}

.evidence-step__content h3,
.evidence-step__content p {
  margin: 0;
}

.evidence-step__content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.evidence-step__content p {
  margin-top: 10px;
  max-width: 220px;
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
}

.evidence__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.evidence__footer h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.04em;
  text-align: center;
}

.evidence__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #e89239;
  color: #000000;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 24px;
  text-transform: uppercase;
  transition: transform 140ms ease, background-color 140ms ease;
}

.evidence__cta:hover {
  transform: translateY(-1px);
  background: #cf7822;
}

.gold {
  padding: 41px 0 0;
  background: #ffffff;
}

.gold__inner {
  width: min(1728px, calc(100vw - 40px));
  margin: 0 auto;
}

.gold__hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  min-height: 606px;
  align-items: center;
}

.gold__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
}

.gold__visual img {
  width: min(542px, 100%);
  height: auto;
}

.gold__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 24px;
}

.gold__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 17px 9px;
  border: 1px solid rgba(31, 25, 21, 0.32);
  border-radius: 24px;
  color: #0166ac;
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 15.96px;
  text-transform: uppercase;
}

.gold__title,
.gold__label {
  margin: 0;
  color: #000000;
}

.gold__title {
  max-width: 864px;
  font-family: "Lora", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.04em;
}

.gold__label {
  padding-top: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: 24px;
}

.gold__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
}

.gold__list li {
  position: relative;
  padding-left: 56px;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.gold__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -4px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0166ac;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.gold__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 191px;
  min-height: 48px;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 58px;
  background: #e89239;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 24px;
  text-transform: uppercase;
  transition: transform 140ms ease, background-color 140ms ease;
}

.gold__cta:hover {
  transform: translateY(-1px);
  background: #cf7822;
}

.gold__benefits {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: 40px 16px;
}

.gold-benefit {
  min-height: 192px;
  padding: 32px 16px;
  border-radius: 12px;
  background: rgba(1, 102, 172, 0.05);
}

.gold-benefit img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.gold-benefit p {
  margin: 0;
  color: #010406;
  font-family: "Red Hat Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.gold__comparison {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 60px 100px;
}

.gold__comparison h2 {
  margin: 0;
  color: #221e1b;
  font-family: "Lora", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

.provider-table {
  margin-top: 40px;
  border-radius: 32px;
  overflow: hidden;
  background: #f3f6f8;
  border: 1px solid #e9ecef;
}

.provider-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.provider-table th,
.provider-table td {
  padding: 16px;
  border: 1px solid #e9ecef;
  text-align: center;
  vertical-align: middle;
  background: #f3f6f8;
}

.provider-table thead th {
  padding: 16px;
  height: 56px;
  font-weight: 400;
}

.provider-table thead th:first-child {
  height: 32px;
  background: #f3f6f8;
}

.provider-table th[scope="row"] {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.provider-table__trimrx {
  color: #406a90;
  font-family: "Lora", serif;
  font-size: 25px;
  line-height: 24px;
  font-weight: 400;
}

.provider-table thead img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.provider-table__cell {
  min-height: 100px;
}

.provider-table__cell p {
  margin: 8px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.provider-table__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
}

.provider-table__icon--check {
  color: #79c80f;
}

.provider-table__icon--cross {
  color: #ff5c55;
}

.faq {
  padding: 18px 0 80px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.faq-item {
  border: 1px solid #e6ebef;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

.faq-item__trigger {
  position: relative;
  width: 100%;
  padding: 18px 56px 18px 20px;
  border: 0;
  background: #ffffff;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
}

.faq-item__trigger::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--primary);
}

.faq-item.is-open .faq-item__trigger::after {
  content: "-";
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 180ms ease;
}

.faq-item__content p {
  padding: 0 20px 18px;
}

.footer {
  background: #f2f5f7;
  padding: 34px 0 96px;
}

.footer__top,
.footer__bottom {
  display: grid;
  gap: 24px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}

.footer__links a {
  font-size: 0.95rem;
  color: var(--muted);
}

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

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #ffffff;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer__badges img {
  width: 88px;
  height: auto;
  border-radius: 12px;
}

.footer__copyright {
  margin: 0;
  text-align: center;
  font-weight: 500;
}

.footer__disclaimer {
  max-width: 980px;
  margin: 0 auto;
  font-size: 0.82rem;
  text-align: center;
}

.floating-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(1, 102, 172, 0.12);
  box-shadow: 0 16px 32px rgba(3, 28, 49, 0.16);
  backdrop-filter: blur(14px);
}

.floating-cta > span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  background: var(--accent);
  color: #111111;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-cta small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.floating-cta i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.modal.hidden {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 31, 0.55);
  backdrop-filter: blur(8px);
}

.modal__card {
  position: relative;
  width: min(940px, calc(100vw - 32px));
  margin: min(10vh, 80px) auto 0;
  padding: 20px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(8, 22, 36, 0.28);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #0f1117;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal__content {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.modal__copy {
  padding: 20px;
}

.modal__eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.modal__copy h2 {
  margin: 0 0 12px;
  font-family: "Lora", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.modal__copy p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.modal__visual {
  border-radius: 24px;
  background: linear-gradient(180deg, #2f9de9 0%, #0d6ba7 100%);
  min-height: 440px;
  overflow: hidden;
}

.modal__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1200px) {
  .hero__content,
  .standard {
    grid-template-columns: 1fr;
  }

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

  .performance__visual,
  .performance__content {
    width: 100%;
    max-width: 858px;
    margin: 0 auto;
  }

  .performance__summary {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .plan-card {
    grid-template-columns: 1fr;
  }

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

  .stories__heading {
    grid-template-columns: minmax(160px, 0.6fr) minmax(0, 1.8fr) minmax(160px, 0.6fr);
  }

  .stories__title {
    font-size: 42px;
    line-height: 52px;
  }

  .evidence__inner,
  .gold__inner {
    width: min(100vw - 40px, 100%);
  }

  .evidence__title,
  .evidence__footer h2 {
    font-size: 42px;
    line-height: 46px;
  }

  .evidence__subhead {
    font-size: 22px;
    line-height: 28px;
  }

  .evidence__visuals {
    gap: 24px;
  }

  .evidence__steps {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .evidence-step__content p {
    max-width: none;
  }

  .evidence__footer {
    flex-direction: column;
  }

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

  .gold__visual {
    min-height: auto;
  }

  .gold__content {
    max-width: 864px;
    margin: 0 auto;
  }

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

  .gold__comparison {
    padding: 0 0 80px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 20px, 100%);
  }

  .promo-bar {
    gap: 14px;
    padding: 12px;
  }

  .promo-bar__copy {
    font-size: 0.9rem;
  }

  .promo-timer {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .sticky-cta {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero__title,
  .section-heading h2 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero__price strong {
    font-size: 2.7rem;
  }

  .hero__price span,
  .hero__price-label {
    font-size: 1.6rem;
  }

  .hero-grid,
  .perks {
    grid-template-columns: 1fr 1fr;
  }

  .info-card {
    grid-template-columns: 72px 1fr;
    padding: 16px;
  }

  .info-card img {
    width: 72px;
    height: 72px;
  }

  .hero-visual {
    min-height: 420px;
    padding: 18px;
  }

  .performance__title {
    font-size: 34px;
    line-height: 44px;
  }

  .performance__summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .performance__cta {
    width: 100%;
    justify-content: center;
  }

  .performance-stat {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: center;
  }

  .performance-stat p {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table table {
    min-width: 720px;
  }

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

  .modal__visual {
    min-height: 280px;
  }

  .floating-cta {
    display: flex;
  }

  .stories.section-shell {
    padding: 32px 0;
  }

  .stories__heading {
    width: min(100vw - 20px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .stories__eyebrow,
  .stories__heading-spacer {
    justify-self: center;
  }

  .stories__title {
    max-width: 100%;
    font-size: 34px;
    line-height: 42px;
  }

  .stories__results-viewport {
    width: min(100vw - 20px, 100%);
  }

  .stories__results-track {
    margin-left: 0;
    padding: 28px 0 24px;
  }

  .result-card {
    width: min(300px, calc(100vw - 44px));
  }

  .testimonials {
    width: min(100vw - 20px, 100%);
    padding: 60px 0 80px;
  }

  .testimonial-card {
    width: min(300px, calc(100vw - 44px));
    min-height: auto;
  }

  .testimonials__controls {
    display: none;
  }

  .testimonials__cta {
    width: 100%;
  }

  .evidence {
    padding: 32px 0 56px;
  }

  .evidence__title,
  .evidence__footer h2 {
    font-size: 34px;
    line-height: 38px;
  }

  .evidence__subhead {
    font-size: 18px;
    line-height: 24px;
  }

  .evidence__visuals {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .evidence__visual--intake img {
    width: min(201px, 70vw);
  }

  .evidence__visual--doctor img {
    width: min(247px, 64vw);
  }

  .evidence__visual--bottle img {
    width: min(235px, 56vw);
  }

  .evidence__steps {
    width: 100%;
  }

  .evidence-step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 10px 0;
  }

  .evidence-step__number {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .gold {
    padding-top: 32px;
  }

  .gold__title {
    font-size: 34px;
    line-height: 38px;
  }

  .gold__label {
    font-size: 24px;
    line-height: 24px;
  }

  .gold__list li {
    padding-left: 48px;
    font-size: 18px;
  }

  .gold__list li::before {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

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

  .gold__comparison h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .provider-table {
    overflow-x: auto;
  }

  .provider-table table {
    min-width: 1080px;
  }
}

@media (max-width: 560px) {
  .hero-grid,
  .perks {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .hero__rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero__rating strong {
    font-size: 2.4rem;
  }

  .performance__title {
    font-size: 28px;
    line-height: 36px;
  }

  .performance__summary p,
  .performance__fineprint {
    font-size: 14px;
    line-height: 20px;
  }

  .performance-stat__metric strong {
    font-size: 42px;
    line-height: 42px;
  }

  .performance-stat__metric span {
    font-size: 20px;
    line-height: 24px;
  }

  .promo-timer__unit {
    min-width: 48px;
  }

  .stories__title {
    font-size: 28px;
    line-height: 36px;
  }

  .stories__eyebrow {
    min-height: 36px;
    padding: 7px 14px 8px;
  }

  .testimonials__cta {
    padding: 18px 28px;
  }

  .evidence__title,
  .evidence__footer h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .evidence__subhead {
    font-size: 16px;
    line-height: 22px;
  }

  .evidence__footer {
    align-items: stretch;
  }

  .evidence__cta {
    width: 100%;
  }

  .gold__title {
    font-size: 28px;
    line-height: 32px;
  }

  .gold__label {
    font-size: 20px;
  }

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

  .gold-benefit {
    min-height: auto;
  }

  .gold__comparison h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .footer {
    padding-bottom: 120px;
  }
}

@media (max-width: 1400px) {
  .plans__cards {
    flex-direction: column;
  }
}

@media (max-width: 1200px) {
  .feature-matrix {
    width: 100%;
    max-width: 733px;
  }
}

@media (max-width: 860px) {
  .promo-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 10px 16px;
  }

  .promo-bar__spacer {
    display: none;
  }

  .promo-bar__copy {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .promo-timer {
    justify-self: center;
  }

  .site-header {
    display: none;
  }

  .feature-matrix {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .feature-card,
  .feature-card--tall {
    width: 100%;
    max-width: 356.855px;
  }

  .plans {
    padding: 32px 0 60px;
  }

  .section-heading--plans h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .section-heading--plans p {
    font-size: 16px;
    line-height: 24px;
  }

  .plan-card,
  .plan-card--left,
  .plan-card--right {
    width: 100%;
    max-width: 761px;
    flex-direction: column;
  }

  .plan-card__media,
  .plan-card--right .plan-card__media,
  .plan-card__body {
    width: 100%;
  }

  .plan-card__button {
    width: 100%;
  }
}
