/* ===========================================
   Endeavor Peptides — V2 base tokens & utilities
   Loaded by /v2/shop/ and /v2/pdp/{slug}/ pages
   =========================================== */

:root {
  --racing: #004225;
  --emerald: #2D6A4F;
  --forest: #40916C;
  --mint: #D8F3DC;
  --warm: #FAFAF7;
  --cream: #F1EFE7;
  --ink: #1A1A1A;
  --muted: #6B7770;
  --line: rgba(0, 66, 37, 0.12);
  --line-strong: rgba(0, 66, 37, 0.24);
  --line-dark: rgba(216, 243, 220, 0.16);

  --hero-grad: linear-gradient(135deg, #004225 0%, #40916C 100%);

  --display: "neue-haas-grotesk-display", "Inter Tight", "Inter", system-ui, sans-serif;
  --body: "acumin-pro", "Inter", system-ui, sans-serif;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 140px);
  --section-y-tight: clamp(48px, 6vw, 80px);

  --r-card: 14px;
  --r-banner: 14px;
  --r-chip: 14px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(0, 66, 37, 0.06), 0 12px 40px rgba(0, 66, 37, 0.10);
  --shadow-floating: 0 1px 2px rgba(0, 0, 0, 0.10), 0 24px 60px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---- Type ---- */
.h1, .h2, .h3, .h4 { font-family: var(--display); font-weight: 700; margin: 0; color: var(--ink); text-wrap: balance; }
.h1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.025em; line-height: 1.05; }
.h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.02em; line-height: 1.10; }
.h3 { font-size: 18px; letter-spacing: -0.005em; line-height: 1.3; }
.h4 { font-size: 16px; letter-spacing: -0.005em; line-height: 1.35; }

.h1 em, .h2 em, .h3 em { font-style: normal; }
.h1 em, .h2 em { color: var(--forest); }
.forest { color: var(--forest) !important; font-style: normal; }
.mint { color: var(--mint) !important; font-style: normal; }
.h2--ondark, .h3--ondark { color: var(--warm); }
.h2--center { text-align: center; }

.body { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0 0 1em; }
.body--ondark { color: rgba(250, 250, 247, 0.78); }
.body:last-child { margin-bottom: 0; }

.lead { font-size: 18px; line-height: 1.65; color: var(--muted); margin: 0; }
.lead--ondark { color: rgba(250, 250, 247, 0.82); }

.caption { font-size: 12px; line-height: 1.55; color: var(--muted); margin: 0; }

.label {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.2;
}
.label--mint { color: var(--mint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--forest);
}
.eyebrow--ondark { color: rgba(216, 243, 220, 0.78); }
.eyebrow--ondark::before { background: var(--mint); box-shadow: 0 0 12px var(--mint); }

.link { color: var(--forest); font-weight: 700; }
.link:hover { color: var(--racing); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700;
  font-size: 14px; letter-spacing: -0.005em;
  padding: 14px 22px; border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--racing); color: var(--warm); }
.btn--primary:hover { background: var(--forest); }
.btn--mint { background: var(--mint); color: var(--racing); }
.btn--mint:hover { background: #c2ebc7; }
.btn--ghost { background: transparent; color: var(--racing); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--racing); color: var(--warm); border-color: var(--racing); }
.btn--ghost-light { background: transparent; color: var(--warm); border-color: rgba(216, 243, 220, 0.4); }
.btn--ghost-light:hover { background: rgba(216, 243, 220, 0.1); border-color: var(--mint); }
.btn--sm { padding: 10px 16px; font-size: 12px; }
.btn--lg { padding: 18px 28px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---- Section utility ---- */
.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: var(--section-y-tight) 0; }
.section--cream { background: var(--cream); }
.section--racing { background: var(--racing); color: var(--warm); }

/* ---- Shared nav: V1-style floating pill (dark over hero → light on scroll) ---- */
/* ===== Page-top trust ticker (sits above the nav) ===== */
.page-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  height: 32px;
  background: var(--ink, #1A1A1A);
  border-bottom: 1px solid rgba(216, 243, 220, 0.12);
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.page-ticker__track {
  display: flex; align-items: center; gap: 38px;
  width: max-content;
  font-family: var(--display, "Neue Haas Grotesk Display", system-ui, sans-serif);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.92);
  white-space: nowrap;
  animation: page-ticker-scroll 38s linear infinite;
}
.page-ticker__track > span { white-space: nowrap; flex-shrink: 0; }
.page-ticker__item { color: rgba(250, 250, 247, 0.92); }
.page-ticker__dot { color: rgba(250, 250, 247, 0.35); }
.page-ticker:hover .page-ticker__track { animation-play-state: paused; }
@keyframes page-ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .page-ticker__track { animation: none; }
}

.snav {
  position: fixed; top: 64px;
  left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
  transition: top .25s ease;
}
.snav__inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: 22px;
  padding: 8px 8px 8px 24px;
  background: rgba(26, 26, 26, 0.42);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border: 1px solid rgba(216, 243, 220, 0.10);
  border-radius: var(--r-pill);
  width: min(calc(100% - 32px), 1080px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  transition:
    background-color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    width .45s cubic-bezier(.2, .7, .2, 1),
    padding .35s ease;
}

/* Scrolled state — fitted warm-white pill */
.snav.is-scrolled { top: 44px; }
.snav.is-scrolled .snav__inner {
  background: rgba(250, 250, 247, 0.96);
  border-color: rgba(0, 66, 37, 0.10);
  box-shadow: 0 4px 24px rgba(0, 66, 37, 0.08);
  width: auto;
  padding: 6px 6px 6px 20px;
}

/* Light pages (PDPs, label preview) — always start in light state */
body[data-nav-theme="light"] .snav .snav__inner,
.snav[data-theme="light"] .snav__inner {
  background: rgba(250, 250, 247, 0.96);
  border-color: rgba(0, 66, 37, 0.10);
  box-shadow: 0 4px 24px rgba(0, 66, 37, 0.08);
}
.snav__logo {
  flex-shrink: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(216, 243, 220, 0.12);
  margin-right: 4px;
  display: flex; align-items: center;
  transition: border-color .35s ease, padding-right .35s ease, margin-right .35s ease;
}
.snav__logo img {
  height: 18px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: .96;
  transition: filter .35s ease, opacity .35s ease;
}
.snav.is-scrolled .snav__logo,
body[data-nav-theme="light"] .snav .snav__logo {
  border-right-color: rgba(0, 66, 37, 0.12);
  padding-right: 14px;
  margin-right: 2px;
}
.snav.is-scrolled .snav__logo img,
body[data-nav-theme="light"] .snav .snav__logo img {
  filter: none;
  opacity: 1;
}
.snav__nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.snav__item { position: relative; }
.snav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--body); font-size: 13px; font-weight: 400;
  color: rgba(250, 250, 247, 0.92);
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: color .18s ease, background .18s ease;
  white-space: nowrap;
}
.snav__link:hover { color: var(--mint); }
.snav__item:hover .snav__link { color: var(--mint); }
.snav__link[aria-current="page"] { color: var(--mint); }

.snav.is-scrolled .snav__link,
body[data-nav-theme="light"] .snav .snav__link {
  color: var(--ink);
}
.snav.is-scrolled .snav__link:hover,
.snav.is-scrolled .snav__item:hover .snav__link,
body[data-nav-theme="light"] .snav .snav__link:hover,
body[data-nav-theme="light"] .snav .snav__item:hover .snav__link {
  color: var(--forest);
}

.snav__chevron {
  width: 10px; height: 10px;
  transition: transform .25s ease;
  margin-left: 2px;
}
.snav__item:hover .snav__chevron,
.snav__item:focus-within .snav__chevron { transform: rotate(180deg); }

.snav__mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: max-content; max-width: min(1100px, 92vw);
  background: var(--warm);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 66, 37, 0.04), 0 24px 60px rgba(0, 66, 37, 0.14);
  border: 1px solid rgba(0, 66, 37, 0.06);
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  display: flex; gap: 16px;
  z-index: 110;
}
.snav__item:hover .snav__mega,
.snav__item:focus-within .snav__mega {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.snav__mega::before {
  content: ""; position: absolute;
  top: -10px; left: 0; right: 0; height: 16px;
}
.snav__mega-card {
  display: flex; flex-direction: column; gap: 12px;
  width: 200px;
  text-decoration: none; color: var(--ink);
}
.snav__mega-card__visual {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
}
.snav__mega-card:hover .snav__mega-card__visual { transform: translateY(-2px); }
.snav__mega-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.snav__mega-card__name {
  font-family: var(--display); font-weight: 600;
  font-size: 15px; line-height: 1.2; color: var(--ink);
}
.snav__mega-card__tag {
  font-family: var(--body); font-size: 12px; color: var(--muted);
  margin-top: -4px;
}

.snav__cta { flex-shrink: 0; }
.snav__login {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: rgba(250, 250, 247, 0.95);
  padding: 10px 20px; border-radius: var(--r-pill);
  background: rgba(26, 26, 26, 0.55);
  border: 1px solid rgba(216, 243, 220, 0.16);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.snav__login::before {
  content: ""; width: 13px; height: 13px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'><circle cx='12' cy='8' r='4'/><path d='M4 21c0-4.4 3.6-8 8-8s8 3.6 8 8'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'><circle cx='12' cy='8' r='4'/><path d='M4 21c0-4.4 3.6-8 8-8s8 3.6 8 8'/></svg>") center/contain no-repeat;
  opacity: .85;
}
.snav__login:hover {
  background: rgba(0, 0, 0, 0.7);
  color: var(--mint);
  border-color: rgba(216, 243, 220, 0.3);
}
.snav.is-scrolled .snav__login,
body[data-nav-theme="light"] .snav .snav__login {
  background: var(--racing);
  color: var(--warm);
  border-color: var(--racing);
}
.snav.is-scrolled .snav__login:hover,
body[data-nav-theme="light"] .snav .snav__login:hover {
  background: var(--forest);
  color: var(--warm);
  border-color: var(--forest);
}

.snav__hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.55);
  border: 1px solid rgba(216, 243, 220, 0.16);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  padding: 0;
  transition: background .35s ease, border-color .35s ease;
}
.snav__hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--warm); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease, background .22s ease;
}
.snav.is-scrolled .snav__hamburger,
body[data-nav-theme="light"] .snav .snav__hamburger {
  background: var(--warm);
  border-color: rgba(0, 66, 37, 0.10);
}
.snav.is-scrolled .snav__hamburger span,
body[data-nav-theme="light"] .snav .snav__hamburger span {
  background: var(--ink);
}

.snav__drawer {
  position: fixed; inset: 0;
  background: var(--warm);
  padding: 80px 24px 32px;
  display: none; flex-direction: column; gap: 8px;
  overflow-y: auto;
  z-index: 99;
}
.snav__drawer.is-open { display: flex; }
.snav__drawer-group {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.snav__drawer-group-h {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
}
.snav__drawer-group-h::-webkit-details-marker { display: none; }
.snav__drawer-group-h::after {
  content: "+"; font-size: 22px; color: var(--forest);
  transition: transform .22s ease;
}
.snav__drawer-group[open] .snav__drawer-group-h::after { transform: rotate(45deg); }
.snav__drawer-product {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  color: var(--ink); font-size: 14px;
}
.snav__drawer-product-thumb {
  width: 36px; height: 36px;
  border-radius: 8px; overflow: hidden;
  background: var(--cream); flex-shrink: 0;
}
.snav__drawer-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.snav__drawer-link {
  display: block;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 880px) {
  .snav__nav { display: none; }
  .snav__cta { display: none; }
  .snav__hamburger { display: flex; margin-left: auto; }
}
@media (min-width: 881px) {
  .snav__drawer { display: none !important; }
}

/* ---- Shared footer (V1-style, canonical site-wide) ---- */
.sfooter {
  background: var(--ink);
  color: var(--warm);
  padding: clamp(56px, 7vw, 96px) 0 36px;
  margin-top: clamp(40px, 5vw, 80px);
}
.sfooter__container {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* CTA banner at top of footer */
.sfooter-cta {
  position: relative;
  isolation: isolate;
  border-radius: 14px;
  overflow: hidden;
  background: var(--racing);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sfooter-cta__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("/assets/lifestyle-morning-ritual.png");
  background-size: cover;
  background-position: center 35%;
  opacity: 0.35;
}
.sfooter-cta__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0, 66, 37, 0.9) 0%, rgba(0, 66, 37, 0.78) 45%, rgba(45, 106, 79, 0.7) 100%);
  pointer-events: none;
}
.sfooter-cta__inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.sfooter-cta__copy { display: flex; flex-direction: column; }
.sfooter-cta__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(216, 243, 220, 0.22);
}
.sfooter-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint);
}
.sfooter-cta__eyebrow::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 999px; background: var(--mint);
  flex-shrink: 0;
}
.sfooter-cta__step {
  font-family: var(--body);
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(216, 243, 220, 0.7);
  padding-left: 14px;
  border-left: 1px solid rgba(216, 243, 220, 0.22);
}
.sfooter-cta__h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em; line-height: 1.10;
  margin: 0 0 28px;
  color: var(--warm);
  text-wrap: balance;
}
.sfooter-cta__h em { font-style: normal; color: var(--mint); }
.sfooter-cta__lede { margin-bottom: 32px; }
.sfooter-cta__lede p {
  margin: 0;
  font-size: 18px; line-height: 1.65;
  color: rgba(216, 243, 220, 0.82);
}
.sfooter-cta__stats {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.sfooter-cta__stat {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 243, 220, 0.18);
}
.sfooter-cta__stat strong {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  color: var(--warm);
  font-variant-numeric: tabular-nums;
}
.sfooter-cta__stat span {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 243, 220, 0.62);
  font-family: var(--display); font-weight: 500;
}

.sfooter-cta__card {
  background: var(--mint);
  color: var(--racing);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 24px 60px -12px rgba(0, 0, 0, 0.32);
}
.sfooter-cta__card .label {
  display: block; margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--racing);
  line-height: 1.2;
}
.sfooter-cta__price { display: flex; align-items: baseline; gap: 8px; }
.sfooter-cta__price .price {
  font-family: var(--display); font-weight: 700;
  font-size: 32px; letter-spacing: -0.02em;
  color: var(--racing);
}
.sfooter-cta__price .price-meta {
  font-size: 12px; color: var(--racing); opacity: 0.7;
}
.sfooter-cta__card-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 66, 37, 0.18);
}
.sfooter-cta__card-list li {
  font-size: 12px; color: var(--racing);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.sfooter-cta__card-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--racing);
  border-bottom: 1.5px solid var(--racing);
  transform: rotate(-45deg);
}
.sfooter-cta__card-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--racing); color: var(--warm);
  font-family: var(--display); font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  width: 100%;
  transition: background-color .18s ease, transform .18s ease;
}
.sfooter-cta__card-cta:hover { background: var(--forest); transform: translateY(-1px); }
.sfooter-cta__card-note {
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(0, 66, 37, 0.6);
  text-align: center;
  margin-top: -4px;
  font-family: var(--body);
}

/* Footer nav grid */
.sfooter-nav {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 28px;
}
.sfooter-nav__brand { max-width: 280px; }
.sfooter-nav__logo { height: 28px; width: auto; margin-bottom: 16px; }
.sfooter-nav__brand p {
  font-size: 12px; line-height: 1.55;
  color: rgba(250, 250, 247, 0.7);
  margin: 0;
}
.sfooter-nav .label {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
  line-height: 1.2;
}
.sfooter-nav__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sfooter-nav__list a {
  font-size: 13px; color: rgba(250, 250, 247, 0.7);
  transition: color .15s;
}
.sfooter-nav__list a:hover { color: var(--mint); }

/* Disclaimer block */
.sfooter-disclaimer {
  font-size: 11px; line-height: 1.6;
  color: rgba(250, 250, 247, 0.55);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-card);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.sfooter-disclaimer p { margin: 0; }
.sfooter-disclaimer strong {
  color: rgba(250, 250, 247, 0.85);
  font-family: var(--display); font-weight: 700;
}
.sfooter-disclaimer__row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-top: 12px; border-top: 1px solid var(--line-dark);
  color: rgba(250, 250, 247, 0.45);
}
.sfooter-disclaimer__links {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.sfooter-disclaimer__links a {
  color: rgba(250, 250, 247, 0.55);
  transition: color .18s ease;
}
.sfooter-disclaimer__links a:hover { color: var(--mint); }

/* LegitScript seal */
.sfooter-legitscript {
  display: flex; align-items: center; gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}
.sfooter-legitscript a {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
  background: rgba(250, 250, 247, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-chip);
  padding: 6px;
  transition: border-color .2s, background .2s;
}
.sfooter-legitscript a:hover {
  border-color: rgba(216, 243, 220, 0.4);
  background: rgba(216, 243, 220, 0.06);
}
.sfooter-legitscript img { display: block; width: 60px; height: auto; }
.sfooter-legitscript__copy { display: flex; flex-direction: column; gap: 2px; }
.sfooter-legitscript__label {
  font-family: var(--display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
}
.sfooter-legitscript__sub {
  font-size: 11px; line-height: 1.5;
  color: rgba(250, 250, 247, 0.55);
  max-width: 38ch;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .sfooter-cta__inner { grid-template-columns: 1fr; }
  .sfooter-cta__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sfooter-cta__step { padding-left: 0; border-left: 0; }
  .sfooter-cta__stats { grid-template-columns: 1fr 1fr; }
  .sfooter-nav { grid-template-columns: 1fr 1fr; }
  .sfooter-nav__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 720px) {
  .sfooter { padding-top: 48px; }
  .sfooter-cta__inner { padding: 32px 22px; }
  .sfooter-cta__stats { grid-template-columns: 1fr; }
  .sfooter-nav { grid-template-columns: 1fr; gap: 28px; }
  .sfooter-disclaimer__row { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 560px) {
  .sfooter-legitscript { flex-direction: column; align-items: flex-start; gap: 10px; }
}
