/* =========================================================
   Persona — GLP-1 Advertorial Landing Page
   Faithful HTML/CSS conversion of the Figma design.
   ========================================================= */

/* ---- Fonts ----
   The design uses Satoshi (body/UI) and Suisse Screen (display).
   Satoshi is loaded from Fontshare (free). Suisse Screen is a paid
   foundry face with no free webfont host, so we fall back to a close
   geometric grotesque. Swap in the licensed @font-face if you have it. */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,1&display=swap');

:root {
  /* Palette — pulled directly from the Figma styles panel */
  --forest-900: #1b3813;
  /* Forest Green (buttons, banner, footer) */
  --forest-800: #1b3b13;
  /* Forest Green (body text)               */
  --plum: #781945;
  /* Deep Plum (accents, labels, stat chips)*/
  --lime: #d5fa99;
  /* Vibrant Lime (banner + chip text)      */
  --lime-30: #f2fde0;
  /* Lime 30% (strike-through card bg)      */
  --lilac: #d6aeff;
  /* Soft Lilac ("as seen in" bar)          */
  --cream: #f0f1e9;
  /* Airy Cream (review cards)              */
  --bkg-green: #d6dbcf;
  /* Bkg green                              */
  --green-muted: #71846a;
  /* Muted green                            */
  --orange: #e63d2a;
  /* Electric Orange                        */
  --white: #ffffff;

  --content: 1024px;
  /* main reading column width from Figma   */

  --font-body: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Suisse Screen', 'Satoshi', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--forest-800);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

p {
  margin: 0 0 12px;
}

p:last-child {
  margin-bottom: 0;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

/* Centered reading column reused by most sections */
.wrap {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------------------------------------------------------
   Promo banner
   --------------------------------------------------------- */
.promo {
  background: var(--forest-900);
  color: var(--lime);
  text-align: center;
  font-size: 16px;
  font-family: "Satoshi-Medium";
  padding: 8px 24px;
}

.promo a {
  color: inherit;
  text-decoration: none;
}

.promo .b {
  font-weight: 700;
  font-family: var(--Bold);
}

/* Vertical "Buy 2 Get 1 FREE" tab fixed to the right edge */
.savings-tab {
  position: fixed;
  top: 300px;
  right: 0;
  z-index: 40;
  background: var(--plum);
  color: var(--lime);
  border-radius: 8px 0 0 8px;
  width: 40px;
  padding: 18px 10px;
}

.savings-tab a {
  color: var(--lime) !important;
}
.savings-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  padding-top: 54px;
}

.hero h1 {
  font-family: var(--heading);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--forest-800);
  margin: 0 0 40px;
  text-align: center;
}

.hero-photo {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 30px;
}

/* "As seen in" lilac bar */
.seen-in {
  background: var(--lilac);
  border-radius: 20px;
  margin-top: 40px;
  padding: 22px 24px 26px;
  text-align: center;
}

.seen-in .eyebrow {
  color: var(--plum);
  font-weight: 700;
  font-family: var(--Bold);
  font-size: 16px;
  letter-spacing: .02em;
  margin: 0 0 14px;
}

.seen-in .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  color: var(--forest-900);
}

.seen-in .logos span {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  opacity: .85;
}

.logos_carousel_mbl,
.trios_carousel_mbl,
.reviews_carousel_mbl,
.chip_carousel_mbl {
  display: none;
}

/* ---------------------------------------------------------
   Generic prose block
   --------------------------------------------------------- */
.prose {
  font-size: 20px;
  line-height: 1.5;
  color: var(--forest-800);
}

.prose.tight p {
  margin-bottom: 12px;
}

.section {
  padding-block: 40px;
}

.section--sm {
  padding-block: 28px;
}

.lead-h {
  font-family: var(--Bold);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.kicker {
  font-weight: 700;
  font-family: var(--Bold);
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.subhead {
  font-family: var(--Bold);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
}

.divider {
  border: 0;
  border-top: 1px solid var(--forest-800);
  opacity: .25;
  margin: 0px auto;
  width: 100%;
  max-width: var(--content);
}

.fineprint {
  font-size: 14px;
  color: var(--forest-800);
  margin-top: 10px;
  margin-bottom: 40px !important;
}

/* ---------------------------------------------------------
   CTA buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 80px !important;
  padding: 18px 34px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--primary {
  background: var(--forest-900);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--lime);
  color: var(--forest-800);
}

.btn--outline {
  background: var(--white);
  color: var(--forest-900);
  border: 2px solid var(--forest-900);
}

.btn--outline:hover {
  background-color: var(--lime);
  color: var(--forest-800);
  border: 1px solid var(--lime);
}

.cta-row {
  margin: 40px 0 4px;
}

/* ---------------------------------------------------------
   "Built for someone else" strike-through card
   --------------------------------------------------------- */
.misfit {
  background: var(--lime-30);
  border-radius: 20px;
  padding: 10px 0px;
  margin: 8px 0 4px;
}

.misfit ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.misfit li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(120, 25, 69, .25);
  color: var(--plum);
  font-weight: 500;
  font-size: 20px;
  text-decoration-color: rgba(120, 25, 69, .55);
}

.misfit li:last-child {
  border-bottom: 0;
}

.misfit .x {
  flex: none;
  width: 18px;
  height: 18px;
  position: relative;
  text-decoration: none;
}

.misfit .x::before,
.misfit .x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--plum);
}

.misfit .x::before {
  transform: rotate(45deg);
}

.misfit .x::after {
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------
   Full-bleed feature photo inside the column
   --------------------------------------------------------- */
.feature-photo {
  width: 100%;
  height: 477px;
  object-fit: cover;
  border-radius: 30px;
  margin: 8px 0;
}

/* ---------------------------------------------------------
   Nutritionist testimonial trio (Karina / Zoe / Lori)
   --------------------------------------------------------- */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 8px;
}

.trio figure {
  margin: 0;
}

.trio .avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: var(--bkg-green);
}

.trio figcaption {
  color: var(--plum);
  font-weight: 700;
  font-size: 30px;
  margin-top: 14px;
}

/* ---------------------------------------------------------
   "How it works" 4-step grid
   --------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
  margin-top: 8px;
  margin-bottom: 50px;
}

.step__media {
  width: 100%;
  height: 216px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
  background: var(--bkg-green);
}

.step__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.step_flex {
  display: flex;
  gap: 20px;
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: var(--Bold);
  font-size: 30px;
  background: #F2FDE0;
  color: var(--forest-800);
}

.step p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}

/* ---------------------------------------------------------
   Quiz CTA band (button + supporting headline)
   --------------------------------------------------------- */
.quiz-band {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 40px 0 8px 0;
}

.quiz-band .headline {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 16px;
   font-family: var(--Bold);
}



/* ---------------------------------------------------------
   Review cards (3 across)
   --------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0;
}

.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.review-card .stars {
  height: 24px;
}

.review-card p {
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
  color: var(--forest-800);
}

/* Trustpilot social proof */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 36px 0 8px;
  color: var(--plum);
}

.social-proof .rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-proof .score {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -.02em;
}

.social-proof .stars-row {
  display: flex;
  gap: 4px;
}

.social-proof .stars-row svg {
  width: 24px;
  height: 24px;
}

.social-proof .tp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -.02em;
}

.social-proof .tp img {
  height: 34px;
}

/* ---------------------------------------------------------
   "What Persona builds your plan around" — image + checklist
   --------------------------------------------------------- */
.plan-around {
  display: grid;
  grid-template-columns: 431px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}

.plan-around .shot {
  width: 100%;
  height: 334px;
  object-fit: cover;
  border-radius: 20px;
}

.plan-around h2 {
  margin-top: 0;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
}

.checklist li img {
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 2px;
}

/* ---------------------------------------------------------
   Stat chips (plum pills with lime text)
   --------------------------------------------------------- */
.stats_new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 900px;
}

.chip_new {
    background: var(--plum);
  color: var(--lime);
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-family: var(--Bold);
    line-height: 1.2;
    display: flex;
      text-align: center;
    align-items: center;
    justify-content: center;
}

/* Bottom-left wide chip */
.stats_new .chip_new:nth-child(4) {
    grid-column: span 2;
}
.stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 8px 0 4px;
}

.stats_flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap;
}

.chip {
  background: var(--plum);
  color: var(--lime);
  font-family: var(--Bold);
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  /* Prevent stretching */
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  box-sizing: border-box;
}

.chip--big {
  font-size: 30px;
  line-height: 1.2;
}

.chip--label {
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}

.chip .star {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.star_new {
     width: 22px;
  height: 22px;
    margin: 0 2px;
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   Closing: nutritionist photo + reassurance + CTAs
   --------------------------------------------------------- */
.closing {
  display: grid;
  grid-template-columns: 435px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 8px;
}

.closing .photo {
  width: 100%;
  height: 412px;
  object-fit: cover;
  border-radius: 20px;
}

.closing .reassure {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.5;
  margin: 0 0 28px;
}

.closing .actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ---------------------------------------------------------
   Footer disclaimer
   --------------------------------------------------------- */
.footer {
  background: var(--forest-900);
  color: var(--cream);
  margin-top: 56px;
}

.footer .wrap {
  max-width: 1110px;
  padding-block: 30px 40px;
}

.footer p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 12px;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .hero h1 {
    font-size: 40px;
  }

  .steps,
  .plan-around,
  .closing {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quiz-band {
    flex-direction: column;
    gap: 20px;
  }

  .quiz-band img{
     transform: rotate(90deg);
     height:15px;
  }

  .plan-around .shot,
  .closing .photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .quiz-band .headline {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 32px;
    margin: 0 0 20px 0px;
  }

  .prose,
  .closing .reassure,
  .checklist li,
  .misfit li,
  .review-card p {
    font-size: 18px;
  }

  .lead-h,
  .quiz-band .headline,
  .kicker {
    font-size: 22px;
  }

  .closing .reassure {
    font-size: 22px;
  }

  .btn {
    font-size: 17px;
    padding: 16px 26px;
    width: 100%;
  }

  .feature-photo {
    height: 260px;
  }

  .hero-photo {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

@media only screen and (max-width:767px) {
   .cta-row.mbl_sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    margin: 0;
  }

  .cta-row.mbl_sticky .btn--primary {
    display: block;
    width: 100%;
    text-align: center;
  }

  .trio {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    padding-top: 30px;
  }

  .logos_carousel_mbl,
  .trios_carousel_mbl,
  .reviews_carousel_mbl,
  .chip_carousel_mbl {
    display: block;
  }

  .logos_carousel img {
    height: 40px;
  }

  .seen-in .logos,
  .trio,
  .reviews,
  .stats {
    display: none;
  }

  .stats_flex {
    flex-wrap: wrap;
  }

  .chip--big {
    font-size: 18px;
    padding: 8px 12px;
    text-align: center;
    height:70px;
  }

  .chip--label {
    font-size: 18px;
    padding: 8px 12px;
    height:70px;
  }

  .step p {
    font-size: 18px;
  }

  .step_flex {
    gap: 15px;
    justify-content: start;
    align-items: start;
  }

  .step__num {
    font-size: 22px;
  }

  .section {
    padding-block: 20px;
  }

  .cta-row {
    margin: 20px 0 0px;
  }

  .divider {
    margin: 10px auto;
  }

  .social-proof {
    margin: 20px 0px 0px 0px;
  }

  .social-proof .score {
    font-size: 22px;
  }

  .social-proof .tp img {
    height: 24px;
  }

  .social-proof .tp {
    font-size: 18px;
  }
  .footer {
    margin-top: 20px;
    padding-bottom: 40px;
  }
  .checklist li {
    padding: 6px 0;
  }
  .savings-tab span {
  font-size: 14px;
  }
  .savings-tab {
  padding: 18px 10px;
  }
  .checklist li img {
    width: 20px;
    height: 20px;
  }
  .stats_new{
     display:none;
  }
}

