/* ============================================================
   iWanna Gummies — Homepage v2
   Brand tokens · components · sections · responsive
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root{
  /* Brand */
  --teal:        #108474;
  --teal-700:    #0c6f62;
  --teal-800:    #0a5a50;
  --teal-04:     rgba(16,132,116,.04);
  --teal-08:     rgba(16,132,116,.08);
  --teal-12:     rgba(16,132,116,.12);
  --teal-18:     rgba(16,132,116,.18);
  --teal-30:     rgba(16,132,116,.30);

  /* Neutrals (warm) */
  --cream:       #FBF6EE;
  --cream-deep:  #F5EDDF;
  --sand:        #EDE3D2;
  --sand-deep:   #E2D4BC;
  --ink:         #1F2926;
  --ink-2:       #475550;
  --ink-3:       #75807B;
  --line:        rgba(31,41,38,.10);
  --line-strong: rgba(31,41,38,.18);

  /* Accents (limited) */
  --coral:       #E8836A;
  --coral-soft:  #F5C9BC;
  --butter:      #F4D58D;

  /* Status */
  --white:       #FFFFFF;
  --black:       #000000;

  /* Type */
  --f-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-sans:  "Assistant", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-7: 32px;  --s-8: 40px;
  --s-9: 56px;  --s-10: 72px; --s-11: 96px; --s-12: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Container */
  --max-w: 1320px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Shadow */
  --shadow-1: 0 1px 2px rgba(31,41,38,.04), 0 2px 8px rgba(31,41,38,.04);
  --shadow-2: 0 6px 24px rgba(31,41,38,.08);
  --shadow-3: 0 20px 60px rgba(31,41,38,.12);
}

/* ---------- RESET ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--f-sans);
  font-size:17px;
  line-height:1.55;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
img,svg{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer;padding:0}
ul,ol{margin:0;padding:0;list-style:none}
p{margin:0}
h1,h2,h3,h4,h5,h6{margin:0;font-family:var(--f-serif);font-weight:500;letter-spacing:-.01em;line-height:1.08;color:var(--ink)}
.italic{font-style:italic;font-feature-settings:"ss01" on;letter-spacing:-.02em}
em{font-style:italic}

/* ---------- TYPE SCALE ---------- */
.eyebrow{
  font-family:var(--f-sans);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11.5px;
  color:var(--teal);
}
.eyebrow--ink{color:var(--ink-2)}

.h-display{font-size:clamp(56px,8.4vw,128px); line-height:.95; letter-spacing:-.035em; font-weight:400}
.h-1{font-size:clamp(36px,4.6vw,68px); line-height:1.02; letter-spacing:-.025em}
.h-2{font-size:clamp(30px,3.4vw,52px); line-height:1.05; letter-spacing:-.02em}
.h-3{font-size:clamp(24px,2.4vw,36px); line-height:1.12; letter-spacing:-.015em}
.h-4{font-size:22px; line-height:1.25}
.lede{font-size:clamp(17px,1.4vw,20px); line-height:1.5; color:var(--ink-2); max-width:60ch}
.kicker{font-size:14px;color:var(--ink-3)}

/* ---------- LAYOUT ---------- */
.container{max-width:var(--max-w); margin-inline:auto; padding-inline:var(--gutter)}
.container--narrow{max-width:1080px}
section{position:relative}

/* ---------- BUTTONS / PILLS ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 24px;
  border-radius:var(--r-pill);
  font-weight:700;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{background:var(--ink); color:var(--cream)}
.btn--primary:hover{background:var(--teal)}
.btn--teal{background:var(--teal); color:var(--white)}
.btn--teal:hover{background:var(--teal-700)}
.btn--ghost{background:transparent; border:1.5px solid var(--ink); color:var(--ink)}
.btn--ghost:hover{background:var(--ink); color:var(--cream)}
.btn--cream-ghost{background:transparent; border:1.5px solid var(--ink); color:var(--ink)}
.btn--lg{padding:18px 32px; font-size:15px}
.btn--sm{padding:10px 18px; font-size:12.5px}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 16px;border-radius:var(--r-pill);
  font-size:12.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  background:var(--white);border:1px solid var(--line-strong);color:var(--ink);
  transition:all .2s var(--ease);
}
.pill[aria-pressed="true"], .pill.is-active{background:var(--teal); color:var(--white); border-color:var(--teal)}
.pill:hover{border-color:var(--ink)}

/* ---------- TOP BARS ---------- */
.trust-bar{
  background:var(--cream);
  color:var(--ink-2);
  font-size:12.5px;
  letter-spacing:.02em;
  border-bottom:1px solid var(--line);
}
.trust-bar__inner{display:flex;justify-content:center;align-items:center;gap:8px;padding:9px var(--gutter)}
.star{width:14px;height:14px;color:var(--teal)}

.announce-bar{
  background:var(--teal);
  color:var(--white);
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.announce-bar__inner{
  display:flex;justify-content:center;align-items:center;gap:24px;
  padding:11px var(--gutter); position:relative;
}
.announce-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:28px;height:28px; display:grid;place-items:center;
  border-radius:50%; transition:background .2s;
}
.announce-arrow:hover{background:rgba(255,255,255,.18)}
.announce-arrow--prev{left:max(16px,var(--gutter))}
.announce-arrow--next{right:max(16px,var(--gutter))}
.announce-slide{display:flex;align-items:center;gap:10px}
.announce-track{display:flex;align-items:center;overflow:hidden;height:18px}

/* ---------- HEADER ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.site-header__inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:18px var(--gutter);
}
.brand{display:flex;align-items:center;gap:14px;justify-self:start}
.brand__logo{height:38px;width:auto}
.brand__tag{
  font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-3); border-left:1px solid var(--line-strong); padding-left:14px;
  display:none;
}
@media (min-width:980px){.brand__tag{display:block}}

.nav{display:none;justify-self:center}
@media (min-width:980px){
  .nav{display:flex;gap:36px}
}
.nav__link{
  font-size:13.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--ink); padding:8px 0; position:relative;
}
.nav__link::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:2px; background:var(--teal); transform:scaleX(0);
  transform-origin:left center; transition:transform .35s var(--ease-out);
}
.nav__link:hover::after{transform:scaleX(1)}
.nav__link--special{
  background:var(--coral); color:var(--white);
  padding:8px 14px; border-radius:var(--r-pill);
  font-weight:700;
}
.nav__link--special::after{display:none}

.nav-actions{display:flex;align-items:center;gap:18px;justify-self:end}
.icon-btn{
  width:40px;height:40px;display:grid;place-items:center;
  border-radius:50%;color:var(--ink); transition:background .2s;
}
.icon-btn:hover{background:var(--teal-08)}
.icon-btn svg{width:20px;height:20px}
.cart-count{
  background:var(--ink); color:var(--cream);
  font-size:11px; font-weight:700;
  border-radius:var(--r-pill); padding:2px 8px;
  margin-left:-6px;
}
.menu-btn{display:flex}
@media (min-width:980px){.menu-btn{display:none}}

/* Mobile menu */
.mobile-menu{
  position:fixed;inset:0; background:var(--cream);
  z-index:60; padding:24px var(--gutter);
  transform:translateY(-100%);
  transition:transform .45s var(--ease-out);
  overflow-y:auto;
}
.mobile-menu[aria-hidden="false"]{transform:translateY(0)}
.mobile-menu__head{display:flex;justify-content:space-between;align-items:center; padding-bottom:24px; border-bottom:1px solid var(--line)}
.mobile-menu__list{margin-top:24px; display:grid; gap:4px}
.mobile-menu__link{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 4px; font-family:var(--f-serif); font-size:28px;
  border-bottom:1px solid var(--line);
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background:var(--cream);
  padding:48px 0 64px;
  overflow:hidden;
}
.hero__grid{
  display:grid; gap:40px;
  grid-template-columns:1fr;
  align-items:center;
}
@media (min-width:980px){
  .hero{padding:80px 0 96px}
  .hero__grid{grid-template-columns: 1fr 1.05fr; gap:64px}
}
.hero__copy{position:relative; z-index:2}
.hero__eyebrow{display:inline-flex;align-items:center;gap:10px; background:var(--white); border:1px solid var(--line); padding:8px 14px; border-radius:var(--r-pill);}
.hero__eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--coral)}
.hero__title{
  margin-top:24px;
  font-size:clamp(48px,7vw,108px);
  line-height:.95;
  letter-spacing:-.04em;
  font-weight:400;
}
.hero__title .italic{color:var(--teal); font-feature-settings:"ss01" on}
.hero__sub{margin-top:24px; font-size:clamp(17px,1.5vw,21px); line-height:1.45; color:var(--ink-2); max-width:48ch}
.hero__cta-row{margin-top:36px; display:flex; flex-wrap:wrap; gap:14px; align-items:center}
.hero__link{display:inline-flex;align-items:center;gap:8px; padding:14px 4px; font-weight:700; font-size:14px; letter-spacing:.04em; text-transform:uppercase; border-bottom:1.5px solid var(--ink)}
.hero__trust{margin-top:36px; display:flex; flex-wrap:wrap; gap:24px 32px; align-items:center; color:var(--ink-2); font-size:13px}
.hero__trust .stars{display:inline-flex; gap:2px}

/* Hero mosaic */
.hero__mosaic{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  grid-template-rows: minmax(180px,28vw) minmax(180px,28vw);
  gap:16px;
  position:relative;
}
@media (min-width:980px){
  .hero__mosaic{
    grid-template-rows: minmax(220px,26vw) minmax(220px,26vw);
    gap:20px;
  }
}
.tile{position:relative; overflow:hidden; border-radius:var(--r-lg); background:var(--sand)}
.tile img{width:100%;height:100%;object-fit:cover}
.tile--tall{grid-row:span 2}
.tile--badge{
  background:var(--teal); color:var(--white); padding:24px; display:flex; flex-direction:column; justify-content:space-between;
}
.tile--badge .label{font-size:12px; letter-spacing:.16em; text-transform:uppercase; opacity:.85}
.tile--badge .word{font-family:var(--f-serif); font-size:clamp(28px,3.4vw,52px); line-height:.95; letter-spacing:-.02em}
.tile--swatch{background:radial-gradient(120% 80% at 30% 20%, var(--cream-deep) 0%, var(--sand) 60%, var(--sand-deep) 100%)}
.tile--product{background:var(--cream-deep); display:grid; place-items:center}
.tile--product img{max-width:75%; max-height:80%; object-fit:contain}

/* ============================================================
   PORTAL CIRCLES (Sleep / Focus / Calm / Energy)
   ============================================================ */
.portals{padding:72px 0 24px; background:var(--white)}
.portals__head{text-align:center; margin-bottom:48px}
.portals__title{font-size:clamp(28px,3vw,44px); font-weight:400}
.portals__grid{
  display:grid; gap:24px;
  grid-template-columns:repeat(2,1fr);
}
@media (min-width:720px){.portals__grid{grid-template-columns:repeat(4,1fr); gap:32px}}
.portal{
  text-align:center; display:flex; flex-direction:column; align-items:center; gap:16px;
  transition:transform .35s var(--ease-out);
}
.portal:hover{transform:translateY(-4px)}
.portal__ring{
  width:clamp(140px,18vw,200px); aspect-ratio:1; border-radius:50%;
  background:var(--cream); border:1.5px solid var(--teal-30);
  display:grid; place-items:center; position:relative; overflow:hidden;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.portal:hover .portal__ring{border-color:var(--teal); background:var(--teal-08)}
.portal__ring img{max-width:72%; max-height:80%; object-fit:contain}
.portal__label{font-family:var(--f-serif); font-size:22px; letter-spacing:-.01em}
.portal__label em{color:var(--teal)}
.portal__hint{font-size:12.5px; color:var(--ink-3); letter-spacing:.04em; text-transform:uppercase; font-weight:600}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.shop{padding:96px 0; background:var(--white)}
.shop__head{text-align:center; max-width:780px; margin:0 auto 40px}
.shop__title{font-size:clamp(34px,4vw,60px); font-weight:400}
.shop__sub{margin-top:18px; font-size:16px; color:var(--ink-2)}
.shop__controls{display:flex; flex-direction:column; align-items:center; gap:20px; margin-bottom:40px}
.shop__filters{
  display:flex; gap:10px; overflow-x:auto; padding-bottom:6px;
  scrollbar-width:none; -ms-overflow-style:none;
  width:100%; justify-content:flex-start;
}
@media (min-width:720px){.shop__filters{justify-content:center; overflow:visible}}
.shop__filters::-webkit-scrollbar{display:none}
.subscribe-toggle{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--cream); padding:8px 16px 8px 8px; border-radius:var(--r-pill); border:1px solid var(--line);
  font-size:13px; font-weight:600;
}
.subscribe-toggle__switch{
  width:38px;height:22px;border-radius:var(--r-pill);background:var(--ink); position:relative; transition:background .25s;
}
.subscribe-toggle__switch::after{
  content:""; position:absolute; top:3px; left:3px; width:16px; height:16px;
  border-radius:50%; background:var(--white); transition:left .25s var(--ease);
}
.subscribe-toggle.is-on .subscribe-toggle__switch{background:var(--teal)}
.subscribe-toggle.is-on .subscribe-toggle__switch::after{left:19px}
.subscribe-toggle__save{color:var(--teal); font-weight:700}

.product-row{
  display:grid; gap:20px;
  grid-template-columns:repeat(1,1fr);
}
@media (min-width:560px){.product-row{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.product-row{grid-template-columns:repeat(4,1fr); gap:28px}}

.card{
  background:var(--cream); border-radius:var(--r-lg);
  padding:24px; position:relative; overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.card:hover{transform:translateY(-6px); box-shadow:var(--shadow-2)}
.card__badge{
  position:absolute; top:18px; left:18px;
  background:var(--coral); color:var(--white);
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:5px 10px; border-radius:var(--r-pill);
}
.card__badge--save{background:var(--teal)}
.card__media{
  aspect-ratio:1; display:grid; place-items:center;
  background:radial-gradient(120% 80% at 50% 35%, var(--white) 0%, var(--cream) 70%);
  border-radius:var(--r-md); margin-bottom:20px;
  position:relative;
}
.card__media img{max-width:80%; max-height:80%; object-fit:contain; filter:drop-shadow(0 18px 28px rgba(31,41,38,.15))}
.card__rating{display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--ink-2); margin-bottom:8px}
.card__rating .stars{color:var(--teal); display:inline-flex; gap:1px}
.card__name{font-family:var(--f-serif); font-size:24px; letter-spacing:-.01em}
.card__name em{color:var(--teal)}
.card__benefit{margin-top:6px; font-size:14px; color:var(--ink-2)}
.card__foot{margin-top:auto; padding-top:18px; display:flex; justify-content:space-between; align-items:center; gap:12px}
.card__price .was{color:var(--ink-3); text-decoration:line-through; font-size:14px; margin-right:8px}
.card__price .now{font-weight:700; font-size:18px}
.card__add{
  background:var(--ink); color:var(--cream);
  padding:11px 18px; border-radius:var(--r-pill);
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  transition: background .25s, transform .25s;
}
.card__add:hover{background:var(--teal); transform:translateY(-1px)}

/* ============================================================
   PRESS STRIP
   ============================================================ */
.press{padding:48px 0; background:var(--cream); border-block:1px solid var(--line)}
.press__eyebrow{text-align:center; margin-bottom:24px}
.press__row{
  display:flex; align-items:center; justify-content:space-around; flex-wrap:wrap;
  gap:24px 56px;
}
.press__name{
  font-family:var(--f-serif); font-size:clamp(18px,2vw,28px);
  color:var(--ink-2); letter-spacing:.02em; opacity:.78; transition:opacity .3s;
}
.press__name:hover{opacity:1}
.press__name--ny{font-style:italic; letter-spacing:-.01em}
.press__name--mh{font-weight:700; letter-spacing:.2em; text-transform:uppercase; font-family:var(--f-sans); font-size:14px}
.press__name--wh{font-weight:700; letter-spacing:.18em; text-transform:uppercase; font-family:var(--f-sans); font-size:14px}
.press__name--dis{font-weight:800; letter-spacing:-.02em}

/* ============================================================
   ROUTING — "What do you need today?"
   ============================================================ */
.routing{padding:96px 0; background:linear-gradient(180deg, var(--teal-08), var(--teal-04))}
.routing__head{text-align:center; margin-bottom:48px; max-width:760px; margin-inline:auto}
.routing__title{font-size:clamp(34px,4.2vw,60px); font-weight:400}
.routing__title em{color:var(--teal)}
.routing__sub{margin-top:16px; color:var(--ink-2)}
.routing__grid{
  display:grid; gap:14px;
  grid-template-columns:1fr;
}
@media (min-width:760px){.routing__grid{grid-template-columns:repeat(2,1fr); gap:18px}}
@media (min-width:1080px){.routing__grid{grid-template-columns:repeat(3,1fr)}}
.route{
  display:flex; align-items:center; gap:18px;
  background:var(--white); padding:22px 26px; border-radius:var(--r-lg);
  border:1px solid var(--line);
  transition: transform .35s var(--ease-out), border-color .25s, background .25s;
}
.route:hover{transform:translateX(4px); border-color:var(--teal); background:var(--cream)}
.route__icon{
  width:48px;height:48px; flex-shrink:0; border-radius:50%;
  background:var(--teal-08); color:var(--teal); display:grid; place-items:center;
}
.route__icon svg{width:24px;height:24px;stroke-width:1.5}
.route__text{flex:1; min-width:0}
.route__name{font-family:var(--f-serif); font-size:22px; line-height:1.1; letter-spacing:-.01em}
.route__hint{font-size:13.5px; color:var(--ink-3); margin-top:2px}
.route__arrow{color:var(--ink-2); transition:transform .3s var(--ease)}
.route:hover .route__arrow{transform:translateX(6px); color:var(--teal)}

/* ============================================================
   COMMUNITY / FOUNDER
   ============================================================ */
.community{padding:96px 0; background:var(--white)}
.community__inner{display:grid; gap:40px; grid-template-columns:1fr}
@media (min-width:980px){.community__inner{grid-template-columns: 1fr 1.4fr; gap:64px; align-items:center}}
.community__copy .h-1{font-size:clamp(40px,5vw,72px); font-weight:400}
.community__copy .h-1 em{color:var(--teal)}
.community__quote{
  margin-top:28px; padding:24px 28px;
  border-left:2px solid var(--teal);
  font-family:var(--f-serif); font-style:italic; font-size:21px; line-height:1.45; color:var(--ink);
  background:var(--cream);
  border-radius:0 var(--r-md) var(--r-md) 0;
}
.community__quote cite{display:block; margin-top:14px; font-style:normal; font-family:var(--f-sans); font-size:13px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-2)}
.community__strip{
  display:grid; gap:14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width:760px){.community__strip{grid-template-columns: repeat(4, 1fr)}}
.community__card{
  aspect-ratio: 3/4; border-radius:var(--r-lg);
  background-size:cover; background-position:center;
  position:relative; overflow:hidden;
}
.community__card::after{
  content:""; position:absolute; inset:auto 0 0 0; height:55%;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.45));
}
.community__card span{
  position:absolute; left:14px; bottom:14px; z-index:1;
  color:var(--white); font-size:12px; font-weight:600; letter-spacing:.04em;
}

/* ============================================================
   BUNDLE SPOTLIGHT
   ============================================================ */
.spotlight{
  padding:96px 0;
  background:
    radial-gradient(80% 60% at 80% 30%, var(--teal-12), transparent 60%),
    var(--cream);
}
.spotlight__grid{display:grid; gap:48px; align-items:center}
@media (min-width:980px){.spotlight__grid{grid-template-columns: 1.1fr 1fr; gap:80px}}
.spotlight__tag{display:inline-block; background:var(--coral); color:var(--white); padding:6px 14px; border-radius:var(--r-pill); font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase}
.spotlight__title{margin-top:18px; font-size:clamp(48px,6.2vw,96px); line-height:.94; font-weight:400; letter-spacing:-.035em}
.spotlight__title em{color:var(--teal)}
.spotlight__copy{margin-top:24px; max-width:50ch; font-size:17px; color:var(--ink-2)}
.spotlight__list{margin-top:28px; display:grid; gap:10px}
.spotlight__list li{display:flex; align-items:flex-start; gap:12px; font-size:15px; color:var(--ink)}
.spotlight__list svg{flex-shrink:0; margin-top:3px; color:var(--teal); width:20px; height:20px}
.spotlight__cta{margin-top:36px; display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.spotlight__visual{
  position:relative; aspect-ratio:1;
  display:grid; place-items:center;
  background: radial-gradient(60% 60% at 50% 45%, var(--white), var(--teal-08) 60%, transparent 80%);
  border-radius:50%;
}
.spotlight__visual img{max-width:78%; max-height:88%; filter:drop-shadow(0 30px 60px rgba(31,41,38,.18))}
.spotlight__price{
  position:absolute; bottom:6%; left:50%; transform:translateX(-50%);
  background:var(--white); border-radius:var(--r-pill); padding:10px 22px;
  box-shadow:var(--shadow-2); display:flex; align-items:baseline; gap:10px;
  font-size:14px;
}
.spotlight__price .now{font-family:var(--f-serif); font-size:22px; color:var(--ink)}
.spotlight__price .was{text-decoration:line-through; color:var(--ink-3)}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps{padding:96px 0; background:var(--white)}
.steps__head{text-align:center; max-width:760px; margin:0 auto 56px}
.steps__title{font-size:clamp(34px,4vw,56px); font-weight:400}
.steps__title em{color:var(--teal)}
.steps__grid{display:grid; gap:32px; grid-template-columns:1fr; counter-reset:step}
@media (min-width:760px){.steps__grid{grid-template-columns:repeat(3,1fr); gap:40px}}
.step{padding:32px 28px; background:var(--cream); border-radius:var(--r-lg); position:relative}
.step::before{
  counter-increment:step; content:counter(step,decimal-leading-zero);
  font-family:var(--f-serif); font-size:14px; color:var(--teal); font-weight:600;
  letter-spacing:.06em;
}
.step__title{font-family:var(--f-serif); font-size:26px; margin-top:8px; letter-spacing:-.01em}
.step__body{margin-top:12px; color:var(--ink-2); font-size:15.5px; line-height:1.55}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews{padding:96px 0; background:var(--teal-08)}
.reviews__head{text-align:center; max-width:780px; margin:0 auto 48px}
.reviews__title{font-size:clamp(34px,4vw,60px); font-weight:400}
.reviews__title em{color:var(--teal)}
.reviews__sub{margin-top:16px; color:var(--ink-2)}
.review-grid{display:grid; gap:20px; grid-template-columns:1fr}
@media (min-width:720px){.review-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1080px){.review-grid{grid-template-columns:repeat(3,1fr); gap:28px}}
.review{
  background:var(--white); padding:28px; border-radius:var(--r-lg);
  display:flex; flex-direction:column; gap:16px;
  border:1px solid var(--line);
  transition:transform .3s var(--ease-out), box-shadow .3s;
}
.review:hover{transform:translateY(-4px); box-shadow:var(--shadow-2)}
.review__stars{color:var(--teal); display:inline-flex; gap:2px}
.review__title{font-family:var(--f-serif); font-size:21px; letter-spacing:-.01em; line-height:1.15}
.review__body{color:var(--ink-2); font-size:15px; line-height:1.55}
.review__author{margin-top:auto; padding-top:8px; display:flex; align-items:center; gap:12px; font-size:13.5px; color:var(--ink-3)}
.review__author .verify{
  background:var(--teal-12); color:var(--teal); padding:3px 10px; border-radius:var(--r-pill);
  font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
}

/* ============================================================
   STANDARDS
   ============================================================ */
.standards{padding:96px 0; background:var(--white)}
.standards__head{text-align:center; max-width:780px; margin:0 auto 56px}
.standards__title{font-size:clamp(34px,4vw,56px); font-weight:400}
.standards__title em{color:var(--teal)}
.standards__sub{margin-top:16px; color:var(--ink-2)}
.standards__grid{display:grid; gap:32px; grid-template-columns:repeat(2,1fr)}
@media (min-width:760px){.standards__grid{grid-template-columns:repeat(5,1fr); gap:24px}}
.standard{display:flex; flex-direction:column; align-items:center; text-align:center; gap:16px}
.standard__icon{
  width:84px;height:84px; border-radius:50%;
  background:var(--cream); border:1.5px solid var(--teal-30);
  display:grid;place-items:center; color:var(--teal);
}
.standard__icon svg{width:34px;height:34px;stroke-width:1.4}
.standard__name{font-family:var(--f-serif); font-size:18px; letter-spacing:-.01em}
.standard__desc{font-size:13px; color:var(--ink-2); font-style:italic; max-width:18ch}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter{padding:96px 0; background:var(--cream)}
.newsletter__card{
  background:var(--white); border-radius:var(--r-xl);
  padding:clamp(40px,6vw,80px);
  display:grid; gap:32px; align-items:center;
  grid-template-columns:1fr;
  box-shadow:var(--shadow-1);
}
@media (min-width:880px){.newsletter__card{grid-template-columns: 1.1fr 1fr; gap:48px}}
.newsletter__title{font-size:clamp(32px,3.6vw,52px); font-weight:400; line-height:1.05}
.newsletter__title em{color:var(--teal)}
.newsletter__sub{margin-top:16px; color:var(--ink-2)}
.newsletter__form{display:flex; flex-wrap:wrap; gap:10px; margin-top:24px}
.newsletter__input{
  flex:1 1 240px; padding:16px 20px; font:inherit; color:var(--ink);
  border:1.5px solid var(--line-strong); border-radius:var(--r-pill);
  background:var(--cream); outline:none; transition:border-color .25s;
}
.newsletter__input:focus{border-color:var(--teal); background:var(--white)}
.newsletter__visual{
  display:grid; place-items:center; aspect-ratio:1;
  background:radial-gradient(60% 60% at 50% 50%, var(--teal-08), transparent 70%);
  border-radius:50%;
}
.newsletter__visual img{max-width:80%; max-height:80%; filter:drop-shadow(0 24px 40px rgba(31,41,38,.18))}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--cream-deep); color:var(--ink); padding:80px 0 32px}
.footer__top{
  display:grid; gap:40px;
  grid-template-columns:1fr;
}
@media (min-width:760px){.footer__top{grid-template-columns: 1.4fr repeat(3, 1fr)}}
.footer__brand .brand__logo{height:42px}
.footer__tag{margin-top:18px; color:var(--ink-2); font-size:15px; max-width:42ch}
.footer__col h4{
  font-family:var(--f-sans); font-size:12px; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink); margin-bottom:18px;
}
.footer__col ul{display:grid; gap:11px}
.footer__col a{color:var(--ink-2); font-size:14.5px; transition:color .2s}
.footer__col a:hover{color:var(--teal)}
.footer__bottom{
  margin-top:64px; padding-top:32px; border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px;
  font-size:13px; color:var(--ink-3);
}
.footer__social{display:flex; gap:10px}
.footer__social a{
  width:38px;height:38px;border-radius:50%; display:grid;place-items:center;
  background:var(--white); border:1px solid var(--line-strong); color:var(--ink);
  transition:background .25s, color .25s;
}
.footer__social a:hover{background:var(--teal); color:var(--white); border-color:var(--teal)}
.footer__social svg{width:18px;height:18px}

/* ============================================================
   UTIL
   ============================================================ */
.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Star icon util */
.stars svg{width:14px;height:14px;fill:currentColor;display:inline-block}

/* Animations */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important; transition:none !important}
  html{scroll-behavior:auto}
}
.reveal{opacity:0; transform:translateY(20px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out)}
.reveal.is-in{opacity:1; transform:translateY(0)}

