/* ============================================================
   WORKHORSE HYDRATION - Field Spec industrial system
   ============================================================ */

:root {
  --navy:        #0d2734;
  --navy-900:    #081a24;
  --navy-850:    #0a212c;
  --steel:       #14333f;
  --steel-2:     #1a3e4b;
  --line:        rgba(232, 238, 240, 0.13);
  --line-strong: rgba(232, 238, 240, 0.26);
  --yellow:      #ffd23f;
  --yellow-deep: #f0b429;
  --paper:       #e9eef0;
  --paper-dim:   #93aab4;
  --paper-faint: #5d7884;
  --ink:         #06141b;

  --accent: var(--yellow);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);

  --f-display: "Anton", "Arial Narrow", sans-serif;
  --f-head:    "Archivo", system-ui, sans-serif;
  --f-body:    "Barlow", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--navy);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- shared atoms ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.hazard {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 16px,
    var(--yellow) 16px 32px
  );
}
.hazard-thin { height: 10px; }

.overline {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.overline::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.kicker-mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 0.92; letter-spacing: -0.005em; }
.section-title {
  font-size: clamp(38px, 6vw, 78px);
  text-transform: uppercase;
  line-height: 0.9;
}
.lede { font-family: var(--f-body); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5; color: var(--paper-dim); font-weight: 400; }

.btn {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(255,210,63,0);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 0 -4px var(--yellow-deep), 0 18px 30px -12px rgba(0,0,0,.6); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }
.email-input:disabled { opacity: 0.55; }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 11px 18px; font-size: 13px; }
.btn-lg { padding: 19px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.arrow-ico { font-size: 17px; line-height: 1; }

/* ---------- placeholder imagery ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,210,63,0.05) 0 12px, transparent 12px 24px),
    var(--steel);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-dim);
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(8,26,36,0.85));
  width: 100%;
}
.ph .corner-tick { position: absolute; width: 12px; height: 12px; border: 2px solid var(--accent); }
.ph .corner-tick.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.ph .corner-tick.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.ph .corner-tick.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.ph .corner-tick.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,26,36,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-name { font-family: var(--f-head); font-weight: 800; letter-spacing: 0.02em; font-size: 17px; text-transform: uppercase; }
.brand-name span { color: var(--paper-dim); font-weight: 600; }
.nav-meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--paper-faint); text-transform: uppercase; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-family: var(--f-head); font-weight: 700; font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--paper-dim); text-decoration: none; padding: 6px 0; position: relative; transition: color .15s ease; }
.nav-link:hover { color: var(--paper); }
.nav-link.is-active { color: var(--accent); }
.nav-link.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent); }

/* hamburger + mobile drawer (hidden on desktop) */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: none; border: none; cursor: pointer; margin-left: 8px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--paper); margin: 0 auto; transition: transform .25s ease, opacity .2s ease; }
.nav-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-drawer { display: none; }

@media (max-width: 720px) { .nav-meta { display: none; } }
/* ============================================================
   HERO  (shared)
   ============================================================ */
.hero { position: relative; border-bottom: 1px solid var(--line); }
.hero h1 {
  font-size: clamp(54px, 10vw, 150px);
  text-transform: uppercase;
}
.hero h1 .hl { color: var(--accent); }
.hero-sub { max-width: 56ch; }

.email-form { display: flex; gap: 10px; flex-wrap: wrap; }
.email-input {
  font-family: var(--f-body);
  font-size: 16px;
  padding: 16px 18px;
  background: var(--navy-900);
  border: 1.5px solid var(--line-strong);
  color: var(--paper);
  min-width: 240px;
  flex: 1;
  outline: none;
  transition: border-color .15s ease;
}
.email-input::placeholder { color: var(--paper-faint); }
.email-input:focus { border-color: var(--accent); }
.email-input.err { border-color: #ff6b5e; }
.form-note { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--paper-faint); margin-top: 12px; text-transform: uppercase; }
.form-err { color: #ff8077; }
.form-ok {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid var(--accent);
  background: rgba(255,210,63,0.06);
  padding: 18px 20px;
}
.form-ok .tick { width: 28px; height: 28px; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-weight: 900; flex-shrink: 0; }
.form-ok strong { font-family: var(--f-head); font-weight: 800; }
.form-ok p { color: var(--paper-dim); font-size: 14px; margin-top: 2px; }

/* Variant A - Field Spec (split) */
.heroA { padding: clamp(48px, 7vw, 90px) 0 0; }
.heroA-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 4vw, 60px); align-items: end; }
.heroA-photo { align-self: stretch; min-height: 420px; margin-bottom: -1px; }
.heroA .hero-sub { margin: 26px 0 30px; }
.heroA-stats { display: flex; gap: 0; border-top: 1px solid var(--line); margin-top: 44px; }
.heroA-stat { flex: 1; padding: 18px 0; border-right: 1px solid var(--line); }
.heroA-stat:last-child { border-right: 0; }
.heroA-stat b { font-family: var(--f-display); font-size: 30px; color: var(--accent); display: block; line-height: 1; }
.heroA-stat span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-dim); }

@media (max-width: 880px) {
  .heroA-grid { grid-template-columns: 1fr; }
  .heroA-photo { min-height: 280px; order: -1; }
}

/* Variant B - Hazard Band (full-bleed centered) */
.heroB { position: relative; min-height: 88vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.heroB-bg { position: absolute; inset: 0; }
.heroB-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,26,36,0.72), rgba(8,26,36,0.92)); }
.heroB-inner { position: relative; z-index: 2; padding: 120px 0; }
.heroB h1 { font-size: clamp(56px, 10.5vw, 148px); line-height: 0.94; }
.heroB .hero-sub { margin: 28px auto 34px; }
.heroB .email-form { justify-content: center; max-width: 540px; margin: 0 auto; }
.heroB-tag { display: inline-block; margin-bottom: 26px; padding: 8px 16px; background: var(--accent); color: var(--ink); font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }

/* Variant C - Spec Sheet (technical card) */
.heroC { padding: clamp(40px, 6vw, 72px) 0; }
.heroC-card { border: 1.5px solid var(--line-strong); background: var(--navy-850); }
.heroC-top { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-dim); flex-wrap: wrap; gap: 8px; }
.heroC-body { display: grid; grid-template-columns: 1.2fr 0.8fr; }
.heroC-left { padding: clamp(34px, 4vw, 56px); border-right: 1px solid var(--line); }
.heroC-left h1 { font-size: clamp(52px, 9vw, 124px); text-transform: uppercase; }
.heroC .hero-sub { margin: 24px 0 32px; }
.heroC-right { padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 0; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: 13px; }
.spec-row:first-child { padding-top: 0; }
.spec-row span { color: var(--paper-dim); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.spec-row b { color: var(--paper); font-weight: 700; }
.spec-row b.hi { color: var(--accent); }
@media (max-width: 880px) {
  .heroC-body { grid-template-columns: 1fr; }
  .heroC-left { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .overline { margin-bottom: 22px; }

.problem { background: var(--navy-900); border-bottom: 1px solid var(--line); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }
.problem-card { padding: 40px 32px 44px; border-right: 1px solid var(--line); position: relative; }
.problem-card:last-child { border-right: 0; }
.problem-num { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 60px; }
.problem-card p { font-family: var(--f-head); font-weight: 600; font-size: clamp(20px, 2vw, 25px); line-height: 1.28; }
.problem-card .x { position: absolute; top: 36px; right: 30px; width: 22px; height: 22px; opacity: 0.5; }
@media (max-width: 820px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-num { margin-bottom: 28px; }
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.solution-copy h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.0; text-transform: uppercase; margin-bottom: 36px; }
.solution-copy .lede { margin-bottom: 36px; max-width: 46ch; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-strong); }
.spec-cell { padding: 26px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-cell:nth-child(2n) { border-right: 0; }
.spec-cell:nth-last-child(-n+2) { border-bottom: 0; }
.spec-cell b { font-family: var(--f-display); font-size: 40px; color: var(--accent); display: block; line-height: 0.9; }
.spec-cell .lbl { font-family: var(--f-head); font-weight: 700; font-size: 15px; text-transform: uppercase; margin-top: 8px; }
.spec-cell .sub { font-size: 13px; color: var(--paper-dim); margin-top: 4px; }
.solution-photo { min-height: 460px; }
@media (max-width: 880px) {
  .solution-grid { grid-template-columns: 1fr; }
  .solution-photo { min-height: 320px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--navy-900); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { border: 1px solid var(--line-strong); padding: 32px 30px 36px; background: var(--navy-850); position: relative; transition: border-color .2s ease, transform .2s ease; }
.step:hover { border-color: var(--accent); transform: translateY(-4px); }
.step-num { font-family: var(--f-display); font-size: 78px; color: var(--steel-2); line-height: 0.8; margin-bottom: 24px; -webkit-text-stroke: 1px var(--line-strong); }
.step:hover .step-num { color: var(--accent); -webkit-text-stroke: 0; }
.step h3 { font-family: var(--f-head); font-weight: 800; font-size: 21px; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.step p { color: var(--paper-dim); font-size: 15.5px; line-height: 1.5; }
.step-tag { position: absolute; top: 30px; right: 28px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--paper-faint); text-transform: uppercase; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   WAITLIST / FOUNDING OFFER
   ============================================================ */
.waitlist { position: relative; background: var(--accent); color: var(--ink); overflow: hidden; }
.waitlist .wl-stripe { position: absolute; top: 0; left: 0; right: 0; height: 12px; }
.waitlist .wl-stripe.bottom { top: auto; bottom: 0; }
.wl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.wl-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 24px; }
.wl-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.wl-grid h2 { font-size: clamp(40px, 5.6vw, 72px); text-transform: uppercase; line-height: 1.06; margin-bottom: 24px; }
.wl-grid h2 .u { background: var(--ink); color: var(--accent); padding: 2px 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.wl-copy p { font-size: 18px; line-height: 1.5; max-width: 44ch; color: rgba(6,20,27,0.82); }
.wl-panel { background: var(--ink); color: var(--paper); padding: clamp(30px, 4vw, 46px); }
.wl-panel .kicker-mono { color: var(--accent); margin-bottom: 22px; display: block; }
.wl-perks { list-style: none; margin: 0 0 30px; }
.wl-perks li { display: flex; gap: 14px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; line-height: 1.3; }
.wl-perks li:last-child { border-bottom: 0; }
.wl-perks .chk { color: var(--accent); font-weight: 900; flex-shrink: 0; }
.wl-panel .email-form { margin-top: 4px; }
.wl-panel .email-input { background: var(--navy-900); }
.wl-counter { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--paper-dim); text-transform: uppercase; }
.wl-bar { flex: 1; height: 6px; background: var(--steel); position: relative; }
.wl-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 30%; background: var(--accent); }
@media (max-width: 880px) { .wl-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); padding: clamp(56px, 7vw, 88px) 0 36px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer .brand { margin-bottom: 20px; }
.footer-blurb { color: var(--paper-dim); font-size: 15px; line-height: 1.6; max-width: 34ch; }
.footer-col h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: var(--paper); text-decoration: none; font-size: 15px; margin-bottom: 12px; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-email { font-family: var(--f-head); font-weight: 800; font-size: clamp(22px, 3vw, 32px) !important; color: var(--accent) !important; text-transform: uppercase; letter-spacing: 0.01em; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-faint); flex-wrap: wrap; gap: 12px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

/* reveal - content is always visible. (Entrance animation intentionally omitted:
   this render environment freezes animation/transition clocks at t=0, which would
   leave animated-in content stuck hidden. Resting state must never depend on motion.) */
.reveal, .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   HERO CTA (home)
   ============================================================ */
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-cta.is-center { justify-content: center; }
.heroB .hero-cta { margin-top: 0; }

/* ============================================================
   HOME - PRODUCT FEATURE
   ============================================================ */
.product-feat { border-block: 1px solid var(--line); }
.pf-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.pf-photo { min-height: 460px; }
.pf-photo .pf-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph.has-img::after { display: none; }
.ph.has-img .corner-tick { display: none; }
.pf-flavor-tag { position: absolute; top: 18px; left: 18px; background: var(--accent); color: var(--ink); font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 13px; z-index: 2; }
.pf-copy h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 0.98; text-transform: uppercase; margin-bottom: 24px; }
.pf-copy .lede { margin-bottom: 34px; max-width: 46ch; }
.pf-macros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line-strong); margin-bottom: 34px; }
.macro { padding: 22px 16px; border-right: 1px solid var(--line); }
.macro:last-child { border-right: 0; }
.macro b { font-family: var(--f-display); font-size: 34px; color: var(--accent); display: block; line-height: 0.9; }
.macro b i { font-style: normal; font-size: 15px; }
.macro span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper-dim); }
.pf-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pf-price { font-family: var(--f-body); font-size: 15px; color: var(--paper-dim); }
.pf-price b { font-family: var(--f-display); font-size: 24px; color: var(--paper); }
@media (max-width: 880px) { .pf-grid { grid-template-columns: 1fr; } .pf-photo { min-height: 320px; } }

/* ============================================================
   PRODUCT PAGE - PDP
   ============================================================ */
.pdp { padding: clamp(32px, 5vw, 60px) 0 clamp(56px, 7vw, 90px); border-bottom: 1px solid var(--line); }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }

/* gallery */
.gallery { position: sticky; top: 88px; }
.gallery-main { width: 100%; aspect-ratio: 1/1; border: 1px solid var(--line-strong); background: var(--navy-850); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-main.is-card { aspect-ratio: 1/1; border: 0; background: none; overflow: hidden; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gallery-thumb { aspect-ratio: 1/1; border: 1px solid var(--line-strong); background: var(--navy-850); padding: 0; cursor: pointer; overflow: hidden; transition: border-color .15s ease; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { border-color: var(--paper-faint); }
.gallery-thumb.on { border-color: var(--accent); }
.thumb-card { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 2px; background: var(--ink); }
.thumb-card-t { font-family: var(--f-head); font-weight: 800; font-size: 11px; text-transform: uppercase; color: var(--paper); letter-spacing: .02em; }
.thumb-card-s { font-family: var(--f-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 880px) { .gallery { position: static; } }

/* made in usa badge */
.made-usa { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-head); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--paper); white-space: nowrap; }
.made-usa .usa-flag { border: 1px solid rgba(255,255,255,.22); flex-shrink: 0; display: block; }

/* workhorse nutrition card (gallery slide) */
.nc { background: #0b0b0b; color: var(--paper); border: 1px solid var(--line-strong); display: grid; grid-template-columns: 34px 1fr; grid-template-rows: 1fr auto; height: 100%; }
.nc-side { background: var(--accent); display: flex; align-items: center; justify-content: center; }
.nc-side span { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--f-head); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--ink); font-size: 13px; }
.nc-main { padding: 14px 15px; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.nc-cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 14px; }
.nc-facts { background: #fff; color: #000; padding: 10px 11px; }
.ncf-title { font-family: var(--f-display); font-size: 26px; line-height: .8; border-bottom: 1px solid #000; padding-bottom: 3px; }
.ncf-sub { font-size: 10px; padding-top: 3px; }
.ncf-serv { display: flex; justify-content: space-between; gap: 8px; font-weight: 800; font-size: 12px; border-bottom: 6px solid #000; padding-bottom: 3px; }
.ncf-amt { font-size: 9px; font-weight: 700; padding-top: 3px; }
.ncf-cal { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 4px solid #000; padding-bottom: 1px; }
.ncf-cal span { font-family: var(--f-head); font-weight: 800; font-size: 16px; }
.ncf-cal b { font-family: var(--f-display); font-size: 28px; line-height: .85; }
.ncf-dv { text-align: right; font-size: 8.5px; font-weight: 700; border-bottom: 1px solid #000; padding: 2px 0; }
.ncf-row { display: flex; justify-content: space-between; gap: 8px; font-size: 10.5px; line-height: 1.2; padding: 2.5px 0; border-bottom: 1px solid rgba(0,0,0,.22); }
.ncf-row b { font-weight: 800; }
.ncf-row.ind span:first-child { padding-left: 12px; }
.ncf-row.last { border-bottom: 4px solid #000; }
.ncf-foot { font-size: 7.5px; line-height: 1.35; padding-top: 4px; color: #333; }
.nc-benes { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.nc-bene { display: flex; align-items: center; gap: 9px; }
.nc-bene-ico { width: 30px; height: 30px; border: 1.4px solid var(--accent); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.nc-bene-ico svg { width: 17px; height: 17px; }
.nc-bene-lbl { font-family: var(--f-head); font-weight: 800; font-size: 11px; line-height: 1.05; text-transform: uppercase; letter-spacing: .02em; }
.nc-foot-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.nc-ing { font-size: 9px; line-height: 1.4; color: var(--paper-dim); }
.nc-ing b { color: var(--paper); }
.nc-usa { font-size: 10.5px; }
.nc-bar { grid-column: 1 / -1; background: var(--accent); color: var(--ink); font-family: var(--f-head); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; text-align: center; padding: 9px; font-size: 12px; }
@media (max-width: 460px) {
  .nc-cols { grid-template-columns: 1fr; }
  .nc-benes { flex-direction: row; flex-wrap: wrap; gap: 8px 14px; }
  .nc-foot-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* buy box */
.buy-eyebrow { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.buy-instock { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #57d98a; }
.buy-title { font-family: var(--f-display); font-size: clamp(40px, 5.5vw, 68px); line-height: 0.92; text-transform: uppercase; }
.buy-rating { display: flex; align-items: center; gap: 12px; margin: 16px 0 20px; flex-wrap: wrap; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 16px; }
.buy-rating-txt { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-dim); }
.buy-blurb { font-size: 17px; line-height: 1.55; color: var(--paper-dim); max-width: 52ch; margin-bottom: 30px; }

.buy-modes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.mode-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--navy-850); border: 1.5px solid var(--line-strong); cursor: pointer; text-align: left; transition: border-color .15s ease, background .15s ease; position: relative; color: var(--paper); }
.mode-card:hover { border-color: var(--paper-faint); }
.mode-card.on { border-color: var(--accent); background: rgba(255,210,63,0.05); }
.mode-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-strong); flex-shrink: 0; position: relative; transition: border-color .15s ease; }
.mode-card.on .mode-radio { border-color: var(--accent); }
.mode-card.on .mode-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); }
.mode-main { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mode-main b { font-family: var(--f-head); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 0.02em; }
.mode-main i { font-style: normal; font-size: 13px; color: var(--paper-dim); font-family: var(--f-body); }
.mode-flag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--accent); color: var(--ink); padding: 5px 9px; font-weight: 700; flex-shrink: 0; }

.buy-field { margin-bottom: 26px; }
.buy-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-dim); margin-bottom: 12px; }
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pack-card { padding: 18px 14px; background: var(--navy-850); border: 1.5px solid var(--line-strong); cursor: pointer; text-align: center; transition: border-color .15s ease, background .15s ease; color: var(--paper); }
.pack-card:hover { border-color: var(--paper-faint); }
.pack-card.on { border-color: var(--accent); background: rgba(255,210,63,0.05); }
.pack-card b { font-family: var(--f-display); font-size: 34px; display: block; line-height: 0.9; color: var(--paper); }
.pack-card.on b { color: var(--accent); }
.pack-card span { font-family: var(--f-body); font-size: 11.5px; color: var(--paper-dim); display: block; margin-top: 8px; line-height: 1.3; }

.buy-summary { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); margin-bottom: 18px; flex-wrap: wrap; }
.buy-price { display: flex; align-items: baseline; gap: 12px; }
.buy-price b { font-family: var(--f-display); font-size: 48px; line-height: 0.8; color: var(--paper); }
.buy-price span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-dim); }
.buy-save { font-family: var(--f-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); background: var(--accent); padding: 8px 12px; }

.reserve { border: 1.5px solid var(--accent); background: rgba(255,210,63,0.05); padding: 22px; margin-bottom: 18px; }
.reserve-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.reserve-head b { font-family: var(--f-head); font-weight: 800; font-size: 17px; text-transform: uppercase; }
.reserve-x { background: none; border: none; color: var(--paper-dim); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; }
.reserve-x:hover { color: var(--accent); }
.reserve-sub { font-size: 14px; color: var(--paper-dim); line-height: 1.5; margin-bottom: 16px; }

.buy-trust { list-style: none; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.buy-secure { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper-dim); text-align: center; margin: 12px 0 0; }
.buy-trust li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.4; color: var(--paper-dim); }
.buy-trust .chk { color: var(--accent); font-weight: 900; }

/* why it works */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.why-row { display: flex; gap: 22px; padding: 32px 30px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.why-num { font-family: var(--f-display); font-size: 30px; color: var(--accent); line-height: 1; flex-shrink: 0; }
.why-text h3 { font-family: var(--f-head); font-weight: 800; font-size: 19px; text-transform: uppercase; line-height: 1.1; margin-bottom: 10px; }
.why-text p { font-size: 15.5px; line-height: 1.55; color: var(--paper-dim); }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }

/* supplement facts */
.facts { background: var(--navy-900); border-block: 1px solid var(--line); }
.facts-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.facts-panel { background: var(--paper); color: var(--ink); padding: 26px 28px; }
.nf { font-family: var(--f-body); color: var(--ink); }
.nf-title { font-family: var(--f-display); font-size: clamp(34px, 4vw, 44px); line-height: 0.84; letter-spacing: -0.01em; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.nf-servings { font-size: 13px; padding-top: 5px; }
.nf-serv { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; font-weight: 800; font-size: 18px; padding-bottom: 6px; border-bottom: 8px solid var(--ink); }
.nf-amt { font-size: 12px; font-weight: 700; padding-top: 5px; }
.nf-cal { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; border-bottom: 5px solid var(--ink); padding-bottom: 2px; }
.nf-cal > span:first-child { font-family: var(--f-head); font-weight: 800; font-size: 25px; }
.nf-cal-num { font-family: var(--f-display); font-size: 42px; line-height: 0.86; }
.nf-dv { text-align: right; font-size: 11px; font-weight: 700; padding: 3px 0; border-bottom: 1px solid var(--ink); }
.nf-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; line-height: 1.3; padding: 4px 0; border-bottom: 1px solid rgba(0,0,0,0.26); }
.nf-row .nm b { font-weight: 800; }
.nf-row .pct { font-weight: 700; white-space: nowrap; }
.nf-row.ind1 .nm { padding-left: 18px; }
.nf-row.ind2 .nm { padding-left: 36px; }
.nf-row.micro { font-size: 12.5px; }
.nf-divider { border-bottom: 8px solid var(--ink); }
.nf-note { font-size: 9.5px; line-height: 1.45; padding-top: 8px; color: #333; }
.nf-ing { font-size: 11px; line-height: 1.5; margin-top: 14px; color: var(--ink); }
.nf-ing b { font-weight: 800; }
.facts-copy h2 { font-family: var(--f-display); font-size: clamp(34px, 4.4vw, 58px); line-height: 0.98; text-transform: uppercase; margin: 20px 0 22px; }
.facts-copy .lede { max-width: 46ch; margin-bottom: 28px; }
.use-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.use-chip { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper); border: 1px solid var(--line-strong); padding: 9px 14px; }
@media (max-width: 880px) { .facts-grid { grid-template-columns: 1fr; } }

/* crew cross-sell */
.crew-cta { background: var(--accent); color: var(--ink); }
.crew-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.crew-inner h2 { font-family: var(--f-display); font-size: clamp(30px, 4vw, 50px); text-transform: uppercase; line-height: 0.95; max-width: 18ch; }
.crew-inner p { font-size: 17px; line-height: 1.5; max-width: 44ch; margin-top: 14px; color: rgba(6,20,27,0.8); }
.crew-cta .btn-ghost { border-color: rgba(6,20,27,0.3); color: var(--ink); }
.crew-cta .btn-primary { background: var(--ink); color: var(--accent); }
.crew-cta .btn-primary:hover { box-shadow: 0 10px 0 -4px rgba(0,0,0,0.4), 0 18px 30px -12px rgba(0,0,0,.4); }

/* ============================================================
   WHOLESALE PAGE
   ============================================================ */
.wh-hero { padding: clamp(48px, 7vw, 96px) 0; border-bottom: 1px solid var(--line); }
.wh-hero h1 { font-size: clamp(46px, 6.4vw, 96px); text-transform: uppercase; line-height: 0.96; }
.wh-hero .hero-sub { margin: 26px 0 32px; max-width: 52ch; }
.wh-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(34px, 5vw, 64px); align-items: center; margin-top: 26px; }
.wh-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-strong); }
.wh-stat { padding: 26px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wh-stat:nth-child(2n) { border-right: 0; }
.wh-stat:nth-last-child(-n+2) { border-bottom: 0; }
.wh-stat b { font-family: var(--f-display); font-size: 42px; color: var(--accent); display: block; line-height: 0.85; }
.wh-stat span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-dim); }
.vcard-h { font-family: var(--f-head); font-weight: 800; font-size: 21px; text-transform: uppercase; line-height: 1.1; margin: 0 0 12px; }
@media (max-width: 880px) { .wh-hero-grid { grid-template-columns: 1fr; } }

/* calculator */
.calc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.calc-control { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line-strong); background: var(--navy-900); }
.calc-crewlabel { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.calc-crewnum { font-family: var(--f-display); font-size: 64px; color: var(--accent); line-height: 0.8; }
.calc-slider { -webkit-appearance: none; appearance: none; accent-color: var(--yellow); width: 100%; height: 8px; background: var(--steel); outline: none; cursor: pointer; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; background: var(--accent); cursor: pointer; border: 3px solid var(--navy-900); box-shadow: 0 0 0 1px var(--accent); }
.calc-slider::-moz-range-thumb { width: 22px; height: 22px; background: var(--accent); cursor: pointer; border: 3px solid var(--navy-900); border-radius: 0; }
.calc-ticks { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; color: var(--paper-faint); margin-top: 10px; }
.calc-help { font-size: 14px; line-height: 1.55; color: var(--paper-dim); margin-top: 22px; }
.calc-help b { color: var(--paper); }
.calc-out { padding: clamp(28px, 4vw, 44px); background: var(--accent); color: var(--ink); display: flex; flex-direction: column; }
.calc-line { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(6,20,27,0.18); }
.calc-line span { font-family: var(--f-head); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; }
.calc-line span i { font-style: normal; font-weight: 400; opacity: 0.7; text-transform: none; letter-spacing: 0; }
.calc-strike { font-family: var(--f-display); font-size: 26px; text-decoration: line-through; opacity: 0.55; }
.calc-line.big { padding: 18px 0; }
.calc-line.big b { font-family: var(--f-display); font-size: 52px; line-height: 0.8; }
.calc-line.big b small { font-size: 18px; }
.calc-save { font-family: var(--f-head); font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.02em; padding: 16px 0 22px; }
.calc-out .btn-primary { background: var(--ink); color: var(--accent); margin-top: auto; }
.calc-out .btn-primary:hover { box-shadow: 0 10px 0 -4px rgba(0,0,0,0.4), 0 18px 30px -12px rgba(0,0,0,.4); }
@media (max-width: 820px) { .calc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   THE STAKES - problem footnote + program heading
   ============================================================ */
.problem-foot { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.03em; line-height: 1.7; color: var(--paper-faint); margin-top: 30px; max-width: 90ch; }
.src-link { color: var(--paper-dim); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color .15s ease; }
.src-link:hover { color: var(--accent); }
.pf-h { font-family: var(--f-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 18px; color: var(--accent); }

/* ============================================================
   WHOLESALE - RISK / COST-OF-INACTION BAND
   ============================================================ */
.risk { background: var(--navy-900); border-block: 1px solid var(--line); }
.risk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.risk-stat { padding: 40px 30px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.risk-stat b { font-family: var(--f-display); font-size: clamp(46px, 6vw, 82px); color: var(--accent); line-height: 0.82; display: block; }
.risk-stat .rl { font-family: var(--f-head); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; margin-top: 18px; }
.risk-stat .rs { font-size: 14.5px; color: var(--paper-dim); margin-top: 10px; line-height: 1.55; }
.risk-anchor { display: flex; align-items: center; gap: 24px; padding: 28px 32px; background: var(--accent); color: var(--ink); border: 1px solid var(--line-strong); border-top: 0; flex-wrap: wrap; }
.risk-anchor b { font-family: var(--f-display); font-size: clamp(24px, 2.6vw, 34px); text-transform: uppercase; line-height: 0.9; white-space: nowrap; }
.risk-anchor span { font-size: 16px; line-height: 1.5; max-width: 56ch; flex: 1; min-width: 280px; font-weight: 500; }
.risk-foot { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--paper-faint); margin-top: 24px; line-height: 1.7; max-width: 92ch; }
@media (max-width: 820px) {
  .risk-stats { grid-template-columns: 1fr; }
  .risk-anchor { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   WHOLESALE - THE OFFER / VALUE STACK
   ============================================================ */
.offer { background: var(--accent); color: var(--ink); position: relative; padding-block: clamp(72px, 9vw, 120px); }
.offer-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.offer-copy h2 { font-family: var(--f-display); font-size: clamp(32px, 3.8vw, 50px); text-transform: uppercase; line-height: 1.08; margin-bottom: 56px; }
.offer-copy h2 .hl { color: inherit; }
.offer-copy p { font-size: 18px; line-height: 1.55; max-width: 42ch; color: rgba(6,20,27,0.82); }
.offer-panel { background: var(--ink); color: var(--paper); padding: clamp(30px, 4vw, 44px); }
.offer-panel .kicker-mono { color: var(--accent); display: block; margin-bottom: 22px; }
.stack { list-style: none; margin: 0 0 4px; }
.stack li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.stack li:last-child { border-bottom: 0; }
.stack .si { width: 30px; height: 30px; flex-shrink: 0; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-weight: 900; font-family: var(--f-head); }
.stack .st { display: flex; flex-direction: column; }
.stack .st b { font-family: var(--f-head); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 0.01em; }
.stack .st span { font-size: 14px; color: var(--paper-dim); line-height: 1.5; margin-top: 5px; }
.offer-price { display: flex; align-items: baseline; gap: 16px; padding: 24px 0; margin-top: 8px; border-top: 2px solid var(--accent); margin-bottom: 22px; }
.offer-price b { font-family: var(--f-display); font-size: 58px; color: var(--accent); line-height: 0.78; }
.offer-price span { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-dim); line-height: 1.5; }
.offer .btn-primary { background: var(--accent); color: var(--ink); }
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } }

/* calculator anchor + founding note */
.calc-anchor { font-family: var(--f-head); font-weight: 800; font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.35; padding: 18px 0; border-top: 1px solid rgba(6,20,27,0.18); border-bottom: 1px solid rgba(6,20,27,0.18); }
.calc-found { font-size: 13.5px; line-height: 1.5; padding: 16px 0 22px; color: rgba(6,20,27,0.78); }
.calc-found b { font-weight: 700; }

/* ============================================================
   MOBILE HARDENING
   ============================================================ */
@media (max-width: 600px) {
  /* forms: stack input + button full width, never overflow */
  .email-form { flex-direction: column; align-items: stretch; }
  .email-form .email-input { min-width: 0; width: 100%; }
  .email-form .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; line-height: 1.15; padding: 16px 18px; }

  /* waitlist: tighten the offer block + headline highlight */
  .wl-grid { gap: 32px; }
  .wl-grid h2 { font-size: clamp(34px, 12vw, 52px); line-height: 1.08; }
  .wl-copy p { font-size: 16px; }
  .wl-panel { padding: 26px 22px; }
  .wl-perks li { font-size: 15px; }
  .wl-counter { flex-wrap: wrap; gap: 10px; }
  .wl-badge { font-size: 11px; }

  /* hero scale + breathing room on small screens */
  .heroB { min-height: 0; padding: 40px 0 56px; }
  .heroB-inner { padding: 0; }
  .heroA-stats { flex-wrap: wrap; }
  .heroA-stat { flex: 1 0 33%; }

  /* problem / how cards already stack via their own queries; just ease type */
  .section-title { font-size: clamp(34px, 10vw, 52px); }

  /* footer: scale the email wordmark down on narrow screens so it never overflows */
  .footer-email { font-size: clamp(15px, 5.4vw, 22px) !important; line-height: 1.18; overflow-wrap: anywhere; word-break: break-word; }
  .footer-top { gap: 32px; }
  .footer-bottom { font-size: 10px; }

  /* new pages */
  .pdp-grid, .pf-grid, .why-grid, .facts-grid, .wh-hero-grid, .calc-grid { grid-template-columns: 1fr; }
  .pf-macros { grid-template-columns: 1fr 1fr; }
  .macro:nth-child(2) { border-right: 0; }
  .macro:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pack-grid { grid-template-columns: 1fr; }
  .pack-card { display: flex; align-items: baseline; gap: 14px; text-align: left; }
  .pack-card b { font-size: 26px; }
  .pack-card span { margin-top: 0; }
  .mode-flag { display: none; }
  .buy-price b { font-size: 40px; }
  .crew-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .calc-crewnum { font-size: 48px; }
  .calc-line.big b { font-size: 42px; }
  .risk-stat { padding: 30px 24px; }
  .offer-price b { font-size: 46px; }
  .risk-anchor b { white-space: normal; }
}

@media (max-width: 760px) {
  /* swap inline links + CTA for a hamburger drawer */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  /* instant show/hide - no transition (some embedded webviews freeze the
     transition clock, which would trap a max-height animation at 0). */
  .nav-open .nav-drawer { display: block; background: var(--navy-900); border-top: 1px solid var(--line); }
  .nav-drawer-links { display: flex; flex-direction: column; }
  .nav-drawer .nav-link { padding: 17px var(--gutter); font-size: 16px; border-bottom: 1px solid var(--line); color: var(--paper); }
  .nav-drawer .nav-link.is-active { color: var(--accent); }
  .nav-drawer .nav-link.is-active::after { display: none; }
  .nav-drawer .btn { margin: 18px var(--gutter) 22px; width: calc(100% - 2 * var(--gutter)); }
}

@media (max-width: 380px) {
  .wl-grid h2 { font-size: 30px; }
  .brand-name { font-size: 15px; }
}
