/* ==========================================================================
   myGUMM — prototype design system
   Single stylesheet. Sections:
     1. Tokens      2. Reset/base   3. Typography   4. Buttons
     5. Header/nav  6. Footer       7. Cart drawer  8. Sections/components
     9. Product pages   10. Utilities/motion   11. Responsive
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  /* Brand core — hexes pixel-sampled from the project deck */
  --blue:        #0178CF;
  --blue-dark:   #0159A0;
  --lime:        #C1FF72;
  --mint:        #C1FFBB;
  --magenta:     #CD2596;
  --pink:        #FF66C4;
  --cyan:        #5CE1E6;
  --black:       #000000;
  --ink:         #0B0D0E;   /* softer black for body text */
  --white:       #FFFFFF;
  --paper:       #F6F7F5;
  --line:        #E4E7E2;
  --muted:       #6B7280;

  /* Per-product accents — keyed to FLAVOUR (see PROGRESS.md) */
  --energy:      #4FC81E;   /* apple & mint          */
  --energy-ink:  #123D06;
  --focus:       #FFC803;   /* pineapple             */
  --focus-ink:   #4A3800;
  --recovery:    #0178CF;   /* blueberry             */
  --recovery-ink:#00325C;
  --collagen:    #E8368F;   /* strawberry & cranberry*/
  --collagen-ink:#5E0E36;
  --happiness:   #FF6B1A;   /* citrus                */
  --happiness-ink:#5A2100;
  --platinum:    #97A3AE;   /* premium silver        */
  --platinum-ink:#1F262C;

  /* The accent a themed page/card is currently wearing */
  --accent:      var(--energy);
  --accent-ink:  var(--energy-ink);

  /* Spacing scale */
  --s1: .25rem; --s2: .5rem;  --s3: .75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem;   --s7: 3rem;   --s8: 4rem;
  --s9: 6rem;   --s10: 8rem;

  --radius:    14px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow:    0 2px 8px rgba(11,13,14,.06), 0 12px 32px rgba(11,13,14,.08);
  --shadow-lg: 0 8px 24px rgba(11,13,14,.10), 0 32px 64px rgba(11,13,14,.14);

  --wrap: 1240px;
  --header-h: 72px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* 2. RESET / BASE ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--s5); }

/* 3. TYPOGRAPHY ------------------------------------------------------------ */
/* The deck's display face is Agrandir Tight Bold (commercial, Pangram Pangram).
   Inter at weight 900 with tight tracking is the closest free stand-in, and keeps
   one family across the whole site. Swap here if the licence is ever bought. */
h1, h2, h3, .display {
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .95;
  text-transform: uppercase;
  margin: 0;
}
h1, .h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
h2, .h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3, .h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); letter-spacing: -.02em; }
p { margin: 0 0 var(--s4); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #3A4048; line-height: 1.55; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--s4);
}
.eyebrow::before {
  content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--accent);
}
.hl { color: var(--accent); }

/* 4. BUTTONS --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.9rem;
  font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  border-radius: var(--radius-pill);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: #22272C; box-shadow: var(--shadow); }

.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 45%, transparent); }

.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); }

.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { box-shadow: var(--shadow); }

.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* 5. HEADER / NAV ---------------------------------------------------------- */
.trustbar {
  background: var(--ink); color: #E9EDF2;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em;
}
.trustbar__in {
  display: flex; align-items: center; justify-content: center; gap: var(--s6);
  height: 38px; overflow: hidden; white-space: nowrap;
}
.trustbar span { display: inline-flex; align-items: center; gap: .4rem; }
.stars { color: var(--lime); letter-spacing: .1em; }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(11,13,14,.07); }
.header__in {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: var(--s5);
}
.logo img { height: 26px; width: auto; }

.nav { display: flex; align-items: center; gap: var(--s6); }
.nav a {
  position: relative; font-weight: 700; font-size: .93rem; padding: .4rem 0;
  transition: color .18s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav a:hover::after, .nav a[aria-current='page']::after { width: 100%; }
.nav a[aria-current='page'] { color: var(--accent-ink); }

.header__actions { display: flex; align-items: center; gap: var(--s3); }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--white); font-weight: 800; font-size: .88rem;
  transition: transform .18s var(--ease);
}
.cart-btn:hover { transform: translateY(-1px); }
.cart-btn__count {
  min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--lime); color: var(--ink);
  border-radius: var(--radius-pill); font-size: .72rem; font-weight: 900;
}

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after {
  content: ''; display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s;
}
.burger span::before { transform: translateY(-7px); }
.burger span::after  { transform: translateY(5px); }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: rotate(45deg); }
.burger.is-open span::after  { transform: rotate(-45deg) translateY(-1px); }

/* 6. FOOTER ---------------------------------------------------------------- */
.footer { background: var(--ink); color: #AFB7C0; padding: var(--s9) 0 var(--s6); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: var(--s6);
}
.footer h4 {
  color: var(--white); font-size: .78rem; font-weight: 900; letter-spacing: .14em;
  text-transform: uppercase; margin: 0 0 var(--s4);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer a { font-size: .92rem; transition: color .18s var(--ease); }
.footer a:hover { color: var(--lime); }
.footer__logo img { height: 30px; margin-bottom: var(--s4); }
.footer__tag {
  color: var(--white); font-weight: 900; text-transform: uppercase;
  letter-spacing: -.02em; font-size: 1.35rem; line-height: 1.1; max-width: 15ch;
}
.footer__bottom {
  margin-top: var(--s8); padding-top: var(--s5); border-top: 1px solid #23282D;
  display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap;
  font-size: .84rem;
}
.socials { display: flex; gap: var(--s3); }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: #1B2025; font-size: .72rem; font-weight: 800; color: #AFB7C0;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); }

/* Newsletter */
.newsletter { background: var(--lime); color: var(--ink); padding: var(--s9) 0; }
.newsletter__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s7); align-items: center; }
.newsletter form { display: flex; gap: var(--s3); }
.newsletter input {
  flex: 1; padding: 1rem 1.3rem; border: 2px solid var(--ink); border-radius: var(--radius-pill);
  background: var(--white); font: inherit; font-size: .95rem;
}
.newsletter input:focus { outline: 3px solid var(--ink); outline-offset: 2px; }

/* 7. CART DRAWER ----------------------------------------------------------- */
.scrim {
  position: fixed; inset: 0; background: rgba(11,13,14,.5); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--white); z-index: 100;
  transform: translateX(100%); transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s5); border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-size: 1.15rem; }
.drawer__close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; }
.drawer__close:hover { background: var(--paper); }
.drawer__body { flex: 1; overflow-y: auto; padding: var(--s5); }
.drawer__foot { padding: var(--s5); border-top: 1px solid var(--line); background: var(--paper); }

.cart-empty { text-align: center; padding: var(--s8) var(--s4); color: var(--muted); }
.cart-empty__mark { font-size: 2.6rem; margin-bottom: var(--s3); }

.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: var(--s4); align-items: center; padding: var(--s4) 0; border-bottom: 1px solid var(--line); }
.cart-line__img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--paper); }
.cart-line__name { font-weight: 800; font-size: .93rem; }
.cart-line__meta { font-size: .8rem; color: var(--muted); }
.cart-line__price { font-weight: 800; font-size: .93rem; }
.qty { display: inline-flex; align-items: center; gap: .5rem; margin-top: .3rem; }
.qty button { width: 24px; height: 24px; border-radius: 6px; background: var(--paper); font-weight: 800; line-height: 1; }
.qty button:hover { background: var(--line); }

.cart-total { display: flex; justify-content: space-between; font-weight: 900; font-size: 1.05rem; margin-bottom: var(--s4); text-transform: uppercase; }

.proto-note {
  display: flex; gap: .6rem; align-items: flex-start;
  background: #FFF6D6; border: 1px solid #F0DC94; color: #6B5200;
  border-radius: 10px; padding: .75rem .9rem; font-size: .8rem; line-height: 1.45;
  margin-bottom: var(--s4);
}

/* 8. SECTIONS / COMPONENTS -------------------------------------------------- */
.section { padding: var(--s10) 0; }
.section--tight { padding: var(--s9) 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #D5DBE1; }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section__head { max-width: 60ch; margin-bottom: var(--s8); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* Hero */
.hero { position: relative; background: #BFE9B4; overflow: hidden; }
.hero__in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  min-height: 620px; gap: var(--s6);
}
.hero__copy { padding: var(--s9) 0; max-width: 34ch; }
.hero h1 { margin-bottom: var(--s5); }
.hero .lede { margin-bottom: var(--s6); max-width: 30ch; color: #1F3316; }
.hero__cta { display: flex; gap: var(--s3); flex-wrap: wrap; }
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
  background-image: url('../img/hero-energy.png');
  background-size: cover; background-position: center right;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #BFE9B4 0%, #BFE9B4 30%, rgba(191,233,180,.65) 46%, rgba(191,233,180,0) 62%);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); color: var(--ink);
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 800; margin-bottom: var(--s5);
  box-shadow: var(--shadow);
}

/* Product card grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }

.pcard {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard__media {
  position: relative; aspect-ratio: 1/1; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, var(--white));
  transition: background .3s var(--ease); overflow: hidden;
}
.pcard:hover .pcard__media { background: color-mix(in srgb, var(--accent) 26%, var(--white)); }
/* The renders are portrait shots on their own studio sweep — fill the frame edge to
   edge rather than floating a portrait image inside a square. */
.pcard__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transition: transform .5s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__flag {
  position: absolute; top: var(--s4); left: var(--s4);
  background: var(--accent); color: var(--accent-ink);
  font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: var(--radius-pill);
}
.pcard__flag--soon { background: var(--ink); color: var(--white); }
.pcard__body { padding: var(--s5); display: flex; flex-direction: column; gap: .5rem; flex: 1; background: var(--white); }
.pcard__name { font-size: 1.35rem; font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; }
.pcard__flav { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); }
.pcard__desc { font-size: .92rem; color: var(--muted); margin: 0; flex: 1; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); margin-top: var(--s3); }
.pcard__price { font-weight: 900; font-size: 1.05rem; }
.pcard.is-soon { opacity: .92; }
.pcard.is-soon .pcard__media { filter: grayscale(.55); }

/* Benefit cards */
.bcard {
  padding: var(--s6); border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bcard__ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 900; font-size: 1.1rem; margin-bottom: var(--s4);
}
.bcard h3 { margin-bottom: var(--s3); }
.bcard p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Four-question answer strip */
.qa { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.qa__cell { padding: var(--s6); background: var(--white); border-right: 1px solid var(--line); transition: background .25s var(--ease); }
.qa__cell:last-child { border-right: 0; }
.qa__cell:hover { background: var(--paper); }
.qa__q { font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: var(--s3); }
.qa__a { font-size: .96rem; color: #3A4048; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); counter-reset: step; }
.step { counter-increment: step; position: relative; padding-top: var(--s6); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-size: 3.4rem; font-weight: 900; line-height: 1;
  color: var(--accent); opacity: .28; letter-spacing: -.04em;
}
.step h3 { margin-bottom: var(--s3); }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Reviews */
.rcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s6); display: flex; flex-direction: column; gap: var(--s4); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.rcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rcard__stars { color: #F5A623; letter-spacing: .12em; font-size: .95rem; }
.rcard p { margin: 0; font-size: 1rem; line-height: 1.6; }
.rcard__who { display: flex; align-items: center; gap: var(--s3); margin-top: auto; }
.rcard__who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.rcard__name { font-weight: 800; font-size: .9rem; }
.rcard__role { font-size: .8rem; color: var(--muted); }

/* "What's NOT in it" */
.nolist { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4) var(--s7); }
.noitem { display: flex; align-items: center; gap: var(--s4); padding: var(--s4) 0; border-bottom: 1px solid #23282D; font-weight: 700; }
.noitem__x { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #2A1618; color: #FF6B6B; font-weight: 900; flex: none; }
.noitem__y { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #16240E; color: var(--lime); font-weight: 900; flex: none; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Teams teaser */
.teaser {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--blue); color: var(--white);
  padding: var(--s9) var(--s8);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s7); align-items: center;
}
.teaser h2 { color: var(--white); margin-bottom: var(--s4); }
.teaser p { color: #CFE6FA; margin-bottom: var(--s5); }

/* Bundle */
.bundle { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: var(--s9) var(--s8); text-align: center; }
.bundle h2 { color: var(--white); margin-bottom: var(--s4); }
.bundle p { color: #AFB7C0; max-width: 52ch; margin-inline: auto; margin-bottom: var(--s6); }
.bundle__pills { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; margin-bottom: var(--s6); }
.pill { padding: .5rem 1.1rem; border-radius: var(--radius-pill); background: #1B2025; font-size: .85rem; font-weight: 700; }
.pill--on { background: var(--lime); color: var(--ink); font-weight: 900; }

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.stat { text-align: center; }
.stat__n { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 900; letter-spacing: -.04em; line-height: 1; color: var(--accent); }
.stat__l { font-size: .82rem; font-weight: 700; color: var(--muted); margin-top: var(--s2); }

/* Prototype ribbon */
.proto-ribbon {
  position: fixed; left: 0; bottom: 0; z-index: 80;
  background: #FFE24A; color: #4A3800;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: .4rem .9rem; border-top-right-radius: 8px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.12);
}

/* 9. PRODUCT PAGE ----------------------------------------------------------- */
.phero { background: color-mix(in srgb, var(--accent) 14%, var(--white)); padding: var(--s8) 0 var(--s9); }
.phero__in { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.phero__media {
  border-radius: var(--radius-lg); overflow: hidden;
  background: color-mix(in srgb, var(--accent) 26%, var(--white));
  display: grid; place-items: center; aspect-ratio: 1/1;
}
.phero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.phero h1 { margin-bottom: var(--s4); }
.phero__flav { font-size: .85rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: var(--s4); }
.phero__price { font-size: 1.8rem; font-weight: 900; margin: var(--s5) 0; }
.phero__price small { font-size: .9rem; font-weight: 700; color: var(--muted); }
.phero__buy { display: flex; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s5); }
.ticks { list-style: none; padding: 0; margin: var(--s5) 0 0; display: grid; gap: .6rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.ticks li::before { content: '✓'; color: var(--accent-ink); font-weight: 900; background: var(--accent); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; flex: none; margin-top: .18rem; }

.spec { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.spec__row { padding: var(--s5); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.spec__k { font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s2); }
.spec__v { font-weight: 700; }

/* Coming-soon page state */
.soon-banner { background: var(--ink); color: var(--white); text-align: center; padding: var(--s5); font-weight: 800; }

/* 10. UTILITIES / MOTION ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d='1'] { transition-delay: .08s; }
.reveal[data-d='2'] { transition-delay: .16s; }
.reveal[data-d='3'] { transition-delay: .24s; }
.reveal[data-d='4'] { transition-delay: .32s; }
.reveal[data-d='5'] { transition-delay: .40s; }

.center { text-align: center; }
.mt6 { margin-top: var(--s6); }
.mt8 { margin-top: var(--s8); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* 11. RESPONSIVE ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4, .stats { grid-template-columns: repeat(2, 1fr); }
  .qa { grid-template-columns: repeat(2, 1fr); }
  .qa__cell:nth-child(2) { border-right: 0; }
  .qa__cell:nth-child(1), .qa__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    gap: 0; padding: var(--s4) var(--s5) var(--s6);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: var(--s4) 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }

  .hero__in { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { padding: var(--s8) 0 22rem; max-width: none; }
  .hero__bg { background-position: center bottom; background-size: 150% auto; background-repeat: no-repeat; }
  .hero__scrim { background: linear-gradient(180deg, #BFE9B4 0%, #BFE9B4 45%, rgba(191,233,180,.4) 70%, rgba(191,233,180,0) 100%); }

  .grid-3, .grid-2, .steps, .split, .newsletter__in, .teaser, .phero__in, .spec, .nolist { grid-template-columns: 1fr; }
  .split { gap: var(--s6); }
  .teaser, .bundle { padding: var(--s7) var(--s5); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trustbar__in { gap: var(--s4); font-size: .7rem; justify-content: flex-start; }
  .section { padding: var(--s8) 0; }
}

@media (max-width: 520px) {
  .grid-4, .stats, .qa { grid-template-columns: 1fr; }
  .qa__cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
