/* =================================================================
   BULKUP.US — Design System (light theme, orange / black / white)
   Built to match "Design Mock Up.png"
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --orange:        #FF6A00;
  --orange-deep:   #E85D00;
  --orange-soft:   rgba(255, 106, 0, 0.10);

  --black:         #0A0A0A;
  --coal:          #131313;
  --bg:            #FFFFFF;
  --bg-soft:       #F6F6F7;
  --line:          #E8E8EA;
  --line-dark:     rgba(255, 255, 255, 0.12);

  --text:          #111111;
  --muted:         #55565A;
  --text-on-dark:  #F2F2F2;
  --muted-on-dark: #B9BABF;

  --font-head: "Archivo", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: 24px;
  --section-y: clamp(64px, 9vw, 110px);
  --radius: 12px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 10px 30px rgba(10, 10, 10, 0.06);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }

/* ---------- Type helpers ---------- */
.kicker {
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 18px;
}

.section__lede {
  max-width: 640px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--orange {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
}
.btn--orange:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.35);
}
.btn--sm { padding: 10px 20px; font-size: 0.92rem; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn__arrow { font-size: 1.2em; line-height: 1; translate: 0 -1px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  z-index: 300;
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  color: var(--text-on-dark);
  transition: box-shadow 0.3s var(--ease);
}
.nav.is-scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.brand__mark {
  width: 10px;
  height: 22px;
  background: var(--orange);
  transform: skewX(-18deg);
  border-radius: 2px;
}
.brand__word {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: #fff;
}
.brand__slash { color: var(--orange); font-style: italic; margin-inline: 1px; }
.brand__tld { font-size: 0.78em; font-weight: 700; color: #d8d8d8; }

.nav__links { display: flex; gap: 26px; }
.nav__link {
  font-size: 0.94rem;
  font-weight: 500;
  color: #d9d9dc;
  transition: color 0.2s;
}
.nav__link:hover, .nav__link.is-active { color: #fff; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--black);
  z-index: 190;
  padding: 32px var(--gutter);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.drawer.is-open { transform: translateX(0); }
.drawer__links { display: flex; flex-direction: column; gap: 8px; }
.drawer__link {
  color: #e6e6e8;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}
.drawer__cta { margin-top: 24px; justify-content: center; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 32px;
  padding-block: clamp(36px, 6vw, 64px) 0;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.7;
}
.eyebrow__orange { color: var(--orange); }

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.75vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__title .line { display: block; white-space: nowrap; }
.line--orange { color: var(--orange); font-style: italic; }

.hero__lede {
  max-width: 420px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  padding-block: 26px 40px;
  border-top: 1px solid var(--line);
}
.hbadge { display: grid; grid-template-rows: auto auto 1fr; gap: 4px; }
.hbadge__icon { width: 30px; height: 30px; color: var(--text); margin-bottom: 6px; }
.hbadge__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hbadge__sub { font-size: 0.74rem; color: var(--muted); line-height: 1.45; }

/* full-bleed: the photo runs to the viewport's right edge with no gutter,
   fading into the page white on its left via the image's own flag wash */
.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(52vw, 860px);
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% top;
}

/* =================================================================
   DOCTOR GUIDED STRIP (dark)
   ================================================================= */
.strip {
  background: var(--black);
  color: var(--text-on-dark);
  border-top: 3px solid var(--orange);
  padding-block: clamp(40px, 6vw, 64px);
}
.strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 40px;
  align-items: center;
}
.strip__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.55;
  border-right: 1px solid var(--line-dark);
  padding-right: 36px;
}
.strip__line { display: block; }

.strip__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.strip__item { display: grid; gap: 4px; align-content: start; }
.strip__icon { width: 32px; height: 32px; color: #fff; margin-bottom: 8px; }
.strip__head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.strip__sub { font-size: 0.78rem; color: var(--muted-on-dark); line-height: 1.5; }

/* =================================================================
   BENEFITS
   ================================================================= */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
}
.benefit {
  text-align: center;
  padding: 12px 26px;
  border-left: 1px solid var(--line);
}
.benefit:first-child { border-left: 0; }
.benefit__icon { width: 46px; height: 46px; color: var(--orange); margin: 0 auto 18px; }
.benefit__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.benefit__text { font-size: 0.85rem; color: var(--muted); }

/* =================================================================
   PEPTIDES
   ================================================================= */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 10, 10, 0.10);
}
.pcard__media {
  height: 190px;
  display: grid;
  place-items: center;
  background: #F4F4F5;
  color: var(--orange);
}
.pcard__media svg { width: 54px; height: 54px; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pcard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px 22px;
  flex: 1;
}
.pcard__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pcard__dose {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.pcard__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pcard__desc { font-size: 0.88rem; color: var(--text); }
.pcard__who { font-size: 0.82rem; color: var(--muted); flex: 1; }
.pcard__cta {
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease);
}
.pcard__cta:hover { gap: 10px; }

.peptides__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 36px;
}

/* =================================================================
   FEATURE SECTIONS (doctor / lab)
   ================================================================= */
.kicker--left { text-align: left; }

.feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.feature--reverse .feature__media { order: 2; }

.feature__media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-card);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }

/* placeholder styling until final photography is added */
.feature__media--pending,
.band__media--pending {
  position: relative;
  background: linear-gradient(150deg, #ECECEE 0%, #DDDDE0 60%, #D3D3D7 100%);
}
.feature__media--pending::after,
.band__media--pending::after {
  content: attr(data-pending-label) " — coming soon";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9aa0;
}

/* provider duo inside the doctor feature */
.providers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.provider {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.provider img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.provider figcaption {
  display: grid;
  gap: 2px;
  padding: 12px 16px 14px;
}
.provider figcaption strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
}
.provider figcaption span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.feature__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.feature__text { color: var(--muted); max-width: 480px; margin-bottom: 20px; }
.feature__points { display: grid; gap: 10px; margin-bottom: 28px; }
.feature__points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}
.feature__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}
.feature__points li::after {
  content: "";
  position: absolute;
  left: 5px; top: 8px;
  width: 6px; height: 4px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

/* =================================================================
   LIFESTYLE BAND
   ================================================================= */
.band {
  position: relative;
  min-height: 340px;
  display: grid;
  background: var(--coal);
}
.band__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__overlay {
  position: relative;
  display: grid;
  align-content: end;
  padding-block: 48px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,0.55) 100%);
}
.band__line {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
}
.band__accent { color: var(--orange); }

/* =================================================================
   PROTEIN CALCULATOR
   ================================================================= */
.calc__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 46px);
}

.calc__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.calc__lede { color: var(--muted); font-size: 0.92rem; margin-bottom: 26px; max-width: 340px; }

.calc__label {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.calc__row { display: flex; gap: 10px; margin-bottom: 24px; }
.calc__input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-weight: 600;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
}
.calc__input:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: transparent; }
/* hide number spinners */
.calc__input::-webkit-outer-spin-button, .calc__input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc__input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

.calc__units { display: flex; gap: 8px; }
.calc__unit {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  transition: all 0.2s var(--ease);
}
.calc__unit.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }

.calc__goals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.calc__goal {
  display: grid;
  gap: 2px;
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: all 0.2s var(--ease);
}
.calc__goal-name { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; }
.calc__goal-rate { font-size: 0.7rem; color: var(--muted); }
.calc__goal.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }
.calc__goal.is-active .calc__goal-rate { color: rgba(255, 255, 255, 0.85); }

.calc__result {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 6px;
}
.calc__result-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.calc__result-value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  color: var(--orange);
  line-height: 1.1;
}
.calc__result-unit { font-weight: 600; font-size: 0.95rem; }
.calc__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: left;
}
.calc__note svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* =================================================================
   QUALITY ROW
   ================================================================= */
.quality { padding-block: clamp(40px, 6vw, 64px); }
.quality__kicker {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 34px;
}
.quality__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.qbadge {
  display: grid;
  justify-items: center;
  gap: 2px;
  text-align: center;
  padding: 16px 8px;
  border-left: 1px solid var(--line);
}
.qbadge:first-child { border-left: 0; }
.qbadge__icon { width: 36px; height: 36px; color: var(--text); margin-bottom: 8px; }
.qbadge__head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.qbadge__sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  counter-reset: step;
}
.how__step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
.how__num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 16px;
}
.how__head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
}
.how__text { font-size: 0.88rem; color: var(--muted); }
.how__cta { text-align: center; margin-top: 40px; }

/* =================================================================
   FAQ
   ================================================================= */
.faq__list { margin-top: 36px; }
.acc { border-bottom: 1px solid var(--line); }
.acc:first-child { border-top: 1px solid var(--line); }
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.acc__chev {
  width: 10px; height: 10px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.acc.is-open .acc__chev { transform: rotate(-135deg); }
.acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.acc__panel p { padding: 0 4px 18px; color: var(--muted); font-size: 0.92rem; }

/* =================================================================
   CTA BANNER (dark)
   ================================================================= */
.cta {
  position: relative;
  background: var(--black);
  color: var(--text-on-dark);
  overflow: hidden;
}
.cta__media {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(46%, 620px);
}
.cta__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* orange slash + fade into black on the image's right edge */
.cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 55%, rgba(10,10,10,0.65) 78%, var(--black) 96%);
}
.cta__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-block: clamp(48px, 7vw, 84px);
}
.cta__content { width: min(560px, 100%); }
.cta__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.cta__accent { color: var(--orange); }
.cta__text {
  color: var(--muted-on-dark);
  max-width: 440px;
  margin-bottom: 26px;
}
.cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
  font-size: 0.84rem;
  color: var(--muted-on-dark);
}
.cta__points li { display: inline-flex; align-items: center; gap: 8px; }
.cta__points svg { width: 17px; height: 17px; color: #fff; }

/* =================================================================
   INTAKE PAGE
   ================================================================= */
.intake-nav__back { margin-left: auto; font-size: 0.9rem; }

.intake__head { max-width: 720px; margin-inline: auto; text-align: center; }
.intake__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 4px 0 36px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
}
.intake__points li { display: inline-flex; align-items: center; gap: 8px; }
.intake__points svg { width: 17px; height: 17px; color: var(--orange); }

.intake__formwrap {
  max-width: 760px;
  margin-inline: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ---- multi-step intake form ---- */
.iform__progress {
  height: 4px;
  background: var(--bg-soft);
}
.iform__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: width 0.4s var(--ease);
}

.iform { padding: clamp(24px, 4vw, 40px); }
.iform__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.istep { display: none; border: 0; }
.istep.is-active { display: block; }

.iform__legend {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.iform__hint { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }

.ichoices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ichoices--row { grid-template-columns: repeat(3, 1fr); }
.ichoice { display: block; cursor: pointer; }
.ichoice input { position: absolute; opacity: 0; pointer-events: none; }
.ichoice span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.15s var(--ease);
}
.ichoice:hover span { border-color: var(--orange); }
.ichoice input:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.ichoice input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

.iform__interest {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--muted);
}
.iform__interest strong { color: var(--orange); }

.ifields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ifield { display: grid; gap: 6px; align-content: start; }
.ifield label, .ifield__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
}
.ifield em { color: var(--orange); font-style: normal; }
.ifield__opt { font-weight: 400; color: var(--muted); font-size: 0.78rem; }
.ifield input, .ifield select, .ifield textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  width: 100%;
}
.ifield input:focus, .ifield select:focus, .ifield textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: transparent;
}
.ifield textarea { resize: vertical; }
.ifield__row { display: flex; gap: 10px; }
.ifield--half {}
.ifield:has(textarea), .ifield:has(.ichoices) { grid-column: 1 / -1; }

.iconsents { display: grid; gap: 14px; margin-bottom: 8px; }
.iconsent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
}
.iconsent input {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.iform__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
}
.iform__back {
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.iform__back:hover { color: var(--text); }

.iform__err, .iform__stepnote {
  color: #C43D0F;
  font-size: 0.86rem;
  font-weight: 500;
  margin-top: 10px;
}

.isuccess {
  text-align: center;
  padding: 24px 8px;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.isuccess[hidden] { display: none; }
.isuccess svg { width: 56px; height: 56px; color: var(--orange); }
.isuccess h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.isuccess p { color: var(--muted); max-width: 440px; }
.isuccess__sub { font-size: 0.86rem; }
.isuccess__sub a { color: var(--orange); font-weight: 600; }
.isuccess .btn { margin-top: 10px; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 30px;
  text-align: center;
}
.footer__contact { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; line-height: 1.8; }
.footer__contact a { color: var(--text); font-weight: 600; }
.footer__contact a:hover { color: var(--orange); }
.footer__disclaimer {
  max-width: 720px;
  margin: 0 auto 10px;
  font-size: 0.74rem;
  color: var(--muted);
}
.footer__copy { font-size: 0.74rem; color: var(--muted); }

/* =================================================================
   PEPTIDES 101 (education)
   ================================================================= */
.edu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.edu__item {
  border-top: 3px solid var(--orange);
  padding-top: 18px;
}
.edu__head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
}
.edu__text { font-size: 0.9rem; color: var(--muted); }

/* =================================================================
   STICKY MOBILE CTA
   ================================================================= */
.mobilecta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}
.mobilecta.is-visible { transform: none; }
.mobilecta__btn { width: 100%; justify-content: center; }

/* =================================================================
   SUPPORT WIDGET
   ================================================================= */
.support {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
}
.support__toggle {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4);
  transition: transform 0.2s var(--ease), background 0.2s;
  margin-left: auto;
}
.support__toggle:hover { background: var(--orange-deep); transform: scale(1.05); }
.support__toggle svg { width: 26px; height: 26px; }
.support__icon-close { display: none; }
.support.is-open .support__icon-close { display: block; }
.support.is-open .support__icon-chat { display: none; }

.support__panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(340px, calc(100vw - 36px));
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  padding: 18px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.support.is-open .support__panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.support__head { display: grid; gap: 2px; margin-bottom: 12px; }
.support__head strong { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.support__head span { font-size: 0.8rem; color: var(--muted); }

.sfaq { border-bottom: 1px solid var(--line); }
.sfaq:first-child { border-top: 1px solid var(--line); }
.sfaq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 10px 2px;
}
.sfaq__chev {
  width: 7px; height: 7px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.sfaq.is-open .sfaq__chev { transform: rotate(-135deg); }
.sfaq__a { display: none; }
.sfaq.is-open .sfaq__a { display: block; }
.sfaq__a p { font-size: 0.8rem; color: var(--muted); padding: 0 2px 10px; }

.support__cta {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.85rem;
  padding: 11px 16px;
}
.support__contact { display: grid; gap: 8px; margin-top: 14px; }
.support__contact-label { font-size: 0.76rem; font-weight: 600; color: var(--muted); }
.support__channels { display: flex; gap: 8px; }
.support__channels a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s;
}
.support__channels a:hover { border-color: var(--orange); color: var(--orange); }
.support__channels svg { width: 15px; height: 15px; }
.support__hours { font-size: 0.72rem; color: var(--muted); text-align: center; }

/* =================================================================
   LEGAL PAGES + 404
   ================================================================= */
.legal__updated {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 36px;
}
.legal__body { display: grid; gap: 10px; }
.legal__body h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 18px;
}
.legal__body p { color: var(--muted); font-size: 0.94rem; }
.legal__body a { color: var(--orange); font-weight: 600; }

.notfound { text-align: center; }
.notfound__code {
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  color: var(--orange);
  margin-bottom: 8px;
}
.notfound__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.footer__links { font-size: 0.78rem; margin-bottom: 10px; }
.footer__links a { color: var(--muted); text-decoration: underline; }
.footer__links a:hover { color: var(--orange); }

/* =================================================================
   REVEAL ANIMATIONS
   ================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
