/* ─────────────────────────────────────────────────────────────
   Bloomscalp — one-product store.

   Deep pine on warm cream. Growth reads green, and the whole category
   sits on clinical white, so this is the one place a scalp brand can look
   like itself and not like a lab supplier.

   Display is Instrument Serif, UI is Instrument Sans. A serif headline on
   a device page buys warmth that a grotesque cannot.

   The buy button is pine, 12.2:1 against its own label and 11.3:1 against
   the page. Copper carries the 630 nm light and nothing else.
   ───────────────────────────────────────────────────────────── */

:root {
  --cream:   #F8F6F2;   /* page */
  --paper:   #FFFFFF;   /* cards lifted off it */
  --sand:    #EFEBE3;   /* alternating bands */
  --pine:    #0F3D2E;   /* brand, and every button */
  --pine-2:  #0B2E23;
  --ink:     #16211C;
  --ink-2:   #4A5A52;

  --copper:  #B24A16;   /* 630 nm. Never a button. */
  --copper-glow: rgba(178, 74, 22, .22);

  --muted: rgba(22, 33, 28, .68);
  --quiet: rgba(22, 33, 28, .50);
  --line:  rgba(22, 33, 28, .16);
  --line-2:rgba(22, 33, 28, .08);
  --on-pine:   rgba(255, 255, 255, .74);
  --line-pine: rgba(255, 255, 255, .18);

  --r: 10px;
  --r-lg: 22px;
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans:  'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans);
       font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* height:auto matters because the markup carries width/height attributes to
   reserve layout space; without it the browser honours them literally. */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--pine); color: var(--cream); }
:focus-visible { outline: 2px solid var(--pine); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.018em; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 26px; }
.sec { padding: 100px 0; }
.sec--sand { background: var(--sand); }
.sec--pine { background: var(--pine); color: var(--cream); }
.sec--tight { padding: 66px 0; }
.eyebrow { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .16em;
           text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.sec--pine .eyebrow { color: #E4A87C; }
.h2 { font-size: clamp(34px, 4.4vw, 54px); max-width: 17ch; }
.h2 em { font-style: italic; color: var(--copper); }
.sec--pine .h2 em { color: #E4A87C; }
.lede { font-size: 17.5px; line-height: 1.62; color: var(--muted); max-width: 58ch; margin-top: 16px; }
.sec--pine .lede { color: var(--on-pine); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
       background: var(--pine); color: #fff; border: 1px solid var(--pine);
       border-radius: 999px; padding: 17px 32px; font-size: 15.5px; font-weight: 600;
       text-decoration: none; letter-spacing: -.004em;
       transition: background .18s ease, transform .1s ease; }
.btn:hover { background: var(--pine-2); border-color: var(--pine-2); }
.btn:active { transform: translateY(1px); }
.btn--out { background: transparent; color: var(--pine); border-color: var(--line); }
.btn--out:hover { background: var(--pine); color: #fff; border-color: var(--pine); }
.btn--cream { background: var(--cream); color: var(--pine); border-color: var(--cream); }
.btn--cream:hover { background: #fff; border-color: #fff; }
.btn--wide { width: 100%; }
.btn--lg { padding: 20px 36px; font-size: 17px; }
.tlink { font-size: 15.5px; font-weight: 600; text-decoration: none;
         border-bottom: 1.5px solid var(--line); padding-bottom: 2px; }
.tlink:hover { border-color: var(--pine); }

.stars { display: inline-flex; gap: 2px; color: var(--copper); line-height: 1; }
.stars svg { width: 15px; height: 15px; }

/* ── Ticker ──────────────────────────────────────────────── */
.ticker { background: var(--pine); color: var(--cream); overflow: hidden; padding: 10px 0; }
.ticker-track { display: flex; width: max-content; animation: roll 38s linear infinite; }
.ticker span { font-size: 11.5px; font-weight: 500; letter-spacing: .11em;
               text-transform: uppercase; padding: 0 22px; white-space: nowrap; }
.ticker span::after { content: '✦'; color: #E4A87C; margin-left: 22px; font-size: 9px; }
@keyframes roll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ── Header ──────────────────────────────────────────────── */
.top { position: sticky; top: 0; z-index: 90; background: rgba(248,246,242,.94);
       -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
       border-bottom: 1px solid var(--line-2); }
.top-in { max-width: 1140px; margin: 0 auto; padding: 0 26px; height: 68px;
          display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 30px; height: 30px; }
.brand b { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: .01em; }
.menu { display: flex; gap: 28px; list-style: none; }
.menu a { font-size: 14.5px; font-weight: 500; text-decoration: none; color: var(--ink-2); }
.menu a:hover, .menu a[aria-current] { color: var(--pine); }
.tools { display: flex; align-items: center; gap: 10px; }
.icon { position: relative; background: none; border: 0; color: var(--pine); display: flex; padding: 6px; }
.icon svg { width: 22px; height: 22px; }
.pip { position: absolute; top: -2px; right: -4px; min-width: 18px; height: 18px;
       background: var(--copper); color: #fff; border-radius: 9px; font-size: 10.5px; font-weight: 700;
       display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.burger { display: none; background: none; border: 0; color: var(--pine); padding: 6px; }
.burger svg { width: 23px; height: 23px; }
.drop { display: none; flex-direction: column; padding: 4px 26px 18px; border-top: 1px solid var(--line-2); }
.drop.open { display: flex; }
.drop a { padding: 14px 0; text-decoration: none; font-size: 16.5px; font-weight: 500;
          border-bottom: 1px solid var(--line-2); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 76px 0 0; }
.hero-in { max-width: 1140px; margin: 0 auto; padding: 0 26px;
           display: grid; grid-template-columns: 1.02fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.024em; }
.hero h1 em { font-style: italic; color: var(--copper); }
.hero .sub { font-size: 18px; line-height: 1.58; color: var(--muted); margin-top: 20px; max-width: 43ch; }
.hero-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
              font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.ticks { list-style: none; margin-top: 24px; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 11px; font-size: 15px; color: var(--ink-2); }
.ticks svg { width: 18px; height: 18px; flex: none; color: var(--pine); margin-top: 1px; }
.hero-cta { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.shot { position: relative; }
.shot img { width: 100%; border-radius: var(--r-lg); }
.tag { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px;
       background: rgba(15,61,46,.92); color: var(--cream); padding: 9px 15px; border-radius: 999px;
       font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #E4A87C;
       box-shadow: 0 0 0 0 var(--copper-glow); animation: ping 2.4s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 11px rgba(178,74,22,0); } 100% { box-shadow: 0 0 0 0 rgba(178,74,22,0); } }
.seal { position: absolute; top: 16px; right: 16px; z-index: 2; text-decoration: none;
        display: flex; align-items: center; gap: 8px; background: var(--paper); color: var(--pine);
        padding: 10px 16px 10px 13px; border-radius: 999px; font-size: 13px; font-weight: 600;
        box-shadow: 0 3px 16px rgba(15,61,46,.14); }
.seal svg { width: 18px; height: 18px; flex: none; color: var(--copper); }

/* ── Trust strip ─────────────────────────────────────────── */
.strip { border-block: 1px solid var(--line-2); background: var(--paper); margin-top: 72px; }
.strip-in { max-width: 1140px; margin: 0 auto; padding: 16px 26px;
            display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 22px; }
.strip span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px;
              font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.strip svg { width: 16px; height: 16px; flex: none; color: var(--pine); }

/* ── Problem ─────────────────────────────────────────────── */
.problem { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.prob { background: var(--paper); border-radius: var(--r-lg); padding: 32px 28px; }
.prob .n { font-family: var(--serif); font-size: 40px; color: var(--copper); line-height: 1; }
.prob h3 { font-size: 24px; margin: 12px 0 9px; }
.prob p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ── Benefit cards ───────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: var(--paper); border-radius: var(--r-lg); padding: 34px 24px; text-align: center; }
.ring { width: 76px; height: 76px; border-radius: 50%; background: var(--sand);
        display: grid; place-items: center; margin: 0 auto 18px; }
.ring svg { width: 29px; height: 29px; stroke-width: 1.5; color: var(--pine); }
.card b { display: block; font-family: var(--serif); font-weight: 400; font-size: 21px; margin-bottom: 7px; }
.card span { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.step img { width: 100%; border-radius: var(--r-lg); margin-bottom: 18px; aspect-ratio: 16/10; object-fit: cover; }
.step .n { font-size: 11.5px; font-weight: 600; letter-spacing: .14em;
           text-transform: uppercase; color: var(--copper); }
.step h3 { font-size: 26px; margin: 10px 0 9px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ── Evidence ────────────────────────────────────────────── */
.evidence { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.ev { background: rgba(255,255,255,.07); border: 1px solid var(--line-pine); border-radius: var(--r-lg); padding: 32px 30px; }
.ev-n { font-family: var(--serif); font-size: 52px; color: #E4A87C; line-height: 1; }
.ev-u { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
        color: rgba(255,255,255,.55); margin: 9px 0 16px; }
.ev h3 { font-size: 23px; margin-bottom: 9px; color: var(--cream); }
.ev p { font-size: 14.5px; line-height: 1.62; color: var(--on-pine); }
.ev cite { display: block; margin-top: 13px; font-size: 11.5px; font-style: normal; color: rgba(255,255,255,.55); }
.ev cite a { text-decoration: underline; text-underline-offset: 2px; }
.smallprint { margin-top: 24px; font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,.52); max-width: 88ch; }

/* ── Comparison ──────────────────────────────────────────── */
.versus { margin-top: 42px; background: var(--paper); border-radius: var(--r-lg); overflow: hidden; }
.versus table { width: 100%; border-collapse: collapse; }
.versus th, .versus td { padding: 17px 18px; text-align: left; font-size: 14.5px;
                         border-bottom: 1px solid var(--line-2); }
.versus thead th { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
                   color: var(--quiet); background: var(--sand); }
.versus thead th:first-child { width: 34%; }
.versus .us { background: rgba(15,61,46,.05); font-weight: 600; }
.versus tbody th { font-weight: 500; color: var(--ink-2); }
.versus .y { color: var(--pine); font-weight: 600; }
.versus .n { color: var(--quiet); }
.versus svg { width: 17px; height: 17px; vertical-align: -3px; margin-right: 6px; }

/* ── Comparer ────────────────────────────────────────────── */
.compare { position: relative; aspect-ratio: 16/9; overflow: hidden; user-select: none;
           cursor: ew-resize; margin-top: 40px; border-radius: var(--r-lg); }
.cmp { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cmp-b { clip-path: inset(0 50% 0 0); }
.cmp-tag { position: absolute; top: 14px; font-size: 11px; font-weight: 600; letter-spacing: .1em;
           text-transform: uppercase; padding: 7px 13px; border-radius: 999px;
           background: var(--paper); color: var(--pine); }
.cmp-b .cmp-tag { left: 14px; }
.cmp-a .cmp-tag { right: 14px; background: var(--pine); color: var(--cream); }
.grip { position: absolute; inset-block: 0; left: 50%; width: 2px; background: var(--paper); transform: translateX(-50%); }
.grip i { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
          width: 44px; height: 44px; border-radius: 50%; background: var(--paper); color: var(--pine);
          display: grid; place-items: center; box-shadow: 0 3px 16px rgba(15,61,46,.26); }
.grip svg { width: 19px; height: 19px; }
.cap { margin-top: 13px; font-size: 12.5px; color: var(--quiet); }

.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.phase { border-top: 2px solid var(--copper); padding-top: 18px; }
.phase .k { font-size: 11.5px; font-weight: 600; letter-spacing: .12em;
            text-transform: uppercase; color: var(--copper); }
.phase h3 { font-size: 23px; margin: 10px 0 8px; }
.phase p { font-size: 15px; line-height: 1.58; color: var(--muted); }

/* ── Reviews ─────────────────────────────────────────────── */
.score { display: grid; grid-template-columns: auto 1fr; gap: 46px; align-items: center; margin-top: 36px; }
.score .big { font-family: var(--serif); font-size: 68px; line-height: 1; }
.score .cnt { font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
              text-transform: uppercase; color: var(--quiet); margin-top: 8px; }
.bars { display: grid; gap: 7px; max-width: 400px; }
.bar { display: grid; grid-template-columns: 32px 1fr 36px; gap: 12px; align-items: center;
       font-size: 12px; color: var(--quiet); }
.bar i { display: block; height: 6px; background: var(--line-2); border-radius: 3px; overflow: hidden; }
.bar i b { display: block; height: 100%; background: var(--copper); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.quote { background: var(--paper); border-radius: var(--r-lg); padding: 28px 26px; }
.quote h3 { font-size: 22px; margin: 12px 0 8px; }
.quote p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.by { margin-top: 16px; font-size: 12.5px; color: var(--quiet); }
.by b { color: var(--ink); font-weight: 600; }
.by em { font-style: normal; color: var(--pine); font-weight: 600; }

/* ── Buy ─────────────────────────────────────────────────── */
.buy { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: start; margin-top: 40px; }
.shots { display: grid; gap: 10px; position: sticky; top: 86px; }
.shot-main { width: 100%; border-radius: var(--r-lg); background: var(--paper);
             aspect-ratio: 16/10; object-fit: cover; }
.thumbs { display: flex; gap: 10px; }
.thumb { flex: 0 0 calc((100% - 40px) / 5); padding: 0; border: 1.5px solid transparent;
         border-radius: var(--r); background: var(--paper); overflow: hidden; line-height: 0; }
.thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.thumb[aria-selected="true"] { border-color: var(--pine); }

.buy h2 { font-size: clamp(30px, 3.4vw, 40px); }
.buy-stars { display: flex; align-items: center; gap: 10px; margin: 12px 0 16px;
             font-size: 12px; font-weight: 500; color: var(--quiet); }
.buy p.desc { font-size: 16px; line-height: 1.6; color: var(--muted); }
.amount { display: flex; align-items: baseline; gap: 12px; margin: 22px 0 20px; }
.amount b { font-family: var(--serif); font-weight: 400; font-size: 46px; letter-spacing: -.02em; }
.amount span { font-size: 13.5px; color: var(--quiet); }

.field { margin-bottom: 18px; }
.field-h { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.field-h b { color: var(--ink); font-weight: 600; }
.opts { display: flex; gap: 9px; flex-wrap: wrap; }
.opt { display: inline-flex; align-items: center; gap: 9px; background: var(--paper);
       border: 1.5px solid transparent; border-radius: 999px; padding: 8px 17px 8px 9px;
       font-size: 14px; font-weight: 500; color: var(--ink-2); }
.opt:hover:not(:disabled) { border-color: var(--line); }
.opt[aria-checked="true"] { border-color: var(--pine); color: var(--pine); }
.opt i { width: 21px; height: 21px; border-radius: 50%; background: var(--sw);
         border: 1px solid var(--line); flex: none; }
.opt:disabled { opacity: .4; cursor: not-allowed; }
.opt:disabled span { text-decoration: line-through; }

.tiers { display: flex; gap: 9px; }
.tier { flex: 1; background: var(--paper); border: 1.5px solid transparent; border-radius: var(--r);
        padding: 14px 8px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.tier[aria-checked="true"] { border-color: var(--pine); color: var(--pine); }
.tier small { display: block; font-weight: 400; font-size: 12px; color: var(--quiet); margin-top: 3px; }

.promise { display: grid; gap: 10px; margin-bottom: 18px; background: var(--paper);
           border-radius: var(--r); padding: 16px 18px; }
.promise div { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-2); }
.promise b { color: var(--ink); font-weight: 600; }
.promise svg { width: 18px; height: 18px; flex: none; color: var(--pine); }
.live { width: 9px; height: 9px; border-radius: 50%; background: var(--pine); flex: none;
        margin: 0 4px; box-shadow: 0 0 0 3px rgba(15,61,46,.12); }
.promise .out .live { background: var(--copper); box-shadow: 0 0 0 3px var(--copper-glow); }

.pays { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }
.pays span { font-size: 10px; font-weight: 600; letter-spacing: .04em; border-radius: 5px;
             padding: 6px 10px; color: #fff; }
.facts { border-top: 1px solid var(--line-2); margin-top: 22px; }
.facts div { display: grid; grid-template-columns: 36% 1fr; gap: 16px; padding: 13px 0;
             border-bottom: 1px solid var(--line-2); }
.facts dt { font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
            text-transform: uppercase; color: var(--quiet); padding-top: 2px; }
.facts dd { font-size: 15px; color: var(--ink-2); }

/* ── Guarantees ──────────────────────────────────────────── */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pr { background: var(--paper); border-radius: var(--r-lg); padding: 32px 28px; }
.pr .k { font-size: 11.5px; font-weight: 600; letter-spacing: .12em;
         text-transform: uppercase; color: var(--copper); }
.pr h3 { font-size: 24px; margin: 10px 0 9px; }
.pr p { font-size: 15px; line-height: 1.58; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { margin-top: 36px; border-top: 1px solid var(--line); max-width: 840px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--serif);
               font-size: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; width: 14px; height: 14px; flex: none; }
.faq summary i::before, .faq summary i::after { content: ''; position: absolute;
               background: var(--pine); transition: transform .2s ease; }
.faq summary i::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.faq summary i::after  { left: 6px; top: 0; width: 1.5px; height: 14px; }
.faq details[open] summary i::after { transform: scaleY(0); }
.faq p { padding-bottom: 22px; font-size: 15.5px; line-height: 1.66; color: var(--muted); }

/* ── Signup + footer ─────────────────────────────────────── */
.signup { background: var(--sand); padding: 84px 0; text-align: center; }
.signup h2 { font-size: clamp(30px, 3.4vw, 42px); max-width: 18ch; margin: 0 auto 12px; }
.signup p { color: var(--muted); font-size: 16px; max-width: 50ch; margin: 0 auto 26px; }
.signup form { display: flex; gap: 9px; max-width: 430px; margin: 0 auto; }
.signup input { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
                padding: 15px 20px; font: inherit; font-size: 15px; color: var(--ink); }
.signup input:focus { outline: none; border-color: var(--pine); }

footer { background: var(--pine); color: var(--cream); padding: 0 0 40px; }
.foot { max-width: 1140px; margin: 0 auto; padding: 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 38px;
             padding: 60px 0 40px; }
.foot-grid p { color: var(--on-pine); font-size: 14.5px; line-height: 1.6; margin-top: 16px; max-width: 38ch; }
.foot .brand { color: var(--cream); }
.foot h4 { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
           color: rgba(255,255,255,.52); margin-bottom: 14px; }
.foot nav a { display: block; padding: 6px 0; font-size: 14.5px; color: var(--on-pine); text-decoration: none; }
.foot nav a:hover { color: #fff; }
.foot-end { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 20px 0;
            border-top: 1px solid var(--line-pine); font-size: 12.5px; color: rgba(255,255,255,.52); }
.foot-end div { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-end a { text-decoration: none; }
.disclaim { font-size: 11.5px; line-height: 1.6; color: rgba(255,255,255,.4); max-width: 92ch; padding-top: 14px; }

/* ── Sticky bar ──────────────────────────────────────────── */
.dock { position: fixed; inset-inline: 0; bottom: 0; z-index: 80; background: rgba(248,246,242,.97);
        -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
        border-top: 1px solid var(--line); transform: translateY(100%); transition: transform .26s ease; }
.dock.show { transform: translateY(0); }
.dock-in { max-width: 1140px; margin: 0 auto; padding: 10px 26px;
           display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dock-l { display: flex; align-items: center; gap: 12px; }
.dock-l img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--r); }
.dock-l b { display: block; font-size: 14.5px; font-weight: 600; }
.dock-l span { font-size: 12.5px; color: var(--quiet); }

/* ── Cart ────────────────────────────────────────────────── */
.scrim { position: fixed; inset: 0; background: rgba(15,61,46,.4); opacity: 0; pointer-events: none;
         transition: opacity .22s ease; z-index: 95; }
.scrim.open { opacity: 1; pointer-events: auto; }
.cart { position: fixed; inset-block: 0; right: 0; width: min(420px,100%); background: var(--cream);
        z-index: 96; transform: translateX(100%); transition: transform .26s ease;
        display: flex; flex-direction: column; }
.cart.open { transform: translateX(0); }
.cart-h { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px;
          border-bottom: 1px solid var(--line-2); }
.cart-h h3 { font-size: 24px; }
.cart-x { background: none; border: 0; font-size: 27px; line-height: 1; color: var(--pine); }
.cart-b { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { color: var(--quiet); font-size: 15px; }
.line { display: grid; grid-template-columns: 62px 1fr; gap: 14px; padding: 13px 0;
        border-bottom: 1px solid var(--line-2); }
.line img { width: 62px; height: 62px; object-fit: cover; border-radius: var(--r); }
.line b { font-size: 15px; font-weight: 600; }
.line span { display: block; font-size: 12.5px; color: var(--quiet); margin: 3px 0 5px; }
.cart-f { padding: 18px 24px; border-top: 1px solid var(--line-2); }
.cart-f div { display: flex; justify-content: space-between; font-size: 14.5px; padding: 4px 0; color: var(--muted); }
.cart-f div.sum { font-size: 17px; font-weight: 700; color: var(--ink); padding: 11px 0 16px; }

/* ── Popup ───────────────────────────────────────────────── */
.pop { position: fixed; inset: 0; background: rgba(15,61,46,.55); z-index: 1000;
       display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden;
       transition: opacity .26s ease, visibility .26s ease; }
.pop.open { opacity: 1; visibility: visible; }
.pop-box { position: relative; width: min(740px,100%); background: var(--cream);
           border-radius: var(--r-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
           transform: translateY(10px); transition: transform .28s cubic-bezier(.22,1,.36,1); }
.pop.open .pop-box { transform: none; }
.pop-box img.hero { width: 100%; height: 100%; object-fit: cover; }
.pop-body { padding: 42px 36px; display: flex; flex-direction: column; justify-content: center; }
.pop-x { position: absolute; top: 10px; right: 12px; background: none; border: 0; width: 32px; height: 32px;
         font-size: 25px; line-height: 1; color: var(--pine); z-index: 2; }
.pop-body .k { font-size: 11.5px; font-weight: 600; letter-spacing: .13em;
               text-transform: uppercase; color: var(--copper); margin-bottom: 12px; }
.pop-body h2 { font-size: 33px; margin-bottom: 10px; }
.pop-body p { font-size: 15px; line-height: 1.55; color: var(--muted); margin-bottom: 18px; }
.pop-body form { display: grid; gap: 9px; }
.pop-body input { border: 1px solid var(--line); border-radius: 999px; padding: 14px 20px;
                  font: inherit; font-size: 15px; background: var(--paper); color: var(--ink); }
.pop-body input:focus { outline: none; border-color: var(--pine); }
.pop-small { font-size: 12px; color: var(--quiet); margin-top: 12px; line-height: 1.5; }
.codebox { display: flex; align-items: center; justify-content: space-between; gap: 12px;
           border: 1.5px dashed var(--copper); border-radius: var(--r); padding: 14px 18px; margin: 4px 0 14px;
           background: var(--paper); }
.codebox b { font-size: 22px; letter-spacing: .06em; font-weight: 700; }
.codebox button { background: none; border: 1px solid var(--line); border-radius: 999px;
                  padding: 8px 14px; font-size: 11px; font-weight: 600; letter-spacing: .06em;
                  text-transform: uppercase; white-space: nowrap; }
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(16px);
         background: var(--pine); color: var(--cream); padding: 13px 22px; border-radius: 999px;
         font-size: 14px; z-index: 1002; opacity: 0; pointer-events: none;
         transition: opacity .26s ease, transform .26s ease; max-width: 90vw; text-align: center; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Reviews page ────────────────────────────────────────── */
.page-head { padding: 62px 0 0; }
.page-head h1 { font-size: clamp(38px, 5vw, 62px); max-width: 15ch; }
.crumb { font-size: 11.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
         color: var(--copper); margin-bottom: 18px; display: flex; gap: 9px; }
.filters { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
           gap: 12px; margin-top: 42px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1.5px solid transparent; background: var(--paper); border-radius: 999px;
        padding: 9px 17px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.chip[aria-pressed="true"] { border-color: var(--pine); color: var(--pine); }
.rlist { list-style: none; }
.rlist li { display: grid; grid-template-columns: 44px minmax(0,1fr) 180px; gap: 26px;
            padding: 28px 0; border-bottom: 1px solid var(--line-2); align-items: start; }
.rlist .i { font-size: 12px; color: var(--quiet); padding-top: 4px; }
.rlist h3 { font-size: 23px; margin: 11px 0 7px; }
.rlist p { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 64ch; }
.rlist .m { font-size: 12.5px; color: var(--quiet); text-align: right; padding-top: 4px;
            display: flex; flex-direction: column; gap: 4px; }
.rlist .m b { color: var(--ink); font-weight: 600; }

/* [hidden] loses to a display rule, so these say it themselves. */
.pip[hidden], .thumbs[hidden], .cart-f[hidden], .more[hidden] { display: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-in, .buy, .score { grid-template-columns: 1fr; gap: 36px; }
  .shots { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps, .quotes, .phases, .promises, .evidence, .problem { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .pop-box { grid-template-columns: 1fr; }
  .pop-box img.hero { height: 140px; }
  .pop-body { padding: 30px 26px; }
}
@media (max-width: 720px) {
  .wrap, .top-in, .hero-in, .strip-in, .foot, .dock-in { padding-inline: 18px; }
  .sec { padding: 66px 0; }
  .menu { display: none; }
  .burger { display: flex; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card { padding: 24px 14px; }
  .ring { width: 60px; height: 60px; margin-bottom: 14px; }
  .ring svg { width: 24px; height: 24px; }
  .card b { font-size: 17px; }
  .card span { font-size: 12.5px; }
  .strip-in { justify-content: flex-start; gap: 9px 16px; }
  .strip span { font-size: 11.5px; }
  /* Steps swipe rather than stack three screens tall. */
  .steps { grid-auto-flow: column; grid-auto-columns: 84%; overflow-x: auto;
           scroll-snap-type: x mandatory; gap: 13px; padding-bottom: 6px; }
  .step { scroll-snap-align: start; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .thumb { flex: 0 0 calc((100% - 24px) / 5); }
  .rlist li { grid-template-columns: 1fr; gap: 8px; }
  .rlist .m { text-align: left; flex-direction: row; gap: 10px; }
  /* The comparison table scrolls sideways instead of crushing. */
  .versus { overflow-x: auto; }
  .versus table { min-width: 560px; }
}
