:root {
  --bg: #020400;
  --bg-2: #071000;
  --panel: rgba(4, 8, 3, 0.88);
  --panel-2: rgba(8, 14, 6, 0.96);
  --line: rgba(150, 255, 0, 0.35);
  --line-soft: rgba(150, 255, 0, 0.18);
  --accent: #9cff00;
  --accent-2: #65b800;
  --text: #f3f4ee;
  --muted: #b9bdb2;
  --dim: #858b7e;
  --shadow: 0 0 28px rgba(139, 255, 0, 0.22);
  --max: 1180px;
  --radius: 8px;
  --font-display: "Impact", "Arial Black", "Haettenschweiler", sans-serif;
  --font-ui: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(140, 255, 0, 0.2), transparent 26rem),
    radial-gradient(circle at 15% 48%, rgba(85, 150, 0, 0.14), transparent 24rem),
    #020400;
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("assets/brand/hex-pattern-clean.jpg");
  background-size: 760px auto;
  background-position: center top;
  opacity: 0.2;
  filter: saturate(1.25) contrast(1.2);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 4, 0, 0.96), rgba(2, 4, 0, 0.7) 42%, rgba(2, 4, 0, 0.98)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link,
.sr-only,
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 10px;
  clip: auto;
  color: #061000;
  background: var(--accent);
}

.top-bar {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.82);
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.top-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.82rem;
}

.top-bar span,
.top-bar a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.top-bar span::before,
.top-bar a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border: 2px solid var(--accent);
  vertical-align: -2px;
  box-shadow: 0 0 10px rgba(156, 255, 0, 0.5);
}

.top-bar a {
  color: var(--accent);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
}

.brand__image {
  width: 82px;
  height: 70px;
  overflow: hidden;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(156, 255, 0, 0.5));
}

.brand__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand__text {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-shadow: 0 0 18px rgba(156, 255, 0, 0.45);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.7vw, 32px);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  color: var(--text);
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(156, 255, 0, 0.7);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 124px));
  display: grid;
  align-items: center;
  padding: clamp(46px, 7vw, 88px) 0 42px;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 0, 0.98), rgba(2, 4, 0, 0.74) 44%, rgba(2, 4, 0, 0.86)),
    url("assets/brand/hex-pattern-clean.jpg") center/880px auto;
  opacity: 0.95;
}

.hero__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 64% 42%, rgba(156, 255, 0, 0.24), transparent 26rem),
    linear-gradient(180deg, transparent, #020400 96%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.hero__brandline {
  margin: 0 0 4px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 11vw, 9.2rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(156, 255, 0, 0.55), 0 3px 0 #294400;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #e6e9df;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1::first-line {
  color: #f1f3ee;
}

.hero__copy > p:not(.hero__brandline) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #e3e4de;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button--primary {
  color: #081000;
  background: linear-gradient(180deg, #b5ff18, #72b900);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 0 20px rgba(156, 255, 0, 0.22);
}

.button--ghost {
  color: var(--text);
  background: rgba(4, 8, 3, 0.68);
}

.hero__media {
  width: min(100%, 521px);
  height: clamp(520px, 54vw, 685px);
  overflow: visible;
  justify-self: end;
  border-radius: 4px;
  filter: drop-shadow(0 0 36px rgba(156, 255, 0, 0.35));
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -24px;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 5, 1, 0.86);
  box-shadow: 0 0 18px rgba(156, 255, 0, 0.12);
  overflow: hidden;
}

.trust-bar article {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-right: 1px solid var(--line-soft);
}

.trust-bar article:last-child {
  border-right: 0;
}

.trust-bar h2,
.trust-bar p {
  margin: 0;
}

.trust-bar h2 {
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-bar p {
  color: var(--muted);
  font-size: 0.92rem;
}

[class^="icon-"] {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(156, 255, 0, 0.35);
}

.icon-shield {
  clip-path: polygon(50% 0, 90% 15%, 82% 72%, 50% 100%, 18% 72%, 10% 15%);
}

.icon-flask {
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 90% 100%, 10% 100%, 38% 38%);
}

.icon-truck {
  clip-path: polygon(0 22%, 60% 22%, 60% 42%, 78% 42%, 100% 64%, 100% 86%, 0 86%);
}

.icon-headset {
  border-radius: 50% 50% 22% 22%;
}

.section {
  padding: clamp(50px, 7vw, 82px) 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0 clamp(54px, 7vw, 82px);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(2, 4, 0, 0.98), rgba(2, 4, 0, 0.74) 52%, rgba(2, 4, 0, 0.94)),
    url("assets/brand/hex-pattern-clean.jpg") center/900px auto;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 38%, rgba(156, 255, 0, 0.2), transparent 23rem),
    linear-gradient(180deg, transparent, rgba(2, 4, 0, 0.72));
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.page-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.84;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(156, 255, 0, 0.48);
}

.page-hero p:not(.page-kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #e3e4de;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.page-hero__mark {
  height: 400px;
  overflow: hidden;
  filter: drop-shadow(0 0 30px rgba(156, 255, 0, 0.28));
}

.page-hero__mark img {
  width: 100%;
  height: 116%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-5%);
}

.page-hero__panel {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.page-hero--peptides .page-hero__panel {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    url("assets/brand/header-peptides-clean.jpg");
}

.page-hero--hormones .page-hero__panel {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    url("assets/brand/header-hormones-clean.jpg");
}

.research-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.research-menu-card {
  min-height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  background: rgba(2, 5, 1, 0.84);
}

.research-menu-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.research-menu-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.9));
}

.research-menu-card:hover::before,
.research-menu-card:focus-visible::before {
  transform: scale(1.04);
  opacity: 0.94;
}

.research-menu-card--peptides::before {
  background-image: url("assets/brand/header-peptides-clean.jpg");
}

.research-menu-card--hormones::before {
  background-image: url("assets/brand/header-hormones-clean.jpg");
}

.research-menu-card span,
.research-menu-card h2,
.research-menu-card p,
.research-menu-card strong {
  position: relative;
  z-index: 1;
}

.research-menu-card span,
.research-menu-card strong {
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-menu-card span {
  color: var(--muted);
}

.research-menu-card h2 {
  margin: 6px 0 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.research-menu-card p {
  max-width: 520px;
  margin: 18px 0 24px;
  color: #e3e4de;
}

.research-menu-card strong {
  color: var(--accent);
}

.menu-note {
  padding-top: 8px;
}

.menu-note__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.menu-note article,
.catalog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 28, 10, 0.58), rgba(2, 4, 0, 0.9)),
    url("assets/brand/hex-pattern-clean.jpg") center/520px auto;
}

.menu-note article {
  padding: 24px;
}

.menu-note h2,
.catalog-card h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-note p,
.catalog-card p {
  color: var(--muted);
}

.catalog-section {
  padding-top: clamp(42px, 6vw, 70px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.catalog-card {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
}

.catalog-card--with-vial {
  text-align: center;
}

.catalog-card--with-vial img {
  width: 116px;
  height: 176px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 18px rgba(156, 255, 0, 0.25));
}

.catalog-card h2 {
  color: #fff;
}

.catalog-card p {
  margin: 0;
  font-size: 0.94rem;
}

.catalog-card a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #071000;
  border: 1px solid rgba(192, 255, 45, 0.6);
  border-radius: 4px;
  background: linear-gradient(180deg, #b6ff17, #67b200);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.catalog-token {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card--private {
  min-height: 240px;
}

.shop-page {
  background:
    radial-gradient(circle at 85% 12%, rgba(156, 255, 0, 0.16), transparent 20rem),
    radial-gradient(circle at 12% 36%, rgba(156, 255, 0, 0.18), transparent 22rem),
    #010300;
}

.shop-page::before {
  opacity: 0.14;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.shop-header__inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: center;
}

.shop-logo img {
  width: 132px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(156, 255, 0, 0.38));
}

.shop-nav {
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
}

.cart-summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-ui);
  text-decoration: none;
  text-transform: uppercase;
}

.cart-summary__icon {
  width: 30px;
  height: 24px;
  grid-row: span 3;
  border: 3px solid var(--accent);
  border-top: 0;
  transform: skewX(-8deg);
}

.cart-summary strong,
.cart-summary span,
.cart-summary em {
  display: block;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
}

.cart-summary em {
  color: var(--accent);
  font-size: 1.02rem;
}

.shop-title {
  padding: 18px 0 20px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(10, 18, 4, 0.74), rgba(0, 0, 0, 0.9)),
    url("assets/brand/hex-pattern-clean.jpg") center/760px auto;
}

.shop-title h1,
.shop-section-title h2,
.hormone-shop-band h2 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.8vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(156, 255, 0, 0.45);
}

.shop-title p {
  margin: 12px 0 0;
  color: #e4e5de;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-title p span::before {
  content: "•";
  margin: 0 10px;
  color: var(--accent);
}

.shop-bundles {
  display: grid;
  grid-template-columns: minmax(350px, 1.35fr) repeat(3, minmax(170px, 0.72fr));
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.42);
}

.shop-bundles__feature {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 248px;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(4, 9, 3, 0.98), rgba(4, 9, 3, 0.68)),
    url("assets/brand/hex-pattern-clean.jpg") center/520px auto;
}

.shop-bundles__feature img {
  width: 180px;
  height: 210px;
  object-fit: cover;
  object-position: center 42%;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  filter: drop-shadow(0 0 18px rgba(156, 255, 0, 0.3));
}

.shop-bundles__feature h2 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 3.75rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.shop-bundles__feature p,
.bundle-shop-card p,
.hormone-shop-band p {
  color: #d9dcd3;
  font-family: var(--font-ui);
  font-weight: 800;
  text-transform: uppercase;
}

.shop-bundles__feature p {
  max-width: 300px;
  margin: 18px 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.bundle-shop-card,
.shop-product-card {
  display: grid;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(3, 7, 2, 0.56), rgba(0, 0, 0, 0.94)),
    url("assets/brand/hex-pattern-clean.jpg") center/380px auto;
}

.bundle-shop-card {
  grid-template-rows: auto auto 82px auto auto;
  align-content: center;
  padding: 12px;
  text-align: center;
}

.bundle-shop-card h3,
.shop-product-card h3 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bundle-shop-card p,
.shop-product-card p {
  margin: 3px 0 0;
  line-height: 1.25;
}

.bundle-shop-card img {
  width: 118px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(156, 255, 0, 0.24));
}

.bundle-shop-card strong,
.shop-product-card strong {
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.bundle-shop-card button,
.shop-product-card button,
.hormone-shop-band a,
.shop-disclaimer a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.shop-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  margin: 6px 0 10px;
  text-align: center;
}

.shop-section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.shop-section-title h2,
.hormone-shop-band h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.shop-product-card {
  min-height: 258px;
  grid-template-rows: 126px auto auto auto 28px;
  align-items: end;
  padding: 10px;
  text-align: center;
}

.shop-product-card img {
  width: 96px;
  height: 126px;
  object-fit: contain;
  filter: drop-shadow(0 13px 14px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 12px rgba(156, 255, 0, 0.18));
}

.shop-product-card h3 {
  align-self: end;
  font-size: 1.02rem;
}

.shop-product-card p {
  color: #f1f2ec;
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.shop-product-card button {
  width: 100%;
  min-height: 26px;
  padding: 0 6px;
  font-size: 0.76rem;
}

.hormone-shop-band {
  min-height: 154px;
  display: grid;
  grid-template-columns: 230px 1fr 220px;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: 12px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(5, 10, 3, 0.92), rgba(0, 0, 0, 0.82)),
    url("assets/brand/hex-pattern-clean.jpg") center/760px auto;
}

.hormone-shop-band img {
  width: 220px;
  height: 138px;
  object-fit: contain;
  object-position: center 34%;
  filter: drop-shadow(0 0 16px rgba(156, 255, 0, 0.28));
}

.hormone-shop-band strong {
  display: block;
  color: #e4e5de;
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hormone-shop-band a {
  min-height: 60px;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
}

.shop-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 20, 18, 0.88), rgba(0, 0, 0, 0.88)),
    url("assets/brand/hex-pattern-clean.jpg") center/620px auto;
}

.shop-trust article {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px 28px;
  border-right: 1px solid var(--line-soft);
}

.shop-trust article:last-child {
  border-right: 0;
}

.shop-trust strong {
  font-family: var(--font-ui);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.shop-trust__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  color: var(--accent);
}

.shop-trust__icon svg {
  width: 48px;
  height: 48px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 9px rgba(156, 255, 0, 0.42));
}

.shop-disclaimer {
  display: grid;
  grid-template-columns: 130px 220px 1fr 260px;
  gap: 22px;
  align-items: center;
  margin: 14px auto 28px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.78);
}

.shop-disclaimer img {
  width: 110px;
  height: 64px;
  object-fit: contain;
}

.shop-disclaimer strong,
.shop-disclaimer a {
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-disclaimer p {
  color: var(--muted);
  font-size: 0.82rem;
}

.shop-disclaimer a span {
  color: var(--accent);
}

.checkout-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(156, 255, 0, 0.14), transparent 22rem),
    radial-gradient(circle at 15% 36%, rgba(156, 255, 0, 0.12), transparent 18rem),
    #010300;
}

.checkout-header {
  margin: 8px auto 0;
  width: min(100% - 16px, 1240px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(5, 10, 4, 0.82)),
    url("assets/brand/hex-pattern-clean.jpg") right center/620px auto;
}

.checkout-header__inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 330px 1fr 176px;
  gap: 24px;
  align-items: center;
}

.checkout-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
}

.checkout-logo img {
  width: 88px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(156, 255, 0, 0.38));
}

.checkout-logo span {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.82;
  text-shadow: 0 0 18px rgba(156, 255, 0, 0.42);
}

.checkout-nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.checkout-mini-cart {
  min-height: 82px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 12px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.checkout-mini-cart .cart-summary__icon {
  grid-row: span 3;
}

.checkout-mini-cart strong,
.checkout-mini-cart span,
.checkout-mini-cart em {
  display: block;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
}

.checkout-mini-cart em {
  color: var(--accent);
  font-size: 1.1rem;
}

.checkout-progress {
  padding: 18px 0 8px;
}

.checkout-progress__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  position: relative;
}

.checkout-progress__steps::before {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.3), var(--accent), rgba(255, 255, 255, 0.3));
}

.checkout-progress__steps span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--dim);
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.checkout-progress__steps b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: inherit;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #050605;
  font-size: 1.3rem;
}

.checkout-progress__steps .is-done,
.checkout-progress__steps .is-active {
  color: var(--accent);
}

.checkout-progress__steps .is-active b {
  box-shadow: 0 0 18px rgba(156, 255, 0, 0.62);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.76fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 48px;
}

.checkout-form,
.checkout-sidebar section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 9, 4, 0.88), rgba(0, 0, 0, 0.94)),
    url("assets/brand/hex-pattern-clean.jpg") center/620px auto;
}

.checkout-form {
  padding: 20px;
}

.checkout-title h1 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(156, 255, 0, 0.42);
}

.checkout-title p {
  margin: 10px 0 18px;
  color: #e0e2dc;
}

.checkout-panel {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.checkout-panel h2,
.checkout-status h2,
.order-summary h2,
.bac-suggestion h2,
.checkout-warning h2 {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-panel h2 small {
  font-size: 0.8rem;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkout-fields label,
.payment-method,
.upload-box {
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-fields label {
  display: grid;
  gap: 6px;
}

.span-2 {
  grid-column: 1 / -1;
}

.checkout-fields input,
.checkout-fields textarea {
  width: 100%;
  color: var(--text);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  padding: 12px;
  outline: none;
}

.checkout-fields textarea {
  resize: vertical;
}

.checkout-fields input:focus,
.checkout-fields textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(156, 255, 0, 0.13);
}

.checkout-status {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  margin: 14px 0;
  padding: 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: inset 0 0 20px rgba(156, 255, 0, 0.08), 0 0 12px rgba(156, 255, 0, 0.2);
}

.checkout-status > span {
  width: 62px;
  height: 62px;
  border: 4px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(156, 255, 0, 0.45);
}

.checkout-status strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-status p {
  margin: 8px 0 0;
  color: #e1e3dc;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.payment-method {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 6px 14px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.66);
}

.payment-method input {
  position: absolute;
  right: 14px;
  top: 14px;
  accent-color: var(--accent);
}

.payment-method.is-selected,
.payment-method:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(156, 255, 0, 0.2);
}

.pay-icon {
  width: 70px;
  height: 70px;
  display: grid;
  grid-row: span 3;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 900;
}

.pay-icon--cash {
  background: #18d929;
}

.pay-icon--zelle {
  background: #7228e8;
}

.payment-method strong,
.payment-method em,
.payment-method small {
  display: block;
  font-style: normal;
  line-height: 1.15;
}

.payment-method strong {
  color: var(--text);
  font-size: 1.4rem;
}

.payment-method em {
  color: var(--accent);
}

.payment-instructions {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.payment-instructions div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.payment-instructions div:last-child {
  border-bottom: 0;
}

.payment-instructions dt,
.payment-instructions dd {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.payment-instructions dd {
  color: var(--accent);
}

.upload-box {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upload-box strong,
.upload-box small,
.upload-box em {
  display: block;
  font-style: normal;
}

.upload-box em {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  color: #fff;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkout-call-button,
.checkout-call-link {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.checkout-call-button {
  color: #071000;
  background: linear-gradient(180deg, #b6ff17, #67b200);
}

.checkout-sidebar {
  display: grid;
  gap: 16px;
}

.checkout-sidebar section {
  padding: 24px;
}

.order-summary article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
}

.order-summary img,
.bac-suggestion img {
  width: 58px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.72));
}

.order-summary h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.04rem;
}

.order-summary p {
  margin: 4px 0 0;
  color: var(--muted);
}

.order-summary strong {
  font-size: 1.12rem;
}

.order-summary dl {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0;
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.order-summary dl dt,
.order-summary dl dd {
  margin: 0;
}

.order-summary .total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-size: 1.6rem;
}

.bac-suggestion {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.bac-suggestion p {
  margin: 0 0 12px;
  color: #e1e3dc;
}

.bac-suggestion button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-warning article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-warning article:last-child {
  border-bottom: 0;
}

.checkout-warning p {
  margin: 0;
  color: #e1e3dc;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.private-card h2,
.lab-proof h2,
.contact h2 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(156, 255, 0, 0.35);
}

.section-heading p,
.contact p,
.lab-proof p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading a,
.product-preview a,
.bundle-grid a {
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 16px;
}

.category-card {
  min-height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-decoration: none;
}

.category-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-position: center 56%;
  background-size: cover;
  opacity: 0.72;
  transition: transform 220ms ease, opacity 220ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.9));
}

.category-card:hover::before,
.category-card:focus-visible::before {
  transform: scale(1.05);
  opacity: 0.95;
}

.category-card--peptides::before {
  background-image: url("assets/brand/header-peptides-clean.jpg");
}

.category-card--hormones::before {
  background-image: url("assets/brand/header-hormones-clean.jpg");
}

.category-card--standards::before {
  background-image: url("assets/brand/cta-box-clean.jpg");
  background-position: center 64%;
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 2;
  display: block;
  text-transform: uppercase;
}

.category-card span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.category-card strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}

.preview-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.preview-grid,
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.product-preview,
.bundle-grid article,
.private-card,
.why-card,
.contact-form,
.contact-callout,
.lab-proof__grid > article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 28, 10, 0.58), rgba(2, 4, 0, 0.88)),
    rgba(2, 5, 1, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-preview {
  min-height: 300px;
  display: grid;
  grid-template-rows: 148px 28px 58px 36px;
  align-items: stretch;
  justify-items: center;
  padding: 12px 12px 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 12, 3, 0.52), rgba(0, 0, 0, 0.9)),
    url("assets/brand/hex-pattern-clean.jpg") center/420px auto;
  background-blend-mode: normal;
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 162px;
  background:
    radial-gradient(circle at 50% 42%, rgba(156, 255, 0, 0.28), transparent 43%),
    linear-gradient(180deg, rgba(156, 255, 0, 0.08), transparent);
}

.vial {
  position: relative;
  z-index: 1;
  width: 106px;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  justify-self: center;
  margin: 0 auto;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 18px rgba(156, 255, 0, 0.32));
}

.vial img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
}

.product-preview > span,
.bundle-grid h3,
.steps h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-preview > span,
.product-preview p,
.product-preview a {
  position: relative;
  z-index: 1;
  width: 100%;
}

.product-preview p,
.bundle-grid p,
.steps p,
.private-card p,
.private-card small,
.why-card li {
  color: var(--muted);
}

.product-preview p {
  align-self: start;
  min-height: 0;
  margin: 5px 0 0;
  color: #d7dbd0;
  font-size: 0.79rem;
  line-height: 1.28;
}

.product-preview a {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  justify-self: center;
  width: 100%;
  padding: 0 8px;
  color: #071000;
  border: 1px solid rgba(192, 255, 45, 0.6);
  border-radius: 4px;
  background: linear-gradient(180deg, #b6ff17, #67b200);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 0 12px rgba(156, 255, 0, 0.16);
  font-size: 0.78rem;
}

.private-card {
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 9, 4, 0.66), rgba(0, 0, 0, 0.95)),
    url("assets/brand/hex-pattern-clean.jpg") center/560px auto;
}

.private-card__lock {
  width: 74px;
  height: 86px;
  margin: 0 auto 18px;
  border: 3px solid var(--accent);
  clip-path: polygon(50% 0, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
  box-shadow: var(--shadow);
}

.private-card h2 {
  font-size: 2.15rem;
}

.private-card ul,
.why-card ul {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.private-card li,
.why-card li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.94rem;
}

.private-card li::before,
.why-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  content: "";
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

.private-card .button {
  width: 100%;
}

.private-card small {
  display: block;
  margin-top: 18px;
}

.bundles {
  padding-top: 16px;
}

.bundle-grid {
  grid-template-columns: repeat(4, 1fr);
}

.bundle-grid article {
  min-height: 180px;
  padding: 22px;
  background-image: url("assets/brand/hex-pattern-clean.jpg");
  background-size: 520px auto;
  background-blend-mode: overlay;
}

.bundle-grid p {
  margin: 12px 0 20px;
  font-size: 0.94rem;
}

.how {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.32);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.steps article {
  position: relative;
  min-height: 150px;
  padding: 24px 20px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(2, 5, 1, 0.68);
}

.steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--accent);
  border: 1px solid var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-family: var(--font-ui);
  font-weight: 900;
}

.steps p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.lab-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 14px;
  align-items: stretch;
}

.lab-proof__grid > article {
  padding: 26px;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.proof-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--accent);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.faq {
  padding-top: 18px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 22, 20, 0.9), rgba(6, 8, 6, 0.94));
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--text);
  font-size: 1.5rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact {
  border-top: 1px solid var(--line-soft);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-callout {
  margin-top: 28px;
  padding: 20px;
}

.contact-callout strong,
.contact-callout a {
  display: block;
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-callout a {
  margin-top: 6px;
  color: var(--accent);
  font-size: 1.25rem;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(156, 255, 0, 0.12);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.9);
  padding: 34px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.brand--footer .brand__image {
  width: 72px;
  height: 72px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
}

.research-only {
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.research-only strong,
.research-only span {
  display: block;
  text-transform: uppercase;
}

.research-only strong {
  color: var(--text);
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .top-bar__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 8px 0;
  }

  .header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.96);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .page-hero__grid,
  .preview-layout__grid,
  .contact__grid,
  .lab-proof__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    height: min(620px, 74vw);
    justify-self: center;
    order: -1;
    opacity: 0.9;
  }

  .trust-bar {
    margin-top: 0;
  }

  .trust-bar__grid,
  .steps,
  .bundle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .research-menu-grid,
  .menu-note__grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero__mark {
    display: none;
  }

  .shop-header__inner {
    display: flex;
    min-height: 86px;
  }

  .checkout-header__inner {
    display: flex;
    min-height: 96px;
  }

  .checkout-logo img {
    width: 64px;
    height: 68px;
  }

  .checkout-logo span {
    max-width: 140px;
    font-size: 2rem;
  }

  .checkout-mini-cart {
    margin-left: auto;
    min-height: 58px;
    grid-template-columns: 28px 1fr;
    padding: 8px 10px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .shop-logo img {
    width: 84px;
    height: 72px;
  }

  .cart-summary {
    margin-left: auto;
    min-height: 54px;
    grid-template-columns: 28px 1fr;
    padding: 8px 10px;
  }

  .shop-bundles {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .shop-bundles__feature {
    grid-template-columns: 160px 1fr;
  }

  .shop-bundles__feature img {
    width: 160px;
    height: 190px;
  }

  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hormone-shop-band,
  .shop-disclaimer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hormone-shop-band img,
  .shop-disclaimer img {
    justify-self: center;
  }

  .shop-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-fields,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .top-bar__inner span:nth-child(3),
  .top-bar__inner span:nth-child(4) {
    display: none;
  }

  .brand__image {
    width: 58px;
    height: 58px;
  }

  .brand__text {
    max-width: 130px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero__media {
    height: 420px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .trust-bar__grid,
  .preview-grid,
  .bundle-grid,
  .steps,
  .faq-list,
  .contact-form,
  .research-menu-grid,
  .menu-note__grid,
  .catalog-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 46px;
  }

  .page-hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

  .page-hero__panel {
    min-height: 220px;
  }

  .research-menu-card {
    min-height: 300px;
    padding: 22px;
  }

  .shop-title h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .shop-title p {
    font-size: 0.92rem;
  }

  .shop-bundles__feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shop-bundles__feature img {
    justify-self: center;
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-product-card {
    min-height: 248px;
  }

  .shop-trust {
    grid-template-columns: 1fr;
  }

  .shop-trust article {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .shop-trust article:last-child {
    border-bottom: 0;
  }

  .checkout-progress__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .checkout-progress__steps::before {
    display: none;
  }

  .checkout-title h1 {
    font-size: clamp(2.3rem, 13vw, 3.5rem);
  }

  .checkout-status,
  .bac-suggestion,
  .checkout-warning article,
  .order-summary article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .checkout-status > span,
  .order-summary img,
  .bac-suggestion img,
  .checkout-warning .shop-trust__icon {
    justify-self: center;
  }

  .upload-box {
    grid-template-columns: 1fr;
  }

  .trust-bar article {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .trust-bar article:last-child {
    border-bottom: 0;
  }

  .section-heading--row {
    align-items: start;
    flex-direction: column;
  }

  .product-preview {
    min-height: 328px;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
