/* ── styles-v2-pages.css ──────────────────────────────────────────────
   Care · Catalog · Peptide PDP · Practice · Cold quiz
   Reuses CSS variables from styles-v2.css
*/

/* ── Mobile hamburger nav ──────────────────────────────────────────── */
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 102;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s;
  transform-origin: center;
}
.nav-on-hero .nav-burger span { background: var(--bg); }
.nav-burger.is-open span { background: var(--ink); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-sheet {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  align-items: flex-start;
  justify-content: center;
  padding-top: 90px;
}
@media (max-width: 920px) {
  .nav-sheet { display: flex; }
}
.nav-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-sheet-inner {
  width: 100%;
  max-width: 480px;
  padding: 24px 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-sheet-inner a {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.nav-sheet-inner a.is-active {
  color: var(--accent);
  font-style: italic;
}

@media (max-width: 920px) {
  .nav-burger { display: flex; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-inner { justify-content: space-between; }

  .nav.nav-mobile-open {
    position: fixed;
    inset: 0;
    height: 100dvh;
    overflow-y: auto;
    z-index: 1000;
    background: var(--bg) !important;
    color: var(--ink) !important;
    border-bottom: 0;
    backdrop-filter: none;
  }
  .nav.nav-mobile-open .nav-inner {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
  }
  .nav.nav-mobile-open .brand,
  .nav.nav-mobile-open .nav-sheet-inner a {
    color: var(--ink) !important;
  }
  .nav.nav-mobile-open .nav-burger span {
    background: var(--ink) !important;
  }
  .nav.nav-mobile-open .nav-sheet {
    position: static;
    display: flex;
    opacity: 1;
    pointer-events: auto;
    min-height: calc(100dvh - 69px);
    padding: 8px 20px 36px;
    background: var(--bg);
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav.nav-mobile-open .nav-sheet-inner {
    max-width: none;
    padding: 8px 0 48px;
    gap: 0;
  }
  .nav.nav-mobile-open .nav-sheet-inner a {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    line-height: 1.05;
    text-shadow: none;
  }
  .nav.nav-mobile-open .nav-sheet-actions {
    border-top: 0;
    margin-top: 22px;
    padding-top: 0;
  }
}

/* ── Mobile-first responsive baseline ────────────────────────────── */
@media (max-width: 920px) {
  /* HERO — keep video full bleed, dial type down */
  .hero-video { min-height: 88vh; }
  .hero-video-inner { padding: 100px 24px 48px !important; }
  .hero-video-content h1 { font-size: clamp(40px, 9vw, 64px) !important; }
  .hero-video-content .hero-sub { font-size: 16px !important; }
  .hero-microcite { font-size: 10px !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  /* Sections */
  .section { padding: 64px 24px !important; }
  .section h2 { font-size: clamp(32px, 7vw, 48px) !important; }
  .page-header { padding: 64px 24px 24px !important; }
  .page-h { font-size: clamp(40px, 9vw, 64px) !important; }
  .section-lede { font-size: 16px !important; }

  /* Buttons */
  .btn-lg { font-size: 15px; padding: 14px 22px; }

  /* Footer */
  .footer-inner { padding: 48px 24px !important; }
  .footer-mark { font-size: 32px !important; }

  /* Marquee — slow down */
  .marquee-track { animation-duration: 50s !important; }
}

@media (max-width: 600px) {
  .hero-video-content h1 { font-size: clamp(36px, 11vw, 56px) !important; }
  .hero-actions .btn { padding: 16px 20px; font-size: 16px; }
  .section { padding: 48px 20px !important; }
  .page-header { padding: 48px 20px 16px !important; }
  .footer-inner { padding: 40px 20px !important; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start !important; }
  .nav-inner { padding: 12px 20px !important; }
  .nav-sheet-inner { padding: 24px 24px 64px; }
  .nav-sheet-inner a { font-size: 24px; }
}

/* ── Care page ──────────────────────────────────────────────────────── */
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.care-price {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.care-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}
.care-tier {
  background: transparent;
  border: 1px solid var(--rule);
  padding: 18px 18px 20px;
  min-height: 156px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.care-tier:hover { border-color: var(--ink-mute); }
.care-tier.is-active {
  border-color: var(--accent);
  background: rgba(193,123,75,0.06);
}
.care-tier-name {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  min-height: 16px;
}
.care-tier.is-active .care-tier-name { color: var(--accent); }
.care-tier-badge {
  background: var(--accent);
  color: var(--bg);
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.1em;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: auto;
}
.care-tier-price {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.care-tier-price span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-left: 4px;
}
.care-tier-sub {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.care-asks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  margin-top: 24px;
  border: 1px solid var(--rule);
}
.care-ask {
  background: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 160px;
}
.care-ask p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.3;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}
.care-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
}
.care-office {
  border: 1px solid var(--rule);
  background: var(--bg-card);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.care-office h2 {
  margin: 8px 0 0;
  max-width: 780px;
}
.care-office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.care-office-card {
  background: var(--bg);
  padding: 26px;
  min-height: 210px;
}
.care-office-card .mono {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 24px;
}
.care-office-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.care-office-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

@media (max-width: 768px) {
  .care-grid { grid-template-columns: 1fr; gap: 40px; }
  .care-price { padding: 28px; }
  .care-tiers { grid-template-columns: 1fr; }
  .care-ask p { font-size: 18px; }
  .care-office { padding: 28px; }
  .care-office-grid { grid-template-columns: 1fr; }
  .care-office-card { min-height: auto; }
}

@media (max-width: 560px) {
  .care-grid { gap: 28px; }
  .care-price {
    padding: 22px 16px;
    border-radius: 10px;
  }
  .care-tier {
    min-height: auto;
    padding: 16px;
    border-radius: 10px;
  }
  .care-tier-price { font-size: 30px; }
  .care-tier-badge {
    margin-top: 12px;
  }
  .care-price .btn {
    width: 100%;
    justify-content: center;
  }
  .care-office {
    padding: 22px 16px;
    border-radius: 10px;
  }
}

/* ── Area landing pages ───────────────────────────────────────────────── */
.track {
  text-decoration: none;
}
.area-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  padding-top: 96px;
}
.area-hero-copy h1 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 12px 0 22px;
}
.area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.area-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  padding-top: 0;
  padding-bottom: 0;
}
.area-detail-card {
  background: var(--bg);
  padding: 34px 28px;
  min-height: 220px;
}
.area-detail-card span {
  display: block;
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.area-detail-card h3 {
  font-size: 30px;
  line-height: 1;
  margin: 0 0 12px;
}
.area-detail-card p {
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.area-peptides {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 44px;
  align-items: start;
}
.area-peptides h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 0.98;
  margin: 12px 0 0;
}
.area-peptide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.area-peptide-card {
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--rule);
  background: var(--bg-card);
  padding: 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}
.area-peptide-card:hover {
  border-color: var(--ink-soft);
  transform: translateY(-2px);
}
.area-peptide-card .mono {
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.area-peptide-card h3 {
  font-size: 26px;
  margin: 0;
  line-height: 1.05;
}
.area-peptide-card p {
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}
.area-peptide-card span {
  margin-top: auto;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.area-final {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--rule);
}
.area-final h2 {
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 0.98;
  margin: 12px 0 16px;
}

/* ── Catalog page ───────────────────────────────────────────────────── */
.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 56px;
}
.catalog-hero-product {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.catalog-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.chip {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.catalog-card {
  display: flex; flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.26s ease, filter 0.26s ease;
  animation: axoRise 0.58s ease both;
}
.catalog-card:nth-child(3n + 2) { animation-delay: 0.06s; }
.catalog-card:nth-child(3n + 3) { animation-delay: 0.12s; }
.catalog-card:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 22px 30px rgba(43,24,16,0.1));
}
.catalog-card-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.24s ease, background 0.24s ease;
}
.catalog-card-image img {
  width: auto;
  height: auto;
  max-width: calc(100% - 36px);
  max-height: calc(100% - 36px);
  object-fit: contain;
  display: block;
  image-rendering: auto;
  transition: transform 0.32s ease;
}
.catalog-card:hover .catalog-card-image {
  border-color: rgba(193,123,75,0.46);
  background: rgba(255,252,246,0.82);
}
.catalog-card:hover .catalog-card-image img {
  transform: translateY(-8px) scale(1.035);
}
.catalog-card-body {
  padding: 16px 4px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.catalog-card-body h3 { font-size: 24px; margin: 4px 0; }
.catalog-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}
.catalog-card-foot {
  display: flex; justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
}

/* ── Peptide PDP ────────────────────────────────────────────────────── */
.pdp-rail {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,237,228,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}
.pdp-rail-back {
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.pdp-rail-suggested {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 12px;
}
.pdp-rail-suggested span {
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.pdp-rail-suggested a {
  color: var(--ink);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--rule);
}
.pdp-rail-suggested a:hover { text-decoration-color: var(--accent); }

.pdp-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding-top: 48px !important;
  align-items: start;
}
.pdp-gallery {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 80px;
}
.pdp-thumbs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.pdp-thumb-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.pdp-thumb-link > div {
  width: 100%;
}
.pdp-thumb-link:focus-visible > div {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.pdp-proof-tile {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-card);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-buy {
  padding-top: 8px;
}
.pdp-ladder {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.pdp-tier {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  animation: axoRise 0.54s ease both;
}
.pdp-tier:nth-child(2) { animation-delay: 0.08s; }
.pdp-tier:nth-child(3) { animation-delay: 0.16s; }
.pdp-tier:hover {
  border-color: var(--ink-soft);
  transform: translateY(-7px);
  box-shadow: 0 18px 34px rgba(43,24,16,0.1);
}
.pdp-tier.is-active {
  border-color: var(--ink);
  border-width: 2px;
  padding: 19px 23px;
  background: var(--bg-card);
  box-shadow: 0 22px 42px rgba(43,24,16,0.12);
}
.pdp-tier.has-vial {
  min-height: 178px;
  padding-right: 190px;
  overflow: hidden;
}
.pdp-tier.is-active.has-vial {
  padding-right: 189px;
}
.pdp-tier-vial {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.3s ease;
}
.pdp-tier:hover .pdp-tier-vial {
  transform: translateY(-55%) scale(1.045);
}
.pdp-tier-vial-single {
  width: 168px;
  height: 168px;
}
.pdp-tier-vial img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pdp-tier-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.pdp-tier-head .mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.pdp-tier-badge {
  background: var(--accent);
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 100px;
}
.pdp-tier-price {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.pdp-tier-price span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  margin-left: 4px;
  font-style: normal;
}
.pdp-tier-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-top: 4px;
}
.pdp-cta { width: 100%; }

.pdp-strip {
  background: var(--ink);
  color: var(--bg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pdp-strip-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(244,237,228,0.1);
  display: flex; flex-direction: column; gap: 4px;
}
.pdp-strip-item:last-child { border-right: none; }
.pdp-strip-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: 0;
}
.pdp-strip-item .mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(244,237,228,0.6);
}

.pdp-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 32px;
  border: 1px solid var(--rule);
}
.pdp-outcome {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.pdp-outcome p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.pdp-howworks {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 40px;
  align-items: stretch;
  border: 1px solid var(--rule);
  background: var(--bg-card);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
}
.pdp-howworks h2 em {
  color: var(--accent);
}
.pdp-howworks-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.pdp-howworks-steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.pdp-howworks-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  background: var(--bg);
  padding: 22px;
  transition: transform 0.22s ease, background 0.22s ease;
  animation: axoRise 0.55s ease both;
}
.pdp-howworks-step:nth-child(2) { animation-delay: 0.08s; }
.pdp-howworks-step:nth-child(3) { animation-delay: 0.16s; }
.pdp-howworks-step:hover {
  transform: translateY(-3px);
  background: rgba(255, 252, 246, 0.88);
}
.area-detail-card,
.area-peptide-card,
.pdp-pair-card,
.pdp-outcome {
  animation: axoRise 0.56s ease both;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.area-detail-card:nth-child(2),
.area-peptide-card:nth-child(2),
.pdp-pair-card:nth-child(2),
.pdp-outcome:nth-child(2) { animation-delay: 0.07s; }
.area-detail-card:nth-child(3),
.area-peptide-card:nth-child(3),
.pdp-pair-card:nth-child(3),
.pdp-outcome:nth-child(3) { animation-delay: 0.14s; }
.area-detail-card:hover,
.area-peptide-card:hover,
.pdp-pair-card:hover,
.pdp-outcome:hover {
  transform: translateY(-7px);
  border-color: rgba(193,123,75,0.42);
  box-shadow: 0 18px 34px rgba(43,24,16,0.08);
}
.pdp-howworks-step > .mono {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.pdp-howworks-step h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 8px;
}
.pdp-howworks-step p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

@keyframes axoRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-card,
  .pdp-tier,
  .area-detail-card,
  .area-peptide-card,
  .pdp-pair-card,
  .pdp-outcome,
  .pdp-howworks-step {
    animation: none;
    transition: none;
  }
  .catalog-card:hover,
  .catalog-card:hover .catalog-card-image img,
  .pdp-tier:hover,
  .pdp-tier:hover .pdp-tier-vial,
  .area-detail-card:hover,
  .area-peptide-card:hover,
  .pdp-pair-card:hover,
  .pdp-outcome:hover,
  .pdp-howworks-step:hover {
    transform: none;
  }
}

.pdp-pairs-section {
  padding-top: 48px;
  padding-bottom: 56px;
}
.pdp-pairs-title {
  font-size: clamp(30px, 3vw, 44px);
  max-width: 760px;
}
.pdp-pairs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 360px));
  justify-content: start;
  gap: 14px;
  margin-top: 20px;
}
.pdp-pair-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 18px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pdp-pair-card:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.pdp-pair-body {
  padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.pdp-pair-body h3 { font-size: 22px; margin: 2px 0; }
.pdp-pair-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.4; margin: 0; }

.pdp-leaveout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 64px;
  margin-top: 48px;
}
.pdp-leaveout-item {
  display: flex; gap: 16px; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244,237,228,0.15);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
}
.pdp-leaveout-item .mono {
  font-size: 24px;
  flex-shrink: 0;
}

.pdp-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.pdp-review {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.pdp-review blockquote {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 1024px) {
  .area-hero,
  .area-peptides,
  .area-final {
    grid-template-columns: 1fr;
  }
  .area-detail {
    grid-template-columns: 1fr;
  }
  .area-final {
    align-items: start;
  }
  .area-final .btn {
    justify-self: start;
  }
  .pdp-hero { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
  .pdp-strip { grid-template-columns: repeat(2, 1fr); }
  .pdp-outcomes { grid-template-columns: repeat(2, 1fr); }
  .pdp-howworks { grid-template-columns: 1fr; gap: 32px; }
  .pdp-leaveout { grid-template-columns: 1fr; gap: 8px 0; }
}
@media (max-width: 600px) {
  .area-hero {
    gap: 28px;
  }
  .area-actions .btn,
  .area-final .btn {
    width: 100%;
  }
  .area-peptide-grid {
    grid-template-columns: 1fr;
  }
  .area-detail-card {
    min-height: 0;
    padding: 28px 22px;
  }
  .catalog-hero { grid-template-columns: 1fr; gap: 24px; }
  .catalog-hero-product { max-width: 340px; margin: 0 auto; }
  .pdp-rail { padding: 12px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .pdp-rail-suggested { flex-wrap: wrap; }
  .pdp-strip { grid-template-columns: 1fr; }
  .pdp-strip-item { border-right: none; border-bottom: 1px solid rgba(244,237,228,0.1); }
  .pdp-outcomes { grid-template-columns: 1fr; }
  .pdp-leaveout-item { font-size: 17px; }
  .pdp-tier-price { font-size: 28px; }
  .pdp-tier.has-vial,
  .pdp-tier.is-active.has-vial {
    min-height: 0;
    padding-right: 120px;
  }
  .pdp-tier-vial {
    right: 12px;
    width: 92px;
    height: 112px;
  }
  .pdp-thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pdp-reviews { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; gap: 24px; }
  .catalog-filters { gap: 6px; }
  .chip { padding: 6px 12px; font-size: 11px; }
  .care-asks { grid-template-columns: 1fr; }
  .care-ask { padding: 24px 20px; min-height: auto; }
  .care-ask p { font-size: 17px; }
}

/* ── Practice page ──────────────────────────────────────────────────── */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.practice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.practice-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 220px;
}
.practice-card h3 { font-size: 22px; margin: 4px 0; }
.practice-card p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }

.practice-form {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 40px;
  position: sticky;
  top: 32px;
}
.practice-form-fields {
  display: flex; flex-direction: column; gap: 18px;
}
.practice-form-fields input:focus,
.practice-form-fields textarea:focus {
  border-color: var(--ink) !important;
}

@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: 1fr; }
  .practice-cards { grid-template-columns: 1fr 1fr; }
  .practice-form { position: static; padding: 28px; }
}
@media (max-width: 600px) {
  .practice-cards { grid-template-columns: 1fr; }
}

/* ── Cold-traffic quiz (/check) ─────────────────────────────────────── */
.cq-shell {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; flex-direction: column;
  overflow-y: auto;
  z-index: 1;
}
.cq-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}
.cq-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.cq-exit {
  background: transparent; border: none; cursor: pointer;
  font-size: 18px; color: var(--ink-mute);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.cq-exit:hover { background: var(--bg-deep); color: var(--ink); }
.cq-progress {
  height: 2px; background: var(--rule); flex-shrink: 0;
}
.cq-progress-fill {
  height: 100%; background: var(--accent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cq-stage {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
}
.cq-card {
  width: 100%; max-width: 640px;
  display: flex; flex-direction: column; gap: 24px;
  animation: cq-enter 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cq-enter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cq-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.cq-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
}
.cq-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--rule);
  padding: 14px 0;
  font-size: 28px;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.cq-input:focus { border-bottom-color: var(--accent); }
.cq-input::placeholder { color: var(--ink-mute); font-style: italic; }
.cq-options {
  display: flex; flex-direction: column; gap: 10px;
}
.cq-option {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  font-family: inherit;
}
.cq-option:hover {
  border-color: var(--ink-soft);
  transform: translateX(4px);
}
.cq-option.is-selected {
  border-color: var(--accent);
  border-width: 2px;
  padding: 17px 19px;
  background: var(--bg-deep);
}
.cq-option-key {
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.cq-option.is-selected .cq-option-key {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}
.cq-option-body {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.cq-option-label {
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
}
.cq-option-blurb {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.cq-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
  gap: 12px;
}
.cq-actions .btn-primary { margin-left: auto; }
.cq-trust {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .cq-top { padding: 16px 20px; }
  .cq-stage { padding: 24px 20px; }
  .cq-title { font-size: 32px; }
  .cq-input { font-size: 22px; }
  .cq-option { padding: 14px 16px; gap: 12px; }
  .cq-option-label { font-size: 15px; }
}
