:root {
  --ink: #282832;
  --muted: #5f5d68;
  --paper: #f7f7f7;
  --soft: #d0cfef;
  --deep: #2d2c33;
  --accent: #d0cfef;
  --white: #ffffff;
  --line: rgba(40, 40, 50, 0.12);
  --max: 1210px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px max(24px, calc((100vw - 1240px) / 2)) 18px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 52px;
  opacity: 0.65;
}

.brand-promos {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 18px;
}

.brand-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-promo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.brand-promo:nth-child(2) img {
  width: 26px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
  font-size: 17px;
  font-weight: 500;
}

.nav a:first-child {
  border-bottom: 2px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
}

.section {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
  min-height: 760px;
  padding-top: 70px;
}

.hero h1,
.intro h2,
.statement span,
.section-heading h2,
.quiz-copy h2,
.proof h2,
.steps h2,
.footer h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 470px;
  font-size: clamp(58px, 6.2vw, 90px);
}

.hero-copy {
  min-width: 0;
}

.hero h1 span {
  position: relative;
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  left: 3%;
  right: -3%;
  bottom: -0.08em;
  height: 10px;
  content: "";
  background: var(--soft);
  border-radius: 999px;
  transform: rotate(-6deg);
  z-index: -1;
}

.hero p,
.section-heading p,
.quiz-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 20px;
}

.hero p {
  margin: 42px 0 70px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  padding: 13px 30px;
  background: var(--soft);
  color: var(--ink);
  font: 800 13px/1 "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.button-soft {
  background: var(--soft);
}

.hero-art {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--paper);
}

.hero-art > img:not(.phone-float) {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
}

.phone-float {
  position: absolute;
  left: 9%;
  top: 30%;
  z-index: 2;
  width: 28%;
  max-height: 56%;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.16));
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  padding-top: 130px;
}

.image-stack {
  position: relative;
  width: min(72%, 380px);
  margin: 0 auto;
}

.image-stack img {
  position: relative;
  z-index: 2;
  aspect-ratio: 0.66;
  object-fit: cover;
}

.image-block {
  position: absolute;
  right: -25%;
  bottom: -14%;
  width: 100%;
  height: 88%;
  background: var(--soft);
}

.intro h2 {
  font-size: clamp(42px, 4vw, 70px);
  margin-bottom: 70px;
}

.intro p {
  max-width: 550px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.statement {
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 70px 0;
  background: var(--white);
}

.ticker {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.ticker-alt {
  margin-top: 18px;
  animation-direction: reverse;
}

.statement span {
  font-size: clamp(48px, 7.6vw, 128px);
  white-space: nowrap;
}

.ticker-alt span {
  color: var(--soft);
}

@keyframes marquee {
  to {
    transform: translateX(-33.333%);
  }
}

.section-heading {
  margin-bottom: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.quiz-copy h2,
.proof h2,
.steps h2,
.footer h2 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 82px);
}

.plans.section {
  padding-bottom: 18px;
}

.plan-types.section {
  position: relative;
  padding-top: 18px;
}

.section-anchor {
  position: absolute;
  top: -110px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.plan-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.plan-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 50px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan-type-card.is-featured {
  border: 2px solid var(--soft);
}

.plan-type-card .plan-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 30px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-type-photo {
  width: calc(100% + 52px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -50px -26px 28px;
  border-radius: 7px 7px 0 0;
  object-fit: cover;
  object-position: center;
}

.plan-type-card h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.05;
}

.plan-type-card > p {
  min-height: 88px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.plan-type-price {
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 20px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.plan-type-price strong {
  font-size: clamp(42px, 4.3vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.plan-type-price span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-type-includes {
  margin-bottom: 26px;
  padding: 22px;
  border-radius: 8px;
  background: var(--paper);
}

.plan-type-includes h4 {
  margin: 0 0 18px;
  font-size: 18px;
}

.plan-type-includes ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-type-includes li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.plan-type-includes li::before {
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 13px;
  height: 8px;
  content: "";
  border-bottom: 4px solid var(--deep);
  border-left: 4px solid var(--deep);
  transform: rotate(-45deg);
}

.plan-type-actions {
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.plan-option-group {
  display: grid;
  gap: 8px;
}

.plan-option-group p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.plan-type-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.plan-option-group-men .plan-type-cta {
  border: 2px solid var(--soft);
  background: var(--white);
  color: var(--deep);
}

.plan-disclaimers {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
}

.plan-disclaimers p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  max-width: 1120px;
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.plan-disclaimers span {
  color: var(--ink);
  font-weight: 800;
}

.quiz {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.quiz-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  font-weight: 800;
}

label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 600;
}

input {
  accent-color: var(--deep);
}

.quiz-result {
  display: block;
  min-height: 0;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 700;
}

.quiz-result.is-visible {
  min-height: 72px;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  min-height: 180px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--soft);
  font-family: "Anton", Impact, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.footer {
  padding: 90px 24px;
  color: var(--white);
  background: var(--deep);
  text-align: center;
}

.footer h2 {
  margin: 0 auto 30px;
}

.footer p {
  margin: 34px 0 20px;
  font-size: 18px;
  font-weight: 700;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--soft);
  font-weight: 800;
}

.mobile-plans-flow {
  display: none;
}

.flow-shell {
  min-height: 100svh;
}

@media (max-width: 980px) {
  .site-header {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    gap: 10px;
  }

  .brand-promos {
    margin-left: 14px;
  }

  .brand-promo {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 82px;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(280px, calc(100vw - 32px));
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .nav.is-open {
    display: flex;
  }

  .section {
    width: calc(100% - 32px);
    max-width: var(--max);
    padding: 70px 0;
  }

  .hero,
  .intro,
  .quiz,
  .plan-type-grid,
  .testimonials,
  .steps ol {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
    min-height: 0;
    padding-top: 42px;
  }

  .hero-art {
    min-height: 560px;
  }

  .hero-art > img:not(.phone-float) {
    inset: 0;
    width: 100%;
    object-position: 58% 42%;
  }

  .phone-float {
    left: 7%;
    top: 32%;
    width: 30%;
  }

  .intro {
    gap: 70px;
  }

  .intro-copy {
    order: -1;
  }

  .plan-type-card > p {
    min-height: 0;
  }

  .plan-type-card.is-featured {
    margin-top: 18px;
  }

  .plan-type-card-complete {
    order: 1;
  }

  .plan-type-card-nutrition {
    order: 2;
  }

  .plan-type-card-training {
    order: 3;
  }
}

@media (max-width: 640px) {
  .brand-promos {
    gap: 6px;
    margin-left: 10px;
  }

  .brand-promo {
    gap: 5px;
    min-height: 32px;
    padding: 0 7px;
    font-size: 9px;
    letter-spacing: 0.03em;
  }

  .brand-promo img {
    width: 17px;
    height: 17px;
  }

  .brand-promo:nth-child(2) img {
    width: 20px;
  }

  .hero-copy,
  .intro-copy,
  .quiz-copy,
  .section-heading {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .hero p,
  .intro p,
  .section-heading p,
  .quiz-copy p {
    max-width: calc(100vw - 48px);
  }

  .hero h1 {
    font-size: 38px;
    max-width: 342px;
    overflow-wrap: break-word;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero p {
    margin: 28px 0 34px;
    font-size: 17px;
  }

  .hero-art {
    min-height: 430px;
  }

  .hero-art > img:not(.phone-float) {
    inset: 0;
    width: 100%;
    object-position: 56% 42%;
  }

  .phone-float {
    left: 6%;
    top: 32%;
    width: 34%;
  }

  .intro h2 {
    margin-bottom: 34px;
  }

  .quiz-card {
    padding: 22px;
  }

  .statement {
    padding: 46px 0;
  }

  .plan-type-card {
    padding: 22px;
  }

  .plan-type-card.is-featured {
    padding-top: 38px;
  }

  .plan-type-photo {
    width: calc(100% + 44px);
    margin: -22px -22px 22px;
  }

  .plan-type-card.is-featured .plan-type-photo {
    margin-top: -38px;
  }

  .plan-type-includes {
    padding: 18px;
  }
}

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

  body {
    background: var(--paper);
  }

  .mobile-plans-flow {
    display: none;
  }

  body.has-social-funnel .site-header,
  body.has-social-funnel main > :not(.mobile-plans-flow),
  body.has-social-funnel .footer {
    display: none;
  }

  body.has-social-funnel .mobile-plans-flow {
    display: block;
  }

  .flow-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, 520px);
    min-height: 100svh;
    margin: 0 auto;
    padding: max(18px, env(safe-area-inset-top)) 24px calc(104px + env(safe-area-inset-bottom));
  }

  .flow-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
  }

  .flow-brand img {
    width: 42px;
    opacity: 0.62;
  }

  .flow-brand span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .flow-progress {
    flex: 0 0 auto;
    height: 7px;
    margin: 18px 0 0;
    overflow: hidden;
    border-radius: 0;
    background: rgba(40, 40, 50, 0.1);
  }

  .flow-progress span {
    display: block;
    width: 50%;
    height: 100%;
    background: var(--soft);
    transition: width 240ms ease;
  }

  .flow-screen {
    display: none;
    flex: 1;
    min-height: calc(100svh - 156px);
    padding-top: clamp(54px, 10svh, 96px);
  }

  .flow-screen.is-active {
    display: flex;
    flex-direction: column;
  }

  .flow-screen[data-flow-screen="gender"],
  .flow-screen[data-flow-screen="goal"] {
    padding-top: clamp(8px, 2svh, 18px);
  }

  .flow-results {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .flow-topline {
    min-height: 40px;
    margin-bottom: 8px;
  }

  .flow-back {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
  }

  .flow-back span {
    width: 12px;
    height: 12px;
    border-left: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: translateX(2px) rotate(45deg);
  }

  .flow-kicker {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .flow-question h1 {
    margin: 0;
    color: var(--ink);
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(46px, 13vw, 70px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.98;
    text-transform: uppercase;
  }

  .flow-screen[data-flow-screen="gender"] .flow-question h1,
  .flow-screen[data-flow-screen="goal"] .flow-question h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .flow-question > p:not(.flow-kicker) {
    margin: 18px 0 32px;
    color: var(--muted);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.45;
  }

  .flow-screen[data-flow-screen="gender"] .flow-question > p:not(.flow-kicker),
  .flow-screen[data-flow-screen="goal"] .flow-question > p:not(.flow-kicker) {
    margin: 14px 0 22px;
  }

  .flow-results .flow-question h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 11vw, 58px);
  }

  .flow-options {
    display: grid;
    gap: 14px;
  }

  .flow-option,
  .flow-plan-card {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    text-align: left;
  }

  .flow-option {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 14px;
    align-items: center;
    min-height: 98px;
    padding: 20px 18px;
    font-family: inherit;
  }

  .flow-screen[data-flow-screen="gender"] .flow-option,
  .flow-screen[data-flow-screen="goal"] .flow-option {
    min-height: 90px;
    padding: 16px 18px;
  }

  .option-mark {
    grid-row: 1 / span 2;
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(40, 40, 50, 0.18);
    border-radius: 50%;
    background: var(--paper);
  }

  .flow-option.is-selected .option-mark {
    border-color: var(--soft);
    background:
      radial-gradient(circle at 50% 50%, var(--deep) 0 39%, transparent 41%),
      var(--soft);
  }

  .flow-option > span:not(.option-mark),
  .flow-plan-card strong {
    display: block;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
  }

  .flow-option small,
  .flow-plan-card small,
  .flow-plan-hero span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
  }

  .flow-option.is-selected {
    border-color: var(--soft);
    background: var(--soft);
  }

  .flow-plan-hero {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .flow-plan-hero img {
    width: 78px;
    aspect-ratio: 1;
    border-radius: 5px;
    object-fit: cover;
  }

  .flow-plan-hero strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
  }

  .flow-plan-options {
    display: grid;
    gap: 14px;
  }

  .flow-plan-card {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 18px;
  }

  .plan-label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
  }

  .flow-plan-card.is-featured {
    margin-top: 14px;
    padding: 40px 16px 18px;
    border: 2px solid var(--soft);
    background: var(--white);
  }

  .mobile-plans-flow.show-annual-billing .flow-plan-card.is-featured {
    border-color: var(--soft);
  }

  .plan-badge {
    position: absolute;
    top: -17px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 4px;
    background: var(--soft);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .mobile-plans-flow.show-annual-billing .plan-badge {
    background: var(--soft);
    color: var(--ink);
  }

  .mobile-plans-flow.show-annual-billing .flow-plan-card.is-featured .plan-cta {
    background: var(--soft);
    color: var(--ink);
  }

  .flow-plan-card.is-featured strong {
    font-size: 35px;
  }

  .plan-price {
    display: grid;
    place-items: center;
    margin: 16px 0 14px;
    padding: 16px 12px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    text-align: center;
  }

  .flow-billing-picker {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 0;
    padding: 4px;
    border-radius: 8px;
    background: var(--paper);
  }

  .mobile-plans-flow.show-annual-billing .flow-billing-picker {
    display: grid;
  }

  .flow-billing-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font: 800 13px/1 "Plus Jakarta Sans", system-ui, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .flow-billing-option.is-selected {
    background: var(--soft);
    color: var(--ink);
  }

  .mobile-plans-flow.show-annual-billing .flow-billing-option.is-selected,
  .mobile-plans-flow.annual-billing-selected .flow-billing-option.is-selected {
    background: var(--soft);
    color: var(--ink);
  }

  .flow-billing-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
  }

  .flow-billing-option.is-selected span {
    background: var(--white);
    color: var(--ink);
  }

  .flow-plan-card:not(.is-featured) .plan-price {
    grid-template-columns: auto auto;
    place-items: baseline;
    justify-content: start;
    gap: 6px;
    margin: 14px 0 0;
    padding: 0;
    background: transparent;
    text-align: left;
  }

  .plan-price b {
    display: block;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
  }

  .flow-plan-card:not(.is-featured) .plan-price b {
    font-size: 24px;
  }

  .plan-price small {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
  }

  .flow-plan-card:not(.is-featured) .plan-price small {
    margin-top: 0;
    font-size: 13px;
  }

  .plan-includes-title {
    display: block;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
  }

  .plan-includes {
    display: grid;
    gap: 9px;
    padding: 14px;
    border-radius: 8px;
    background: var(--paper);
  }

  .plan-includes span {
    position: relative;
    display: block;
    padding-left: 26px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }

  .plan-includes span::before {
    position: absolute;
    left: 0;
    top: 0.22em;
    width: 12px;
    height: 7px;
    content: "";
    border-bottom: 3px solid var(--deep);
    border-left: 3px solid var(--deep);
    transform: rotate(-45deg);
  }

  .plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 14px;
    border-radius: 4px;
    background: var(--soft);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
  }

  .plan-reassurance {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }

  .flow-plan-card:not(.is-featured) {
    grid-template-columns: 1fr auto;
    gap: 0 14px;
    align-items: center;
  }

  .flow-plan-card:not(.is-featured) .plan-label,
  .flow-plan-card:not(.is-featured) strong,
  .flow-plan-card:not(.is-featured) small,
  .flow-plan-card:not(.is-featured) .plan-price {
    grid-column: 1;
  }

  .flow-plan-card:not(.is-featured) .plan-cta {
    grid-row: 1 / span 4;
    grid-column: 2;
    min-height: 42px;
    margin-top: 0;
    padding: 0 14px;
    background: var(--soft);
    color: var(--ink);
    letter-spacing: 0.06em;
  }

  .flow-results .flow-plan-card small,
  .flow-results .flow-plan-hero span {
    margin-top: 6px;
    font-size: 15px;
  }

  .flow-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 12px 24px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.98) 24%);
  }

  .flow-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 4px;
    background: var(--soft);
    color: var(--ink);
    font: 800 14px/1 "Plus Jakarta Sans", system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .flow-primary:disabled {
    cursor: not-allowed;
    opacity: 0.38;
  }

  .flow-actions.is-hidden {
    display: none;
  }
}
