/* ============================================================
   Aevum PEPTIDES — STYLE
   Spacex-inspired design system (per DESIGN.md)
   Pure black/white, D-DIN-Bold uppercase display, ghost pill CTAs.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Inter:wght@300;400;500;700&display=swap');

/* ---- TOKENS (Roehn-inspired white canvas, dark moments for video bands + footer) ---- */
:root {
  /* light canvas (page default) */
  --canvas:        #fafaf7;   /* warm off-white */
  --canvas-soft:   #f0f0eb;   /* alternate cream */
  --canvas-deep:   #ffffff;   /* pure white for cards */
  --ink:           #0a0a0a;   /* primary text (near-black for warmth) */
  --ink-mute:      #5a5a5f;   /* secondary text */
  --hairline:      #1a1a1a;   /* strong border on white */
  --hairline-soft: #d8d8d2;   /* subtle border on white */

  /* dark moments (video bands, footer, hero video) */
  --canvas-dark:       #000000;
  --canvas-dark-soft:  #0a0a0a;
  --on-dark:           #ffffff;
  --on-dark-mute:      #c8c8c8;
  --hairline-dark:     #3a3a3f;

  /* legacy aliases (so older selectors still work) */
  --canvas-night:      var(--canvas);
  --canvas-night-soft: var(--canvas-soft);
  --canvas-light:      var(--canvas-deep);
  --on-primary:        var(--ink);
  --on-primary-mute:   var(--ink-mute);
  --hairline-on-dark:  var(--hairline-soft);

  --font-display: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;

  --pad-x-page: clamp(20px, 4vw, 48px);
  --nav-h: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.32px;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }

/* ---- TYPOGRAPHY ---- */
.display-xxl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6.4vw, 82px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.2;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}
.micro-cap {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-primary-mute);
  opacity: 0.85;
}
.body-lg { font-size: 17px; line-height: 1.65; color: var(--on-primary-mute); }
.body-md { font-size: 15px; line-height: 1.6; }

/* ---- BUTTONS ---- */
/* default button: outlined black-on-white (Roehn) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  border-radius: 9999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--canvas-deep); }
.btn:active { transform: scale(0.98); }

/* button on dark surfaces (video bands, footer) — invert */
.on-dark .btn,
.btn--on-dark {
  border-color: var(--on-dark);
  color: var(--on-dark);
}
.on-dark .btn:hover,
.btn--on-dark:hover { background: var(--on-dark); color: var(--ink); }
/* filled light pill — high-visibility CTA on dark surfaces */
.btn--light {
  background: var(--on-dark);
  border-color: var(--on-dark);
  color: var(--ink);
}
.btn--light:hover { background: transparent; color: var(--on-dark); }
.btn--small { padding: 12px 22px; font-size: 12px; }
.btn--block { width: 100%; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad-x-page);
  background: transparent;
  transition: background-color 300ms ease, backdrop-filter 300ms ease,
              top 320ms cubic-bezier(.2,.7,.2,1), left 320ms cubic-bezier(.2,.7,.2,1),
              right 320ms cubic-bezier(.2,.7,.2,1), height 320ms cubic-bezier(.2,.7,.2,1),
              border-radius 320ms ease, box-shadow 320ms ease;
}
.nav__logo   { justify-self: start; }
.nav__links  { justify-self: center; }
.nav__toggle { justify-self: end; }
/* scrolled state — starts faded, animates to solid on hover. Flat bar, hairline
   underline, no blur/float/radius: chrome stays engineering-flat per DESIGN.md. */
.nav--scrolled {
  height: 60px;
  background: transparent;
}
/* Soft gradient scrim instead of a hard hairline: near-solid at the top,
   fading to fully transparent at the bottom — no sharp line. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0 0 -24px 0;
  background: linear-gradient(to bottom,
    rgba(5, 5, 5, 0.94) 0%,
    rgba(5, 5, 5, 0.78) 45%,
    rgba(5, 5, 5, 0.30) 78%,
    rgba(5, 5, 5, 0) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 320ms ease;
}
.nav--scrolled::before { opacity: 1; }
.nav--scrolled:hover::before {
  background: linear-gradient(to bottom,
    rgba(5, 5, 5, 1) 0%,
    rgba(5, 5, 5, 0.88) 45%,
    rgba(5, 5, 5, 0.38) 78%,
    rgba(5, 5, 5, 0) 100%);
}
/* Solid nav — for pages with plain (white) content right under the bar,
   not a dark hero. The scrolled scrim is built to fade into video/imagery;
   over flat white it just reads as a smear, so these get a flat bar instead. */
.nav--solid {
  height: 60px;
  background: var(--canvas-deep);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav--solid::before { content: none; }
.nav--solid .nav__logo { color: var(--ink); }
.nav--solid .nav__links a { color: var(--ink-mute); opacity: 1; }
.nav--solid .nav__links a:hover { color: var(--ink); }
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  transition: color 350ms ease;
}
.nav--scrolled .nav__logo { color: #fff; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  opacity: 0.85;
  transition: opacity 200ms ease, color 350ms ease;
}
/* animated underline reveal on hover */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav--scrolled .nav__links a { color: rgba(255, 255, 255, 0.74); opacity: 1; }
.nav--scrolled .nav__links a:hover { color: #fff; }
.nav__toggle { display: none; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle {
    /* pin to the right column — with .nav__links display:none the toggle
       would otherwise auto-place into the middle column and float center */
    grid-column: 3;
    position: relative; z-index: 2; /* stays above the open menu overlay */
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
  }
  .nav__toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--on-dark);
    position: relative;
    transition: background-color 350ms ease;
  }
  .nav__toggle span::before, .nav__toggle span::after {
    content: ''; position: absolute; left: 0; width: 22px; height: 2px;
    background: var(--on-dark);
    transition: transform 200ms ease, background-color 350ms ease;
  }
  .nav--scrolled .nav__toggle span,
  .nav--scrolled .nav__toggle span::before,
  .nav--scrolled .nav__toggle span::after { background: #fff; }
  .nav--solid .nav__toggle span,
  .nav--solid .nav__toggle span::before,
  .nav--solid .nav__toggle span::after { background: var(--ink); }
  .nav__toggle span::before { top: -7px; }
  .nav__toggle span::after  { top: 7px;  }
  .nav.is-open .nav__toggle span { background: transparent !important; }
  .nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

  /* full-screen menu — brand black, big white D-DIN links (DESIGN.md system) */
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    width: 100%;
    justify-self: stretch; /* neutralize center alignment, which shrinks a fixed grid item to fit-content */
    background: #050505;
    padding: calc(var(--nav-h) + 40px) var(--pad-x-page) 48px;
    gap: 30px;
    align-items: flex-start;
    z-index: 1;
  }
  .nav.is-open .nav__links a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #fff;
    opacity: 1;
  }
  .nav.is-open .nav__logo { position: relative; z-index: 2; color: #fff; }
  .nav.is-open .nav__toggle span::before,
  .nav.is-open .nav__toggle span::after { background: #fff; }
}
/* lock page scroll behind the open mobile menu */
body.nav-open { overflow: hidden; }

/* ---- HERO (video-driven, dark cinematic intro on otherwise white site) ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--canvas-dark);
  color: var(--on-dark);
}

/* video plays underneath everything; loops continuously */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* gradient scrim — lighter at top, dark at bottom (reinforces white→dark page fade) */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* localized scrims anchored under the two tagline blocks — keeps text legible
       without flattening the whole video */
    radial-gradient(120% 80% at 0% 100%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.45) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* ---- WHITE → DARK PAGE FADE (overlays top of hero) ---- */
.page-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60vh;
  background: linear-gradient(180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 20%,
    rgba(255, 255, 255, 0.0) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* keyframes kept — still used by product page placeholder */
@keyframes drift {
  0%, 100% { background-position: 0 0, 0 0, 0 0; }
  50%      { background-position: 30px -20px, -20px 30px, 0 0; }
}

/* split taglines layer — anchored to bottom 40% so they sit in the dark portion of the video */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: var(--nav-h) 6vw 14vh;
}
.hero__tagline-left h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #fff;
  margin-left: -0.06em;
}
.hero__tagline-right .hero__sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
  margin: 0;
}

/* bottom strip: cta · descriptor · mark */
.hero__footer {
  position: absolute;
  bottom: 2rem;
  left: 6vw;
  right: 6vw;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero__cta-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  text-decoration: none;
  transition: color 200ms ease;
  white-space: nowrap;
}
.hero__cta-text:hover { color: var(--on-dark); }

/* mobile: stack the split taglines + footer */
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--nav-h) 6vw 8rem;
    gap: 18px;
  }
  .hero__tagline-right .hero__sub {
    text-align: left;
  }
  .hero__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ---- VIDEO BANDS (full-bleed cinematic scroll sections) ---- */
.video-band {
  position: relative;
  height: 100vh;
  min-height: 580px;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.video-band__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.video-band__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6vw;
  gap: 18px;
}
.video-band__content h2 {
  max-width: 18ch;
  line-height: 1.0;
  color: var(--on-dark);
}

/* left-anchored stacked quote (product page) */
.video-band--quote .video-band__overlay {
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.4) 34%,
    rgba(0, 0, 0, 0) 62%
  );
}
.video-band__content--left {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0 6vw 0 8vw;
}
.video-band__content--left h2 {
  max-width: none;
  white-space: nowrap;
  line-height: 0.98;
  letter-spacing: -0.005em;
  color: #fff;
}
@media (max-width: 560px) {
  .video-band__content--left h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}
@media (max-width: 768px) {
  .video-band__content--left { padding: 0 7vw; }
}

/* bottom-left stacked quote (homepage synthesis band) */
.video-band--synth .video-band__overlay {
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.28) 40%, rgba(0, 0, 0, 0) 66%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 42%);
}
.video-band__content--bl {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 6vw 12vh 8vw;
}
.video-band__content--bl h2 {
  max-width: none;
  white-space: nowrap;
  line-height: 0.98;
  letter-spacing: -0.005em;
  color: #fff;
}
@media (max-width: 560px) {
  .video-band__content--bl { padding: 0 7vw 9vh; }
  .video-band__content--bl h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

/* ---- BANDS (full-viewport sections, light by default) ---- */
.band {
  position: relative;
  padding: clamp(44px, 7vh, 88px) var(--pad-x-page);
  background: var(--canvas);
  color: var(--ink);
  overflow: hidden;
}
.band--soft { background: var(--canvas-soft); }
.band--featured {
  background: var(--canvas-deep);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.band__head {
  max-width: 1200px;
  margin: 0 auto clamp(28px, 5vh, 52px);
  text-align: center;
}
.band__eyebrow { margin-bottom: 22px; }
.band__title { margin-bottom: 20px; }
.band__sub { max-width: 580px; margin: 0 auto; font-size: 15px; }
.band__inner { max-width: 1320px; margin: 0 auto; }

/* ---- PRODUCT GRID (homepage featured + catalog) — Roehn white cards ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--hairline-soft);
  border-left: 1px solid var(--hairline-soft);
}
.card {
  position: relative;
  background: var(--canvas-deep);
  color: var(--ink);
  padding: 28px 26px 24px;
  min-height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-right: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  transition: background-color 350ms ease, transform 400ms cubic-bezier(.2,.7,.2,1);
}
.card:hover {
  background: var(--canvas-soft);
  z-index: 2;
}

/* dossier index top-right (e.g. "01") — quiet technical numbering */
.card__index {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}

.card__body {
  position: relative;
  z-index: 1;
  padding-top: 6px;
}
.card__cat {
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--hairline-soft);
}
.card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1.0;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
}
.card__tagline {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* thin divider above the price footer; darkens on hover */
.card__rule {
  position: relative;
  z-index: 1;
  height: 1px;
  background: var(--hairline-soft);
  transform-origin: left center;
  transition: background-color 350ms ease;
  margin-top: 20px;
}
.card:hover .card__rule { background: var(--ink); }

.card__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
}
.card__price-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.card__pervial {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.card__pervial strong { font-weight: 700; color: var(--ink); }

/* dose ladder — available strengths as one technical line above the price rule */
.card__doses {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__from {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0.7;
}
.card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.card__arrow {
  font-size: 22px;
  line-height: 1;
  color: var(--ink-mute);
  transition: transform 350ms cubic-bezier(.2,.7,.2,1), color 250ms ease;
}
.card:hover .card__arrow {
  transform: translateX(8px);
  color: var(--ink);
}

/* ---- SOLD OUT cards — legible, intentional, not washed-out ---- */
.card.is-sold-out { background: var(--canvas-soft); }
.card.is-sold-out:hover { transform: none; background: var(--canvas-soft); }
/* dim the descriptive content a touch, keep it readable */
.card.is-sold-out .card__cat,
.card.is-sold-out .card__name,
.card.is-sold-out .card__tagline { opacity: 0.55; }
.card.is-sold-out .card__from { opacity: 0.5; }
/* price reads as unavailable */
.card.is-sold-out .card__price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.5;
}
/* remove the buy affordances — it can't be purchased */
.card.is-sold-out .card__arrow,
.card.is-sold-out .card__rule { display: none; }
/* clean filled status pill, top-right */
.card.is-sold-out::before {
  content: 'SOLD OUT';
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--canvas-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.2em;
}

/* ---- CATALOG ---- */
.catalog-section { position: relative; }

/* editorial catalog head — left-aligned display, meta column right, hairline base */
.catalog-head {
  max-width: 1320px;
  margin: 0 auto clamp(32px, 5vh, 56px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: clamp(24px, 4vh, 40px);
  border-bottom: 1px solid var(--hairline);
}
.catalog-head__main { max-width: 720px; }
.catalog-head__eyebrow {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.catalog-head__title { margin: 0; }
.catalog-head__sub {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-mute);
  padding-bottom: 6px;
}
@media (max-width: 860px) {
  .catalog-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .catalog-head__sub { padding-bottom: 0; }
}

/* shipping notice — sold-as-kit policy, stated up front */
.catalog-notice {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 clamp(28px, 4vh, 44px);
  padding: 15px 22px;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}
.catalog-notice strong { font-weight: 700; color: var(--on-dark); }
.catalog-notice__tag {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding-right: 16px;
  margin-right: 4px;
  border-right: 1px solid var(--hairline-dark);
  color: var(--on-dark-mute);
}
@media (max-width: 600px) {
  .catalog-notice { font-size: 11.5px; letter-spacing: 0.08em; }
  .catalog-notice__tag { border-right: 0; padding-right: 0; }
}

/* card entrance cascade (catalog grid) */
.catalog-section .card { opacity: 0; transform: translateY(24px); }
.catalog-section .card.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1),
              background-color 350ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .catalog-section .card { opacity: 1; transform: none; }
}

/* ---- CATALOG SEARCH — pill input, matches filter chip language ---- */
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 380px;
  margin: 0 auto 20px;
}
.catalog-search__icon {
  position: absolute;
  left: 18px;
  width: 15px;
  height: 15px;
  color: var(--ink-mute);
  pointer-events: none;
}
.catalog-search__input {
  width: 100%;
  padding: 12px 40px 12px 44px;
  border: 1px solid var(--hairline-soft);
  border-radius: 9999px;
  background: var(--canvas-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: border-color 160ms ease;
}
.catalog-search__input::placeholder { color: var(--ink-mute); opacity: 0.75; }
.catalog-search__input:focus { outline: none; border-color: var(--ink); }
/* hide native browser search decorations (clear x / magnifier) — we draw our own */
.catalog-search__input::-webkit-search-decoration,
.catalog-search__input::-webkit-search-cancel-button,
.catalog-search__input::-webkit-search-results-button,
.catalog-search__input::-webkit-search-results-decoration { display: none; }

.catalog-search__clear {
  position: absolute;
  right: 8px;
  width: 26px;
  height: 26px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}
.catalog-search__clear:hover { background: var(--canvas-soft); color: var(--ink); }
.catalog-search.has-value .catalog-search__clear { display: flex; }

.catalog-empty {
  grid-column: 1 / -1;
  padding: 64px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
}

/* ---- CATALOG FILTER BAR — flat monochrome chips, no spring ---- */
.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto clamp(36px, 5vh, 56px);
  max-width: 1320px;
}
.filter__chip {
  padding: 10px 18px;
  border: 1px solid var(--hairline-soft);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
  cursor: pointer;
}
.filter__chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter__chip.is-active {
  background: var(--ink);
  color: var(--canvas-deep);
  border-color: var(--ink);
}

/* ---- PRODUCT PAGE ----
   Split hero: dark type panel (left) + light product-photo panel (right).
   Product shots are clean studio photography on a neutral field, so they get
   their own light panel instead of sitting full-bleed under white headline
   text — that combination (light photo + white type, no scrim) doesn't read. */
.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  overflow: hidden;
}
.product-hero__content {
  position: relative;
  z-index: 2;
  background: var(--canvas-dark);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) clamp(28px, 4vw, 64px) 48px clamp(24px, 5vw, 72px);
}
.product-hero__media {
  position: relative;
  background: var(--canvas-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(20px, 4vw, 56px);
}
@media (max-width: 860px) {
  .product-hero { grid-template-columns: 1fr; min-height: 0; }
  .product-hero__content { padding: calc(var(--nav-h) + 32px) var(--pad-x-page) 40px; order: 2; }
  .product-hero__media { aspect-ratio: 4 / 3; order: 1; }
}
.product-hero__cat { margin-bottom: 14px; color: var(--on-dark-mute); opacity: 1; }
.product-hero__title { margin-bottom: 18px; }
.product-hero__tag { max-width: 460px; margin-bottom: 0; color: var(--on-dark-mute); }
.product-hero__buy {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.product-hero__meta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}

.product-body {
  padding: clamp(64px, 10vh, 120px) var(--pad-x-page);
  max-width: 1200px;
  margin: 0 auto;
}
.product-section {
  margin-bottom: clamp(56px, 8vh, 88px);
}
.product-section__label {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline-on-dark);
}

.variants {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline-on-dark);
  border: 1px solid var(--hairline-on-dark);
}
/* shared column template so every row lines up like a data table */
.variants__head,
.variant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 130px 160px;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--canvas-night);
}
.variants__head {
  padding-top: 14px;
  padding-bottom: 14px;
  background: var(--canvas-soft);
}
.variants__head span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.variants__head span:nth-child(2),
.variants__head span:nth-child(3) { text-align: right; }
.variant { transition: background-color 200ms ease; }
.variant:hover { background: var(--canvas-night-soft); }
.variant__lead { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.variant__dose {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 20px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.variant__code {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.variant__price {
  justify-self: end;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 25px);
  letter-spacing: 0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.variant__price span { opacity: 0.5; font-weight: 400; font-size: 13px; margin-right: 2px; }
.variant__unit {
  justify-self: end;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.variant__unit b { font-weight: 600; color: var(--ink); }
.variant__action { white-space: nowrap; justify-self: end; }
.variant__action.is-out { cursor: default; opacity: 0.55; pointer-events: none; }
.variant.is-sold-out { opacity: 0.5; }
.variant.is-sold-out .variant__action {
  pointer-events: none;
  border-color: var(--hairline-on-dark);
  color: var(--ink-mute);
}
@media (max-width: 860px) {
  .variants__head { display: none; }
  .variant {
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    padding: 16px 18px;
  }
  .variant__lead { grid-column: 1 / 2; grid-row: 1; }
  .variant__price { grid-column: 2 / 3; grid-row: 1; align-self: start; }
  .variant__unit { grid-column: 2 / 3; grid-row: 2; align-self: start; }
  .variant__action { grid-column: 1 / 2; grid-row: 2; justify-self: start; text-align: center; }
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--hairline-on-dark);
  border: 1px solid var(--hairline-on-dark);
}
/* flex-grow so the last row always fills — no dead grid cell for any spec count */
.specs .spec { flex: 1 1 240px; }
.spec {
  padding: 24px;
  background: var(--canvas-night);
}
.spec__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-primary-mute);
  opacity: 0.65;
  margin-bottom: 10px;
}
.spec__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.spec__value--muted {
  color: var(--ink-mute);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}

.coa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline-on-dark);
  overflow: hidden;
}
@media (max-width: 640px) { .coa { grid-template-columns: 1fr; } }
.coa--empty { color: var(--ink-mute); font-style: italic; font-size: 14px; }
.coa__media { position: relative; min-height: 240px; background: var(--canvas-night); }
.coa__img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; filter: grayscale(1); display: block; }

/* ---- Janoshik test report card (COA proof) ---- */
.coa__media--report {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 34px);
}
.jano {
  width: 100%;
  max-width: 380px;
  background: #fff;
  color: #1c2b26;
  border-radius: 4px;
  border: 1px solid var(--hairline-soft);
  padding: clamp(20px, 3.5vw, 30px);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
}
.jano__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.jano__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1a9c73;
  margin: 0;
}
.jano__brand { text-align: right; line-height: 1.3; }
.jano__peaks { width: 34px; height: 17px; fill: #1a9c73; display: inline-block; }
.jano__word {
  display: block;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: #2a3a34;
  margin-top: 2px;
}
.jano__contact { display: block; font-size: 10.5px; color: #9aa8a2; margin-top: 4px; }
.jano__rule { height: 2px; background: #1a9c73; margin: 14px 0 16px; }
.jano__meta { display: grid; grid-template-columns: auto auto; gap: 6px 22px; margin: 0 0 16px; }
.jano__meta div { display: flex; gap: 8px; }
.jano__meta dt { color: #1a9c73; font-weight: 700; margin: 0; }
.jano__meta dd { margin: 0; color: #2a3a34; }
.jano__info, .jano__results { width: 100%; border-collapse: collapse; }
.jano__info th, .jano__info td, .jano__results td {
  border: 1px solid #e3e8e6;
  padding: 9px 12px;
  text-align: left;
  vertical-align: middle;
}
.jano__info th { width: 34%; color: #1a9c73; font-weight: 700; background: #f5faf8; }
.jano__redact {
  display: inline-block;
  width: 140px;
  height: 12px;
  background: #17211d;
  border-radius: 2px;
  vertical-align: middle;
}
.jano__blur {
  filter: blur(5px);
  user-select: none;
  -webkit-user-select: none;
}
.jano__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #2a3a34;
  margin: 18px 0 8px;
}
.jano__num { text-align: right; font-weight: 700; }
.jano__rowaccent td { background: #eaf6f0; }
.jano__verify {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed #cfdad5;
  font-size: 11.5px;
  color: #6f8078;
}
.jano__verify b { color: #2a3a34; letter-spacing: 0.06em; }
.coa__body {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  background: var(--canvas-night);
  border-left: 1px solid var(--hairline-on-dark);
}
@media (max-width: 640px) { .coa__body { border-left: 0; border-top: 1px solid var(--hairline-on-dark); } }
.coa__lead { font-size: 15px; line-height: 1.6; color: var(--ink); max-width: 42ch; }
.coa__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* PDP trust row — reason-to-believe above the buy rows */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-on-dark);
  border: 1px solid var(--hairline-on-dark);
}
@media (max-width: 640px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }

.variant__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-primary-mute);
  border: 1px solid var(--hairline-on-dark);
  border-radius: 9999px;
  padding: 3px 9px;
  margin-left: 10px;
  vertical-align: middle;
}

/* PDP pairs-with cross-sell */
.pairs {
  display: grid;
  gap: 1px;
  background: var(--hairline-on-dark);
  border: 1px solid var(--hairline-on-dark);
}
.pair {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--canvas-night);
  transition: background 180ms ease;
}
.pair:hover { background: var(--canvas-night-soft); }
.pair__name { font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: 0.02em; }
.pair__meta { margin-left: auto; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-primary-mute); }
.pair__go { font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- INQUIRE BLOCK ---- */
.inquire {
  padding: clamp(56px, 10vh, 96px) var(--pad-x-page);
  background: var(--canvas-night-soft);
  border-top: 1px solid var(--hairline-on-dark);
  border-bottom: 1px solid var(--hairline-on-dark);
  text-align: center;
}
.inquire__inner { max-width: 720px; margin: 0 auto; }
.inquire__title { margin-bottom: 16px; }
.inquire__sub { margin-bottom: 36px; }
.inquire__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   TRUST PILLARS — 4-card hover-expand with video reveal
   ============================================================ */
.pillars {
  background: var(--canvas);
  padding: clamp(44px, 7vh, 80px) 0 clamp(40px, 6vh, 64px);
  overflow: hidden;
}
.pillars__head {
  max-width: 1320px;
  margin: 0 auto clamp(28px, 5vh, 48px);
  text-align: center;
  padding: 0 var(--pad-x-page);
}
.pillars__grid {
  display: flex;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  gap: 8px;
  padding: 0 var(--pad-x-page);
}
.pillar {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: #0e0e0e;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  transition: flex-grow 700ms cubic-bezier(.4, 0, .2, 1), border-color 500ms ease;
}
/* faint top-left light so resting cards have depth, not a flat rectangle */
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(120% 90% at 0% 0%, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.pillar:hover { border-color: rgba(255,255,255,0.28); }
/* video-default variant — video plays as background continuously, not just on hover */
.pillar--video { background: #000; }
.pillar--video .pillar__video { opacity: 1; }
.pillar--video .pillar__scrim  { opacity: 1; }

/* hover expansion choreography:
   when ANY pillar in the grid is hovered, others shrink, hovered one grows */
.pillars__grid:hover .pillar          { flex-grow: 0.55; }
.pillars__grid:hover .pillar:hover    { flex-grow: 2.8; }

.pillar__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}
.pillar:hover .pillar__video { opacity: 1; }

/* gradient scrim — dark on the left so text reads, fading to clear right
   so the video shows through the expanded right portion of the card */
.pillar__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.65) 30%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.05) 100%
  );
  opacity: 0;
  transition: opacity 600ms ease;
}
.pillar:hover .pillar__scrim { opacity: 1; }

.pillar__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 30px;
  /* fixed width content area — text stays left even when card expands */
  width: 280px;
  box-sizing: border-box;
}
.pillar:hover { color: var(--on-dark); }
.pillar:hover .pillar__title,
.pillar:hover .pillar__index,
.pillar:hover .pillar__body { color: var(--on-dark); }

/* top row — index number + hairline rule (technical dossier feel) */
.pillar__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar__top::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: currentColor;
  opacity: 0.18;
}
.pillar__index {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* proof metric — the focal point; pushed down so metric+title+body
   form one cluster at the base, with intentional negative space above */
.pillar__metric { margin-top: auto; }
.pillar__stat {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 68px;
  line-height: 0.9;
  letter-spacing: 0.005em;
}
.pillar__unit {
  font-size: 0.5em;
  font-weight: 700;
  margin-left: 0.06em;
  opacity: 0.8;
}
.pillar__statcap {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  max-width: 210px;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillar__foot { margin-top: 30px; }
.pillar__body {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  opacity: 0.72;
  max-width: 230px;
}

/* expanded detail — fades in inside the space that opens on hover */
.pillar__detail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 300px;
  right: clamp(28px, 3.5vw, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 450ms ease 140ms, transform 450ms ease 140ms;
  pointer-events: none;
}
.pillar:hover .pillar__detail {
  opacity: 1;
  transform: none;
}
.pillar__detail p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
}
.pillar__detail-link {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 3px;
  pointer-events: auto;
  transition: border-color 200ms ease;
}
.pillar__detail-link:hover { border-color: var(--on-dark); }

/* mobile — stack vertically, disable hover expansion */
@media (max-width: 900px) {
  .pillars__grid { flex-direction: column; gap: 4px; }
  .pillar { min-height: 280px; }
  .pillar__content { width: 100%; min-height: 280px; padding: 28px 24px; }
  .pillars__grid:hover .pillar,
  .pillars__grid:hover .pillar:hover { flex-grow: 1; }
  /* no hover-expand on touch — the detail panel has nowhere to open, so hide it */
  .pillar__detail { display: none; }
}

/* ============================================================
   PAGE-HOME OVERRIDE — flip cream/white sections to dark with
   animated dot canvas. Scoped via body.page-home only.
   ============================================================ */
.page-home { background: #050505; }

.page-home .pillars,
.page-home .inquire {
  background: #060606;
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,0.08);
}

/* animated dot-grid canvas behind the section content */
.page-home .pillars::before,
.page-home .inquire::before {
  content: '';
  position: absolute;
  inset: -10%;                 /* overscan so drift never reveals edges */
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1.4px);
  background-size: 18px 18px;
  animation: drift-dots 36s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 55%, transparent 100%);
}
@keyframes drift-dots {
  0%   { background-position: 0 0; }
  100% { background-position: 36px 28px; }
}

/* content above the dot canvas */
.page-home .pillars > *,
.page-home .inquire > * {
  position: relative;
  z-index: 1;
}

/* invert pillar section headings */
.page-home .pillars__head .display-xl,
.page-home .pillars__head .body-lg { color: var(--on-dark); }
.page-home .pillars__head .muted   { color: var(--on-dark-mute); }

/* invert inquire band */
.page-home .inquire .display-lg,
.page-home .inquire .body-lg { color: var(--on-dark); }
.page-home .inquire .muted   { color: var(--on-dark-mute); }
.page-home .inquire .btn {
  border-color: var(--on-dark);
  color: var(--on-dark);
}
.page-home .inquire .btn:hover {
  background: var(--on-dark);
  color: var(--ink);
}

/* ============================================================
   LAB VERIFICATION — Janoshik third-party testing trust block
   ============================================================ */
.lab {
  background: #060606;
  color: var(--on-dark);
  padding: clamp(44px, 7vh, 80px) var(--pad-x-page);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lab__head {
  max-width: 780px;
  margin: 0 auto clamp(24px, 4vh, 44px);
  text-align: center;
}
.lab__head .eyebrow { color: var(--on-dark-mute); opacity: 1; margin-bottom: 18px; }
.lab__head .display-xl { color: var(--on-dark); margin-bottom: 18px; }
.lab__head .body-lg { color: var(--on-dark-mute); }
.lab__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 440px) 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 880px) { .lab__inner { grid-template-columns: 1fr; gap: 56px; } }

.lab__copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.lab__points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.lab__points li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.5; color: var(--on-dark-mute); }
.lab__points li::before { content: ''; position: absolute; left: 0; top: 12px; width: 14px; height: 1px; background: var(--on-dark); opacity: 0.7; }
.lab__points b { color: var(--on-dark); font-weight: 600; }
.lab__stats { display: flex; gap: 40px; margin-bottom: 24px; flex-wrap: wrap; }
.lab__stat .n { font-family: var(--font-display); font-weight: 700; font-size: 36px; color: #fff; line-height: 1; }
.lab__stat .l { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mute); margin-top: 9px; }
.lab__copy .btn { border-color: var(--on-dark); color: var(--on-dark); }
.lab__copy .btn:hover { background: var(--on-dark); color: var(--ink); }

/* homepage jano card sits directly in the .lab grid, not the .coa panel frame */
@media (max-width: 880px) { .lab__inner .jano { margin: 0 auto; } }

/* ---- homepage FAQ teaser (dark) ---- */
.page-home .band--faq { background: #060606; border-top: 1px solid rgba(255,255,255,0.08); }
.page-home .band--faq .display-xl,
.page-home .band--faq .body-lg { color: var(--on-dark); }
.page-home .band--faq .muted { color: var(--on-dark-mute); }
.page-home .faq { border-top-color: var(--hairline-soft); }
.page-home .faq__item { border-bottom-color: var(--hairline-soft); }
.page-home .faq__q { color: var(--on-dark); }
.page-home .faq__q:hover { color: var(--on-dark-mute); }
.page-home .faq__sign::before,
.page-home .faq__sign::after { background: var(--on-dark); }
.page-home .faq__a { color: var(--on-dark-mute); }
.page-home .faq__a a { color: #fff; }

/* ---- FOOTER (stays dark — cinematic close) ---- */
.foot {
  background: var(--canvas-dark);
  color: var(--on-dark);
  padding: 96px var(--pad-x-page) 48px;
  border-top: 1px solid var(--canvas-dark);
}
.foot__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.foot__brand .nav__logo { font-size: 32px; display: inline-block; margin-bottom: 12px; color: var(--on-dark); }
.foot__tag {
  font-size: 13px;
  color: var(--on-dark-mute);
  opacity: 0.7;
  max-width: 420px;
  line-height: 1.6;
}
.foot__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}
.foot__contact a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--on-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.foot__contact a:hover { border-color: var(--on-dark); }
.foot__notice {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-dark);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--on-dark-mute);
  opacity: 0.65;
  line-height: 1.8;
}
.placeholder-flag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: #2a2a2f;
  border: 1px solid var(--hairline-on-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffcf66;
  text-transform: uppercase;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .foot__inner { grid-template-columns: 1fr; }
  .foot__contact { text-align: left; }
}

/* ============================================================
   FAQ — native <details> accordion, Roehn hairline rows
   ============================================================ */
.faq {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline-soft);
}
.faq__item {
  border-bottom: 1px solid var(--hairline-soft);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 220ms ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--ink-mute); }
.faq__sign {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
  margin-top: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.faq__sign::before,
.faq__sign::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
}
.faq__sign::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__sign::after  { width: 1.5px; height: 16px; transform: translate(-50%, -50%); transition: transform 320ms cubic-bezier(.2,.7,.2,1); }
.faq__item[open] .faq__sign { transform: rotate(180deg); }
.faq__item[open] .faq__sign::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  padding: 0 48px 30px 4px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-mute);
}
.faq__a p + p { margin-top: 14px; }
.faq__a a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.faq__item[open] .faq__a { animation: faqReveal 380ms cubic-bezier(.2,.7,.2,1); }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .faq__a { padding-right: 4px; }
}

/* ---- UTILITY ---- */
.center { text-align: center; }
.muted  { color: var(--on-primary-mute); opacity: 0.75; }

/* ---- REVEAL ANIMATIONS (GSAP-targeted) ---- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: translateY(0); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }

/* ============================================================
   GATES — entry gate (age + terms) AND inquire confirmation modal
   Shared structure. White box on dark scrim. Corner brackets.
   ============================================================ */
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity 420ms ease;
}
.gate--inquire { display: none; }
.gate--inquire.is-open { display: flex; }
.gate.is-hiding { opacity: 0; pointer-events: none; }

.gate__box {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 52px 40px 36px;
  background: var(--canvas-deep);
  color: var(--ink);
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--hairline-soft);
}
.gate__corner { display: none; }

.gate__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.gate__rule {
  width: 60px;
  height: 1px;
  border: 0;
  background: var(--ink);
  margin: 0 auto 28px;
}
.gate__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.gate__body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-mute);
  margin-bottom: 22px;
  text-align: left;
}
.gate__hl { color: #c8102e; font-weight: 600; }
.gate__title .gate__hl { color: #c8102e; }
.gate__terms {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.gate__terms li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 12px;
}
.gate__terms li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px;
  height: 1px;
  background: var(--ink);
}
.gate__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 14px;
  background: var(--canvas-soft);
  border: 1px solid var(--hairline-soft);
}
.gate__checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
  background: var(--canvas-deep);
  cursor: pointer;
  position: relative;
  margin-top: 1px;
}
.gate__checkbox input:checked { background: var(--ink); }
.gate__checkbox input:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 0;
  width: 6px; height: 11px;
  border-right: 2px solid var(--canvas);
  border-bottom: 2px solid var(--canvas);
  transform: rotate(45deg);
}
.gate__checkbox span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
}
.gate__primary {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}
.gate__primary:disabled {
  cursor: default;
  color: var(--ink-mute);
  border-color: var(--hairline-soft);
}
.gate__primary-txt,
.gate__count {
  position: relative;
  z-index: 1;
}
.gate__count {
  display: inline-block;
  min-width: 1.1em;
  margin-left: 12px;
  color: #c8102e;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.gate__primary.is-ready .gate__count,
.gate__primary.is-ready .gate__progress { display: none; }
.gate__progress {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gate__progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--hairline-soft);
  transition: width 3000ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .gate__progress-bar { transition: none; }
}
.gate__leave {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--hairline-soft);
  padding-bottom: 2px;
  margin-bottom: 28px;
  transition: color 200ms ease, border-color 200ms ease;
}
.gate__leave:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.gate__fineprint {
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--ink-mute);
  opacity: 0.65;
}

/* lock scroll while any gate is open */
body.is-gate-locked,
body.is-age-locked { overflow: hidden; }

/* ============================================================
   CART — floating button + slide-in drawer
   ============================================================ */
.cart-fab {
  position: fixed; z-index: 200;
  top: 16px; right: var(--pad-x-page);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #0a0a0a;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 9999px;
  transition: transform 160ms ease, opacity 200ms ease;
}
.cart-fab:hover { transform: scale(1.06); }
.cart-fab__badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: #0a0a0a; color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 9999px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) { .cart-fab { right: calc(var(--pad-x-page) + 52px); } }

.cart-drawer { position: fixed; inset: 0; z-index: 9998; visibility: hidden; }
.cart-drawer.is-open { visibility: visible; }
.cart-drawer__scrim {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; transition: opacity 300ms ease;
}
.cart-drawer.is-open .cart-drawer__scrim { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--canvas-deep); color: var(--ink);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 360ms cubic-bezier(.2,.7,.2,1);
  border-left: 1px solid var(--hairline-soft);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px; border-bottom: 1px solid var(--hairline-soft);
}
.cart-drawer__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 18px; }
.cart-drawer__close { font-size: 30px; line-height: 1; color: var(--ink-mute); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 12px 26px; }
.cart-drawer__empty { color: var(--ink-mute); text-align: center; padding: 48px 0; }
.cart-line { display: flex; justify-content: space-between; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--hairline-soft); }
.cart-line__name { display: block; font-weight: 600; font-size: 14px; }
.cart-line__meta { display: block; font-size: 12px; color: var(--ink-mute); margin-top: 3px; }
.cart-line__controls { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--hairline-soft); border-radius: 6px; }
.qty button { width: 28px; height: 28px; font-size: 16px; color: var(--ink); }
.qty span { min-width: 26px; text-align: center; font-size: 13px; }
.cart-line__price { font-weight: 600; font-size: 14px; }
.cart-line__rm { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); border-bottom: 1px solid transparent; }
.cart-line__rm:hover { color: var(--ink); border-color: var(--ink); }
.cart-drawer__foot { padding: 22px 26px; border-top: 1px solid var(--hairline-soft); }
.cart-drawer__row { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 6px; }
.cart-drawer__note { font-size: 12px; color: var(--ink-mute); margin-bottom: 16px; }
.cart-drawer__checkout.is-disabled { opacity: 0.4; pointer-events: none; }
body.is-cart-open { overflow: hidden; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout { max-width: 1120px; margin: 0 auto; padding: calc(var(--nav-h) + clamp(48px,8vh,88px)) var(--pad-x-page) clamp(72px,10vh,120px); }
.checkout__head { text-align: center; margin-bottom: clamp(40px,6vh,64px); }
.checkout__head h1 { margin-bottom: 10px; }
.checkout__empty, .checkout__success { text-align: center; padding: clamp(48px,10vh,100px) 0; }
.checkout__empty p { color: var(--ink-mute); margin-bottom: 24px; }
.checkout__success-mark { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 34px; display: flex; align-items: center; justify-content: center; }
.checkout__success h2 { margin-bottom: 12px; }
.checkout__success p { max-width: 460px; margin: 0 auto 28px; }

.checkout__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
@media (max-width: 860px) { .checkout__grid { grid-template-columns: 1fr; } }
.checkout__block { margin-bottom: 40px; }
.checkout__h { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 18px; margin-bottom: 18px; }
.checkout__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .checkout__fields { grid-template-columns: 1fr; } }
.cf { display: flex; flex-direction: column; min-width: 0; }
.cf--full { grid-column: 1 / -1; }
.cf label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 7px; }
.cf input, .cf select {
  background: var(--canvas-deep); border: 1px solid var(--hairline-soft); border-radius: 5px;
  padding: 13px 14px; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: border-color 180ms ease;
}
.cf input:focus, .cf select:focus { outline: none; border-color: var(--ink); }

/* payment tabs */
.pay-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pay-tab {
  padding: 11px 16px; border: 1px solid var(--hairline-soft); border-radius: 9999px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute);
  transition: all 160ms ease;
}
.pay-tab.is-active { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.pay-panel { border: 1px solid var(--hairline-soft); border-radius: 8px; padding: 24px; background: var(--canvas-deep); }
.pay-lead { font-size: 14px; color: var(--ink-mute); margin-bottom: 18px; }
.pay-notice { font-size: 13px; line-height: 1.7; color: var(--ink-mute); }
.pay-notice code { background: var(--canvas-soft); padding: 1px 5px; border-radius: 3px; font-size: 12px; }
.pay-panel .btn { margin-top: 18px; }

.crypto-coins { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.crypto-coin { border: 1px solid var(--hairline-soft); border-radius: 8px; padding: 16px; text-align: center; }
.crypto-coin__head { font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.crypto-coin__qr { margin: 0 auto 12px; border-radius: 4px; }
.crypto-coin__addr { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.crypto-coin__addr code { font-size: 10px; word-break: break-all; color: var(--ink-mute); }
.crypto-copy { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--hairline-soft); border-radius: 6px; padding: 6px 12px; color: var(--ink); }
.crypto-copy:hover { background: var(--ink); color: var(--canvas); }

.apps-list { display: flex; flex-direction: column; gap: 10px; }
.apps-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border: 1px solid var(--hairline-soft); border-radius: 6px; }
.apps-row__n { font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.apps-row code { font-size: 14px; color: var(--ink); }

.checkout__summary { position: sticky; top: calc(var(--nav-h) + 20px); border: 1px solid var(--hairline-soft); border-radius: 8px; padding: 26px; background: var(--canvas-deep); }
.sum-items { margin-bottom: 18px; }
.sum-line { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--hairline-soft); font-size: 14px; }
.sum-line__q { color: var(--ink-mute); }
.sum-line__n { flex: 1; }
.sum-line__n small { display: block; color: var(--ink-mute); font-size: 12px; margin-top: 2px; }
.sum-line__p { font-weight: 600; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; color: var(--ink-mute); }
.sum-row[hidden] { display: none; }   /* the flex rule above overrides the default [hidden]; restore it */
.sum-row--total { font-size: 18px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--hairline-soft); margin-top: 6px; padding-top: 14px; }
.checkout__fineprint { font-size: 11px; line-height: 1.7; color: var(--ink-mute); margin-top: 18px; }
.checkout__fineprint a { color: var(--ink); text-decoration: underline; }

/* ---- mandatory consent gate ---- */
.consent__lead { font-size: 13px; color: var(--ink-mute); margin-bottom: 16px; }
.consent { display: flex; flex-direction: column; gap: 12px; }
.consent__item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border: 1px solid var(--hairline-soft); border-radius: 8px;
  background: var(--canvas-deep); cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.consent__item:hover { border-color: var(--ink); }
.consent__item input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px;
  border: 1.5px solid var(--hairline); border-radius: 5px; background: var(--canvas-deep);
  cursor: pointer; position: relative; transition: background 140ms ease, border-color 140ms ease;
}
.consent__item input[type="checkbox"]:checked { background: var(--ink); border-color: var(--ink); }
.consent__item input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 7px; top: 3px;
  width: 5px; height: 10px; border: solid var(--canvas-deep); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.consent__item input[type="checkbox"]:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.consent__item span { font-size: 14px; line-height: 1.55; color: var(--ink); }
.consent__item a { color: var(--ink); text-decoration: underline; }
.consent__item.is-missing { border-color: #c0392b; background: #fdf2f0; }
.consent__item.is-missing span { color: #a5281b; }

/* ---- payment lock (until consent complete) ---- */
.pay-locked-note {
  font-size: 13px; color: #a5281b; background: #fdf2f0;
  border: 1px solid #f2c9c2; border-radius: 6px; padding: 12px 14px; margin-bottom: 18px;
}
#pay-block.is-locked .pay-tabs,
#pay-block.is-locked .pay-panel { opacity: 0.4; pointer-events: none; filter: grayscale(0.4); user-select: none; }
#pay-block:not(.is-locked) .pay-locked-note { display: none; }

/* two-step checkout — step indicator */
.checkout__steps {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; max-width: 460px; margin: 0 auto clamp(32px, 5vh, 52px);
}
.cstep { display: flex; align-items: center; gap: 10px; }
.cstep__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--hairline-soft); color: var(--ink-mute);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  font-variant-numeric: tabular-nums; transition: all .3s ease; flex-shrink: 0;
}
.cstep__label {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute);
  transition: color .3s ease; white-space: nowrap;
}
.cstep.is-active .cstep__n { background: var(--ink); border-color: var(--ink); color: #fff; }
.cstep.is-active .cstep__label { color: var(--ink); }
.cstep.is-done .cstep__n { background: var(--ink); border-color: var(--ink); color: #fff; font-size: 0; }
.cstep.is-done .cstep__n::after { content: "✓"; font-size: 13px; }
.cstep.is-done .cstep__label { color: var(--ink); }
.cstep__bar { flex: 1; height: 1px; background: var(--hairline-soft); position: relative; overflow: hidden; }
.cstep__bar span { position: absolute; inset: 0; width: 0; background: var(--ink); transition: width .4s ease; }
@media (max-width: 520px) { .cstep__label { display: none; } .checkout__steps { gap: 10px; max-width: 240px; } }

/* address autocomplete dropdown (OpenStreetMap / Photon) */
.addr-field { position: relative; }
.addr-suggest {
  position: absolute; top: calc(100% + 2px); left: 0; right: 0; z-index: 30;
  background: var(--canvas-deep); border: 1px solid var(--ink);
  border-radius: 6px; list-style: none; margin: 0; padding: 4px 0;
  max-height: 280px; overflow-y: auto; box-shadow: 0 18px 40px -16px rgba(0,0,0,0.28);
}
.addr-suggest li {
  padding: 10px 14px; font-size: 14px; color: var(--ink); cursor: pointer;
  line-height: 1.35; transition: background-color .12s ease;
}
.addr-suggest li b { font-weight: 600; }
.addr-suggest li small { display: block; color: var(--ink-mute); font-size: 12px; margin-top: 2px; }
.addr-suggest li:hover, .addr-suggest li.is-active { background: var(--canvas-soft); }
.addr-suggest__foot {
  padding: 8px 14px 4px; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-mute); cursor: default; border-top: 1px solid var(--hairline-soft); margin-top: 4px;
}
.addr-suggest__foot:hover { background: none; }

.checkout__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 18px; cursor: pointer;
  background: none; border: none; padding: 0; transition: color .2s;
}
.checkout__back:hover { color: var(--ink); }
#to-payment { margin-top: 4px; }

/* ============================================================
   EXPANDED FOOTER — brand + link columns + RUO disclaimer
   (injected by main.js renderFooter on every page)
   ============================================================ */
.foot__top {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.foot__brand .foot__tag { margin-top: 14px; }
.foot__brand-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.foot__brand-contact a {
  font-size: 13px; letter-spacing: 0.04em; color: var(--on-dark-mute);
  border-bottom: 1px solid transparent; width: fit-content;
  transition: color 200ms ease, border-color 200ms ease;
}
.foot__brand-contact a:hover { color: var(--on-dark); border-color: var(--on-dark); }
.foot__col-h {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark); opacity: 0.55; margin-bottom: 20px;
}
.foot__links { display: flex; flex-direction: column; gap: 14px; }
.foot__links a {
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; letter-spacing: 0.04em; color: var(--on-dark-mute);
  width: fit-content; transition: color 200ms ease;
}
.foot__links a:hover { color: var(--on-dark); }
.foot__disclaimer {
  max-width: 1320px; margin: clamp(48px,7vh,72px) auto 0;
  padding-top: 28px; border-top: 1px solid var(--hairline-dark);
}
.foot__disclaimer p {
  font-size: 11px; letter-spacing: 0.05em; line-height: 1.9;
  color: var(--on-dark-mute); opacity: 0.6; text-transform: uppercase;
  max-width: 900px; margin: 0 auto; text-align: center;
}
@media (max-width: 860px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .foot__top { grid-template-columns: 1fr; }
}

/* ============================================================
   AFFILIATE / CREATOR PROGRAM — dark, exclusive tier page
   ============================================================ */
.page-affiliate { background: #070707; color: var(--on-dark); }
.page-affiliate .nav--scrolled { background: rgba(8,8,8,0.85); border-bottom-color: rgba(255,255,255,0.10); }
.page-affiliate .nav--scrolled .nav__logo,
.page-affiliate .nav--scrolled .nav__links a { color: var(--on-dark); }

.aff-hero {
  padding: calc(var(--nav-h) + clamp(60px,12vh,120px)) var(--pad-x-page) clamp(40px,6vh,64px);
  text-align: center; max-width: 820px; margin: 0 auto;
}
.aff-hero .eyebrow { color: var(--on-dark-mute); opacity: 1; margin-bottom: 18px; }
.aff-hero h1 { color: var(--on-dark); margin-bottom: 18px; }
.aff-hero p { color: var(--on-dark-mute); max-width: 600px; margin: 0 auto; }

.aff-tiers {
  max-width: 1080px; margin: 0 auto clamp(56px,9vh,96px);
  padding: 0 var(--pad-x-page);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 820px) { .aff-tiers { grid-template-columns: 1fr; } }
.aff-tier {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
  padding: 32px 28px; background: rgba(255,255,255,0.02);
}
.aff-tier--featured { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); }
.aff-tier__n { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-mute); margin-bottom: 14px; }
.aff-tier__rate { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: #fff; line-height: 1; margin-bottom: 6px; }
.aff-tier__rate small { font-size: 14px; color: var(--on-dark-mute); font-family: var(--font-body); font-weight: 400; }
.aff-tier__req { font-size: 13px; color: var(--on-dark-mute); margin-bottom: 20px; }
.aff-tier ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.aff-tier li { position: relative; padding-left: 20px; font-size: 13px; line-height: 1.5; color: var(--on-dark-mute); }
.aff-tier li::before { content: ''; position: absolute; left: 0; top: 11px; width: 12px; height: 1px; background: var(--on-dark); opacity: 0.6; }

.aff-form-wrap {
  max-width: 920px; margin: 0 auto clamp(80px,12vh,140px);
  padding: 0 var(--pad-x-page);
}
.aff-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: clamp(28px,4vw,48px);
}
.aff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
@media (max-width: 640px) { .aff-grid { grid-template-columns: 1fr; } }
.aff-field { display: flex; flex-direction: column; }
.aff-field--full { grid-column: 1 / -1; }
.aff-field label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-mute); margin-bottom: 10px;
}
.aff-field input,
.aff-field select,
.aff-field textarea {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--on-dark);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 200ms ease, background 200ms ease;
}
.aff-field input::placeholder,
.aff-field textarea::placeholder { color: rgba(255,255,255,0.32); }
.aff-field select { appearance: none; cursor: pointer; }
.aff-field select option { background: #111; color: #fff; }
.aff-field textarea { resize: vertical; min-height: 130px; }
.aff-field input:focus,
.aff-field select:focus,
.aff-field textarea:focus { outline: none; border-color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.5); }
.aff-submit {
  grid-column: 1 / -1; margin-top: 8px;
  background: #fff; color: #0a0a0a;
  border: 1px solid #fff; border-radius: 4px;
  padding: 18px; font-family: var(--font-body); font-weight: 600;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background 200ms ease, transform 120ms ease;
}
.aff-submit:hover { background: rgba(255,255,255,0.85); }
.aff-submit:active { transform: scale(0.99); }
.aff-note { text-align: center; font-size: 12px; color: var(--on-dark-mute); opacity: 0.7; margin-top: 18px; }

/* ============================================================
   LEGAL / POLICY PAGES — cream long-form
   ============================================================ */
.legal {
  max-width: 820px; margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(56px,9vh,96px)) var(--pad-x-page) clamp(72px,10vh,120px);
}
.legal__eyebrow { margin-bottom: 16px; }
.legal h1 { margin-bottom: 14px; }
.legal__updated { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 48px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(18px,2.2vw,24px); letter-spacing: 0.02em;
  margin: 44px 0 16px; color: var(--ink);
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.75; color: var(--ink-mute); }
.legal p + p { margin-top: 14px; }
.legal ul { margin: 14px 0 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal__callout {
  margin: 28px 0; padding: 24px 26px;
  background: var(--canvas-soft); border-left: 3px solid var(--ink);
  border-radius: 0 4px 4px 0;
}
.legal__callout p { color: var(--ink); font-size: 14.5px; }

/* ============================================================
   SHIPPING & GUARANTEE — rate table + policy (FAQ page)
   ============================================================ */
.band--ship { background: var(--canvas-soft); }
.ship-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hairline-soft);
  border-radius: 8px;
  background: var(--canvas-deep);
  margin-bottom: clamp(40px, 6vh, 64px);
  -webkit-overflow-scrolling: touch;
}
.ship-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 15px;
}
.ship-table th,
.ship-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--hairline-soft);
}
.ship-table th:first-child,
.ship-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}
.ship-table thead th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--canvas-soft);
  white-space: nowrap;
}
.ship-table tbody tr:last-child td { border-bottom: none; }
.ship-table tbody tr { transition: background 160ms ease; }
.ship-table tbody tr:hover { background: var(--canvas-soft); }
.ship-table td { color: var(--ink-mute); }

.ship-policy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: 8px;
  overflow: hidden;
}
.ship-policy__item {
  background: var(--canvas-deep);
  padding: clamp(24px, 3vw, 36px);
}
.ship-policy__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.ship-policy__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.ship-policy__item p { font-size: 15px; line-height: 1.7; color: var(--ink-mute); }
.ship-policy__item p + p { margin-top: 12px; }
.ship-policy__item strong { color: var(--ink); font-weight: 600; }
.ship-policy__item a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) {
  .ship-policy { grid-template-columns: 1fr; }
  .ship-policy__item:last-child:nth-child(odd) { grid-column: auto; }
}

/* ============ CONTACT PAGE ============ */
.contact {
  padding-top: calc(var(--nav-h) + clamp(48px, 8vh, 88px));
  padding-bottom: clamp(64px, 10vh, 120px);
}
.contact__inner { max-width: 1080px; margin: 0 auto; width: 100%; padding: 0 var(--pad-x-page); }
.contact__head { max-width: 760px; margin-bottom: clamp(40px, 6vh, 68px); }
.contact__head .eyebrow { margin-bottom: 14px; }
.contact__lead { margin-top: 18px; max-width: 62ch; }

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; } }

/* left column */
.contact__card {
  border: 1px solid var(--hairline-soft);
  border-radius: 12px;
  background: var(--canvas-deep);
  padding: 28px 26px;
}
.contact__k {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 10px;
}
.contact__email {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(16px, 1.7vw, 20px); letter-spacing: 0.01em;
  overflow-wrap: anywhere; margin-bottom: 20px;
  transition: color 180ms ease;
}
.contact__email:hover { color: var(--ink-mute); }

.contact__facts { margin: 26px 0 0; border-top: 1px solid var(--hairline-soft); }
.contact__facts > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 2px; border-bottom: 1px solid var(--hairline-soft);
}
.contact__facts dt {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute);
}
.contact__facts dd { text-align: right; font-size: 14px; color: var(--ink); }

.contact__topics { list-style: none; margin: 28px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact__topics span {
  display: block; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; font-size: 14px;
}
.contact__topics p { color: var(--ink-mute); font-size: 14px; margin-top: 3px; line-height: 1.5; }

/* right column — form */
.contact__form {
  border: 1px solid var(--hairline-soft);
  border-radius: 12px;
  background: var(--canvas-deep);
  padding: clamp(24px, 3vw, 38px);
  display: flex; flex-direction: column; gap: 18px;
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 480px) { .contact__row { grid-template-columns: 1fr; } }
.cfield { display: flex; flex-direction: column; }
.cfield label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.cfield input, .cfield select, .cfield textarea {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 180ms ease, background 180ms ease;
}
.cfield input::placeholder, .cfield textarea::placeholder { color: #9a9a95; }
.cfield select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235a5a5f' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.cfield textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus {
  outline: none; border-color: var(--ink); background: var(--canvas-deep);
}
.contact__submit { align-self: flex-start; margin-top: 4px; }
.contact__note { font-size: 12px; color: var(--ink-mute); line-height: 1.5; }
.contact__note.is-ok { color: #1a7d4b; }

/* ============================================================
   PDP v2 — product detail redesign (page-product)
   Image left (sticky) · buy panel right (sticky) · kit selector,
   live price, add-to-cart above the fold. Reuses design tokens.
   ============================================================ */

/* solid filled CTA (add to cart) */
.btn--solid { background: var(--ink); color: var(--canvas-deep); border-color: var(--ink); }
.btn--solid:hover { background: #000; color: #fff; }
.btn--solid[disabled] { opacity: .45; cursor: default; pointer-events: none; }

/* nav sits over light canvas here — pin it to the solid dark bar */
body.page-product .nav { background: rgba(5,5,5,0.97); border-bottom: 1px solid var(--hairline-dark); height: 60px; }
body.page-product .nav__logo,
body.page-product .nav__links a { color: #fff; }

.pdp { max-width: 1240px; margin: 0 auto; padding: calc(60px + 34px) var(--pad-x-page) 0; }

.pdp__crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 26px;
}
.pdp__crumb a { color: var(--ink-mute); transition: color .2s; }
.pdp__crumb a:hover { color: var(--ink); }
.pdp__crumb b { color: var(--ink); font-weight: 600; }
.pdp__crumb span { opacity: .5; }

.pdp__grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 4vw, 68px); align-items: start;
  padding-bottom: clamp(56px, 8vh, 96px);
}

/* ---------- media (left, sticky) ---------- */
.pdp__media { position: sticky; top: 84px; }
.pdp__stage {
  position: relative; background: var(--canvas-soft);
  border: 1px solid var(--hairline-soft); aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pdp__img { width: 100%; height: 100%; object-fit: contain; padding: clamp(26px, 6%, 68px); }

.pdp__stage-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; background: var(--ink); color: #fff;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.pdp__stage-badge svg { width: 22px; height: 11px; fill: #35c48f; }

.pdp__assure { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--hairline-soft); border-bottom: 0; margin-top: 22px; }
.pdp__assure > div { padding: 15px 16px; border-bottom: 1px solid var(--hairline-soft); border-right: 1px solid var(--hairline-soft); }
.pdp__assure > div:last-child { border-right: 0; }
.pdp__assure dt { font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 5px; }
.pdp__assure dd { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; }

/* ---------- buy panel (right, sticky) ---------- */
.pdp__buy { position: sticky; top: 84px; }
.pdp__eyebrow { color: var(--ink-mute); opacity: 1; margin-bottom: 12px; }
.pdp__title { margin-bottom: 12px; }
.pdp__tag { max-width: 42ch; margin-bottom: 20px; }

.pdp__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.pdp__chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border: 1px solid var(--hairline-soft);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.pdp__chip i { width: 6px; height: 6px; border-radius: 50%; background: #1a9c73; display: inline-block; }

.pdp__seclabel { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline-soft); }
.pdp__seclabel span:last-child { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }

.pdp__kits { display: grid; gap: 10px; margin-bottom: 26px; }
.kit {
  position: relative; display: grid; align-items: center;
  grid-template-columns: 22px 1fr auto; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--hairline-soft);
  cursor: pointer; transition: border-color .18s, background .18s;
}
.kit:hover { border-color: var(--ink-mute); }
.kit.is-active { border-color: var(--ink); background: var(--canvas-deep); box-shadow: inset 0 0 0 1px var(--ink); }
.kit.is-out { opacity: .5; cursor: default; }
.kit__dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--hairline); position: relative; }
.kit.is-active .kit__dot { border-color: var(--ink); }
.kit.is-active .kit__dot::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--ink); }
.kit__lead { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.kit__dose { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: .02em; text-transform: uppercase; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.kit__sub { font-family: var(--font-body); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.kit__price { text-align: right; white-space: nowrap; }
.kit__kit { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: .02em; font-variant-numeric: tabular-nums; line-height: 1; }
.kit__per { display: block; margin-top: 4px; font-family: var(--font-body); font-size: 11px; color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.kit__badge { font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--ink); color: #fff; padding: 3px 8px; }

.pdp__order { border-top: 1px solid var(--hairline); padding-top: 22px; }
.pdp__priceRow { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.pdp__price { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 6vw, 52px); line-height: .9; letter-spacing: .01em; font-variant-numeric: tabular-nums; }
.pdp__price small { font-size: .5em; opacity: .5; font-weight: 400; margin-right: 2px; vertical-align: super; }
.pdp__pricemeta { text-align: right; font-family: var(--font-body); font-size: 12px; line-height: 1.6; color: var(--ink-mute); }
.pdp__pricemeta b { color: var(--ink); font-weight: 600; }

.pdp__buyrow { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.pdp__qty { display: inline-flex; align-items: center; border: 1px solid var(--ink); }
.pdp__qty button { width: 46px; align-self: stretch; font-size: 20px; font-weight: 400; color: var(--ink); }
.pdp__qty button:hover { background: var(--canvas-soft); }
.pdp__qty input { width: 40px; text-align: center; border: 0; background: transparent; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); -moz-appearance: textfield; }
.pdp__qty input::-webkit-outer-spin-button, .pdp__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp__reassure { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 16px; font-family: var(--font-body); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-mute); }
.pdp__reassure span { display: inline-flex; align-items: center; gap: 6px; }
.pdp__reassure span::before { content: "\2713"; color: #1a9c73; font-weight: 700; }

.pdp__acc { margin-top: 30px; border-top: 1px solid var(--hairline-soft); }
.pdp__acc details { border-bottom: 1px solid var(--hairline-soft); }
.pdp__acc summary { list-style: none; cursor: pointer; padding: 18px 2px; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.pdp__acc summary::-webkit-details-marker { display: none; }
.pdp__acc summary::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--ink-mute); }
.pdp__acc details[open] summary::after { content: "\2013"; }
.pdp__acc-body { padding: 0 2px 22px; }
.pdp__acc-body p { font-size: 14px; line-height: 1.7; color: var(--ink-mute); }
.pdp__acc-body .coa__actions { margin-top: 16px; }
.pdp__specrow { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-top: 1px dotted var(--hairline-soft); font-size: 13.5px; }
.pdp__specrow:first-child { border-top: 0; }
.pdp__specrow dt { color: var(--ink-mute); }
.pdp__specrow dd { text-align: right; font-weight: 500; }

/* not-found state */
.pdp__missing { text-align: center; padding: 40px 0 20px; }
.pdp__missing .display-lg { margin-bottom: 16px; }
.pdp__missing p { max-width: 44ch; margin: 0 auto 26px; color: var(--ink-mute); }

@media (max-width: 900px) {
  .pdp { padding-top: calc(60px + 24px); }
  .pdp__grid { grid-template-columns: 1fr; gap: 30px; }
  .pdp__media, .pdp__buy { position: static; }
}
@media (max-width: 520px) {
  .pdp__buyrow { grid-template-columns: 1fr; }
  .pdp__qty { justify-self: start; }
}
