/* ==========================================================================
   Limitless Peptides — design system v2 "clinical premium"
   Fluid to ultrawide. Quiet chrome, loud data. Ember/ice from the brand mark.
   JS contracts (do not rename): .add-btn .buy-box[data-product] .buy-price .p/.per
   .cart-count .kind-row .nav .menu-toggle .pcard .size-select [data-cat-block]
   [data-quick-add] [data-d] [data-rm] #ageYes #cartHost #orderForm #shopSearch
   .age-gate .toast .open .show
   ========================================================================== */

:root {
  /* ---- surfaces: cool lab neutrals, deeper than v1 ---- */
  --ink-0: #08090d;      /* page ground */
  --ink-1: #0c0e14;      /* raised band */
  --ink-2: #11141c;      /* card */
  --ink-3: #161a24;      /* card hover / inset */
  --line:  #1c222e;      /* hairline */
  --line-2:#28303f;      /* emphasized hairline */

  /* ---- type ---- */
  --text:     #e7e9ee;
  --text-dim: #9aa2b1;   /* neutral secondary — was warm, now reads clinical */
  --text-mute:#666e7d;

  /* ---- brand: fire left, ice right, straight off the mark ---- */
  --ember:      #ff7a1a;
  --ember-deep: #e2560d;
  --gold:       #ffc23d;
  --ice:        #3fd0ff;
  --ice-deep:   #1189d1;
  --danger:     #ff5c39;
  --ok:         #4fd18b;

  /* ---- category accents (used as 2px rails, never fills) ---- */
  --c-fat: #ff7a1a;  --c-blend: #c47bff; --c-repair: #35d6a4; --c-gh: #ffc23d;
  --c-cog: #3fd0ff;  --c-long: #7ea6ff;  --c-repro: #ff6f9c;  --c-aes: #ff9ecb;
  --c-supp: #8b93a3;

  /* ---- measure: the fix for the 1200px column on a 2560px screen ---- */
  --w:        min(92vw, 1760px);   /* default container */
  --w-prose:  min(92vw, 78ch);     /* reading measure */
  --gut:      clamp(16px, 2.2vw, 40px);

  --radius: 10px;
  --radius-lg: 14px;
  --disp: "Big Shoulders", "Arial Narrow", sans-serif;
  --body: "Barlow", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --ease: cubic-bezier(.2, .9, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 2px; border-radius: 4px; }

/* numerals line up in tables and price rows */
.num, .money, .buy-price .p, .cart-table td, .totals { font-variant-numeric: tabular-nums; }

/* ---------- containers ---------- */
.wrap  { width: var(--w); margin-inline: auto; padding-inline: var(--gut); }
.prose { width: var(--w-prose); margin-inline: auto; padding: 40px 0 72px; }
section.block { padding: clamp(40px, 4.5vw, 76px) 0 0; }

/* ==========================================================================
   header
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, rgba(255,122,26,.10), rgba(63,208,255,.08));
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 12.5px; letter-spacing: .04em; text-align: center;
  padding: 7px 16px;
}
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8, 9, 13, .86);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.head-in {
  width: var(--w); margin-inline: auto; padding: 0 var(--gut);
  display: flex; align-items: center; gap: 22px; height: 62px;
}
.brand { display: flex; align-items: center; gap: 11px; white-space: nowrap; }
.brand img { height: 30px; width: auto; }
.brand .wordmark {
  font-family: var(--disp); font-weight: 800; font-size: 21px;
  letter-spacing: .045em; text-transform: uppercase; line-height: 1;
}
.brand .wordmark i {
  font-style: normal;
  background: linear-gradient(92deg, var(--ember) 10%, var(--ice) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav a {
  padding: 8px 13px; border-radius: 7px; font-size: 14.5px; font-weight: 500;
  color: var(--text-dim); transition: color .16s, background .16s;
}
.nav a:hover { color: var(--text); background: var(--ink-2); }
.nav a.on { color: var(--ember); }
.head-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }
.cart-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink-2); border: 1px solid var(--line-2); color: var(--text);
  border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 600;
  transition: border-color .16s;
}
.cart-btn:hover { border-color: var(--ember); }
.cart-count {
  display: inline-grid; place-items: center;
  background: var(--ember); color: #150900; font-weight: 700;
  border-radius: 999px; min-width: 20px; height: 20px; font-size: 12px; padding: 0 6px;
}

/* ==========================================================================
   hero — mark sits beside the words, it is not wallpaper
   ========================================================================== */
.hero { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero::before {          /* single soft ember/ice wash, no photo */
  content: ""; position: absolute; inset: -40% -10% auto auto;
  width: 70vw; height: 130%;
  background:
    radial-gradient(46% 46% at 68% 34%, rgba(255,122,26,.16), transparent 70%),
    radial-gradient(40% 40% at 84% 60%, rgba(63,208,255,.13), transparent 72%);
  pointer-events: none;
}
.hero-in {
  position: relative; z-index: 1;
  width: var(--w); margin-inline: auto; padding: clamp(48px, 6vw, 96px) var(--gut) clamp(34px, 3.6vw, 54px);
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(340px, 33vw, 700px);
  gap: clamp(24px, 4vw, 72px); align-items: center;
}
.hero h1 {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem); line-height: .93; letter-spacing: .012em;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--ember); }
.hero .sub {
  margin-top: 18px; max-width: 56ch; font-size: clamp(16px, 1.1vw, 18.5px);
  color: var(--text-dim);
}
.hero-mark { justify-self: center; width: 100%; height: auto; filter: drop-shadow(0 24px 60px rgba(255,122,26,.22)); }
.hero-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* proof strip — a rule of data, not floating pills */
.proof-strip {
  border-top: 1px solid var(--line);
  width: var(--w); margin-inline: auto; padding-inline: var(--gut);
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
}
.proof-strip .cell {
  padding: 16px 0 16px 24px; border-left: 1px solid var(--line);
  font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-mute); font-weight: 600;
}
.proof-strip .cell:first-child { border-left: 0; padding-left: 0; }
.proof-strip .cell b {
  display: block; margin-bottom: 1px; font-family: var(--mono);
  font-size: 15.5px; letter-spacing: 0; text-transform: none; color: var(--text);
}
.proof-strip .cell b .hl { color: var(--ice); }

/* ==========================================================================
   buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 15px; letter-spacing: .01em;
  border-radius: var(--radius); padding: 12px 24px; border: 1px solid transparent;
  transition: transform .14s var(--ease), box-shadow .14s, border-color .14s, background .14s;
}
.btn-ember {
  background: linear-gradient(165deg, var(--gold) -35%, var(--ember) 42%, var(--ember-deep) 100%);
  color: #180d02; box-shadow: 0 6px 22px -10px rgba(255,122,26,.6);
}
.btn-ember:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(255,122,26,.75); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--ice); color: var(--ice); }

/* ==========================================================================
   section headings
   ========================================================================== */
.block-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 24px; }
.block-head h2 {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem); letter-spacing: .02em; line-height: 1;
}
.block-head .rule { flex: 1; height: 1px; background: var(--line); }
.block-head .count {
  font-family: var(--mono); font-size: 12.5px; color: var(--text-mute);
  letter-spacing: .04em; white-space: nowrap;
}
.block-head a { font-size: 13.5px; font-weight: 600; color: var(--ice); white-space: nowrap; }

/* ==========================================================================
   category ledger (home)
   ========================================================================== */
.ledger { border-top: 1px solid var(--line); }
.ledger-row {
  display: grid; grid-template-columns: minmax(190px, 15%) minmax(0, 1fr) auto auto;
  gap: 24px; align-items: center;
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  transition: background .16s;
}
.ledger-row:hover { background: var(--ink-1); }
.ledger-row .cat {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: 17px; letter-spacing: .03em;
  border-left: 2px solid var(--accent, var(--ember)); padding-left: 12px;
}
.ledger-row .roster {
  color: var(--text-mute); font-size: 13.5px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ledger-row .from { font-family: var(--mono); font-size: 13px; color: var(--text-dim); }
.ledger-row .n {
  font-family: var(--mono); font-size: 12.5px; color: var(--text-mute);
  min-width: 3ch; text-align: right;
}
.ledger-row:hover .cat { color: var(--ember); }

/* ==========================================================================
   product cards — 6 across at 1760px
   ========================================================================== */
.grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 258px), 1fr));
}
.pcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color .18s, transform .18s var(--ease), background .18s;
}
.pcard::before {                       /* category rail */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--accent, var(--ember)); opacity: .8;
}
.pcard:hover { border-color: var(--line-2); background: var(--ink-3); transform: translateY(-2px); }
.pcard .art {
  padding: 18px 18px 6px; display: grid; place-items: center;
  background: radial-gradient(58% 58% at 50% 42%, rgba(255,255,255,.035), transparent 72%);
}
.pcard .art svg { width: 100%; height: auto; max-width: 132px; }
.pcard .body { padding: 12px 16px 16px; display: flex; flex-direction: column; flex: 1; gap: 7px; }
.pcard h3 {
  font-family: var(--disp); font-weight: 700; font-size: 19px; letter-spacing: .02em;
  text-transform: uppercase; line-height: 1.05;
}
.pcard .tag { font-size: 13.2px; color: var(--text-dim); line-height: 1.45; }
.pcard .foot {
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 7px;
}
.pcard .price { font-family: var(--mono); font-size: 17px; font-weight: 600; color: var(--text); }
.pcard .per { font-size: 11.5px; color: var(--text-mute); letter-spacing: .04em; text-transform: uppercase; }
.pcard .sizes { margin-left: auto; font-family: var(--mono); font-size: 11.5px; color: var(--text-mute); }
.badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  background: var(--ember); color: #170900; border-radius: 4px; padding: 3px 7px;
}

/* ==========================================================================
   shop filter bar
   ========================================================================== */
.shop-bar {
  position: sticky; top: 62px; z-index: 50;
  background: rgba(8,9,13,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.shop-bar-in {
  width: var(--w); margin-inline: auto; padding: 11px var(--gut);
  display: flex; gap: 10px; align-items: center;
}
.cat-chips { display: flex; gap: 7px; align-items: center; overflow-x: auto; scrollbar-width: none; flex: 1; }
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chips a {
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--text-dim);
  transition: all .16s;
}
.cat-chips a:hover { border-color: var(--ember); color: var(--text); }
.search-box { position: relative; min-width: 230px; }
.search-box input {
  width: 100%; background: var(--ink-1); border: 1px solid var(--line);
  color: var(--text); border-radius: 999px; padding: 9px 16px 9px 36px;
  font-family: var(--body); font-size: 14px;
}
.search-box input::placeholder { color: var(--text-mute); }
.search-box input:focus { outline: none; border-color: var(--ice); }
.search-box .ico { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-mute); }

.crumbs { font-size: 13px; color: var(--text-mute); padding: 18px 0 0; }
.crumbs a:hover { color: var(--ice); }

/* ==========================================================================
   PDP — three columns at width: art | info | sticky buy box
   ========================================================================== */
.pdp {
  display: grid; gap: clamp(20px, 2.6vw, 44px);
  grid-template-columns: clamp(280px, 24vw, 420px) minmax(0, 1fr) clamp(320px, 25vw, 400px);
  padding: 22px 0 8px; align-items: start;
}
.pdp-art {
  position: sticky; top: 84px;
  background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: grid; place-items: center; padding: 22px;
  background-image: radial-gradient(62% 62% at 50% 40%, rgba(255,255,255,.04), transparent 72%);
}
.pdp-art svg { width: 100%; max-width: 196px; height: auto; }
.pdp h1 {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem); line-height: .96; letter-spacing: .012em;
}
.pdp .hook {
  margin-top: 12px; font-size: clamp(17px, 1.25vw, 20px); line-height: 1.45;
  color: var(--text); max-width: 44ch;
}
.punch { list-style: none; margin-top: 22px; display: grid; gap: 11px; }
.punch li {
  position: relative; padding-left: 22px; font-size: 15.2px; color: var(--text-dim); line-height: 1.5;
}
.punch li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 2px;
  background: var(--accent, var(--ember));
}
.spec-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 22px; }
.chip {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .03em;
  border: 1px solid var(--line); border-radius: 5px; padding: 5px 10px;
  background: var(--ink-1); color: var(--text-dim);
}
.chip b { color: var(--ice); font-weight: 600; }
.chip.on { border-color: var(--ember); color: var(--ember); }

/* --- buy box --- */
.buy-box {
  position: sticky; top: 84px;
  background: var(--ink-1); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 20px;
}
.buy-box .lbl {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 9px;
}
.size-select { display: flex; flex-wrap: wrap; gap: 6px; }
.size-select button {
  font-family: var(--mono); font-size: 13px;
  background: var(--ink-2); border: 1px solid var(--line); color: var(--text-dim);
  border-radius: 7px; padding: 8px 12px; transition: all .15s;
}
.size-select button:hover { border-color: var(--line-2); color: var(--text); }
.size-select button.on { border-color: var(--ember); color: var(--ember); background: rgba(255,122,26,.09); }
.kind-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 16px; }
.kind-row button {
  background: var(--ink-2); border: 1px solid var(--line); color: var(--text-dim);
  border-radius: 7px; padding: 10px 8px; font-size: 13.5px; line-height: 1.3; transition: all .15s;
}
.kind-row button small { display: block; font-family: var(--mono); font-size: 11px; color: var(--text-mute); margin-top: 2px; }
.kind-row button.on { border-color: var(--ice); color: var(--text); background: rgba(63,208,255,.08); }
.kind-row button.on small { color: var(--ice); }
.buy-price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 4px; }
.buy-price .p { font-family: var(--mono); font-size: 34px; font-weight: 600; color: var(--text); letter-spacing: -.01em; }
.buy-price .per { font-size: 12px; color: var(--text-mute); letter-spacing: .05em; text-transform: uppercase; }
.buy-box .btn { width: 100%; margin-top: 12px; }
.buy-note {
  margin-top: 11px; font-size: 12px; color: var(--text-mute); text-align: center; line-height: 1.5;
}

/* ==========================================================================
   research: accordions carry the long-form, verified copy
   ========================================================================== */
.detail-stack { margin: clamp(28px, 3vw, 48px) 0 0; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc > summary {
  list-style: none; cursor: pointer; padding: 17px 4px;
  display: flex; align-items: center; gap: 13px;
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: 16.5px; letter-spacing: .035em; color: var(--text);
  transition: color .16s;
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary:hover { color: var(--ember); }
.acc > summary .mk {
  width: 13px; height: 13px; flex: none; position: relative; color: var(--text-mute);
}
.acc > summary .mk::before, .acc > summary .mk::after {
  content: ""; position: absolute; background: currentColor; transition: transform .2s var(--ease);
}
.acc > summary .mk::before { left: 0; top: 6px; width: 13px; height: 1.5px; }
.acc > summary .mk::after  { left: 6px; top: 0; width: 1.5px; height: 13px; }
.acc[open] > summary .mk::after { transform: scaleY(0); }
.acc[open] > summary { color: var(--ember); }
.acc > summary .hint {
  margin-left: auto; font-family: var(--mono); font-size: 11.5px;
  color: var(--text-mute); letter-spacing: .04em; font-weight: 400; text-transform: none;
}
.acc-body { padding: 2px 4px 26px; }

/* two columns of long-form once there is room */
.research-cols {
  display: grid; gap: clamp(20px, 2.4vw, 44px);
  grid-template-columns: minmax(0, 76ch) minmax(240px, 340px);
  justify-content: start; align-items: start;
}
.research-cols .main p { color: var(--text-dim); margin-bottom: 13px; max-width: 74ch; }
.evidence { list-style: none; display: grid; gap: 14px; }
.evidence li {
  position: relative; padding-left: 20px; font-size: 14.8px;
  color: var(--text-dim); line-height: 1.55; max-width: 78ch;
}
.evidence li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1.5px solid var(--accent, var(--ember));
}
.cite {
  display: inline-block; margin-left: 7px; vertical-align: baseline;
  font-family: var(--mono); font-size: 11px; letter-spacing: .02em;
  border: 1px solid rgba(63,208,255,.28); border-radius: 4px;
  padding: 1.5px 6px; color: var(--ice); white-space: nowrap;
  transition: background .16s, border-color .16s;
}
a.cite:hover { background: rgba(63,208,255,.11); border-color: var(--ice); }

.side-card {
  background: var(--ink-1); border: 1px solid var(--line);
  border-left: 2px solid var(--accent, var(--line-2));
  border-radius: var(--radius); padding: 15px 17px; margin-bottom: 12px;
}
.side-card h4 {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px; font-weight: 500;
}
.side-card p { font-size: 13.8px; color: var(--text-dim); line-height: 1.55; }
.side-card.warn { border-left-color: var(--danger); }
.side-card.warn h4 { color: var(--danger); }

.ruo-box {
  background: rgba(255,122,26,.05); border: 1px solid rgba(255,122,26,.2);
  border-radius: var(--radius); padding: 14px 17px; margin: 26px 0 40px;
  font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 100ch;
}

/* ==========================================================================
   cart / checkout
   ========================================================================== */
.cart-table { width: 100%; max-width: 900px; border-collapse: collapse; }
.cart-table th {
  text-align: left; font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-mute); font-weight: 500;
  padding: 0 10px 11px 0; border-bottom: 1px solid var(--line);
}
.cart-table td { padding: 14px 10px 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: middle; }
.cart-table td:first-child { font-weight: 600; }
.cart-table .money { font-family: var(--mono); color: var(--text); font-weight: 600; white-space: nowrap; }
.qty-ctl { display: inline-flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 14px; }
.qty-ctl button {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--line);
  background: var(--ink-2); color: var(--text-dim); line-height: 1; transition: all .15s;
}
.qty-ctl button:hover { border-color: var(--ember); color: var(--ember); }
.rm { background: none; border: 0; color: var(--text-mute); font-size: 12.5px; padding: 0 4px; }
.rm:hover { color: var(--danger); }

/* free-shipping progress meter (rendered by cart.js) */
.ship-meter { margin: 22px 0 8px; max-width: 380px; margin-left: 520px; }
.ship-meter .bar { height: 4px; background: var(--ink-2); border-radius: 999px; overflow: hidden; }
.ship-meter .fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transition: width .35s var(--ease);
}
.ship-meter .label { margin-top: 8px; font-size: 12.5px; color: var(--text-dim); text-align: right; }
.ship-meter .label b { color: var(--ice); }

.totals {
  margin-left: 520px; max-width: 380px; font-size: 14.5px; margin-top: 14px;
  border-top: 1px solid var(--line); padding-top: 12px;
}
.totals .row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--text-dim); }
.totals .row .money, .totals .row span:last-child { font-family: var(--mono); color: var(--text); }
.totals .row.grand {
  border-top: 1px solid var(--line); margin-top: 8px; padding-top: 13px;
  font-size: 17px; font-weight: 700; color: var(--text);
}
.totals .row.grand span:last-child { color: var(--ember); font-size: 21px; }

.order-form { margin-top: 34px; max-width: 720px; }
.order-form .f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.order-form label {
  display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mute); margin: 13px 0 6px;
}
.order-form input, .order-form textarea, .order-form select {
  width: 100%; background: var(--ink-1); border: 1px solid var(--line); color: var(--text);
  border-radius: var(--radius); padding: 11px 13px; font-family: var(--body); font-size: 15px;
}
.order-form input:focus, .order-form textarea:focus, .order-form select:focus {
  outline: none; border-color: var(--ice);
}
.order-form label.consent, .consent {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 20px;
  font-family: var(--body); font-size: 13.4px; font-weight: 400;
  letter-spacing: normal; text-transform: none; color: var(--text-dim);
  line-height: 1.55; max-width: 72ch;
}
.order-form .consent input { width: auto; margin-top: 3px; flex: none; }
.empty-cart { padding: 60px 0; text-align: center; color: var(--text-dim); }

/* ==========================================================================
   faq / prose / research library
   ========================================================================== */
.faq { max-width: 82ch; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 17px 4px; font-weight: 600; font-size: 16px;
  display: flex; gap: 12px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--ember); }
.faq details p { padding: 0 4px 20px; color: var(--text-dim); max-width: 74ch; }
.prose h1 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem,3vw,2.9rem); line-height: 1; margin-bottom: 8px; }
.prose h2 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; letter-spacing: .025em; margin: 34px 0 12px; }
.prose p { color: var(--text-dim); margin-bottom: 14px; }
.prose ul { color: var(--text-dim); margin: 0 0 16px 20px; }
.prose li { margin-bottom: 7px; }
.lede { font-size: 18px; color: var(--text); margin-bottom: 26px; }

/* ==========================================================================
   supplies
   ========================================================================== */
.supply-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.supply-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; display: flex; flex-direction: column; gap: 8px;
}
.supply-card h3 { font-family: var(--disp); font-weight: 700; font-size: 19px; text-transform: uppercase; letter-spacing: .02em; }
.supply-card .d { font-size: 13.5px; color: var(--text-dim); flex: 1; }
.supply-card .r { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.supply-card .price { font-family: var(--mono); font-size: 19px; font-weight: 600; }
.supply-card .btn { margin-top: 10px; }

/* ==========================================================================
   footer
   ========================================================================== */
.site-foot { border-top: 1px solid var(--line); margin-top: clamp(60px, 6vw, 100px); background: var(--ink-1); }
.foot-grid {
  display: grid; gap: 34px; padding: 46px 0 30px;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(140px, 1fr));
}
.foot-grid h4 {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 13px; font-weight: 500;
}
.foot-grid a { display: block; padding: 4px 0; font-size: 14px; color: var(--text-dim); }
.foot-grid a:hover { color: var(--ember); }
.foot-brand img { height: 40px; width: auto; margin-bottom: 14px; }
.foot-brand p { font-size: 13.5px; color: var(--text-mute); max-width: 46ch; line-height: 1.6; }
.site-foot .fine {
  border-top: 1px solid var(--line); padding: 20px 0 34px;
  color: var(--text-mute); font-size: 12px; line-height: 1.65; max-width: 120ch;
}

/* ==========================================================================
   age gate + toast
   ========================================================================== */
.age-gate {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(4,5,8,.9); backdrop-filter: blur(10px); padding: 20px;
}
.age-card {
  max-width: 460px; text-align: center; background: var(--ink-1);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 34px 30px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.9);
}
.age-card img { width: 250px; height: auto; margin: 0 auto 18px; }
.age-card h2 {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: 25px; letter-spacing: .04em; margin-bottom: 11px;
}
.age-card p { font-size: 14.2px; color: var(--text-dim); margin-bottom: 22px; }
.age-card .btn { width: 100%; }
.age-card .leave { display: block; margin-top: 13px; font-size: 13px; color: var(--text-mute); }
.age-card .leave:hover { color: var(--danger); }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(14px);
  background: var(--ink-2); border: 1px solid var(--ember); color: var(--text);
  border-radius: 999px; padding: 11px 22px; font-weight: 600; font-size: 14.5px;
  opacity: 0; pointer-events: none; z-index: 90;
  transition: all .24s var(--ease); box-shadow: 0 14px 44px -12px rgba(0,0,0,.85);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }


/* ==========================================================================
   promotions
   ========================================================================== */
.promo-bar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; text-align: center;
  padding: 9px 16px; font-size: 13.5px;
  background: linear-gradient(90deg, rgba(255,122,26,.14), rgba(255,194,61,.10) 45%, rgba(63,208,255,.12));
  border-bottom: 1px solid var(--line);
  color: var(--text); transition: filter .16s;
}
.promo-bar:hover { filter: brightness(1.18); }
.promo-bar .tag {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--ember); color: #170900;
  border-radius: 4px; padding: 3px 8px;
}
.promo-bar b { font-weight: 700; }
.promo-bar .dim { color: var(--text-dim); }

/* "Kit saves N%" flag on product cards */
.pcard .save {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  border: 1px solid rgba(79,209,139,.4); color: var(--ok);
  background: rgba(79,209,139,.1);
  border-radius: 4px; padding: 3px 7px;
}

/* free-item flag, used on the supplies feature card and in the cart */
.free-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase;
  background: var(--ok); color: #04160c;
  border-radius: 4px; padding: 3px 8px;
}

/* ---------- supplies cards with drawn art ---------- */
.supply-card { position: relative; }
.supply-card .s-art {
  background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; margin-bottom: 14px; display: grid; place-items: center;
  background-image: radial-gradient(60% 60% at 50% 45%, rgba(255,255,255,.035), transparent 72%);
}
.supply-card .s-art svg { width: 100%; height: auto; max-height: 118px; }
.supply-card .unit { font-size: 12px; color: var(--text-mute); letter-spacing: .04em; }
.supply-card.feature {
  border-color: rgba(255,122,26,.42);
  background: linear-gradient(180deg, rgba(255,122,26,.06), transparent 42%), var(--ink-2);
  grid-column: span 2;
}
.supply-card.feature .free-tag { position: absolute; top: 14px; right: 14px; z-index: 2; }
.supply-card.feature .s-art { min-height: 160px; }
.supply-card.feature .s-art svg { max-height: 150px; }

/* ---------- cart: free line, discounts, unlocked badges ---------- */
.cart-table .sub { font-size: 12.5px; color: var(--text-mute); margin-top: 2px; }
.cart-table .free-row td { background: rgba(79,209,139,.05); }
.cart-table .money.was { color: var(--text-mute); text-decoration: line-through; font-weight: 400; }
.cart-table .money.free { color: var(--ok); }
.cart-table .qty-1 { font-family: var(--mono); font-size: 14px; color: var(--text-mute); padding-left: 8px; }

.ship-meter .unlocked { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; margin-top: 10px; }
.ship-meter .won {
  font-family: var(--mono); font-size: 11px; letter-spacing: .03em;
  border: 1px solid rgba(79,209,139,.35); color: var(--ok);
  background: rgba(79,209,139,.08); border-radius: 999px; padding: 3px 9px;
}
.totals .row.disc span:last-child { color: var(--ok); }
.totals .saved {
  margin-top: 10px; text-align: right;
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
  color: var(--ok);
}

@media (max-width: 860px) {
  .supply-card.feature { grid-column: span 1; }
  .promo-bar { font-size: 12.5px; padding: 8px 14px; }
  .promo-bar .dim { display: none; }
  .ship-meter .unlocked { justify-content: flex-start; }
}


/* ==========================================================================
   goal finder
   ========================================================================== */
.finder { padding-top: clamp(28px, 3.5vw, 56px); }
.finder h1 {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1; letter-spacing: .015em;
}
.finder .lede { color: var(--text-dim); margin: 12px 0 30px; font-size: 17px; }

.goal-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.goal-tile {
  display: flex; flex-direction: column; gap: 5px; text-align: left;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px 18px 16px;
  color: var(--text); position: relative; overflow: hidden;
  transition: border-color .16s, transform .16s var(--ease), background .16s;
}
.goal-tile::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--ember); opacity: 0; transition: opacity .16s;
}
.goal-tile:hover { border-color: var(--line-2); background: var(--ink-3); transform: translateY(-2px); }
.goal-tile:hover::before, .goal-tile.on::before { opacity: .85; }
.goal-tile.on { border-color: rgba(255,122,26,.5); background: var(--ink-3); }
.goal-tile .g-name {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: 19px; letter-spacing: .02em; line-height: 1.05;
}
.goal-tile.on .g-name { color: var(--ember); }
.goal-tile .g-sub { font-size: 13.2px; color: var(--text-dim); line-height: 1.45; }
.goal-tile .g-n {
  margin-top: 6px; font-family: var(--mono); font-size: 11.5px; color: var(--text-mute);
}

.goal-results { margin-top: clamp(28px, 3vw, 46px); }
.goal-results.chosen { border-top: 1px solid var(--line); padding-top: 8px; }
.goal-panel { padding-top: 26px; }
.goal-lead { color: var(--text-dim); margin: -8px 0 20px; max-width: 70ch; font-size: 14.5px; }
.finder-note {
  margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--text-mute); max-width: 92ch; line-height: 1.6;
}

/* home entry point */
.finder-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(100deg, rgba(255,122,26,.07), rgba(63,208,255,.06));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.finder-cta .t { flex: 1; min-width: 260px; }
.finder-cta h3 {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: 22px; letter-spacing: .02em;
}
.finder-cta p { color: var(--text-dim); font-size: 14.5px; margin-top: 5px; }


/* ==========================================================================
   goal questionnaire
   ========================================================================== */
.quiz { padding-top: clamp(24px, 3vw, 48px); }
.quiz h1 {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 1; letter-spacing: .015em;
}
.quiz .lede { color: var(--text-dim); margin: 12px 0 28px; font-size: 16.5px; max-width: 62ch; }

.q-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.q-steps { display: flex; align-items: center; gap: 9px; }
.q-steps i { width: 34px; height: 1px; background: var(--line-2); }
.q-dot {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-size: 12px;
  border: 1px solid var(--line-2); color: var(--text-mute); background: var(--ink-1);
  transition: all .18s;
}
.q-dot.on { border-color: var(--ember); color: var(--ember); background: rgba(255,122,26,.1); }
.q-restart {
  margin-left: auto; background: none; border: 1px solid var(--line-2);
  color: var(--text-dim); border-radius: 8px; padding: 7px 14px; font-size: 13px;
  transition: all .16s;
}
.q-restart:hover { border-color: var(--ember); color: var(--ember); }

.q-grid { display: grid; gap: 12px; }
.q-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.q-grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.q-grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.q-opt {
  display: flex; flex-direction: column; gap: 6px; text-align: left;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px; color: var(--text);
  position: relative; overflow: hidden;
  transition: border-color .16s, transform .16s var(--ease), background .16s;
}
.q-opt::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--ember); opacity: 0; transition: opacity .16s;
}
.q-opt:hover { border-color: var(--line-2); background: var(--ink-3); transform: translateY(-2px); }
.q-opt:hover::before { opacity: .85; }
.q-name {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: 18px; letter-spacing: .02em; line-height: 1.05;
}
.q-sub { font-size: 13px; color: var(--text-dim); line-height: 1.45; }

/* ---- results ---- */
.q-results { display: grid; gap: 10px; }
.q-card {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px; align-items: center;
  background: var(--ink-2); border: 1px solid var(--line);
  border-left: 2px solid var(--accent, var(--ember));
  border-radius: var(--radius-lg); padding: 16px 20px;
  transition: border-color .16s, background .16s, transform .16s var(--ease);
}
.q-card:hover { background: var(--ink-3); border-color: var(--line-2); transform: translateX(2px); }
.q-card .q-rank {
  font-family: var(--mono); font-size: 13px; color: var(--text-mute);
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-2);
}
.q-card .q-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.q-card .q-t {
  font-family: var(--disp); font-weight: 700; text-transform: uppercase;
  font-size: 19px; letter-spacing: .02em;
}
.q-card .q-h { font-size: 14px; color: var(--text-dim); }
.q-card .q-why {
  margin-top: 4px; font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: var(--accent, var(--ember));
}
.q-card .q-price {
  font-family: var(--mono); font-size: 21px; font-weight: 600; white-space: nowrap;
  display: flex; align-items: baseline; gap: 6px;
}
.q-card .q-price small {
  font-size: 10.5px; color: var(--text-mute); letter-spacing: .06em; text-transform: uppercase;
}
.q-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

@media (max-width: 640px) {
  .q-card { grid-template-columns: auto minmax(0, 1fr); }
  .q-card .q-price { grid-column: 2; }
  .q-steps i { width: 20px; }
}

/* ==========================================================================
   responsive
   ========================================================================== */
@media (max-width: 1280px) {
  .pdp { grid-template-columns: clamp(240px, 26vw, 340px) minmax(0, 1fr); }
  .buy-box { grid-column: 1 / -1; position: static; }
  .research-cols { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 1000px) {
  .hero-in { grid-template-columns: minmax(0, 1fr); }
  .hero-mark { grid-row: 1; max-width: 380px; }
  .proof-strip { grid-auto-flow: row; grid-template-columns: 1fr 1fr; }
  .proof-strip .cell:nth-child(odd) { border-left: 0; }
  .proof-strip .cell { border-top: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --w: 100%; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-1); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 14px; margin: 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 0; font-size: 16px; }
  .menu-toggle {
    display: inline-flex; background: none; border: 1px solid var(--line-2);
    color: var(--text); border-radius: 8px; padding: 7px 12px; font-size: 17px; line-height: 1;
  }
  .pdp { grid-template-columns: minmax(0, 1fr); }
  .pdp-art { position: static; }
  .ledger-row { grid-template-columns: 1fr auto; gap: 12px; }
  .ledger-row .roster, .ledger-row .from { display: none; }
  .shop-bar { top: 62px; }
  .search-box { min-width: 0; width: 44px; }
  .search-box input { padding-right: 8px; }
  .search-box input:focus { width: 200px; }
  .order-form .f2 { grid-template-columns: 1fr; }
  .ship-meter, .totals { margin-left: 0; max-width: none; }
  .pcard .art { padding: 14px 14px 4px; }
  .pcard .art svg { max-width: 96px; }
  .block-head { flex-wrap: wrap; gap: 10px; }
  .foot-grid { grid-template-columns: 1fr; }
  .site-foot .fine { padding-bottom: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
