/* ==========================================================================
   MemoHoney Reviews — Night / honey design system
   Palette: deep indigo + honey amber + periwinkle  (dark hero, cool light body)
   Type:    Newsreader / Figtree
   ========================================================================== */

:root {
  --night:      #151A3A;
  --night-2:    #1E2550;
  --night-3:    #2C3466;
  --ink:        #10142E;
  --body:       #444C6B;
  --muted:      #737B9A;
  --honey:      #EFA92E;
  --honey-dk:   #C4841A;
  --honey-lt:   #FDF0D6;
  --peri:       #9C8FE8;
  --peri-lt:    #ECE8FB;
  --mist:       #F6F7FB;
  --mist-2:     #EDEFF7;
  --paper:      #FFFFFF;
  --line:       #DFE3EF;
  --line-soft:  #EDF0F7;

  --bs-body-font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  --bs-body-color: var(--body);
  --bs-body-bg: var(--paper);
  --bs-link-color: var(--honey-dk);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(16,20,46,.06);
  --shadow:    0 8px 30px rgba(16,20,46,.09);
  --shadow-lg: 0 24px 60px rgba(16,20,46,.16);
}

* { box-sizing: border-box; }

body {
  font-family: 'Figtree', system-ui, sans-serif;
  color: var(--body);
  background: var(--paper);
  font-size: 1.02rem;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); font-weight: 500; letter-spacing: -.025em; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.35rem); }
h3 { font-size: clamp(1.22rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.12rem; font-weight: 600; }
p  { margin-bottom: 1.05rem; }

/* Eyebrow — thin rule + tracked caps */
.eyebrow {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--honey-dk); padding-bottom: .45rem; margin-bottom: .95rem;
  border-bottom: 2px solid var(--honey);
}
.eyebrow-peri { color: #6558B8; border-bottom-color: var(--peri); }
.eyebrow-light { color: var(--honey); border-bottom-color: var(--honey); }

.section-head { max-width: 750px; margin: 0 auto 3rem; }
.section-head.center { text-align: center; }
.section-head .sub { color: var(--muted); font-size: 1.05rem; margin-top: .9rem; }

/* ---------- Sections ---------- */
.sec { padding: clamp(3.2rem, 6.8vw, 5.6rem) 0; }
.sec-mist { background: var(--mist); }
.sec-mist-2 { background: var(--mist-2); }
.sec-night { background: var(--night); color: #AEB5D4; }
.sec-night h2, .sec-night h3, .sec-night h4 { color: #fff; }
.sec-night a { color: var(--honey); }

/* ---------- Disclosure ---------- */
.disclosure {
  background: var(--ink); color: #9AA2C2; font-size: .77rem; padding: .52rem 0;
}
.disclosure .container { display: flex; flex-wrap: wrap; gap: .35rem 1.6rem; justify-content: center; }
.disclosure b { color: var(--honey); font-weight: 600; }

/* ---------- Nav ---------- */
.navbar {
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: .68rem 0;
}
.navbar .navbar-brand {
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 1.5rem;
  color: var(--ink); letter-spacing: -.02em;
}
.navbar .navbar-brand span { color: var(--honey-dk); }
.navbar .nav-link { font-size: .93rem; font-weight: 500; color: var(--body); padding: .45rem .8rem !important; }
.navbar .nav-link:hover, .navbar .nav-link:focus { color: var(--honey-dk); }
.navbar-toggler { border-color: var(--line); border-radius: var(--r-sm); padding: .35rem .6rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(239,169,46,.34); }

/* ---------- Buttons ---------- */
.btn {
  font-family: 'Figtree', sans-serif; font-weight: 600;
  border-radius: var(--r-sm); padding: .8rem 1.6rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-honey {
  background: var(--honey); border: 1px solid var(--honey); color: #2A1D02;
  box-shadow: 0 4px 14px rgba(239,169,46,.32);
}
.btn-honey:hover, .btn-honey:focus {
  background: var(--honey-dk); border-color: var(--honey-dk); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 22px rgba(196,132,26,.38);
}
.btn-night { background: var(--night); border: 1px solid var(--night); color: #fff; }
.btn-night:hover, .btn-night:focus { background: var(--night-2); border-color: var(--night-2); color: #fff; transform: translateY(-2px); }
.btn-outline-night { background: transparent; border: 1.5px solid var(--night); color: var(--night); }
.btn-outline-night:hover, .btn-outline-night:focus { background: var(--night); color: #fff; }
.btn-ghost-light { background: transparent; border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover, .btn-ghost-light:focus { background: #fff; color: var(--night); border-color: #fff; }
.btn-xl { padding: 1rem 2.1rem; font-size: 1.05rem; }

/* ---------- HERO — dark ---------- */
.hero {
  background:
    radial-gradient(760px 420px at 80% 12%, rgba(156,143,232,.20), transparent 65%),
    radial-gradient(620px 340px at 12% 88%, rgba(239,169,46,.13), transparent 65%),
    var(--night);
  color: #B6BDD9;
  padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 .sub {
  display: block; font-family: 'Figtree', sans-serif; font-size: .36em; font-weight: 400;
  color: #A9B1D0; letter-spacing: 0; margin-top: .8rem; line-height: 1.5;
}
.hero-lede { font-size: 1.06rem; color: #C3C9E2; }
.hero-media { position: sticky; top: 88px; }
.hero .eyebrow { color: var(--honey); border-bottom-color: var(--honey); }

/* Product plate on dark */
.plate {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 1.6rem; backdrop-filter: blur(6px);
}
.plate .plate-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--night); background: var(--honey);
  padding: .26rem .8rem; border-radius: 100px; margin-bottom: 1rem;
}
.plate img { display: block; margin: 0 auto; max-height: 390px; width: auto; }

/* Signature: neural constellation */
.neural { margin-top: 1rem; padding: 1.1rem 1.25rem; background: rgba(255,255,255,.04); border-radius: var(--r); }
.neural .n-title { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #8E97BC; margin-bottom: .6rem; }
.neural svg { display: block; width: 100%; height: auto; }
.neural .n-note { font-size: .76rem; color: #7E87AC; margin: .6rem 0 0; }

/* Spec list on dark */
.specs { border-top: 1px solid rgba(255,255,255,.14); margin: 1.4rem 0; }
.s-row {
  display: flex; gap: 1rem; padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.09); font-size: .9rem;
}
.s-row b { flex: 0 0 40%; color: #fff; font-weight: 600; }
.s-row span { color: #A2AAC9; }

.stats { display: flex; gap: 1.7rem; flex-wrap: wrap; margin: 1.4rem 0; }
.stats .s .v { font-family: 'Newsreader', serif; font-size: 2rem; font-weight: 600; color: var(--honey); line-height: 1; }
.stats .s .k { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #8E97BC; margin-top: .35rem; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.15rem; }
.chips span {
  font-size: .75rem; font-weight: 500; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); padding: .28rem .75rem; border-radius: 100px; color: #C3C9E2;
}

/* ---------- Evidence meter — analytical signature ---------- */
.meter { display: flex; gap: 3px; margin: .5rem 0 .1rem; }
.meter i {
  display: block; width: 22px; height: 7px; border-radius: 2px; background: var(--line);
}
.meter i.on { background: var(--honey); }
.meter i.on.strong { background: var(--honey-dk); }
.meter-label { font-size: .74rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }

/* ---------- Cards ---------- */
.card-l {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  border-left: 3px solid var(--honey); padding: 1.6rem; height: 100%;
  transition: transform .16s ease, box-shadow .16s ease;
}
.card-l:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-l.peri { border-left-color: var(--peri); }
.card-l h4 { margin-bottom: .5rem; }
.card-l p { color: var(--muted); font-size: .94rem; margin-bottom: 0; }

.plain { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; height: 100%; }
.badge-card { text-align: center; }
.badge-card img { height: 72px; width: auto; object-fit: contain; margin-bottom: .9rem; }

.mech { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; height: 100%; }
.mech .n {
  display: inline-block; font-family: 'Newsreader', serif; font-size: 1.5rem; font-weight: 600;
  color: var(--honey-dk); line-height: 1; margin-bottom: .6rem;
}
.mech h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.mech p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Ingredient blocks */
.ing { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.65rem; height: 100%; }
.ing h4 { font-size: 1.14rem; margin-bottom: .25rem; }
.ing .latin { font-size: .82rem; font-style: italic; color: var(--muted); margin-bottom: .75rem; }
.ing p { font-size: .93rem; color: var(--muted); margin-bottom: .8rem; }
.ing .dose {
  font-size: .8rem; font-weight: 600; color: var(--night-3);
  background: var(--mist); border-radius: var(--r-sm); padding: .4rem .7rem; margin-bottom: .8rem; display: inline-block;
}
.ing .more { font-size: .87rem; font-weight: 600; color: var(--honey-dk); text-decoration: none; }
.ing .more:hover { color: var(--night); }

/* ---------- Notices ---------- */
.note {
  background: var(--peri-lt); border-left: 3px solid var(--peri); border-radius: var(--r-sm);
  padding: 1.1rem 1.35rem; font-size: .94rem; color: #3D3468;
}
.note strong { color: #2A2350; }
.note a { color: #5A4CA8; text-decoration: underline; }
.warn {
  background: var(--honey-lt); border-left: 3px solid var(--honey); border-radius: var(--r-sm);
  padding: 1.1rem 1.35rem; font-size: .94rem; color: #6E4A08;
}
.warn strong { color: #503505; }
.warn a { color: #8A5C0A; text-decoration: underline; }

/* Experience cards */
.exp { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.55rem; height: 100%; }
.exp .lbl {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--honey-dk); background: var(--honey-lt);
  padding: .22rem .68rem; border-radius: 3px; margin-bottom: .7rem;
}
.exp.critical .lbl { color: #6558B8; background: var(--peri-lt); }
.exp h4 { font-size: 1.04rem; margin-bottom: .45rem; }
.exp p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Pricing ---------- */
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.5rem 1.6rem; text-align: center; height: 100%; position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.best { border: 2px solid var(--honey); box-shadow: var(--shadow); }
.plan .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--honey); color: #2A1D02; font-size: .68rem; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase; padding: .32rem .95rem;
  border-radius: 100px; white-space: nowrap;
}
.plan h3 { font-size: 1.4rem; margin-bottom: .15rem; }
.plan .supply { font-size: .74rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.plan img.p-img { max-height: 195px; width: auto; margin: 0 auto 1.05rem; display: block; }
.plan .ship { font-size: .9rem; font-weight: 700; color: var(--honey-dk); margin-bottom: .3rem; }
.plan .price-note { font-size: .86rem; color: var(--muted); margin-bottom: 1.1rem; }
.plan .pay { max-width: 168px; margin: .9rem auto 0; display: block; opacity: .75; }

/* ---------- Benefits ---------- */
.ben { display: flex; gap: 1.05rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft); }
.ben:last-child { border-bottom: 0; }
.ben .k {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--honey-lt);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Newsreader', serif; font-size: .95rem; font-weight: 600; color: var(--honey-dk);
}
.ben h4 { font-size: 1.05rem; margin-bottom: .28rem; }
.ben p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ---------- Guarantee ---------- */
.guar { background: var(--paper); border: 1px solid var(--honey); border-radius: var(--r-lg); padding: 2rem; text-align: center; }
.guar img { max-width: 160px; margin-bottom: 1.05rem; }

/* ---------- FAQ ---------- */
.accordion-item { border: 1px solid var(--line); border-radius: var(--r) !important; margin-bottom: .65rem; overflow: hidden; }
.accordion-button {
  font-family: 'Newsreader', serif; font-weight: 500; font-size: 1.08rem;
  color: var(--ink); background: var(--paper); padding: 1.05rem 1.3rem;
}
.accordion-button:not(.collapsed) { background: var(--mist); color: var(--ink); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(239,169,46,.3); border-color: var(--honey); }
.accordion-body { font-size: .94rem; color: var(--muted); padding: 0 1.3rem 1.2rem; }

/* ---------- References ---------- */
.refs { list-style: none; padding: 0; margin: 0; counter-reset: r; }
.refs li { counter-increment: r; position: relative; padding-left: 2.3rem; margin-bottom: .78rem; font-size: .9rem; color: var(--muted); }
.refs li::before {
  content: counter(r); position: absolute; left: 0; top: .1rem; width: 21px; height: 21px;
  background: var(--night); color: var(--honey); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700;
}
.refs a { color: var(--honey-dk); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Blog ---------- */
.pcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.55rem; height: 100%; display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pcard .cat {
  font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--honey-dk); margin-bottom: .6rem;
}
.pcard h3 { font-size: 1.14rem; margin-bottom: .55rem; }
.pcard h3 a { color: var(--ink); text-decoration: none; }
.pcard h3 a:hover { color: var(--honey-dk); }
.pcard p { font-size: .91rem; color: var(--muted); flex-grow: 1; }
.pcard .more { font-size: .86rem; font-weight: 600; color: var(--honey-dk); text-decoration: none; }
.pcard .more:hover { color: var(--night); }

.article { max-width: 765px; margin: 0 auto; }
.article h2 { font-size: 1.62rem; margin: 2.2rem 0 .85rem; }
.article h3 { font-size: 1.24rem; margin: 1.7rem 0 .62rem; }
.article p, .article li { font-size: 1.04rem; line-height: 1.82; }
.article ul, .article ol { margin-bottom: 1.2rem; padding-left: 1.3rem; }
.article li { margin-bottom: .48rem; }
.article a { color: var(--honey-dk); text-decoration: underline; text-underline-offset: 2px; }
.article a:hover { color: var(--night); }
.article img { border-radius: var(--r); margin: 1.5rem 0; }
.article blockquote {
  border-left: 3px solid var(--honey); background: var(--mist);
  padding: 1rem 1.3rem; margin: 1.5rem 0; color: var(--night-3); font-size: 1.03rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.meta-line { font-size: .83rem; color: var(--muted); padding-bottom: 1rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
.toc { background: var(--mist); border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem 1.45rem; margin: 1.6rem 0 2rem; }
.toc h4 { font-family: 'Figtree', sans-serif; font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; color: var(--honey-dk); margin-bottom: .65rem; font-weight: 700; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { font-size: .92rem; margin-bottom: .32rem; }

.cta-band { background: var(--night); color: #AEB5D4; border-radius: var(--r-lg); padding: 1.8rem; margin: 2rem 0; text-align: center; }
.cta-band h4 { color: #fff; margin-bottom: .58rem; }
.cta-band p { font-size: .94rem; margin-bottom: 1.1rem; }

/* ---------- Breadcrumb / head ---------- */
.crumb { background: var(--mist); border-bottom: 1px solid var(--line); padding: .75rem 0; font-size: .85rem; }
.crumb a { color: var(--honey-dk); text-decoration: none; font-weight: 500; }
.crumb a:hover { color: var(--night); }
.crumb .sep { color: var(--line); margin: 0 .5rem; }
.crumb .cur { color: var(--muted); }

.page-head { background: var(--night); color: #AEB5D4; padding: clamp(2.2rem, 5vw, 3.6rem) 0; }
.page-head h1 { color: #fff; margin-bottom: .8rem; }
.page-head p { color: #A9B1D0; font-size: 1.03rem; max-width: 710px; margin-bottom: 0; }
.page-head .eyebrow { color: var(--honey); border-bottom-color: var(--honey); }

/* ---------- Legal ---------- */
.legal h2 { font-size: 1.34rem; margin: 2rem 0 .72rem; }
.legal p, .legal li { font-size: .98rem; color: var(--body); }
.legal ul { padding-left: 1.3rem; margin-bottom: 1.15rem; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: #8D96B8; padding: 3.3rem 0 0; font-size: .91rem; }
.foot h5 { color: #fff; font-family: 'Figtree', sans-serif; font-weight: 700; font-size: .73rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .95rem; }
.foot .fb { font-family: 'Newsreader', serif; font-weight: 600; font-size: 1.48rem; color: #fff; display: block; margin-bottom: .72rem; }
.foot .fb span { color: var(--honey); }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: .52rem; }
.foot a { color: #8D96B8; text-decoration: none; }
.foot a:hover { color: var(--honey); }
.foot-trust { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.5rem; padding: 1.5rem 0; }
.foot-trust span { font-size: .72rem; border: 1px solid rgba(255,255,255,.14); padding: .27rem .78rem; border-radius: 100px; color: #A4ACC9; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.08); padding: 1.35rem 0 6.3rem; font-size: .79rem; color: #7A83A5; text-align: center; }
.foot-legal p { margin-bottom: .58rem; }

/* ---------- Sticky bar ---------- */
.sbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1030; background: var(--night); border-top: 2px solid var(--honey); padding: .58rem 0; box-shadow: 0 -5px 22px rgba(16,20,46,.3); }
.sbar .inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.sbar .txt { color: #B6BDD9; font-size: .88rem; margin: 0; }
.sbar .txt b { color: var(--honey); }
.sbar .btn { padding: .54rem 1.3rem; font-size: .91rem; }

/* ---------- Utilities ---------- */
.lnk { color: var(--honey-dk); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.lnk:hover { color: var(--night); }
.aff-box { font-size: .81rem; color: var(--muted); background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-sm); padding: .9rem 1.15rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse { background: var(--paper); border-top: 1px solid var(--line); margin-top: .55rem; padding: .78rem 0; }
  .navbar .nav-link { padding: .58rem .2rem !important; }
  .hero-media { position: static; }
}
@media (max-width: 767.98px) {
  body { font-size: .98rem; }
  .hero { padding-top: 1.6rem; }
  .stats { gap: 1.1rem; }
  .stats .s .v { font-size: 1.6rem; }
  .s-row { flex-direction: column; gap: .05rem; }
  .s-row b { flex: none; }
  .meter i { width: 16px; }
  .sbar .txt { display: none; }
  .sbar .btn { width: 100%; }
  .foot-legal { padding-bottom: 5.3rem; }
  .plan img.p-img { max-height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .btn:hover, .card-l:hover, .plan:hover, .pcard:hover { transform: none; }
}

:focus-visible { outline: 3px solid var(--honey); outline-offset: 2px; }
