/* ============================================================
   VALURA ESSENTIALS — Design System
   Type: Fraunces (display) / Inter (UI)
   Palette: warm cream, deep forest, clay accent, product tints
   ============================================================ */

:root{
  --bg:#F7F3EC;
  --paper:#FFFDF8;
  --ink:#17251F;
  --ink-soft:#33443B;
  --muted:#61705F;
  --forest:#1E4638;
  --forest-deep:#143328;
  --forest-tint:#E4EBE2;
  --clay:#BC6B3F;
  --clay-deep:#A0552E;
  --sand:#EDDFC6;
  --sage:#DCE5D6;
  --blush:#ECD8C9;
  --sky:#DAE4E6;
  --butter:#F2E5C4;
  --stone:#E9E4DA;
  --line:rgba(23,37,31,.14);
  --line-soft:rgba(23,37,31,.08);
  --shadow-soft:0 18px 40px -22px rgba(23,37,31,.28);
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;
  --wrap:1200px;
  --font-display:"Fraunces",Georgia,"Times New Roman",serif;
  --font-body:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--ink);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{display:block;max-width:100%}
button{font:inherit;cursor:pointer;background:none;border:0;color:inherit}
input,select{font:inherit}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
:focus-visible{outline:2px solid var(--forest);outline-offset:3px;border-radius:4px}
::selection{background:var(--forest);color:var(--paper)}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001s!important;transition-duration:.001s!important}
  html{scroll-behavior:auto}
}

/* ---------- Type ---------- */
h1,h2,h3,.display{
  font-family:var(--font-display);
  font-weight:500;
  letter-spacing:-0.02em;
  line-height:1.08;
  color:var(--ink);
}
h1{font-size:clamp(2.6rem,5.4vw,4.4rem)}
h2{font-size:clamp(2rem,3.6vw,3rem)}
h3{font-size:clamp(1.3rem,2vw,1.6rem);line-height:1.2}
.lede{font-size:clamp(1.05rem,1.4vw,1.25rem);color:var(--ink-soft);line-height:1.55;max-width:56ch}
.eyebrow{
  font-size:.72rem;font-weight:650;letter-spacing:.18em;text-transform:uppercase;
  color:var(--clay);display:inline-flex;align-items:center;gap:.6rem;
}
.eyebrow::before{content:"";width:22px;height:1.5px;background:var(--clay);display:inline-block}
.eyebrow.plain::before{display:none}
.small{font-size:.85rem;color:var(--muted)}
.footnote{font-size:.78rem;color:var(--muted);line-height:1.55}
em.serif{font-family:var(--font-display);font-style:italic;font-weight:500}

/* ---------- Layout ---------- */
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 28px}
.section{padding:104px 0}
.section.tight{padding:72px 0}
.section-head{max-width:720px;margin-bottom:56px;display:flex;flex-direction:column;gap:18px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;align-items:center}
.split{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:1rem 1.9rem;border-radius:999px;
  background:var(--forest);color:#F8F5EE;
  font-weight:600;font-size:.95rem;letter-spacing:.01em;
  transition:background .2s ease,transform .2s ease,box-shadow .2s ease;
  border:1.5px solid var(--forest);
}
.btn:hover{background:var(--forest-deep);border-color:var(--forest-deep);transform:translateY(-1px);box-shadow:0 12px 24px -14px rgba(20,51,40,.5)}
.btn:active{transform:translateY(0)}
.btn .arr{transition:transform .2s ease}
.btn:hover .arr{transform:translateX(3px)}
.btn.ghost{background:transparent;color:var(--ink);border:1.5px solid var(--line)}
.btn.ghost:hover{background:var(--ink);color:var(--paper);border-color:var(--ink);box-shadow:none}
.btn.light{background:var(--paper);color:var(--ink);border-color:var(--paper)}
.btn.light:hover{background:var(--bg);border-color:var(--bg)}
.btn.clay{background:var(--clay);border-color:var(--clay)}
.btn.clay:hover{background:var(--clay-deep);border-color:var(--clay-deep)}
.btn.sm{padding:.65rem 1.25rem;font-size:.85rem}
.btn.block{width:100%}
.btn[disabled]{opacity:.55;pointer-events:none}
.text-link{
  font-weight:600;font-size:.95rem;color:var(--ink);
  border-bottom:1.5px solid var(--clay);padding-bottom:2px;
  transition:color .2s ease,border-color .2s ease;
}
.text-link:hover{color:var(--clay)}

/* ---------- Badges & chips ---------- */
.badge{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.7rem;font-weight:650;letter-spacing:.08em;text-transform:uppercase;
  padding:.4rem .8rem;border-radius:999px;background:var(--paper);
  border:1px solid var(--line-soft);color:var(--ink-soft);
}
.badge.fill{background:var(--forest);color:#F2EFE7;border-color:var(--forest)}
.badge.claybg{background:var(--clay);color:#FDF7F0;border-color:var(--clay)}
.badge.soft{background:rgba(255,255,255,.72);backdrop-filter:blur(4px)}
.chip-row{display:flex;flex-wrap:wrap;gap:.6rem}
.chip{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.7rem 1.3rem;border-radius:999px;border:1.5px solid var(--line);
  font-weight:600;font-size:.9rem;transition:all .2s ease;background:transparent;
}
.chip:hover,.chip.active{background:var(--ink);color:var(--paper);border-color:var(--ink)}

/* ---------- Announcement bar ---------- */
.announce{
  background:var(--forest-deep);color:#E9EFE4;
  font-size:.78rem;font-weight:550;letter-spacing:.04em;
  text-align:center;padding:.62rem 1rem;
}
.announce b{color:#F3D9A4;font-weight:650}

/* ---------- Navbar ---------- */
.navbar{
  position:sticky;top:0;z-index:80;
  background:rgba(247,243,236,.88);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-soft);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:74px;gap:2rem}
.brand{display:flex;align-items:baseline;gap:.7rem}
.brand .word{
  font-family:var(--font-display);font-weight:600;font-size:1.55rem;letter-spacing:.02em;color:var(--ink);
}
.brand .sub{
  font-size:.66rem;font-weight:650;letter-spacing:.22em;text-transform:uppercase;
  color:var(--clay);border-left:1px solid var(--line);padding-left:.7rem;
}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{
  font-size:.92rem;font-weight:550;color:var(--ink-soft);
  transition:color .15s ease;position:relative;padding:.3rem 0;
}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:1.5px;
  background:var(--clay);transition:width .2s ease;
}
.nav-links a:hover{color:var(--ink)}
.nav-links a:hover::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:1rem}
.rx-pill{
  font-size:.74rem;font-weight:650;letter-spacing:.06em;
  padding:.5rem 1rem;border-radius:999px;
  border:1.5px dashed rgba(188,107,63,.6);color:var(--clay);
  white-space:nowrap;transition:all .2s ease;
}
.rx-pill:hover{background:var(--clay);color:#fff;border-style:solid}
.cart-btn{position:relative;display:flex;align-items:center;padding:.4rem}
.cart-btn svg{width:22px;height:22px}
.cart-count{
  position:absolute;top:-4px;right:-6px;min-width:18px;height:18px;
  background:var(--clay);color:#fff;border-radius:999px;
  font-size:.66rem;font-weight:700;display:flex;align-items:center;justify-content:center;
  padding:0 4px;
}
.hamburger{display:none;flex-direction:column;gap:5px;padding:.5rem}
.hamburger span{width:22px;height:2px;background:var(--ink);border-radius:2px;transition:all .25s ease}
.mobile-menu{
  display:none;position:fixed;inset:0;top:0;z-index:79;background:var(--bg);
  padding:120px 32px 40px;flex-direction:column;gap:1.6rem;
}
.mobile-menu.open{display:flex}
.mobile-menu a{font-family:var(--font-display);font-size:1.9rem;font-weight:500;border-bottom:1px solid var(--line-soft);padding-bottom:1.1rem}
body.menu-open .hamburger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.menu-open .hamburger span:nth-child(2){opacity:0}
body.menu-open .hamburger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
body.menu-open{overflow:hidden}

/* ---------- Hero ---------- */
.hero{padding:88px 0 96px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.hero-copy{display:flex;flex-direction:column;gap:26px}
.hero-copy h1 .accent{font-style:italic;font-weight:450;color:var(--forest)}
.hero-ctas{display:flex;gap:.9rem;flex-wrap:wrap;margin-top:6px}
.hero-meta{display:flex;gap:1.6rem;flex-wrap:wrap;margin-top:10px}
.hero-meta .item{display:flex;align-items:center;gap:.5rem;font-size:.85rem;font-weight:550;color:var(--ink-soft)}
.hero-meta svg{width:16px;height:16px;color:var(--forest)}
.hero-stage{position:relative;border-radius:var(--radius-lg);background:linear-gradient(160deg,var(--sage) 0%,var(--sand) 100%);padding:34px;min-height:520px;display:flex;align-items:flex-end;justify-content:center}
.hero-stage .stage-svg{width:100%;max-width:520px}
.hero-tag{
  position:absolute;background:var(--paper);border-radius:999px;
  padding:.6rem 1.1rem;font-size:.78rem;font-weight:650;
  box-shadow:var(--shadow-soft);display:flex;align-items:center;gap:.5rem;
}
.hero-tag .dot{width:8px;height:8px;border-radius:50%;background:var(--clay)}
.hero-tag.t1{top:36px;left:32px}
.hero-tag.t2{top:110px;right:24px}
.hero-tag.t3{top:190px;left:34px}

/* ---------- Trust strip ---------- */
.trust-strip{border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft);background:var(--paper)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{
  padding:26px 28px;display:flex;align-items:center;gap:14px;
  border-right:1px solid var(--line-soft);
}
.trust-item:last-child{border-right:0}
.trust-item svg{width:26px;height:26px;color:var(--forest);flex-shrink:0}
.trust-item .t{font-size:.9rem;font-weight:600;line-height:1.3}
.trust-item .d{font-size:.76rem;color:var(--muted);line-height:1.35}

/* ---------- Product grid ---------- */
.cat-block{margin-bottom:84px}
.cat-block:last-child{margin-bottom:0}
.cat-head{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;margin-bottom:34px}
.cat-head h3{font-size:clamp(1.6rem,2.4vw,2.1rem)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}

.pcard{display:flex;flex-direction:column;gap:16px;position:relative}
.pcard .stage{
  position:relative;border-radius:var(--radius-md);overflow:hidden;
  aspect-ratio:4/4.6;display:flex;align-items:center;justify-content:center;
  transition:transform .25s ease;
}
.pcard .stage svg.pack{width:72%;height:auto;transition:transform .35s cubic-bezier(.2,.7,.3,1)}
.pcard:hover .stage svg.pack{transform:translateY(-6px) scale(1.025)}
.pcard .stage .badge{position:absolute;top:14px;left:14px}
.quick-add{
  position:absolute;left:14px;right:14px;bottom:14px;
  opacity:0;transform:translateY(8px);
  transition:opacity .22s ease,transform .22s ease;
}
.pcard:hover .quick-add,.pcard:focus-within .quick-add{opacity:1;transform:translateY(0)}
.pcard .info{display:flex;flex-direction:column;gap:4px;padding:0 4px}
.pcard .name{font-family:var(--font-display);font-size:1.22rem;font-weight:550;letter-spacing:-.01em;position:static!important}
.pcard .name a::after{content:"";position:absolute;inset:0;z-index:1}
.pcard .quick-add,.pcard .stage .badge,.pcard .info .text-link{z-index:2}
.pcard .tag{font-size:.86rem;color:var(--muted)}
.pcard .price-row{display:flex;align-items:baseline;gap:.6rem;margin-top:4px}
.pcard .price{font-weight:650;font-size:.95rem}
.pcard .per{font-size:.78rem;color:var(--muted)}
.pcard .save-note{font-size:.74rem;font-weight:650;color:var(--forest)}
.tint-sage{background:var(--sage)}
.tint-sand{background:var(--sand)}
.tint-blush{background:var(--blush)}
.tint-sky{background:var(--sky)}
.tint-butter{background:var(--butter)}
.tint-stone{background:var(--stone)}
.tint-forest{background:var(--forest-tint)}

.pcard.soon .stage{opacity:.92}
.pcard.soon .stage::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(247,243,236,.5))
}

/* ---------- Feature bands ---------- */
.band{border-radius:var(--radius-lg);overflow:hidden}
.band.forest{background:var(--forest);color:#EDEAE0}
.band.forest h2,.band.forest h3{color:#F6F3EA}
.band.forest .lede{color:rgba(237,234,224,.82)}
.band-grid{display:grid;grid-template-columns:1fr 1fr;align-items:center;min-height:520px}
.band-copy{padding:72px;display:flex;flex-direction:column;gap:22px;align-items:flex-start}
.band-stage{align-self:stretch;display:flex;align-items:center;justify-content:center;padding:48px;background:rgba(255,255,255,.06)}
.band-stage svg{max-width:440px;width:100%}
.band .eyebrow{color:#E4B87E}
.band .eyebrow::before{background:#E4B87E}
.kit-includes{display:flex;flex-direction:column;gap:.9rem;margin:6px 0}
.kit-includes li{display:flex;gap:.8rem;align-items:flex-start;font-size:.95rem;color:rgba(237,234,224,.9)}
.kit-includes svg{width:18px;height:18px;color:#E4B87E;flex-shrink:0;margin-top:3px}
.kit-price{display:flex;align-items:baseline;gap:.8rem}
.kit-price .now{font-family:var(--font-display);font-size:2.2rem;font-weight:550;color:#F6F3EA}
.kit-price .was{font-size:1rem;color:rgba(237,234,224,.55);text-decoration:line-through}
.kit-price .save{font-size:.75rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#E4B87E}

/* ---------- Standards / value props ---------- */
.standards{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.std{
  background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-md);
  padding:30px 26px;display:flex;flex-direction:column;gap:14px;
  transition:transform .25s ease,box-shadow .25s ease;
}
.std:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft)}
.std .icon{
  width:46px;height:46px;border-radius:14px;background:var(--forest-tint);
  display:flex;align-items:center;justify-content:center;
}
.std .icon svg{width:22px;height:22px;color:var(--forest)}
.std h3{font-size:1.06rem;font-family:var(--font-body);font-weight:650;letter-spacing:0}
.std p{font-size:.88rem;color:var(--muted);line-height:1.55}

/* ---------- Steps ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;counter-reset:step}
.step{
  position:relative;background:var(--paper);border:1px solid var(--line-soft);
  border-radius:var(--radius-md);padding:36px 30px 32px;counter-increment:step;
}
.step::before{
  content:"0" counter(step);
  font-family:var(--font-display);font-size:2.6rem;font-weight:450;
  color:var(--clay);display:block;margin-bottom:14px;line-height:1;
}
.step h3{font-size:1.1rem;font-family:var(--font-body);font-weight:650;margin-bottom:8px;letter-spacing:0}
.step p{font-size:.9rem;color:var(--muted)}

/* ---------- Compare table ---------- */
.compare{background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-lg);overflow:hidden}
.compare table{width:100%;border-collapse:collapse}
.compare th,.compare td{padding:20px 26px;text-align:left;font-size:.92rem;border-bottom:1px solid var(--line-soft)}
.compare tr:last-child td{border-bottom:0}
.compare thead th{
  font-size:.74rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);background:var(--bg);border-bottom:1px solid var(--line);
}
.compare thead th.hl{background:var(--forest);color:#F2EFE7}
.compare td.hl{background:rgba(30,70,56,.05);font-weight:600}
.compare td:first-child{font-weight:600;color:var(--ink)}
.compare .yes{color:var(--forest);font-weight:700}
.compare .no{color:#B3543F;font-weight:600;opacity:.75}
.compare .meh{color:var(--muted)}

/* ---------- Timeline ---------- */
.timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;margin-top:14px}
.timeline::before{
  content:"";position:absolute;top:9px;left:calc(12.5% + 9px);right:calc(12.5% + 9px);
  height:1.5px;background:var(--line);
}
.tl{padding:0 22px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:12px}
.tl .dot{width:19px;height:19px;border-radius:50%;background:var(--bg);border:2px solid var(--forest);position:relative;z-index:1}
.tl.fill .dot{background:var(--forest)}
.tl .when{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--clay)}
.tl h3{font-size:1rem;font-family:var(--font-body);font-weight:650;letter-spacing:0}
.tl p{font-size:.84rem;color:var(--muted)}

/* ---------- Rx teaser ---------- */
.rx-band{background:var(--ink);border-radius:var(--radius-lg);color:#EFEBE1;padding:76px;display:grid;grid-template-columns:1.2fr .8fr;gap:56px;align-items:center}
.rx-band h2{color:#F6F3EA}
.rx-band p{color:rgba(239,235,225,.78)}
.rx-band .eyebrow{color:#E4B87E}
.rx-band .eyebrow::before{background:#E4B87E}
.waitlist{display:flex;gap:.7rem;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);padding:.5rem;border-radius:999px}
.waitlist input{
  flex:1;background:transparent;border:0;color:#F6F3EA;padding:.6rem 1.1rem;font-size:.95rem;min-width:0;
}
.waitlist input::placeholder{color:rgba(239,235,225,.45)}
.waitlist input:focus{outline:none}

/* ---------- FAQ ---------- */
.faq{max-width:800px;margin:0 auto}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:2rem;
  padding:26px 4px;cursor:pointer;font-weight:600;font-size:1.05rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary .ic{
  width:30px;height:30px;border-radius:50%;border:1.5px solid var(--line);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  transition:transform .25s ease,background .25s ease;font-weight:400;
}
.faq details[open] summary .ic{transform:rotate(45deg);background:var(--forest);border-color:var(--forest);color:#fff}
.faq .a{padding:0 4px 28px;color:var(--ink-soft);font-size:.95rem;max-width:64ch}
.faq .a p+p{margin-top:.8rem}

/* ---------- Footer ---------- */
footer.site{background:var(--forest-deep);color:#D9DCCF;margin-top:104px}
.foot-main{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:48px;padding:80px 0 56px}
.foot-brand .word{font-family:var(--font-display);font-size:1.7rem;font-weight:600;color:#F6F3EA}
.foot-brand p{font-size:.88rem;color:rgba(217,220,207,.7);margin-top:14px;max-width:34ch}
.foot-col h4{
  font-size:.72rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:#C6A25E;margin-bottom:18px;
}
.foot-col ul{display:flex;flex-direction:column;gap:.75rem}
.foot-col a{font-size:.9rem;color:rgba(217,220,207,.85);transition:color .15s ease}
.foot-col a:hover{color:#fff}
.foot-legal{border-top:1px solid rgba(255,255,255,.1);padding:34px 0 46px;display:flex;flex-direction:column;gap:18px}
.foot-legal .fine{font-size:.74rem;line-height:1.6;color:rgba(217,220,207,.55);max-width:900px}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap}
.foot-bottom .links{display:flex;gap:1.6rem;flex-wrap:wrap}
.foot-bottom a{font-size:.78rem;color:rgba(217,220,207,.7)}
.foot-bottom a:hover{color:#fff}
.foot-bottom .copy{font-size:.78rem;color:rgba(217,220,207,.55)}
.pay-icons{display:flex;gap:.5rem;align-items:center}
.pay-icons span{
  font-size:.62rem;font-weight:700;letter-spacing:.06em;
  border:1px solid rgba(255,255,255,.2);border-radius:5px;padding:.28rem .5rem;
  color:rgba(217,220,207,.8);
}

/* ============================================================
   PDP (product detail pages)
   ============================================================ */
.crumbs{display:flex;gap:.6rem;align-items:center;font-size:.82rem;color:var(--muted);padding:26px 0 8px}
.crumbs a:hover{color:var(--ink)}
.crumbs .sep{opacity:.5}
.pdp{display:grid;grid-template-columns:1.05fr .95fr;gap:64px;padding:24px 0 88px;align-items:start}
.pdp-gallery{position:sticky;top:104px;display:flex;flex-direction:column;gap:14px}
.pdp-main-img{
  border-radius:var(--radius-lg);aspect-ratio:1/1.02;display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.pdp-main-img svg.pack{width:62%;height:auto}
.pdp-main-img .badge{position:absolute;top:20px;left:20px}
.pdp-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.pdp-thumb{
  border-radius:var(--radius-sm);aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;
  border:1.5px solid transparent;transition:border-color .2s ease;overflow:hidden;
}
.pdp-thumb svg{width:64%}
.pdp-thumb.active,.pdp-thumb:hover{border-color:var(--forest)}

.buybox{display:flex;flex-direction:column;gap:22px}
.buybox .badges{display:flex;gap:.5rem;flex-wrap:wrap}
.buybox h1{font-size:clamp(2rem,3.4vw,2.7rem)}
.buybox .sub{font-size:1.02rem;color:var(--ink-soft);max-width:46ch}
.benefits{display:flex;flex-direction:column;gap:.7rem;padding:4px 0}
.benefits li{display:flex;gap:.7rem;align-items:flex-start;font-size:.93rem;color:var(--ink-soft)}
.benefits svg{width:17px;height:17px;color:var(--forest);flex-shrink:0;margin-top:4px}

.opt-group{display:flex;flex-direction:column;gap:.7rem}
.opt-label{font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.variant-row{display:flex;gap:.7rem;flex-wrap:wrap}
.variant{
  padding:.7rem 1.3rem;border-radius:999px;border:1.5px solid var(--line);
  font-weight:600;font-size:.88rem;transition:all .18s ease;background:var(--paper);
}
.variant:hover{border-color:var(--ink)}
.variant.active{background:var(--ink);color:var(--paper);border-color:var(--ink)}

.plans{display:flex;flex-direction:column;gap:12px}
.plan{
  display:flex;align-items:center;gap:16px;
  background:var(--paper);border:1.5px solid var(--line);border-radius:var(--radius-md);
  padding:18px 20px;cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease;position:relative;
}
.plan:hover{border-color:var(--ink-soft)}
.plan.active{border-color:var(--forest);box-shadow:0 0 0 1.5px var(--forest)}
.plan .radio{
  width:20px;height:20px;border-radius:50%;border:2px solid var(--line);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;transition:border-color .2s ease;
}
.plan.active .radio{border-color:var(--forest)}
.plan.active .radio::after{content:"";width:10px;height:10px;border-radius:50%;background:var(--forest)}
.plan .body{flex:1;display:flex;flex-direction:column;gap:2px}
.plan .t{font-weight:650;font-size:.95rem;display:flex;align-items:center;gap:.6rem}
.plan .d{font-size:.8rem;color:var(--muted)}
.plan .p{text-align:right}
.plan .p .now{font-weight:700;font-size:1.05rem}
.plan .p .per{display:block;font-size:.72rem;color:var(--muted)}
.plan .p .was{font-size:.8rem;color:var(--muted);text-decoration:line-through;margin-right:.4rem}
.plan .badge{position:absolute;top:-10px;right:16px}

.atc-row{display:flex;flex-direction:column;gap:12px}
.ship-notes{display:flex;flex-direction:column;gap:.55rem;padding-top:4px}
.ship-notes li{display:flex;gap:.6rem;align-items:center;font-size:.82rem;color:var(--muted)}
.ship-notes svg{width:15px;height:15px;color:var(--forest);flex-shrink:0}

.pdp-acc{border-top:1px solid var(--line);margin-top:10px}
.pdp-acc details{border-bottom:1px solid var(--line)}
.pdp-acc summary{
  list-style:none;display:flex;justify-content:space-between;align-items:center;
  padding:19px 2px;cursor:pointer;font-weight:600;font-size:.96rem;
}
.pdp-acc summary::-webkit-details-marker{display:none}
.pdp-acc summary .ic{font-size:1.2rem;font-weight:400;transition:transform .2s ease;color:var(--muted)}
.pdp-acc details[open] summary .ic{transform:rotate(45deg)}
.pdp-acc .a{padding:0 2px 22px;font-size:.9rem;color:var(--ink-soft)}
.pdp-acc .a p+p{margin-top:.7rem}
.pdp-acc .a ul{display:flex;flex-direction:column;gap:.5rem;margin:.5rem 0}
.pdp-acc .a ul li{display:flex;gap:.6rem}
.pdp-acc .a ul li::before{content:"—";color:var(--clay);flex-shrink:0}

/* Drug Facts panel */
.drugfacts{
  border:2px solid var(--ink);border-radius:6px;background:#FFFEFA;
  font-size:.82rem;line-height:1.5;margin-top:.6rem;
}
.drugfacts .df-title{
  font-weight:800;font-size:1.15rem;padding:10px 14px;border-bottom:2px solid var(--ink);
  font-family:var(--font-body);letter-spacing:-.01em;
}
.drugfacts .df-sec{padding:9px 14px;border-bottom:1px solid var(--ink)}
.drugfacts .df-sec:last-child{border-bottom:0}
.drugfacts .df-h{font-weight:750}
.drugfacts .df-sec ul{margin-top:2px}
.drugfacts .df-sec ul li{padding-left:14px;position:relative}
.drugfacts .df-sec ul li::before{content:"•";position:absolute;left:2px}
.drugfacts .df-warn{font-weight:750}

/* Ingredient list */
.ing-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:8px}
.ing{
  background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-sm);
  padding:16px 18px;
}
.ing .n{font-weight:650;font-size:.9rem;display:flex;align-items:baseline;gap:.5rem;flex-wrap:wrap}
.ing .amt{font-size:.72rem;color:var(--clay);font-weight:650}
.ing .w{font-size:.8rem;color:var(--muted);margin-top:4px;line-height:1.5}

/* Cross-sell */
.pairs{background:var(--paper);border-top:1px solid var(--line-soft)}
.pairs .grid-3{margin-top:0}

/* Sticky mobile ATC */
.sticky-atc{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  background:var(--paper);border-top:1px solid var(--line);
  padding:12px 18px calc(12px + env(safe-area-inset-bottom));
  display:none;align-items:center;gap:14px;
}
.sticky-atc .info{flex:1;min-width:0}
.sticky-atc .n{font-weight:650;font-size:.86rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sticky-atc .p{font-size:.78rem;color:var(--muted)}

/* ============================================================
   Cart drawer
   ============================================================ */
.cart-overlay{
  position:fixed;inset:0;background:rgba(23,37,31,.45);z-index:90;
  opacity:0;pointer-events:none;transition:opacity .25s ease;backdrop-filter:blur(2px);
}
.cart-overlay.open{opacity:1;pointer-events:auto}
.cart-drawer{
  position:fixed;top:0;right:0;bottom:0;width:min(440px,100%);z-index:91;
  background:var(--bg);display:flex;flex-direction:column;
  transform:translateX(102%);transition:transform .32s cubic-bezier(.25,.8,.3,1);
  box-shadow:-24px 0 60px -30px rgba(23,37,31,.4);
}
.cart-drawer.open{transform:translateX(0)}
.cart-head{
  display:flex;justify-content:space-between;align-items:center;
  padding:24px 26px;border-bottom:1px solid var(--line-soft);
}
.cart-head h3{font-size:1.25rem}
.cart-close{font-size:1.5rem;line-height:1;padding:.3rem .5rem;color:var(--muted)}
.cart-close:hover{color:var(--ink)}
.cart-items{flex:1;overflow-y:auto;padding:10px 26px}
.cart-empty{padding:48px 0;text-align:center;display:flex;flex-direction:column;gap:16px;align-items:center;color:var(--muted)}
.cart-item{display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--line-soft)}
.cart-item .thumb{
  width:74px;height:74px;border-radius:var(--radius-sm);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.cart-item .thumb svg{width:60%}
.cart-item .b{flex:1;display:flex;flex-direction:column;gap:3px;min-width:0}
.cart-item .n{font-weight:650;font-size:.9rem}
.cart-item .v{font-size:.76rem;color:var(--muted)}
.cart-item .row{display:flex;justify-content:space-between;align-items:center;margin-top:8px}
.qty{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:999px}
.qty button{width:28px;height:28px;font-size:.95rem;color:var(--muted)}
.qty button:hover{color:var(--ink)}
.qty .q{min-width:24px;text-align:center;font-size:.85rem;font-weight:650}
.cart-item .pr{font-weight:650;font-size:.9rem}
.cart-item .rm{font-size:.72rem;color:var(--muted);text-decoration:underline;margin-top:6px;align-self:flex-start}
.cart-item .rm:hover{color:#B3543F}
.cart-foot{padding:22px 26px calc(22px + env(safe-area-inset-bottom));border-top:1px solid var(--line);background:var(--paper);display:flex;flex-direction:column;gap:14px}
.cart-sub{display:flex;justify-content:space-between;font-weight:700;font-size:1.05rem}
.cart-note{font-size:.75rem;color:var(--muted);text-align:center}
.free-ship{font-size:.78rem;text-align:center;color:var(--forest);font-weight:600}
.free-ship .bar{height:4px;background:var(--stone);border-radius:99px;margin-top:8px;overflow:hidden}
.free-ship .fill{height:100%;background:var(--forest);border-radius:99px;transition:width .3s ease}

/* Toast */
.toast{
  position:fixed;bottom:26px;left:50%;transform:translate(-50%,20px);
  background:var(--ink);color:var(--paper);padding:.85rem 1.5rem;border-radius:999px;
  font-size:.88rem;font-weight:600;z-index:95;opacity:0;pointer-events:none;
  transition:opacity .25s ease,transform .25s ease;box-shadow:var(--shadow-soft);
}
.toast.show{opacity:1;transform:translate(-50%,0)}

/* Reveal on scroll — hidden state only applies when JS is running (html.js),
   so content stays visible for no-JS, print, and crawlers. */
html.js .reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
html.js .reveal.in{opacity:1;transform:translateY(0)}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:44px}
  .hero-stage{min-height:440px}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .standards{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:1fr;max-width:560px}
  .band-grid{grid-template-columns:1fr;min-height:0}
  .band-copy{padding:52px 40px}
  .band-stage{padding:40px}
  .rx-band{grid-template-columns:1fr;padding:56px 40px;gap:36px}
  .split{grid-template-columns:1fr;gap:44px}
  .pdp{grid-template-columns:1fr;gap:40px}
  .pdp-gallery{position:static}
  .timeline{grid-template-columns:repeat(2,1fr);gap:36px 0}
  .timeline::before{display:none}
  .foot-main{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .section{padding:72px 0}
  .nav-links{display:none}
  .rx-pill{display:none}
  .hamburger{display:flex}
  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item{border-bottom:1px solid var(--line-soft)}
  .trust-item:nth-child(3),.trust-item:nth-child(4){border-bottom:0}
  .trust-item:nth-child(2n){border-right:0}
  .cat-head{flex-direction:column;align-items:flex-start;gap:1rem}
  .hero{padding:56px 0 64px}
  .hero-tag.t3{left:8px;bottom:20px}
  .compare{overflow-x:auto}
  .compare table{min-width:640px}
  .sticky-atc{display:flex}
  .wrap{padding:0 20px}
  .band-copy{padding:44px 28px}
}
@media (max-width:560px){
  .grid-3,.grid-2{grid-template-columns:1fr}
  .standards{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr;gap:28px}
  .ing-grid{grid-template-columns:1fr}
  .foot-main{grid-template-columns:1fr;gap:36px}
  .hero-ctas .btn{width:100%}
  .pdp-thumbs{grid-template-columns:repeat(4,1fr)}
  .waitlist{flex-direction:column;border-radius:22px}
  .waitlist .btn{width:100%}
}

/* ============================================================
   Platform additions — demo bar, storefront extras, portals
   ============================================================ */
.demo-bar{background:#3B2F1E;color:#F3E2BC;font-size:.78rem;padding:.5rem 1rem;display:flex;gap:1rem;align-items:center;justify-content:center;flex-wrap:wrap}
.demo-bar b{color:#FFD98A}
.demo-bar form{display:inline}
.demo-bar button{color:#FFD98A;text-decoration:underline;font-size:.78rem;font-weight:600}
.demo-bar button:hover{color:#fff}

.flash{max-width:var(--wrap);margin:18px auto 0;padding:0 28px}
.flash .inner{background:var(--forest-tint);border:1px solid rgba(30,70,56,.25);color:var(--forest-deep);border-radius:var(--radius-sm);padding:.9rem 1.2rem;font-size:.9rem;font-weight:550}

.rx-badge{display:inline-flex;align-items:center;gap:.4rem;font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--clay);border:1.5px solid rgba(188,107,63,.5);border-radius:999px;padding:.35rem .75rem}
.pdp-pharmacy{display:flex;gap:.7rem;align-items:flex-start;background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-sm);padding:14px 16px;font-size:.85rem;color:var(--ink-soft)}
.pdp-pharmacy svg{width:18px;height:18px;color:var(--forest);flex-shrink:0;margin-top:2px}
.pdp-pharmacy b{display:block}

.cat-hero{padding:72px 0 40px}
.cat-hero .eyebrow{margin-bottom:14px}

/* Forms */
.form{display:flex;flex-direction:column;gap:18px;max-width:520px}
.form.wide{max-width:none}
.field{display:flex;flex-direction:column;gap:7px}
.field label{font-size:.82rem;font-weight:650;color:var(--ink-soft)}
.field .hint{font-size:.76rem;color:var(--muted)}
.input, .field input[type=text], .field input[type=email], .field input[type=password], .field input[type=date], .field input[type=number], .field select, .field textarea{
  background:var(--paper);border:1.5px solid var(--line);border-radius:12px;padding:.8rem 1rem;font-size:.95rem;color:var(--ink);width:100%}
.field input:focus, .field select:focus, .field textarea:focus{outline:none;border-color:var(--forest);box-shadow:0 0 0 1.5px var(--forest)}
.choice-row{display:flex;gap:.6rem;flex-wrap:wrap}
.choice{border:1.5px solid var(--line);border-radius:999px;padding:.55rem 1.1rem;font-size:.88rem;font-weight:600;cursor:pointer;background:var(--paper)}
.choice input{position:absolute;opacity:0}
.choice.checked, .choice:has(input:checked){background:var(--ink);color:var(--paper);border-color:var(--ink)}
.auth-card{max-width:460px;margin:64px auto;background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-lg);padding:44px}
.auth-card h1{font-size:2rem;margin-bottom:8px}
.auth-card .sw{font-size:.85rem;color:var(--muted);margin-top:16px}
.error-note{background:#F7E7E2;border:1px solid #DBA08D;color:#7C3A22;border-radius:10px;padding:.8rem 1rem;font-size:.88rem}

/* Status pills */
.pill{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:.32rem .7rem;border-radius:999px;border:1px solid transparent}
.pill.awaiting_intake{background:#F5EBD7;color:#7A5A18;border-color:#E3CFA0}
.pill.in_review{background:#E4ECF4;color:#2C4A66;border-color:#BCD0E0}
.pill.approved,.pill.acked,.pill.sent,.pill.transmitted{background:#E2EFE6;color:#1E5636;border-color:#B9D8C4}
.pill.sent_to_pharmacy{background:#E2EFE6;color:#1E5636;border-color:#B9D8C4}
.pill.shipped{background:var(--forest);color:#F2EFE7}
.pill.processing{background:#EDE8DE;color:#5C5546;border-color:#D6CDBB}
.pill.denied,.pill.error,.pill.canceled{background:#F7E7E2;color:#8A3A21;border-color:#DBA08D}
.pill.active{background:#E2EFE6;color:#1E5636;border-color:#B9D8C4}
.pill.paused{background:#F5EBD7;color:#7A5A18}

/* Data tables */
.tbl{width:100%;border-collapse:collapse;background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-md);overflow:hidden}
.tbl th{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);text-align:left;padding:13px 16px;background:var(--bg);border-bottom:1px solid var(--line)}
.tbl td{padding:13px 16px;font-size:.88rem;border-bottom:1px solid var(--line-soft);vertical-align:top}
.tbl tr:last-child td{border-bottom:0}
.tbl a{font-weight:600;border-bottom:1.5px solid var(--clay)}
.tbl-wrap{overflow-x:auto;border-radius:var(--radius-md)}

/* Portal layout */
.portal{display:grid;grid-template-columns:230px 1fr;gap:36px;padding:40px 0 80px;align-items:start}
.portal-nav{position:sticky;top:100px;display:flex;flex-direction:column;gap:4px;background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:14px}
.portal-nav .who{font-size:.72rem;color:var(--muted);padding:8px 12px 12px;border-bottom:1px solid var(--line-soft);margin-bottom:8px}
.portal-nav a{padding:.6rem .85rem;border-radius:9px;font-size:.9rem;font-weight:550;color:var(--ink-soft)}
.portal-nav a:hover{background:var(--bg)}
.portal-nav a.on{background:var(--forest);color:#F2EFE7;font-weight:650}
.portal-main{display:flex;flex-direction:column;gap:26px;min-width:0}
.portal-main h1{font-size:2rem}
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.stat{background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:20px}
.stat .n{font-family:var(--font-display);font-size:1.9rem;font-weight:550}
.stat .l{font-size:.76rem;color:var(--muted);font-weight:600;letter-spacing:.04em;text-transform:uppercase}
.panel{background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:26px}
.panel h2{font-size:1.15rem;font-family:var(--font-body);font-weight:700;letter-spacing:0;margin-bottom:14px}
.qa{display:flex;flex-direction:column;gap:2px;padding:10px 0;border-bottom:1px dashed var(--line-soft)}
.qa .q{font-size:.78rem;color:var(--muted)}
.qa .a{font-size:.95rem;font-weight:600}
.qa.flagged .a{color:#8A3A21}
.flag-list{background:#F7E7E2;border:1px solid #DBA08D;border-radius:var(--radius-sm);padding:14px 16px;display:flex;flex-direction:column;gap:6px}
.flag-list .t{font-size:.72rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#8A3A21}
.flag-list li{font-size:.86rem;color:#7C3A22;display:flex;gap:.5rem}
.rx-fields{display:grid;grid-template-columns:2fr 1fr 90px;gap:10px}
pre.payload{background:#12201A;color:#CFE3D6;font-size:.74rem;line-height:1.5;border-radius:10px;padding:14px;overflow-x:auto;max-width:100%}

/* checkout */
.co-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:start;padding:30px 0 80px}
.co-items{display:flex;flex-direction:column;gap:0;background:var(--paper);border:1px solid var(--line-soft);border-radius:var(--radius-md);padding:6px 22px}
.demo-pay{border:1.5px dashed rgba(188,107,63,.55);border-radius:var(--radius-sm);padding:12px 14px;font-size:.8rem;color:var(--clay-deep);background:rgba(188,107,63,.05)}
.steps-inline{display:flex;gap:10px;align-items:center;font-size:.78rem;color:var(--muted);flex-wrap:wrap}
.steps-inline b{color:var(--ink)}
.steps-inline .sep{opacity:.4}

@media (max-width:1024px){
  .portal{grid-template-columns:1fr}
  .portal-nav{position:static;flex-direction:row;flex-wrap:wrap}
  .portal-nav .who{display:none}
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .co-grid{grid-template-columns:1fr}
  .rx-fields{grid-template-columns:1fr}
}

/* ── Typographic product marks (replaces illustrated packshots) ── */
.prodmark{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:12px;padding:30px;text-align:center}
.prodmark .cat{font-size:.6rem;font-weight:700;letter-spacing:.24em;text-transform:uppercase;color:rgba(23,37,31,.42)}
.prodmark .rule{width:24px;height:2px;background:var(--clay);border-radius:2px;opacity:.75}
.prodmark .name{font-family:var(--font-display);font-style:italic;font-weight:550;color:var(--forest-deep);line-height:1.06;font-size:clamp(1.7rem,2.4vw,2.2rem);letter-spacing:-.01em}
.prodmark .name.long{font-size:clamp(1.25rem,1.9vw,1.65rem)}
.prodmark .dose{font-size:.68rem;font-weight:650;letter-spacing:.07em;padding:.4rem .9rem;border:1px solid rgba(23,37,31,.22);border-radius:999px;color:var(--ink-soft);background:rgba(255,255,255,.55)}
.prodmark .kind-tag{position:absolute;top:14px;right:16px;font-size:.6rem;font-weight:800;letter-spacing:.16em;color:var(--clay);opacity:.9}
.pdp-main-img .prodmark .name{font-size:clamp(2.2rem,3.4vw,3.1rem)}
.pdp-main-img .prodmark .name.long{font-size:clamp(1.7rem,2.6vw,2.3rem)}

/* Hero type-collage (replaces packshot cluster) */
.hero-type-grid{display:grid;grid-template-columns:1fr 1fr;grid-auto-rows:1fr;gap:14px;width:100%;height:100%;min-height:452px}
.hero-tile{border-radius:var(--radius-md);display:flex;flex-direction:column;justify-content:center;align-items:center;gap:8px;padding:22px;text-align:center;position:relative;overflow:hidden}
.hero-tile .t-cat{font-size:.56rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:rgba(23,37,31,.4)}
.hero-tile .t-name{font-family:var(--font-display);font-style:italic;font-weight:550;color:var(--forest-deep);font-size:clamp(1.15rem,1.7vw,1.55rem);line-height:1.05}
.hero-tile .t-price{font-size:.66rem;font-weight:650;color:var(--ink-soft)}
.hero-tile.wide{grid-column:1 / -1;background:var(--forest);min-height:88px}
.hero-tile.wide .t-name{color:#F6F3EA;font-size:clamp(1rem,1.5vw,1.3rem)}
.hero-tile.wide .t-cat{color:#C6A25E}
