:root {
  --ink: #111a18;
  --ink-2: #24312e;
  --muted: #64716d;
  --paper: #f7f7f3;
  --white: #ffffff;
  --line: #dfe5e1;
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #c49a59;
  --gold-soft: #f0e6d5;
  --aqua: #167f86;
  --aqua-dark: #0e666c;
  --aqua-soft: #e8f3f2;
  --success: #227355;
  --warn: #a76419;
  --danger: #a84242;
  --shadow-sm: 0 8px 28px rgba(17, 26, 24, 0.08);
  --shadow-lg: 0 28px 80px rgba(17, 26, 24, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --max: 1240px;
  --header-h: 74px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid #5ac4cc;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus { top: 16px; }

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

.section { padding: 92px 0; }
.section-sm { padding: 54px 0; }
.section-tight { padding: 28px 0 64px; }
.section-white { background: var(--white); }
.section-dark { color: var(--white); background: var(--ink); }
.section-tint { background: #edf2ef; }
.section-gold { background: var(--gold-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--aqua-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow { color: #81d6d8; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.035em; }
h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(2.7rem, 6vw, 5.8rem); line-height: 0.98; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.03; }
h3 { margin-bottom: 10px; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.18; }
p { margin-bottom: 18px; }
.lead { max-width: 710px; color: var(--ink-2); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.6; }
.section-dark .lead { color: rgba(255,255,255,.74); }
.muted { color: var(--muted); }
.fineprint { color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.text-link { color: var(--aqua-dark); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.text-link:hover { color: var(--ink); }

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: #0c696e;
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.01em;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.announcement span + span::before { margin-right: 22px; content: "•"; opacity: .45; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(17,26,24,.09);
  background: rgba(247,247,243,.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-link { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: 210px; height: auto; }
.brand-logo .brand-word { fill: var(--ink); }
.logo-mark-only { width: 38px; }

.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 28px; }
.desktop-nav a {
  position: relative;
  padding: 25px 0 23px;
  color: #33413e;
  font-size: .93rem;
  font-weight: 680;
  text-decoration: none;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.icon-btn:hover { background: var(--aqua-soft); }
.icon-btn svg { width: 21px; height: 21px; }
.language-switch { display: flex; align-items: center; padding: 0 7px; border-left: 1px solid var(--line); }
.language-switch button { padding: 8px 4px; border: 0; color: var(--muted); background: none; cursor: pointer; font-size: .8rem; font-weight: 800; }
.language-switch button[aria-pressed="true"] { color: var(--ink); }
.language-switch span { color: #a7b1ae; font-size: .75rem; }
.cart-count {
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  color: var(--white);
  background: var(--aqua);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}
.mobile-menu-btn { display: none; }

.mobile-menu {
  position: fixed;
  z-index: 98;
  inset: calc(var(--header-h) + 36px) 0 0;
  display: none;
  padding: 22px 20px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1.25rem; font-weight: 760; text-decoration: none; }
.mobile-menu-meta { display: flex; justify-content: space-between; padding-top: 24px; }

.demo-rail {
  color: var(--muted);
  background: #f0f1ed;
  border-bottom: 1px solid var(--line);
  font-size: .76rem;
}
.demo-rail .container { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.demo-tag { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.demo-tag::before { width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--warn); }

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 34%, rgba(77,179,183,.18), transparent 25%),
    linear-gradient(140deg, #f8f8f4 40%, #e7efeb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 46px;
  padding: 72px 0;
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 span { color: var(--aqua-dark); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-primary { color: var(--white); background: var(--ink); }
.btn-primary:hover { background: #25312f; }
.btn-aqua { color: var(--white); background: var(--aqua-dark); }
.btn-aqua:hover { background: #0c5459; }
.btn-secondary { color: var(--ink); border-color: #bac5c1; background: rgba(255,255,255,.55); }
.btn-secondary:hover { border-color: var(--ink); background: var(--white); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.btn-small { min-height: 40px; padding: 10px 15px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled] { cursor: not-allowed; opacity: .45; transform: none; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 24px;
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid rgba(17,26,24,.14);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; color: #40504c; font-size: .87rem; font-weight: 680; }
.hero-proof svg { width: 19px; color: var(--aqua); }

.hero-visual { position: relative; min-height: 520px; }
.hero-orbit { position: absolute; inset: 6% -10% auto auto; width: 470px; height: 470px; border: 1px solid rgba(22,127,134,.18); border-radius: 50%; }
.hero-orbit::before, .hero-orbit::after { position: absolute; content: ""; border: 1px solid rgba(196,154,89,.32); border-radius: 50%; }
.hero-orbit::before { inset: 66px; }
.hero-orbit::after { inset: 144px; background: rgba(255,255,255,.18); }
.hero-set { position: absolute; inset: 25px 0 0; display: flex; align-items: flex-end; justify-content: center; }
.hero-set .packshot { width: 270px; filter: drop-shadow(0 38px 32px rgba(15,30,27,.21)); transform: rotate(1deg); }
.hero-set .solution-packshot { width: 185px; margin-left: -38px; transform: translateY(15px) rotate(-5deg); }
.hero-box {
  position: absolute;
  right: 10px;
  bottom: 30px;
  left: 30px;
  height: 112px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px 12px 20px 20px;
  background: linear-gradient(150deg,#202624,#080c0b);
  box-shadow: 0 28px 55px rgba(17,26,24,.28);
  transform: perspective(800px) rotateX(58deg) rotateZ(-3deg);
}
.hero-note {
  position: absolute;
  left: 0;
  bottom: 8px;
  max-width: 220px;
  padding: 13px 16px;
  color: var(--ink);
  border: 1px solid rgba(17,26,24,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 650;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.trust-item { display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 24px 28px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item svg { width: 25px; color: var(--aqua); }
.trust-item strong { display: block; margin-bottom: 3px; }
.trust-item small { display: block; color: var(--muted); line-height: 1.35; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.section-heading > div { max-width: 760px; }
.section-heading h2 { margin-bottom: 0; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.product-card-media {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 26px;
  background: linear-gradient(145deg,#f3f5f2,#e7edE9);
}
.product-card-media .packshot { height: 240px; width: auto; filter: drop-shadow(0 24px 18px rgba(13,28,25,.18)); }
.status-pill {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--success);
  border: 1px solid rgba(34,115,85,.18);
  border-radius: 999px;
  background: rgba(247,255,251,.92);
  font-size: .75rem;
  font-weight: 800;
}
.status-pill::before { width: 6px; height: 6px; content: ""; border-radius: 50%; background: currentColor; }
.status-pill.out { color: var(--danger); border-color: rgba(173,57,57,.2); background: rgba(255,248,248,.94); }
.product-card-body { padding: 20px 20px 22px; }
.product-card-top { display: flex; justify-content: space-between; gap: 12px; }
.product-card h3 { margin-bottom: 5px; }
.price { white-space: nowrap; font-size: 1.08rem; font-weight: 820; letter-spacing: -.025em; }
.variant-list { min-height: 30px; display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.variant-chip { min-height: 40px; padding: 7px 10px; color: var(--muted); border: 1px solid var(--line); border-radius: 7px; background: var(--white); cursor: pointer; font-family: inherit; font-size: .75rem; font-weight: 750; }
.variant-chip:hover { color: var(--ink); border-color: #99aaa5; }
.variant-chip[aria-pressed="true"] { color: var(--aqua-dark); border-color: var(--aqua); box-shadow: inset 0 0 0 1px var(--aqua); background: var(--aqua-soft); }
.variant-chip.unavailable { text-decoration: line-through; opacity: .62; }
.variant-chip.unavailable[aria-pressed="true"] { color: var(--danger); border-color: rgba(173,57,57,.55); box-shadow: inset 0 0 0 1px rgba(173,57,57,.35); background: #fff8f8; opacity: 1; }
.included-line { min-height: 40px; display: flex; gap: 7px; color: #40504c; font-size: .8rem; line-height: 1.35; }
.included-line svg { flex: 0 0 auto; width: 17px; color: var(--gold); }
.card-actions { display: flex; gap: 8px; margin-top: 16px; }
.card-actions .btn { flex: 1; }

.packshot { --accent: #167f86; }
.packshot text { font-family: Inter, Arial, sans-serif; }
.packshot .label-accent { fill: var(--accent); }
.packshot .accent-stroke { stroke: var(--accent); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 74px; }
.split-copy { max-width: 570px; }
.feature-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 27px 1fr; gap: 10px; }
.feature-list svg { width: 22px; color: var(--aqua); }

.box-scene {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 30%,#eef5f2,#d5e0da);
}
.open-box {
  position: absolute;
  width: 77%;
  height: 43%;
  bottom: 65px;
  border-radius: 20px;
  background: linear-gradient(145deg,#1e2423,#070908);
  box-shadow: 0 36px 60px rgba(17,26,24,.32), inset 0 0 0 1px rgba(255,255,255,.08);
  transform: perspective(700px) rotateX(51deg);
}
.open-box::before {
  position: absolute;
  right: 4%;
  bottom: 94%;
  left: 4%;
  height: 115%;
  content: "";
  border-radius: 18px;
  background: linear-gradient(165deg,#222827,#0c100f);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  transform: perspective(650px) rotateX(-42deg);
  transform-origin: bottom;
}
.box-vials { position: relative; z-index: 2; display: flex; align-items: flex-end; gap: 5px; transform: translateY(-10px); }
.box-vials .packshot { width: 190px; filter: drop-shadow(0 22px 16px rgba(0,0,0,.28)); }
.box-vials .solution-packshot { width: 155px; }
.concept-label { position: absolute; right: 18px; bottom: 18px; z-index: 3; padding: 7px 10px; border-radius: 8px; color: var(--muted); background: rgba(255,255,255,.84); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.coa-callout { position: relative; overflow: hidden; padding: 58px; border-radius: var(--radius-lg); }
.coa-callout::after { position: absolute; right: -80px; bottom: -160px; width: 440px; height: 440px; content: ""; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.coa-callout-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; gap: 58px; align-items: center; }
.doc-stack { display: grid; justify-items: center; }
.doc-sheet { grid-area: 1/1; width: 270px; min-height: 340px; padding: 26px; color: var(--ink); border-radius: 12px; background: var(--white); box-shadow: 0 35px 70px rgba(0,0,0,.3); }
.doc-sheet:nth-child(1) { transform: rotate(-8deg) translate(-34px,20px); opacity: .5; }
.doc-sheet:nth-child(2) { transform: rotate(5deg) translate(28px,10px); opacity: .72; }
.doc-sheet:nth-child(3) { position: relative; }
.doc-sheet h3 { font-size: 1rem; }
.doc-line { height: 7px; margin: 10px 0; border-radius: 99px; background: #dfe5e1; }
.doc-line.short { width: 62%; }
.demo-watermark { margin: 35px -10px 15px; padding: 8px; color: var(--danger); border: 2px solid currentColor; transform: rotate(-7deg); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-align: center; text-transform: uppercase; }

.coa-proof-section { background: linear-gradient(180deg, transparent, rgba(228,241,239,.34), transparent); }
.coa-proof-card { position: relative; overflow: hidden; padding: 38px 40px 24px; border: 1px solid rgba(17,26,24,.13); border-radius: var(--radius-lg); background: rgba(255,255,255,.92); box-shadow: 0 22px 55px rgba(17,26,24,.07); }
.coa-proof-card::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; content: ""; background: linear-gradient(90deg, var(--aqua), var(--gold) 54%, transparent 88%); }
.coa-proof-header { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 25px; }
.coa-proof-header h2 { max-width: 720px; margin: 4px 0 8px; font-size: clamp(2rem,4vw,3.5rem); }
.coa-proof-header p:not(.eyebrow) { max-width: 610px; margin: 0; color: var(--muted); }
.coa-proof-header .btn { flex: 0 0 auto; }
.coa-proof-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 18px; }
.coa-proof-metrics { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #f7f9f7; }
.coa-proof-metrics article { min-width: 0; padding: 22px 14px; text-align: center; }
.coa-proof-metrics article + article { border-left: 1px solid var(--line); }
.coa-proof-metrics strong, .coa-proof-metrics span { display: block; }
.coa-proof-metrics strong { color: var(--ink); font-size: clamp(1rem,1.7vw,1.35rem); letter-spacing: -.025em; }
.coa-proof-metrics span { margin-top: 5px; color: var(--muted); font-size: .65rem; line-height: 1.3; }
.coa-proof-document { min-width: 0; display: grid; grid-template-columns: 62px minmax(0,1fr) auto; gap: 15px; align-items: center; padding: 12px 14px; color: var(--ink); border: 1px solid rgba(22,127,134,.2); border-radius: 14px; background: linear-gradient(110deg, #fff, rgba(235,247,246,.72)); text-decoration: none; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.coa-proof-document:hover { border-color: var(--aqua); box-shadow: 0 12px 28px rgba(17,26,24,.08); transform: translateY(-2px); }
.coa-proof-document > img { width: 62px; height: 80px; object-fit: cover; border: 1px solid var(--line); border-radius: 5px; background: #fff; box-shadow: 0 5px 14px rgba(17,26,24,.11); }
.coa-proof-document h3 { margin: 7px 0 3px; font-size: 1rem; }
.coa-proof-document p { margin: 0; color: var(--muted); font-size: .7rem; }
.coa-proof-document .coa-original-kicker { padding: 4px 6px; font-size: .58rem; }
.coa-proof-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.coa-proof-badges span { padding: 4px 6px; color: #245b45; border-radius: 999px; background: #e7f4ec; font-size: .58rem; font-weight: 760; }
.coa-proof-open { display: inline-flex; align-items: center; gap: 6px; color: var(--aqua-dark); font-size: .7rem; font-weight: 820; white-space: nowrap; }
.coa-proof-open svg { width: 15px; }
.coa-proof-trace { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-top: 18px; color: var(--muted); font-size: .65rem; font-weight: 760; letter-spacing: .035em; text-transform: uppercase; }
.coa-proof-trace i { color: var(--gold); font-style: normal; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.info-card svg { width: 30px; margin-bottom: 28px; color: var(--aqua); }
.info-card h3 { font-size: 1.12rem; }

.community-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 38px; padding: 46px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.community-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.community-option { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.community-option .app-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 12px; color: var(--white); background: var(--ink); }
.community-option .app-icon svg { width: 23px; }
.community-option button { width: 100%; }
.community-option .community-contact { width: 100%; }
.community-option .telegram-icon { background: #229ed9; }
.community-option .whatsapp-icon { background: #168a5b; }
.info-card .app-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  border-radius: 13px;
}
.info-card .app-icon svg { width: 23px; }
.info-card .telegram-icon { background: #229ed9; }
.info-card .whatsapp-icon { background: #168a5b; }

.contact-dock {
  position: fixed;
  z-index: 59;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(78px, calc(78px + env(safe-area-inset-bottom)));
  display: grid;
  gap: 9px;
}
.contact-dock-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(17,26,24,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.contact-dock-link:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 15px 34px rgba(17,26,24,.28); }
.contact-dock-link svg { width: 23px; height: 23px; }
.contact-dock-link span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.telegram-contact { background: #229ed9; }
.whatsapp-contact { background: #168a5b; }
body[data-route="checkout"] .contact-dock { display: none; }

.page-hero { padding: 66px 0 44px; background: linear-gradient(145deg,#eef2ef,var(--paper)); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem,5vw,4.8rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: .8rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span::before { margin-right: 8px; content: "/"; color: #a7b1ae; }

.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 26px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-btn { min-height: 39px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--white); cursor: pointer; font-size: .82rem; font-weight: 750; }
.filter-btn[aria-pressed="true"] { color: var(--white); border-color: var(--ink); background: var(--ink); }
.catalog-count { color: var(--muted); font-size: .85rem; }

.product-page { padding: 52px 0 90px; }
.product-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(370px,.78fr); gap: 70px; align-items: start; }
.product-layout > * { min-width: 0; }
.gallery-main { position: sticky; top: 112px; }
.gallery-stage { min-height: 590px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 35%,#f8faf8,#e2e9e5); }
.gallery-stage .packshot { width: 285px; filter: drop-shadow(0 40px 28px rgba(13,28,25,.2)); }
.gallery-stage .solution-packshot { width: 210px; }
.gallery-stage .gallery-pair { display: flex; align-items: flex-end; }
.gallery-stage .gallery-pair .solution-packshot { margin-left: -34px; transform: translateY(20px); }
.gallery-stage .box-scene { width: 100%; height: 100%; border-radius: 0; }
.gallery-stage .box-vials .packshot { width: 200px; }
.gallery-thumbs { min-width: 0; max-width: 100%; display: flex; gap: 9px; margin-top: 11px; overflow-x: auto; padding: 2px 1px 5px; scroll-snap-type: x proximity; }
.gallery-thumb { flex: 1 0 104px; min-width: 0; min-height: 78px; padding: 8px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: var(--white); cursor: pointer; font-size: .68rem; font-weight: 750; line-height: 1.4; white-space: normal; overflow-wrap: anywhere; hyphens: auto; scroll-snap-align: start; }
.gallery-thumb[aria-pressed="true"] { color: var(--aqua-dark); border-color: var(--aqua); box-shadow: inset 0 0 0 1px var(--aqua); }
.product-summary { padding-top: 10px; }
.product-summary h1 { margin-bottom: 8px; font-size: clamp(2.5rem,4vw,4.4rem); }
.product-kicker { color: var(--aqua-dark); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-price { margin: 18px 0 12px; font-size: 1.8rem; font-weight: 850; letter-spacing: -.04em; }
.stock-line { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-size: .84rem; font-weight: 800; }
.stock-line::before { width: 8px; height: 8px; content: ""; border-radius: 50%; background: currentColor; }
.stock-line.out { color: var(--danger); }
.field-group { margin: 28px 0; }
.field-label { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 10px; font-size: .82rem; font-weight: 800; }
.variant-buttons { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.variant-btn { min-height: 48px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--white); cursor: pointer; font-size: .84rem; font-weight: 780; }
.variant-btn[aria-pressed="true"] { color: var(--aqua-dark); border-color: var(--aqua); box-shadow: inset 0 0 0 1px var(--aqua); background: var(--aqua-soft); }
.variant-btn.unavailable { color: var(--muted); text-decoration: line-through; }
.variant-btn.unavailable[aria-pressed="true"] { color: var(--danger); border-color: rgba(173,57,57,.55); box-shadow: inset 0 0 0 1px rgba(173,57,57,.35); background: #fff8f8; }
.delivery-box { margin: 25px 0; padding: 18px; border: 1px solid #cfe2dd; border-radius: 13px; background: #eff7f4; }
.delivery-box strong { display: block; margin-bottom: 3px; }
.delivery-box small { color: var(--muted); }
.included-box { margin: 24px 0; padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.included-box h3 { font-size: .93rem; }
.included-box ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.included-box li { display: flex; align-items: center; gap: 9px; font-size: .88rem; }
.included-box li::before { width: 18px; height: 18px; display: grid; place-items: center; content: "✓"; color: var(--white); border-radius: 50%; background: var(--success); font-size: .68rem; font-weight: 900; }
.buy-row { display: grid; grid-template-columns: 116px 1fr; gap: 9px; }
.quantity-control { min-height: 52px; display: grid; grid-template-columns: 35px 1fr 35px; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.quantity-control button { height: 100%; border: 0; background: transparent; cursor: pointer; }
.quantity-control input { width: 100%; padding: 0; border: 0; background: transparent; font-weight: 800; text-align: center; -moz-appearance: textfield; }
.quantity-control input::-webkit-inner-spin-button { appearance: none; }
.product-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; font-size: .83rem; }
.product-links button { padding: 0; border: 0; color: var(--aqua-dark); background: none; cursor: pointer; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }

.portal-tools { display: grid; grid-template-columns: 1fr 220px; gap: 10px; margin-bottom: 22px; }
.input, .select, .textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #cfd7d3;
  border-radius: 10px;
  background: var(--white);
}
.textarea { min-height: 100px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--aqua); outline: 3px solid rgba(22,127,134,.13); }
.demo-banner { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding: 15px 18px; color: #744412; border: 1px solid #e4c38e; border-radius: 12px; background: #fff7e8; font-size: .84rem; }
.demo-banner strong { white-space: nowrap; }
.coa-source-note { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 18px; padding: 13px 15px; color: var(--aqua-dark); border: 1px solid rgba(22,127,134,.18); border-radius: 11px; background: rgba(235,247,246,.72); font-size: .78rem; }
.coa-source-note > svg { width: 19px; min-width: 19px; margin-top: 1px; }
.coa-source-note strong, .coa-source-note span { display: block; }
.coa-source-note span { margin-top: 2px; color: var(--muted); line-height: 1.45; }
.coa-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.coa-row { display: grid; grid-template-columns: 1.4fr .75fr 1fr .8fr .7fr; align-items: center; gap: 14px; padding: 17px 20px; border-top: 1px solid var(--line); }
.coa-row:first-child { border-top: 0; }
.coa-row.is-original { background: linear-gradient(90deg, rgba(235,247,246,.62), rgba(255,255,255,.82) 46%); }
.coa-head { min-height: 46px; color: var(--muted); background: #f2f4f1; font-size: .72rem; font-weight: 820; letter-spacing: .04em; text-transform: uppercase; }
.coa-product strong { display: block; }
.coa-product small, .coa-cell small { color: var(--muted); }
.coa-status { display: inline-flex; width: max-content; padding: 5px 8px; border-radius: 7px; color: var(--aqua-dark); background: var(--aqua-soft); font-size: .7rem; font-weight: 800; }
.coa-status.historical { color: var(--muted); background: #eef0ed; }
.coa-status.original { color: #245b45; background: #e7f4ec; box-shadow: inset 0 0 0 1px rgba(36,91,69,.13); }

.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.48fr); gap: 30px; align-items: start; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.panel-header { padding: 20px 24px; border-bottom: 1px solid var(--line); }
.panel-header h2, .panel-header h3 { margin: 0; font-size: 1.1rem; }
.panel-body { padding: 24px; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item:first-child { padding-top: 0; }
.cart-item:last-child { padding-bottom: 0; border-bottom: 0; }
.cart-item-image { height: 110px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: #edf1ef; }
.cart-item-image .packshot { height: 100px; width: auto; }
.cart-item h3 { margin-bottom: 3px; font-size: 1rem; }
.cart-item-meta { color: var(--muted); font-size: .8rem; }
.cart-item-controls { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.cart-item-controls .quantity-control { width: 105px; min-height: 38px; }
.link-button { padding: 0; border: 0; color: var(--muted); background: none; cursor: pointer; font-size: .76rem; text-decoration: underline; text-underline-offset: 3px; }
.summary-panel { position: sticky; top: 112px; }
.summary-lines { display: grid; gap: 12px; }
.summary-line { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .9rem; }
.summary-line strong { color: var(--ink); }
.summary-total { margin-top: 5px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink); font-size: 1.05rem; font-weight: 820; }
.progress-wrap { margin: 20px 0; }
.progress-track { height: 7px; overflow: hidden; border-radius: 99px; background: #e6eae7; }
.progress-bar { height: 100%; border-radius: inherit; background: var(--aqua); transition: width .24s ease; }
.progress-copy { margin: 8px 0 0; color: var(--muted); font-size: .76rem; }
.empty-state { padding: 80px 30px; text-align: center; }
.empty-state svg { width: 45px; margin: 0 auto 25px; color: var(--aqua); }

.checkout-form { display: grid; gap: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field label { display: block; margin-bottom: 6px; font-size: .78rem; font-weight: 750; }
.form-field.full { grid-column: 1/-1; }
.payment-options { display: grid; gap: 10px; }
.payment-card { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 17px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.payment-card:has(input:checked) { border-color: var(--aqua); box-shadow: inset 0 0 0 1px var(--aqua); background: var(--aqua-soft); }
.payment-card input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--aqua); }
.payment-card strong { display: block; margin-bottom: 3px; }
.payment-card small { display: block; color: var(--muted); line-height: 1.45; }
.payment-card > span { min-width: 0; display: grid; grid-template-columns: 30px minmax(0,1fr); column-gap: 11px; align-items: center; }
.payment-card > span > svg { grid-row: 1/3; margin: 0; }
.payment-card > span > strong { grid-column: 2; margin: 0; }
.payment-card > span > small { grid-column: 2; }
.payment-card > span > .payment-bank-details,
.payment-card > span > .payment-crypto-details { grid-column: 1/-1; }
.payment-detail { margin-top: 10px; padding: 13px; border-radius: 9px; background: rgba(255,255,255,.72); font-size: .78rem; }
.payment-bank-details { display: none; grid-template-columns: 1fr; gap: 8px; margin-top: 14px; padding: 13px; border: 1px solid rgba(22,127,134,.16); border-radius: 9px; background: rgba(255,255,255,.82); }
.payment-card:has(input:checked) .payment-bank-details { display: grid; }
.payment-bank-details > div { display: grid; grid-template-columns: 88px minmax(0,1fr); gap: 10px; align-items: baseline; }
.payment-bank-details span { color: var(--muted); font-size: .66rem; font-weight: 700; }
.payment-bank-details b, .payment-bank-details code { min-width: 0; color: var(--ink); font-family: inherit; font-size: .76rem; font-weight: 800; overflow-wrap: anywhere; }
.payment-bank-details p { margin: 3px 0 0; padding-top: 9px; color: var(--aqua-dark); border-top: 1px solid var(--line); font-size: .68rem; font-weight: 760; }
.payment-crypto-details { display: none; margin-top: 14px; padding: 13px; border: 1px solid rgba(38,161,123,.2); border-radius: 9px; background: rgba(255,255,255,.86); }
.payment-card:has(input:checked) .payment-crypto-details { display: block; }
.payment-card:has(input[value="crypto"]:checked) { border-color: #26a17b; box-shadow: inset 0 0 0 1px #26a17b; background: #eaf7f2; }
.payment-card:has(input[value="crypto"]:checked) > span > svg { color: #26a17b; }
.crypto-wallet-main { display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 16px; align-items: center; }
.crypto-wallet-main img { width: 150px; height: 150px; object-fit: contain; border: 1px solid #dfe7e2; border-radius: 8px; background: #fff; }
.crypto-wallet-main > div { display: grid; gap: 5px; min-width: 0; }
.crypto-wallet-main span { color: var(--muted); font-size: .64rem; font-weight: 700; }
.crypto-wallet-main b { margin-bottom: 5px; font-size: .76rem; }
.crypto-wallet-main code { padding: 8px; border-radius: 6px; color: var(--ink); background: #f0f4f1; font-family: ui-monospace,SFMono-Regular,Consolas,monospace; font-size: .68rem; font-weight: 760; line-height: 1.45; overflow-wrap: anywhere; user-select: all; }
.payment-crypto-details > p { margin: 11px 0 0; padding-top: 10px; color: #17694f; border-top: 1px solid rgba(38,161,123,.18); font-size: .67rem; line-height: 1.5; }
.payment-crypto-details > p strong { display: inline; margin: 0; }
.checkout-note { padding: 14px 16px; color: var(--muted); border-radius: 10px; background: #eff2ef; font-size: .77rem; }

.payment-quick-section { margin-bottom: 24px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink); }
.payment-quick-section .eyebrow { margin-bottom: 14px; color: rgba(255,255,255,.55); }
.payment-quick-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.payment-quick-grid article { min-width: 0; display: grid; grid-template-columns: 38px minmax(0,1fr); align-items: center; gap: 11px; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; color: #fff; background: rgba(255,255,255,.055); }
.payment-quick-grid svg { width: 27px; height: 27px; color: var(--gold); }
.payment-quick-grid h3 { margin: 0 0 3px; font-size: .78rem; }
.payment-quick-grid strong { display: block; color: rgba(255,255,255,.6); font-size: .65rem; line-height: 1.3; }
.payment-quick-usdt svg { color: #26a17b; }
.help-essential-grid .info-card { min-height: 0; padding: 20px; }
.help-essential-grid .info-card h2 { margin-bottom: 6px; font-size: 1rem; }
.help-essential-grid .info-card p { margin: 0; font-size: .78rem; }

.order-success { max-width: 800px; margin: 0 auto; padding: 65px 0 90px; text-align: center; }
.order-bank-details { max-width: 560px; margin: 28px auto 0; padding: 22px; border: 1px solid rgba(22,127,134,.19); border-radius: 15px; background: var(--aqua-soft); text-align: left; }
.order-bank-details h2 { margin: 5px 0 15px; font-size: 1.25rem; }
.order-bank-details dl { display: grid; gap: 1px; overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 9px; background: var(--line); }
.order-bank-details dl > div { display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 12px; padding: 10px 12px; background: #fff; }
.order-bank-details dt { color: var(--muted); font-size: .7rem; }
.order-bank-details dd { margin: 0; font-size: .8rem; font-weight: 800; overflow-wrap: anywhere; }
.order-bank-details code { font-family: inherit; }
.order-bank-details > p:last-child { margin: 13px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.order-crypto-details { border-color: rgba(38,161,123,.24); background: #eaf7f2; }
.order-crypto-layout { display: grid; grid-template-columns: 145px minmax(0,1fr); gap: 18px; align-items: center; }
.order-crypto-layout img { width: 145px; height: auto; border: 1px solid rgba(38,161,123,.2); border-radius: 11px; background: #fff; }
.order-crypto-layout > div { display: grid; gap: 6px; min-width: 0; }
.order-crypto-layout span { color: var(--muted); font-size: .68rem; }
.order-crypto-layout code { padding: 10px; border-radius: 7px; background: rgba(255,255,255,.85); font-size: .7rem; line-height: 1.45; overflow-wrap: anywhere; user-select: all; }
.wallet-copy { width: max-content; margin-top: 6px; padding: 8px 11px; color: #fff; border: 0; border-radius: 7px; background: #26a17b; cursor: pointer; font-size: .7rem; font-weight: 800; }
.success-mark { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 27px; color: var(--white); border-radius: 50%; background: var(--success); }
.success-mark svg { width: 35px; }
.timeline { max-width: 600px; display: grid; gap: 0; margin: 40px auto; text-align: left; }
.timeline-step { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding-bottom: 25px; }
.timeline-step::before { position: absolute; top: 28px; bottom: 0; left: 13px; width: 2px; content: ""; background: var(--line); }
.timeline-step:last-child::before { display: none; }
.timeline-dot { width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); border-radius: 50%; background: var(--success); font-size: .7rem; font-weight: 900; }
.timeline-step.pending .timeline-dot { color: var(--muted); background: #dfe4e0; }
.timeline-step strong { display: block; }
.timeline-step small { color: var(--muted); }

.assistant-launcher {
  position: fixed;
  z-index: 60;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 13px 36px rgba(17,26,24,.24);
  cursor: pointer;
  font-weight: 760;
}
.assistant-launcher svg { width: 20px; }
body[data-route="checkout"] .assistant-launcher { display: none; }

.modal {
  width: min(calc(100% - 28px), 680px);
  max-height: min(86vh, 800px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.modal::backdrop { background: rgba(7,12,11,.58); backdrop-filter: blur(4px); }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; border-bottom: 1px solid var(--line); }
.modal-head h2 { margin: 0; font-size: 1.15rem; }
.modal-close { width: 39px; height: 39px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #f0f2ef; cursor: pointer; }
.modal-body { max-height: calc(86vh - 78px); padding: 22px; overflow-y: auto; }
.search-box { position: relative; }
.search-box svg { position: absolute; top: 14px; left: 14px; width: 21px; color: var(--muted); }
.search-box input { padding-left: 45px; }
.search-results { display: grid; gap: 7px; margin-top: 16px; }
.search-result { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 12px; padding: 10px; border: 1px solid var(--line); border-radius: 11px; text-decoration: none; }
.search-result:hover { border-color: var(--aqua); background: var(--aqua-soft); }
.search-result .mini-vial { height: 44px; display: grid; place-items: center; border-radius: 8px; background: #eef2ef; }
.search-result strong { display: block; }
.search-result small { display: block; color: var(--muted); }
.search-result > span:last-child { color: var(--aqua-dark); font-size: .8rem; font-weight: 800; }
.search-empty { padding: 30px 10px; color: var(--muted); text-align: center; }

.document-preview { position: relative; max-width: 470px; min-height: 520px; margin: 0 auto; padding: 35px; border: 1px solid var(--line); background: #fcfcfa; box-shadow: var(--shadow-sm); }
.document-preview header { display: flex; justify-content: space-between; padding-bottom: 25px; border-bottom: 2px solid var(--ink); }
.document-preview h3 { margin: 25px 0; }
.document-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.document-cell { min-height: 63px; padding: 10px; border: 1px solid var(--line); }
.document-cell small { display: block; color: var(--muted); }
.watermark-large { position: absolute; top: 48%; left: 50%; width: 80%; padding: 9px; color: rgba(168,66,66,.8); border: 4px solid currentColor; transform: translate(-50%,-50%) rotate(-10deg); font-size: 1rem; font-weight: 900; letter-spacing: .07em; text-align: center; text-transform: uppercase; }
.coa-original-card { max-width: 570px; display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 22px; align-items: start; margin: 0 auto; }
.coa-certificate-thumb { position: relative; display: block; overflow: hidden; color: var(--ink); border: 1px solid var(--line); border-radius: 9px; background: #f3f4f1; box-shadow: var(--shadow-sm); text-decoration: none; }
.coa-certificate-thumb img { width: 100%; height: auto; display: block; }
.coa-certificate-thumb span { position: absolute; right: 5px; bottom: 5px; left: 5px; padding: 5px 4px; color: #fff; border-radius: 5px; background: rgba(17,26,24,.82); font-size: .61rem; font-weight: 800; text-align: center; }
.coa-original-kicker { display: inline-flex; padding: 5px 8px; color: #245b45; border-radius: 7px; background: #e7f4ec; font-size: .67rem; font-weight: 820; letter-spacing: .025em; text-transform: uppercase; }
.coa-original-summary h3 { margin: 12px 0 6px; font-size: 1.12rem; }
.coa-original-summary > p { margin: 0 0 15px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.coa-original-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 9px; background: var(--line); }
.coa-original-facts > div { min-width: 0; padding: 9px 10px; background: #fff; }
.coa-original-facts small, .coa-original-facts strong { display: block; }
.coa-original-facts small { margin-bottom: 2px; color: var(--muted); font-size: .64rem; }
.coa-original-facts strong { overflow-wrap: anywhere; font-size: .76rem; }
.coa-pdf-link { width: max-content; min-height: 40px; }
.coa-pdf-link svg { width: 15px; }
.coa-document-note { max-width: 570px; margin: 17px auto 0; padding-top: 13px; color: var(--muted); border-top: 1px solid var(--line); font-size: .69rem; line-height: 1.5; }

.assistant-modal { width: min(calc(100% - 28px), 540px); }
.assistant-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 16px; color: var(--muted); font-size: .72rem; }
.demo-mode-pill { padding: 4px 8px; color: #744412; border-radius: 6px; background: #fff0d5; font-weight: 820; }
.chat-log { min-height: 260px; max-height: 390px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; padding: 4px 1px 15px; }
.chat-message { max-width: 88%; padding: 12px 14px; border-radius: 15px; font-size: .87rem; }
.chat-message.bot { align-self: flex-start; background: #eef2ef; border-bottom-left-radius: 4px; }
.chat-message.user { align-self: flex-end; color: var(--white); background: var(--aqua-dark); border-bottom-right-radius: 4px; }
.chat-message a { color: inherit; font-weight: 800; }
.quick-prompts { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.quick-prompt { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--aqua-dark); background: var(--white); cursor: pointer; font-size: .7rem; font-weight: 750; }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.chat-form button { min-width: 50px; padding: 0; }
.voice-demo { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 11px; color: var(--muted); font-size: .71rem; }
.voice-demo button { padding: 5px 8px; border: 0; border-radius: 7px; color: var(--muted); background: #eef1ee; cursor: pointer; }

.logo-directions { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.logo-card { position: relative; min-height: 310px; display: grid; grid-template-rows: 1fr auto; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.logo-card.recommended { border-color: var(--aqua); box-shadow: inset 0 0 0 1px var(--aqua); }
.recommended-label { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 6px 9px; color: var(--white); border-radius: 6px; background: var(--aqua-dark); font-size: .65rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.logo-stage { min-height: 220px; display: grid; place-items: center; padding: 34px; background: #eef2ef; }
.logo-stage.dark { background: var(--ink); }
.logo-stage svg { max-height: 130px; }
.logo-card-copy { padding: 19px; }
.logo-card-copy p { margin: 0; color: var(--muted); font-size: .79rem; }
.tokens { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.token { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.token-color { height: 80px; }
.token-copy { padding: 12px; }
.token-copy strong, .token-copy small { display: block; }
.token-copy small { color: var(--muted); }

.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audit-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.audit-card h3 { display: flex; align-items: center; gap: 9px; }
.audit-card ul { margin: 15px 0 0; padding-left: 19px; color: var(--ink-2); }
.audit-card li + li { margin-top: 8px; }
.audit-state { display: inline-flex; padding: 4px 7px; border-radius: 6px; font-size: .64rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.audit-state.observed { color: #185e46; background: #e4f3ed; }
.audit-state.confirmed { color: #155f67; background: #dff0f1; }
.audit-state.open { color: #744412; background: #fff0d5; }
.audit-state.demo { color: #7d3d3d; background: #f8e4e4; }
.mapping-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.mapping-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 15px; padding: 16px 20px; border-top: 1px solid var(--line); }
.mapping-row:first-child { border-top: 0; color: var(--muted); background: #f1f3f0; font-size: .72rem; font-weight: 820; text-transform: uppercase; }

.site-footer { color: rgba(255,255,255,.78); background: var(--ink); }
.footer-payments { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 34px; padding-bottom: 28px; border-bottom: 1px solid var(--line-dark); }
.footer-payments > span { color: rgba(255,255,255,.5); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-payment-methods { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); width: min(100%,420px); gap: 9px; }
.footer-payment-badge { min-width: 142px; display: grid; grid-template-columns: 30px auto; align-items: center; gap: 9px; padding: 9px 12px; color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; background: rgba(255,255,255,.055); text-decoration: none; }
.footer-payment-badge:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.09); }
.footer-payment-badge[aria-disabled="true"] { opacity: .65; }
.footer-payment-badge > svg { width: 25px; height: 25px; color: var(--gold); }
.footer-payment-badge > span { display: grid; font-size: .72rem; font-weight: 800; line-height: 1.15; }
.footer-payment-badge small { margin-top: 3px; color: rgba(255,255,255,.52); font-size: .57rem; font-weight: 650; }
.footer-payment-crypto > svg { color: #26a17b; }
.footer-main { display: grid; grid-template-columns: 1.3fr repeat(3,1fr); gap: 42px; padding: 48px 0; }
.footer-brand svg { width: 210px; margin-bottom: 20px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.58); font-size: .85rem; }
.footer-col h3 { color: var(--white); font-size: .88rem; letter-spacing: 0; }
.footer-col nav { display: grid; gap: 9px; }
.footer-col a, .footer-col button { width: max-content; padding: 0; color: rgba(255,255,255,.62); border: 0; background: none; cursor: pointer; font-size: .82rem; text-decoration: none; }
.footer-col a:hover, .footer-col button:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.52); font-size: .75rem; }

.mobile-buy-bar { display: none; }
.toast { position: fixed; z-index: 300; right: 20px; bottom: 85px; max-width: 360px; padding: 13px 17px; color: var(--white); border-radius: 11px; background: var(--ink); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }
  .header-inner { gap: 18px; }
  .brand-logo { width: 176px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .hero-grid { grid-template-columns: 1fr .78fr; }
  .hero-set .packshot { width: 235px; }
  .hero-set .solution-packshot { width: 165px; }
  .split { gap: 42px; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .announcement .container { gap: 0; }
  .announcement span:last-child { display: none; }
  .desktop-nav, .header-actions .account-link, .language-switch { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .mobile-menu-btn { display: inline-flex; }
  .mobile-menu nav a { padding-block: 14px; font-size: 1.1rem; }
  .mobile-menu-meta { padding-top: 16px; padding-bottom: max(8px,env(safe-area-inset-bottom)); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 54px 0 38px; }
  .hero-visual { min-height: 470px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .split, .coa-callout-grid, .community-card { grid-template-columns: 1fr; }
  .coa-proof-layout { grid-template-columns: 1fr; }
  .split-copy { max-width: none; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .gallery-main { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
  .logo-directions { grid-template-columns: 1fr; }
  .tokens { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .section { padding: 68px 0; }
  .section-sm { padding: 42px 0; }
  .announcement { min-height: 34px; font-size: .75rem; }
  .demo-rail .container { min-height: 30px; }
  .demo-rail a { display: none; }
  .brand-logo { width: 158px; }
  .header-inner { gap: 6px; }
  .header-actions { gap: 0; }
  .icon-btn { min-width: 39px; padding: 0 7px; }
  h1 { font-size: clamp(2.6rem,13vw,4rem); }
  .hero-grid { padding-top: 46px; gap: 22px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 10px; }
  .hero-proof span { width: 100%; }
  .hero-visual { min-height: 390px; }
  .hero-orbit { top: 5%; right: -20%; width: 390px; height: 390px; }
  .hero-set { inset: 0 0 0; }
  .hero-set .packshot { width: 220px; }
  .hero-set .solution-packshot { width: 145px; margin-left: -42px; }
  .hero-box { right: 0; bottom: 34px; left: 0; }
  .hero-note { left: 6px; bottom: 0; max-width: 190px; }
  .trust-item { padding: 20px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 27px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 42% 1fr; }
  .product-card-media { min-height: 250px; padding: 12px; }
  .product-card-media .packshot { height: 205px; }
  .product-card-body { padding: 17px 15px; }
  .product-card-top { display: block; }
  .included-line { min-height: 0; }
  .card-actions { display: block; }
  .card-actions .btn-secondary { display: none; }
  .box-scene { min-height: 400px; }
  .box-vials .packshot { width: 150px; }
  .box-vials .solution-packshot { width: 125px; }
  .coa-callout { padding: 36px 22px; }
  .doc-sheet { width: 220px; min-height: 295px; }
  .coa-proof-card { padding: 27px 18px 19px; border-radius: 19px; }
  .coa-proof-header { align-items: flex-start; flex-direction: column; gap: 17px; margin-bottom: 18px; }
  .coa-proof-header h2 { font-size: clamp(2rem,10vw,2.8rem); }
  .coa-proof-header .btn { width: 100%; }
  .coa-proof-layout { gap: 12px; }
  .coa-proof-metrics article { padding: 17px 7px; }
  .coa-proof-metrics strong { font-size: .93rem; }
  .coa-proof-metrics span { font-size: .57rem; }
  .coa-proof-document { grid-template-columns: 52px minmax(0,1fr); gap: 12px; padding: 11px; }
  .coa-proof-document > img { width: 52px; height: 67px; }
  .coa-proof-open { grid-column: 1/-1; justify-content: center; padding-top: 8px; border-top: 1px solid var(--line); }
  .coa-proof-trace { justify-content: center; gap: 5px; font-size: .55rem; }
  .info-grid { grid-template-columns: 1fr; }
  .community-card { padding: 26px 20px; }
  .community-options { grid-template-columns: 1fr; }
  .page-hero { padding: 44px 0 32px; }
  .page-hero h1 { max-width:100%; overflow-wrap:anywhere; hyphens:auto; font-size:clamp(2.1rem,10.5vw,3.2rem); }
  body[data-route="about"] .page-hero h1 { overflow-wrap:normal; hyphens:none; font-size:clamp(1.8rem,8vw,3rem); }
  .catalog-toolbar { align-items: start; flex-direction: column; }
  .gallery-stage { min-height: 450px; }
  .gallery-stage .packshot { width: 230px; }
  .gallery-stage .solution-packshot { width: 170px; }
  .gallery-thumbs { overflow-x: auto; }
  .variant-buttons { grid-template-columns: repeat(2,1fr); }
  .buy-row { grid-template-columns: 105px 1fr; }
  .portal-tools { grid-template-columns: 1fr; }
  .coa-table { overflow: visible; border: 0; background: transparent; }
  .coa-head { display: none; }
  .coa-row { grid-template-columns: 1fr auto; margin-bottom: 10px; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
  .coa-row > :nth-child(3), .coa-row > :nth-child(4) { display: none; }
  .coa-row > :nth-child(5) { grid-column: 1/-1; }
  .cart-item { grid-template-columns: 74px 1fr; }
  .cart-item-image { height: 92px; }
  .cart-item-price { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .assistant-launcher { width: 48px; min-height: 48px; padding: 0; justify-content: center; }
  .assistant-launcher span { display: none; }
  .modal { width: calc(100% - 16px); border-radius: 16px; }
  .modal-body { padding: 17px; }
  .document-preview { min-height: 480px; padding: 24px 18px; }
  .coa-original-card { grid-template-columns: 82px minmax(0,1fr); gap: 15px; }
  .coa-original-summary h3 { font-size: 1rem; }
  .coa-original-facts { grid-template-columns: 1fr; }
  .coa-original-facts > div:nth-child(n+5) { display: none; }
  .coa-pdf-link { width: 100%; }
  .audit-grid { grid-template-columns: 1fr; }
  .mapping-table { overflow-x: auto; }
  .mapping-row { min-width: 650px; }
  .tokens { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 20px; padding: 52px 0 38px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .mobile-buy-bar { position: fixed; z-index: 55; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
  .mobile-buy-bar .price { padding-left: 5px; }
  body[data-route="product"] .assistant-launcher { display: none; }
  body[data-route="product"] .contact-dock {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(106px + env(safe-area-inset-bottom));
    display: flex;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .crypto-wallet-main { grid-template-columns: 1fr; gap: 12px; }
  .crypto-wallet-main img { width: 160px; height: 160px; margin: 0 auto; }
  .order-crypto-layout { grid-template-columns: 1fr; }
  .order-crypto-layout img { width: 180px; margin: 0 auto; }
  .footer-payments { align-items: flex-start; flex-direction: column; gap: 13px; }
  .footer-payment-methods { width: 100%; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-payment-badge { min-width: 0; grid-template-columns: 24px minmax(0,1fr); padding: 9px 8px; }
  .footer-payment-crypto { grid-column: auto; }
  .footer-payment-badge > svg { width: 21px; height: 21px; }
  .footer-payment-badge > span { font-size: .63rem; }
  .footer-payment-badge small { font-size: .5rem; }
  .payment-quick-grid { grid-template-columns: 1fr; }
  .payment-quick-grid article { padding: 12px; }
}

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

@media print {
  .announcement, .site-header, .demo-rail, .assistant-launcher, .contact-dock, .site-footer { display: none !important; }
  body { background: white; }
}

/* Revision: authentic shop photography, expanded navigation and compact payments. */
.brand-link > svg, .footer-brand > svg { width: 245px; height: 58px; }
.header-inner { gap: 18px; }
.desktop-nav { gap: 20px; }
.desktop-nav a { font-size: .84rem; white-space: nowrap; }
.payment-card > span > svg { width: 26px; height: 26px; margin-bottom: 0; }
.payment-card { min-height: 0; }
.original-product { margin: 0; min-width: 0; max-width: 100%; }
.original-product figcaption { font-size: .72rem; line-height: 1.35; text-align: center; color: var(--muted); padding: 6px; }
.original-packshot { object-fit: contain; border-radius: 12px; }
.product-card-media { background: #eef1ed; padding: 16px; }
.product-card-media .original-packshot { height: 270px; width: 100%; filter: none; }
.product-card-media .premium-packshot { object-fit: cover; object-position: center; }
.product-card-media .original-product { width: 100%; }
.product-card-top { display: block; }
.product-card-top .price { display: block; margin-top: 10px; }
.hero { min-height: 540px; }
.hero-grid { grid-template-columns: 1.05fr .95fr; padding: 48px 0; gap: 60px; }
.hero h1 { font-size: clamp(2.8rem,4.7vw,4.5rem); }
.hero-visual { min-height: 495px; }
.hero-set { position: relative; inset: auto; display: block; }
.hero-set .original-product { max-width: 340px; margin: auto; }
.hero-set .original-packshot { width: 100%; height: 470px; transform: none; filter: none; object-fit: contain; }
.hero-set .premium-packshot { object-fit: cover; object-position: center; }
.hero-set > .solution-packshot, .hero-box, .hero-orbit { display: none; }
.hero-note { display: none; }
.gallery-stage .original-product { padding: 24px; }
.gallery-stage .original-packshot { width: auto; height: 510px; filter: none; }
.gallery-pair .original-product { max-width: 60%; }
.gallery-pair .original-packshot { max-width: 100%; height: 410px; }
.box-vials .original-product { width: 190px; }
.box-vials .original-packshot { max-width: 100%; height: 320px; object-fit: contain; }
.cart-item-image .original-product { height: 100%; }
.cart-item-image .original-packshot { height: 100%; }
.info-card h2 { font-size: 1.4rem; }
@media(max-width:1100px) { .desktop-nav { gap: 10px; } .brand-link > svg { width: 190px; } }
@media(max-width:860px) { .hero-grid { grid-template-columns: 1fr; gap: 24px; } .hero-visual { min-height: 340px; } .hero-set .original-packshot { height: 360px; } }
@media(max-width:600px) { .brand-link > svg { width: 160px; height: 50px; } .hero-grid { padding-top: 30px; } .hero-proof { margin-top: 20px; } .product-card-media .original-packshot { height: 215px; } .gallery-stage .original-packshot { height: 370px; } .product-card-media { padding: 7px; } }

/* Alternate storefront direction: NOVA-inspired information architecture, Body Peptides identity. */
.demo-links { display: flex; align-items: center; gap: 18px; }
.nova-option {
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  background: #f5f3ed;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.nova-option a { text-decoration: none; }
.nova-option button { color: inherit; }
.nv-wrap { width: min(calc(100% - 52px), 1260px); margin-inline: auto; }
.nv-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17,26,24,.1);
  background: rgba(250,249,245,.95);
  backdrop-filter: blur(18px);
}
.nv-header-inner {
  width: min(calc(100% - 40px), 1420px);
  min-height: 78px;
  display: grid;
  grid-template-columns: 176px minmax(0,1fr) auto;
  align-items: center;
  gap: 22px;
  margin-inline: auto;
}
.nv-logo { display: block; }
.nv-logo svg { width: 176px; height: auto; }
.nv-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px,1.35vw,25px); }
.nv-nav a,
.nv-nav .nv-anchor {
  padding: 8px 0;
  color: #1b2422;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: clamp(.66rem,.76vw,.78rem);
  font-weight: 730;
  line-height: 1.25;
  white-space: nowrap;
}
.nv-nav a:hover,
.nv-nav .nv-anchor:hover { color: var(--aqua-dark); }
.nv-actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.nv-lang { display: flex; align-items: center; gap: 1px; margin-right: 4px; }
.nv-lang button {
  padding: 6px 5px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: .65rem;
  font-weight: 780;
}
.nv-lang button[aria-pressed="true"] { color: var(--aqua-dark); text-decoration: underline; text-underline-offset: 3px; }
.nv-round {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.nv-round:hover { background: rgba(22,127,134,.09); }
.nv-round svg { width: 19px; height: 19px; }
.nv-round > span {
  position: absolute;
  top: 1px;
  right: -1px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding-inline: 3px;
  color: white;
  border-radius: 99px;
  background: var(--aqua-dark);
  font-size: .58rem;
  font-weight: 850;
}
.nv-menu { display: none; }
.nv-mobile-menu { inset: 78px 0 auto; background: #faf9f5; }
.nv-mobile-menu nav a,
.nv-mobile-menu nav button {
  width: 100%;
  padding: 17px 4px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 760;
  text-align: left;
}
.nv-label {
  display: inline-block;
  color: var(--aqua-dark);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.nv-hero {
  position: relative;
  min-height: 680px;
  padding: 66px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 32%, rgba(196,154,89,.18), transparent 27%),
    linear-gradient(180deg,#fbfaf7 0%,#f6f3eb 100%);
}
.nv-hero-grid {
  min-height: 515px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
}
.nv-hero-copy { position: relative; z-index: 2; max-width: 750px; padding: 15px 0 55px; }
.nv-hero h1 {
  max-width: 800px;
  margin: 16px 0 22px;
  color: #0e1715;
  font-size: clamp(3.7rem,6vw,6.5rem);
  font-weight: 760;
  letter-spacing: -.068em;
  line-height: .91;
}
.nv-hero h1 em { color: var(--aqua); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.nv-hero-copy > p { max-width: 620px; margin: 0; color: #5d6865; font-size: 1rem; line-height: 1.7; }
.nv-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.nv-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nv-btn.primary { color: white; background: var(--ink); }
.nv-btn.primary:hover { background: var(--aqua-dark); border-color: var(--aqua-dark); }
.nv-btn.secondary { background: transparent; }
.nv-btn.secondary:hover { background: white; }
.nv-btn.light { color: var(--ink); border-color: white; background: white; }
.nv-hero-media { position: relative; min-height: 500px; display: grid; place-items: center; }
.nv-hero-media .original-product { position: relative; z-index: 2; width: min(100%,420px); }
.nv-hero-media .original-packshot {
  width: 100%;
  height: 510px;
  object-fit: contain;
  filter: drop-shadow(0 35px 28px rgba(17,26,24,.18));
  transform: rotate(5deg);
}
.nv-hero-media .premium-packshot { object-fit: cover; object-position: center; transform: none; }
.nv-hero-media .original-product figcaption { display: none; }
.nv-image-note {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 55px;
  padding: 8px 10px;
  color: #53605d;
  border: 1px solid rgba(17,26,24,.12);
  background: rgba(255,255,255,.78);
  font-size: .65rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.nv-orbit { position: absolute; border: 1px solid rgba(22,127,134,.28); border-radius: 50%; transform: rotate(-18deg); }
.nv-orbit.one { width: 470px; height: 260px; }
.nv-orbit.two { width: 340px; height: 500px; border-color: rgba(196,154,89,.3); transform: rotate(47deg); }
.nv-proof {
  min-height: 99px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(17,26,24,.12);
}
.nv-proof > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; padding: 18px 34px; border-left: 1px solid rgba(17,26,24,.12); }
.nv-proof > div:first-child { padding-left: 0; border-left: 0; }
.nv-proof strong { color: var(--aqua-dark); font-size: 1.35rem; letter-spacing: -.04em; }
.nv-proof span { max-width: 170px; color: #66716e; font-size: .72rem; line-height: 1.4; }
.nv-section { padding: 102px 0; background: #f7f5ef; }
.nv-section:nth-of-type(even) { background: #fbfaf7; }
.nv-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.nv-heading h2,
.nv-set-section h2,
.nv-quality h2,
.nv-faq h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: clamp(2.35rem,4.2vw,4.4rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .99;
}
.nv-heading > a { flex: none; padding-bottom: 6px; color: var(--aqua-dark); font-size: .72rem; font-weight: 830; letter-spacing: .04em; text-transform: uppercase; }
.nv-intro { max-width: 650px; margin: 24px 0 0; color: #65706d; line-height: 1.65; }
.nv-category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 42px; }
.nv-category {
  position: relative;
  min-height: 380px;
  display: block;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(17,26,24,.1);
  background: #ecefe9;
}
.nv-category:nth-child(2) { background: #e8eeee; }
.nv-category:nth-child(3) { background: #f1eadf; }
.nv-category:nth-child(4) { background: #e7ebe4; }
.nv-category > div { position: relative; z-index: 3; padding: 25px; }
.nv-category span { color: #6e7875; font-size: .65rem; font-weight: 750; text-transform: uppercase; }
.nv-category h3 { max-width: 220px; margin: 6px 0 0; font-size: 1.35rem; letter-spacing: -.035em; }
.nv-category b { position: absolute; top: 24px; right: 22px; color: var(--aqua-dark); font-size: 1.2rem; }
.nv-category .original-product { position: absolute; z-index: 1; right: -11%; bottom: -7%; width: 105%; }
.nv-category .original-packshot { width: 100%; height: 300px; object-fit: contain; transform: rotate(4deg); transition: transform .3s ease; }
.nv-category .premium-packshot { object-fit: cover; object-position: center; }
.nv-category .original-product figcaption { display: none; }
.nv-category:hover .original-packshot { transform: rotate(1deg) scale(1.035); }
.nv-tabs { display: flex; gap: 25px; margin-top: 35px; border-bottom: 1px solid rgba(17,26,24,.16); }
.nv-tabs button { padding: 12px 0; color: #7a8481; border: 0; border-bottom: 2px solid transparent; background: none; font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.nv-tabs button.active { color: var(--ink); border-color: var(--aqua); }
.nv-product-row { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; margin-top: 23px; }
.nv-product-card { min-width: 0; background: #fff; border: 1px solid rgba(17,26,24,.09); }
.nv-product-image { min-height: 315px; display: grid; place-items: center; overflow: hidden; background: #eef0eb; }
.nv-product-image .original-product { width: 100%; }
.nv-product-image .original-packshot { width: 100%; height: 292px; object-fit: contain; transition: transform .3s ease; }
.nv-product-image .premium-packshot { object-fit: cover; object-position: center; }
.nv-product-image .original-product figcaption { display: none; }
.nv-product-card:hover .original-packshot { transform: scale(1.035); }
.nv-product-copy { min-height: 166px; padding: 18px; }
.nv-stock { display: block; color: #2b7358; font-size: .58rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.nv-product-copy h3 { margin: 6px 0 13px; font-size: 1rem; letter-spacing: -.02em; }
.nv-strengths { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; margin-bottom: 16px; }
.nv-strengths span { min-width: 27px; padding: 4px 5px; border: 1px solid #cfd5d1; color: #52605c; font-size: .58rem; text-align: center; }
.nv-strengths span.off { color: #a7aeab; text-decoration: line-through; }
.nv-strengths small { color: #8b9491; font-size: .55rem; }
.nv-product-copy > strong { font-size: .9rem; }
.nv-set-section { padding: 105px 0; color: white; background: var(--ink); }
.nv-set-grid { min-height: 570px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 70px; }
.nv-set-section .nv-label { color: #89c4c6; }
.nv-set-section h2 { color: white; }
.nv-set-section p { max-width: 580px; margin: 25px 0 32px; color: rgba(255,255,255,.61); line-height: 1.7; }
.nv-set-visual { min-height: 540px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.11); background: linear-gradient(145deg,#23302d,#0e1513); }
.nv-set-visual .box-scene { width: 100%; min-height: 500px; transform: scale(.9); }
.nv-review-placeholder { background: #eaf0ed !important; }
.nv-review-grid { display: grid; grid-template-columns: .82fr 1.1fr 1.1fr; gap: 12px; margin-top: 42px; }
.nv-score,
.nv-review-card { min-height: 220px; padding: 28px; border: 1px solid rgba(17,26,24,.12); background: rgba(255,255,255,.52); }
.nv-score { display: flex; flex-direction: column; justify-content: space-between; }
.nv-score strong { color: var(--aqua-dark); font-family: Georgia,serif; font-size: 5rem; font-weight: 400; }
.nv-score span { max-width: 230px; color: #5f6b68; font-size: .78rem; line-height: 1.5; }
.nv-review-card > span { color: var(--aqua-dark); font-size: .65rem; font-weight: 850; letter-spacing: .12em; }
.nv-review-card p { margin: 38px 0 0; color: #394744; font-size: 1.06rem; line-height: 1.55; }
.nv-quality { padding: 115px 0; color: white; background: #182421; }
.nv-quality .nv-label { color: #8cc5c8; }
.nv-quality h2 { color: white; }
.nv-quality .nv-intro { color: rgba(255,255,255,.57); }
.nv-quality-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 55px; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.nv-quality-grid article { min-height: 255px; padding: 26px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.nv-quality-grid article > span { color: #8cc5c8; font-size: .62rem; font-weight: 850; }
.nv-quality-grid h3 { margin: 66px 0 13px; color: white; font-size: 1.1rem; }
.nv-quality-grid p { margin: 0; color: rgba(255,255,255,.55); font-size: .79rem; line-height: 1.55; }
.nv-coa-tools { display: grid; grid-template-columns: minmax(0,1fr) 240px; gap: 9px; margin-top: 37px; }
.nv-coa-tools .input,
.nv-coa-tools .select { border-radius: 0; background: rgba(255,255,255,.66); }
.nv-coa-table { margin-top: 12px; border: 1px solid rgba(17,26,24,.12); background: #fff; }
.nv-coa-row { min-height: 67px; display: grid; grid-template-columns: 1.1fr .65fr 1.45fr .7fr .7fr; align-items: center; gap: 16px; padding: 0 22px; border-top: 1px solid rgba(17,26,24,.1); font-size: .78rem; }
.nv-coa-row.head { min-height: 46px; color: #737e7b; border-top: 0; background: #edf0eb; font-size: .59rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.nv-coa-row button { width: max-content; padding: 8px 11px; color: var(--aqua-dark); border: 1px solid rgba(22,127,134,.25); background: #eff7f6; cursor: pointer; font-size: .65rem; font-weight: 800; }
.nv-badge { width: max-content; padding: 5px 7px; color: #276c54; background: #e2f2ec; font-size: .62rem; font-weight: 800; }
.nv-faq { background: #fbfaf7 !important; }
.nv-faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.nv-faq-grid > div:first-child > p { max-width: 390px; color: #66716e; line-height: 1.6; }
.nv-faq details { border-top: 1px solid rgba(17,26,24,.16); }
.nv-faq details:last-child { border-bottom: 1px solid rgba(17,26,24,.16); }
.nv-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 2px; cursor: pointer; font-weight: 720; list-style: none; }
.nv-faq summary::-webkit-details-marker { display: none; }
.nv-faq summary span { color: var(--aqua-dark); font-size: 1.25rem; font-weight: 400; }
.nv-faq details p { max-width: 650px; margin: -4px 0 25px; color: #64706d; font-size: .86rem; line-height: 1.65; }
.nv-footer { padding-top: 75px; color: rgba(255,255,255,.62); background: #0d1513; }
.nv-footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 70px; padding-bottom: 65px; }
.nv-footer-grid > div:first-child svg { width: 245px; height: auto; margin-bottom: 22px; }
.nv-footer-grid > div:first-child p { max-width: 380px; line-height: 1.65; }
.nv-footer-grid h3 { margin: 4px 0 20px; color: white; font-size: .67rem; letter-spacing: .1em; }
.nv-footer-grid a { width: max-content; display: block; margin-top: 12px; color: rgba(255,255,255,.58); font-size: .78rem; }
.nv-footer-grid a:hover { color: white; }
.nv-footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.11); font-size: .66rem; }
body[data-route="nova-edition"] .assistant-launcher { display: none; }

@media (max-width: 1180px) {
  .nv-header-inner { grid-template-columns: 160px 1fr auto; gap: 12px; }
  .nv-logo svg { width: 155px; }
  .nv-nav { gap: 12px; }
  .nv-nav a,
  .nv-nav .nv-anchor { font-size: .63rem; }
  .nv-lang,
  .nv-actions > a[aria-label="Konto"],
  .nv-actions > a[aria-label="Account"] { display: none; }
  .nv-category-grid { grid-template-columns: repeat(2,1fr); }
  .nv-category { min-height: 410px; }
  .nv-category .original-packshot { height: 335px; }
  .nv-product-row { display: flex; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
  .nv-product-card { min-width: 235px; scroll-snap-align: start; }
}

@media (max-width: 900px) {
  .nv-wrap { width: min(calc(100% - 34px),1260px); }
  .nv-header-inner { min-height: 70px; grid-template-columns: 170px 1fr; }
  .nv-logo svg { width: 170px; }
  .nv-nav { display: none; }
  .nv-actions { justify-self: end; }
  .nv-actions > a[aria-label="Konto"],
  .nv-actions > a[aria-label="Account"] { display: grid; }
  .nv-menu { display: grid; }
  .nv-mobile-menu { inset: 70px 0 auto; }
  .nv-hero { min-height: 0; padding-top: 45px; }
  .nv-hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .nv-hero-copy { max-width: 760px; padding-bottom: 0; }
  .nv-hero h1 { font-size: clamp(3.35rem,10vw,5.7rem); }
  .nv-hero-media { min-height: 440px; }
  .nv-hero-media .original-packshot { height: 430px; }
  .nv-proof { min-height: 0; }
  .nv-proof > div { grid-template-columns: 1fr; gap: 6px; padding: 22px; }
  .nv-set-grid { grid-template-columns: 1fr; }
  .nv-review-grid { grid-template-columns: 1fr 1fr; }
  .nv-score { grid-column: 1/-1; min-height: 180px; }
  .nv-quality-grid { grid-template-columns: 1fr 1fr; }
  .nv-faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .nv-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 45px; }
  .nv-footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 600px) {
  .demo-links .text-link:first-child { display: inline; }
  .demo-links .text-link:last-child { display: none; }
  .nv-wrap { width: calc(100% - 28px); }
  .nv-header-inner { width: calc(100% - 18px); min-height: 64px; grid-template-columns: 137px 1fr; gap: 4px; }
  .nv-logo svg { width: 136px; }
  .nv-mobile-menu { inset: 64px 0 auto; }
  .nv-actions { gap: 0; }
  .nv-round { width: 35px; height: 35px; }
  .nv-actions > a[aria-label="Konto"],
  .nv-actions > a[aria-label="Account"] { display: none; }
  .nv-hero { padding-top: 36px; }
  .nv-hero-grid { min-height: 0; }
  .nv-hero-copy { padding-top: 0; }
  .nv-hero h1 { margin-top: 13px; font-size: clamp(3.05rem,14.8vw,4.3rem); line-height: .91; }
  .nv-hero-copy > p { font-size: .91rem; line-height: 1.6; }
  .nv-buttons { display: grid; margin-top: 25px; }
  .nv-btn { width: 100%; }
  .nv-hero-media { min-height: 375px; }
  .nv-hero-media .original-product { width: 295px; }
  .nv-hero-media .original-packshot { height: 360px; }
  .nv-orbit.one { width: 340px; height: 190px; }
  .nv-orbit.two { width: 260px; height: 355px; }
  .nv-image-note { right: 0; bottom: 32px; }
  .nv-proof { grid-template-columns: 1fr; padding: 2px 0 20px; }
  .nv-proof > div { grid-template-columns: 100px 1fr; padding: 18px 0; border-top: 1px solid rgba(17,26,24,.12); border-left: 0; }
  .nv-proof > div:first-child { border-top: 0; }
  .nv-section { padding: 72px 0; }
  .nv-heading { align-items: start; flex-direction: column; gap: 17px; }
  .nv-heading h2,
  .nv-set-section h2,
  .nv-quality h2,
  .nv-faq h2 { font-size: clamp(2.45rem,11vw,3.35rem); }
  .nv-intro { margin-top: 18px; font-size: .9rem; }
  .nv-category-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .nv-category { min-height: 325px; }
  .nv-category .original-product { width: 88%; }
  .nv-category .original-packshot { height: 260px; }
  .nv-tabs { overflow-x: auto; }
  .nv-product-row { margin-right: -14px; }
  .nv-product-card { min-width: 222px; }
  .nv-product-image { min-height: 275px; }
  .nv-product-image .original-packshot { height: 258px; }
  .nv-set-section,
  .nv-quality { padding: 75px 0; }
  .nv-set-grid { min-height: 0; gap: 38px; }
  .nv-set-visual { min-height: 395px; margin-inline: -14px; }
  .nv-set-visual .box-scene { min-height: 395px; transform: scale(.78); }
  .nv-review-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .nv-score { grid-column: auto; }
  .nv-review-card { min-height: 190px; }
  .nv-quality-grid { grid-template-columns: 1fr; margin-top: 37px; }
  .nv-quality-grid article { min-height: 210px; }
  .nv-quality-grid h3 { margin-top: 42px; }
  .nv-coa-tools { grid-template-columns: 1fr; }
  .nv-coa-row { grid-template-columns: 1fr auto; gap: 8px; padding: 15px; }
  .nv-coa-row.head { display: none; }
  .nv-coa-row > :nth-child(2),
  .nv-coa-row > :nth-child(3) { display: none; }
  .nv-coa-row > :last-child { justify-self: end; }
  .nv-faq-grid { gap: 32px; }
  .nv-footer { padding-top: 57px; }
  .nv-footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 22px; }
  .nv-footer-grid > div:first-child { grid-column: 1/-1; }
  .nv-footer-grid > div:last-child { grid-column: 1/-1; }
  .nv-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
}

/* Seamless premium packshots: remove the visible square image matte everywhere. */
.premium-product {
  --packshot-scale: 1.075;
  --packshot-mask-x: 46%;
  --packshot-mask-y: 58%;
  overflow: visible;
}

.premium-packshot {
  max-width: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--packshot-scale));
  transform-origin: center;
  -webkit-mask-image: radial-gradient(
    ellipse var(--packshot-mask-x) var(--packshot-mask-y) at 50% 50%,
    #000 68%,
    rgba(0, 0, 0, 0.94) 80%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse var(--packshot-mask-x) var(--packshot-mask-y) at 50% 50%,
    #000 68%,
    rgba(0, 0, 0, 0.94) 80%,
    transparent 100%
  );
}

/* Standard product cards. */
.product-card-media {
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 44%, #fff 0 46%, #f2fbfd 78%, #eaf7fb 100%);
}

.product-card-media .premium-product {
  width: 118%;
  max-width: none;
  margin-inline: -9%;
}

.product-card-media .premium-packshot {
  width: 100%;
  height: 310px;
  filter: none;
}

.product-card:hover .premium-packshot {
  --packshot-scale: 1.11;
}

/* Main homepage hero. */
.hero-set .premium-product {
  --packshot-mask-x: 46%;
  width: min(118%, 390px);
  max-width: none;
  margin-inline: auto;
}

.hero-set .premium-packshot {
  width: 100%;
  height: 490px;
  filter: none;
}

/* Product gallery, paired set view and open-box scene. */
.gallery-stage .premium-product {
  --packshot-mask-x: 44%;
  width: min(112%, 590px);
  max-width: none;
  padding: 0;
}

.gallery-stage .premium-packshot {
  width: 100%;
  height: auto;
  max-height: 560px;
  filter: none;
}

.gallery-pair .premium-product {
  --packshot-mask-x: 44%;
  width: 60%;
}

.gallery-pair .premium-packshot {
  width: 100%;
  height: auto;
  max-height: 430px;
}

.box-vials .premium-product {
  --packshot-mask-x: 43%;
  --packshot-scale: 1.04;
  overflow: visible;
}

.box-vials .premium-packshot {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

/* Compact cart artwork. */
.cart-item-image {
  overflow: hidden;
  background: #fff;
}

.cart-item-image .premium-product {
  --packshot-mask-x: 46%;
  width: 122%;
  max-width: none;
  height: 122%;
  margin-inline: -11%;
}

.cart-item-image .premium-packshot {
  width: 100%;
  height: 100%;
}

/* NOVA-inspired homepage hero and category tiles. */
.nv-hero-media {
  overflow: hidden;
}

.nv-hero-media .premium-product {
  --packshot-mask-x: 46%;
  width: min(112%, 470px);
  max-width: none;
}

.nv-hero-media .premium-packshot {
  width: 100%;
  height: 530px;
  filter: none;
  transform: scale(var(--packshot-scale));
}

.nv-category .premium-product {
  --packshot-mask-x: 45%;
  --packshot-scale: 1.1;
  right: -13%;
  bottom: -9%;
  width: 112%;
}

.nv-category .premium-packshot {
  width: 100%;
  height: 320px;
  transform: scale(var(--packshot-scale));
}

.nv-category:hover .premium-packshot {
  --packshot-scale: 1.14;
  transform: scale(var(--packshot-scale));
}

/* NOVA-inspired product cards. */
.nv-product-image {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.nv-product-image .premium-product {
  width: 118%;
  max-width: none;
  margin-inline: -9%;
}

.nv-product-image .premium-packshot {
  width: 100%;
  height: 330px;
}

.nv-product-card:hover .premium-packshot {
  --packshot-scale: 1.11;
  transform: scale(var(--packshot-scale));
}

@media (max-width: 860px) {
  .hero-set .premium-product { width: min(114%, 355px); }
  .hero-set .premium-packshot { height: 390px; }
  .gallery-stage .premium-product { width: 112%; }
}

@media (max-width: 600px) {
  .product-card-media .premium-product {
    width: 126%;
    margin-inline: -13%;
  }

  .product-card-media .premium-packshot { height: 265px; }
  .gallery-stage .premium-product { width: 116%; }
  .gallery-stage .premium-packshot { max-height: 400px; }
  .nv-hero-media .premium-product { width: 315px; }
  .nv-hero-media .premium-packshot { height: 385px; }
  .nv-category .premium-product { width: 96%; }
  .nv-category .premium-packshot { height: 285px; }
  .nv-product-image .premium-packshot { height: 285px; }
}

/* Phase 2: researched content, legal pages and clearer support flows. */
.research-profile { border-top: 1px solid var(--line); }

.research-updated {
  align-self: flex-end;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.research-grid {
  display: grid;
  grid-template-columns: .8fr 1.5fr 1fr;
  gap: 16px;
}

.research-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.research-card > span {
  display: block;
  margin-bottom: 28px;
  color: var(--warn);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.research-card h3 { margin: 0 0 10px; }
.research-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.research-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper);
}

.research-notice svg { width: 22px; height: 22px; color: var(--warn); }
.research-notice p { margin: 5px 0 0; color: var(--muted); line-height: 1.55; }

.literature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 18px;
  font-size: .88rem;
}

.literature-links a { color: var(--ink); font-weight: 750; }
.literature-links a svg { width: 15px; height: 15px; vertical-align: -3px; }

.phase-two-band,
.support-cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, #101817, #18312d);
}

.phase-two-band h2,
.support-cta h2 { margin: 0 0 12px; color: #fff; }
.phase-two-band p:not(.eyebrow), .support-cta p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.phase-two-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-end; }
.phase-two-actions .text-link { color: #fff; }
.support-cta { margin-top: 22px; }
.support-cta > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.faq-page { max-width: 900px; }
.faq-page details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.faq-page details:first-child { border-top: 1px solid var(--line); }
.faq-page summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}
.faq-page summary::-webkit-details-marker { display: none; }
.faq-page details[open] summary span { transform: rotate(45deg); }
.faq-page summary span { color: var(--warn); transition: transform .2s ease; }
.faq-page details p { max-width: 760px; margin: -5px 0 24px; color: var(--muted); line-height: 1.7; }

.editorial-grid,
.legal-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}
.editorial-grid > article:first-child > p:last-child,
.legal-document p,
.legal-source p,
.contact-layout p { color: var(--muted); line-height: 1.75; }
.editorial-panel,
.legal-source,
.contact-note {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.editorial-panel ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.8; }
.legal-document { max-width: 720px; }
.legal-document h2 { margin: 0 0 18px; }
.legal-document h3 { margin: 30px 0 8px; }
.legal-document a, .contact-layout a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.legal-source h3 { margin: 18px 0 8px; }
.legal-longform { max-width: 780px; }
.legal-longform ol { margin: 12px 0 0; padding-left: 22px; color: var(--muted); line-height: 1.75; }
.legal-longform li + li { margin-top: 8px; }
.legal-updated { font-size: .8rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.legal-template { margin-top: 14px; padding: 20px; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: #fff; }
.legal-template p:last-child { margin-bottom: 0; }
.withdrawal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 30px; }
.site-footer .withdrawal-link { color: #fff; font-weight: 800; text-decoration-color: var(--gold); }

.legal-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 20px 0 10px;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.45;
}
.legal-check input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--aqua); }
.legal-check a, .checkout-legal-links a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.checkout-legal-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: .78rem; }

@media (max-width: 860px) {
  .research-grid,
  .phase-two-band,
  .support-cta,
  .editorial-grid,
  .legal-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .phase-two-actions,
  .support-cta > div:last-child { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .research-card { padding: 20px; }
  .research-card > span { margin-bottom: 18px; }
  .research-updated { align-self: auto; }
  .phase-two-actions .btn,
  .support-cta .btn { width: 100%; }
}

/* Phase 2 image integration: real packaging and customer-supplied photography. */
.premium-box-photo {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(145deg, #faf9f4, #edf4f1);
}

.premium-box-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.box-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.set-delivery-section {
  padding-block: 64px;
  background:
    radial-gradient(circle at 88% 12%, rgba(35,136,162,.09), transparent 30%),
    var(--white);
}

.set-delivery-section > .container {
  --set-media-height: clamp(380px, 31.25vw, 430px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(390px, .96fr);
  gap: 18px 14px;
  align-items: stretch;
}

.set-section-heading {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-bottom: 18px;
}

.set-section-heading h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.8vw, 3.55rem);
  line-height: .98;
}

.set-section-heading .lead { max-width: 700px; margin-bottom: 0; font-size: 1rem; }

.set-overview-grid {
  display: contents;
}

.set-box-showcase {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: var(--set-media-height);
}
.set-box-showcase .premium-box-photo,
.set-box-showcase .homepage-box-photo img { height: 100%; }
.set-box-showcase .homepage-box-photo img { min-height: 520px; }

.set-details {
  grid-column: 3;
  grid-row: 2;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f7faf8;
  box-shadow: var(--shadow-sm);
}

.set-equation {
  display: grid;
  grid-template-columns: 1fr auto 1.32fr auto 1.16fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.set-equation > span {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 12px;
  border: 1px solid #cadbd6;
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  font-size: .78rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
}

.set-equation b {
  color: var(--aqua-dark);
  font-size: 1.18rem;
}

.set-equation i {
  color: var(--gold-dark);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 800;
}

.set-content-list { display: none; }
.set-content-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.set-content-list article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--ink);
  font-size: .69rem;
  font-weight: 850;
}
.set-content-list h3 { margin: 0 0 4px; font-size: 1rem; }
.set-content-list p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.set-order-note {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 0;
  padding: 12px 13px;
  color: #194c47;
  border: 1px solid #bcdad3;
  border-radius: 12px;
  background: #eaf6f2;
  font-size: .8rem;
  font-weight: 720;
  line-height: 1.45;
}
.set-order-note svg { width: 20px; }

.homepage-box-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.box-photo-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(17,26,24,.72);
  backdrop-filter: blur(8px);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.packaging-proof-strip {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
  height: var(--set-media-height);
  min-height: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.packaging-proof-strip figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17,26,24,.06);
}

.packaging-proof-strip .proof-image {
  height: auto;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #eef3f0;
}
.packaging-proof-strip picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.packaging-proof-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform .25s ease;
}
.packaging-proof-strip figure:hover img { transform: scale(1.025); }

.packaging-proof-strip figure img { object-position: 50% 50%; }
.packaging-proof-strip figcaption {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 11px 12px 13px;
}
.packaging-proof-strip figcaption span { display: none; }
.packaging-proof-strip figcaption strong { font-size: .72rem; line-height: 1.2; }
.packaging-proof-strip figcaption small {
  display: none;
}
.packaging-proof-strip figure:nth-child(3) { display: grid; }

.gallery-box-photo {
  position: relative;
  width: 100%;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gallery-box-photo .premium-box-photo { border-radius: 0; }
.gallery-box-photo img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
}

.gallery-box-photo > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 9px 12px;
  border-radius: 10px;
  color: #fff;
  background: rgba(17,26,24,.76);
  backdrop-filter: blur(8px);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-align: center;
}

.customer-feedback {
  border-top: 1px solid var(--line);
  background: #eaf0ed;
}

.section-intro {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.customer-photo-note {
  align-self: end;
  padding: 7px 11px;
  border: 1px solid rgba(17,26,24,.13);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 800;
}

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

.customer-photo-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17,26,24,.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(17,26,24,.07);
}

.customer-photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d1c6;
}

.customer-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transition: transform .35s ease;
}

.customer-photo-card:hover img { transform: scale(1.025); }
.customer-photo-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 16px 17px;
}
.customer-photo-card figcaption span {
  color: var(--aqua-dark);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.customer-photo-card figcaption strong { font-size: .86rem; }

.customer-review-heading { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr); gap: 34px; align-items: end; margin-bottom: 24px; }
.review-trust-summary { padding: 20px 22px; color: #fff; border-radius: 16px; background: var(--ink); box-shadow: 0 16px 34px rgba(17,26,24,.14); }
.review-trust-summary strong, .review-trust-summary > span:last-child { display: block; }
.review-trust-summary strong { margin-top: 8px; font-size: .9rem; }
.review-trust-summary > span:last-child { margin-top: 4px; color: rgba(255,255,255,.62); font-size: .66rem; line-height: 1.45; }
.review-stars { display: inline-flex; color: var(--gold); font-size: .98rem; letter-spacing: .11em; line-height: 1; }
.review-trust-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; margin-bottom: 16px; border: 1px solid rgba(17,26,24,.1); border-radius: 13px; background: rgba(17,26,24,.1); }
.review-trust-points span { min-height: 50px; display: flex; align-items: center; gap: 9px; padding: 11px 14px; color: var(--muted); background: rgba(255,255,255,.72); font-size: .7rem; font-weight: 740; }
.review-trust-points svg { width: 17px; min-width: 17px; color: var(--aqua); }
.customer-review-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.customer-review-card { min-width: 0; overflow: hidden; border: 1px solid rgba(17,26,24,.11); border-radius: 16px; background: #fff; box-shadow: 0 12px 32px rgba(17,26,24,.06); }
.customer-review-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #d9d2c8; }
.customer-review-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 47%; transition: transform .35s ease; }
.customer-review-card:hover .customer-review-photo img { transform: scale(1.025); }
.customer-review-photo > span { position: absolute; right: 9px; bottom: 9px; left: 9px; width: max-content; max-width: calc(100% - 18px); padding: 5px 7px; color: #fff; border-radius: 6px; background: rgba(17,26,24,.77); backdrop-filter: blur(7px); font-size: .56rem; font-weight: 790; }
.customer-review-body { padding: 16px; }
.customer-review-body > header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.customer-review-body .review-stars { font-size: .78rem; }
.review-sample-badge { padding: 4px 6px; color: #744412; border-radius: 6px; background: #fff0d5; font-size: .53rem; font-weight: 820; letter-spacing: .03em; text-transform: uppercase; white-space: nowrap; }
.customer-review-body blockquote { min-height: 112px; margin: 16px 0 17px; color: #2e3b38; font-size: .82rem; line-height: 1.58; }
.customer-review-body footer { display: flex; align-items: end; justify-content: space-between; gap: 10px; padding-top: 13px; border-top: 1px solid var(--line); }
.customer-review-body footer strong, .customer-review-body footer span { display: block; }
.customer-review-body footer strong { font-size: .72rem; }
.customer-review-body footer span { color: var(--muted); font-size: .58rem; text-align: right; }
.review-transparency-note { display: flex; align-items: flex-start; gap: 9px; margin: 17px 0 0; color: var(--muted); font-size: .67rem; line-height: 1.5; }
.review-transparency-note svg { width: 16px; min-width: 16px; margin-top: 1px; color: var(--aqua); }

@media (max-width: 980px) {
  .set-delivery-section > .container { --set-media-height: clamp(420px,56vw,520px); grid-template-columns: minmax(0,1fr) 130px; }
  .set-box-showcase { grid-column: 1; grid-row: 2; }
  .set-details { grid-column: 1 / -1; grid-row: 3; }
  .packaging-proof-strip { grid-column: 2; grid-row: 2; grid-template-columns: 1fr; }
  .set-box-showcase .homepage-box-photo img { min-height: 460px; }
  .packaging-proof-strip .proof-image { height: auto; }
  .customer-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .customer-review-heading { grid-template-columns: 1fr; gap: 20px; }
  .review-trust-summary { max-width: 520px; }
  .customer-review-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 600px) {
  .gallery-box-photo,
  .gallery-box-photo img { min-height: 450px; }
  .gallery-box-photo img { object-fit: cover; }
  .box-photo-label { right: 10px; bottom: 10px; left: 10px; text-align: center; }
  .set-section-heading { margin-bottom: 24px; }
  .set-section-heading h2 { font-size: clamp(2.15rem, 10.7vw, 3.15rem); }
  .set-delivery-section > .container { --set-media-height: clamp(250px,70vw,300px); width: min(calc(100% - 28px),var(--max)); grid-template-columns: minmax(0,1fr) 92px; gap: 10px; }
  .set-section-heading { margin-bottom: 14px; }
  .set-box-showcase .homepage-box-photo img { min-height: 340px; }
  .set-details { padding: 16px; }
  .set-equation { grid-template-columns: 1fr; gap: 8px; }
  .set-equation > span { min-height: 66px; grid-template-columns: auto 1fr; align-items: center; text-align: left; }
  .set-equation i { display: none; }
  .packaging-proof-strip { gap: 8px; }
  .packaging-proof-strip .proof-image { height: auto; padding: 0; }
  .packaging-proof-strip figcaption { min-height: 30px; padding: 8px 7px 9px; }
  .packaging-proof-strip figcaption span { display: none; }
  .packaging-proof-strip figcaption strong { font-size: .64rem; line-height: 1.2; }
  .customer-photo-grid { display: flex; gap: 12px; margin-right: -14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 14px 8px 0; }
  .customer-photo-card { flex: 0 0 78%; scroll-snap-align: start; }
  .customer-review-heading { margin-bottom: 18px; }
  .review-trust-summary { padding: 17px 18px; }
  .review-trust-points { grid-template-columns: 1fr; }
  .review-trust-points span { min-height: 43px; }
  .customer-review-grid { display: flex; gap: 12px; margin-right: -14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 14px 8px 0; }
  .customer-review-card { flex: 0 0 84%; scroll-snap-align: start; }
  .customer-review-body blockquote { min-height: 94px; }
}

@media (prefers-reduced-motion: reduce) {
  .customer-photo-frame img { transition: none; }
  .customer-review-photo img { transition: none; }
}

/* BODY-PEPTIDES Research Journal */
.journal-home { background: #f5f8f6; }
.journal-home-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.journal-grid { margin-top: 28px; }
.journal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17,26,24,.07);
}
.journal-grid .journal-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(250px,.9fr) minmax(0,1.1fr);
}
.journal-cover {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.24), transparent 24%),
    linear-gradient(145deg,#1b6f74,#092c2f);
}
.journal-cover::before,
.journal-cover::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.journal-cover::before { width: 180px; height: 180px; right: -34px; top: -38px; }
.journal-cover::after { width: 82px; height: 82px; right: 52px; top: 51px; }
.journal-cover-quality { background: radial-gradient(circle at 82% 18%,rgba(255,255,255,.22),transparent 24%),linear-gradient(145deg,#176f75,#092c2f); }
.journal-cover-lab { background: radial-gradient(circle at 82% 18%,rgba(255,255,255,.18),transparent 24%),linear-gradient(145deg,#324a47,#111b1a); }
.journal-cover-shop { background: radial-gradient(circle at 82% 18%,rgba(255,255,255,.2),transparent 24%),linear-gradient(145deg,#b58b4d,#604728); }
.journal-cover span { position: relative; z-index: 1; max-width: 90%; font-size: clamp(2.1rem,4vw,4.6rem); font-weight: 900; letter-spacing: -.06em; line-height: .92; }
.journal-cover small { position: relative; z-index: 1; font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.journal-card-copy { padding: 24px; }
.journal-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.journal-meta span:first-child { color: var(--aqua-dark); }
.journal-card h2 { margin: 13px 0 10px; font-size: clamp(1.35rem,2.2vw,2rem); line-height: 1.08; letter-spacing: -.035em; }
.journal-card h2 a { color: inherit; }
.journal-card p { margin: 0 0 20px; color: var(--muted); line-height: 1.62; }

.journal-intro {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(320px,1.2fr);
  gap: 36px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.journal-intro h2 { margin: 5px 0 0; font-size: clamp(2rem,4vw,3.6rem); line-height: .98; }
.journal-intro > p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.journal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.journal-filter {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  cursor: pointer;
}
.journal-filter[aria-pressed="true"] { color: #fff; border-color: var(--ink); background: var(--ink); }
.journal-disclaimer { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 30px; padding: 22px 24px; border: 1px solid #bcdad3; border-radius: 16px; color: #194c47; background: #eaf6f2; }
.journal-disclaimer p { margin: 0; }

.journal-article-hero { padding: clamp(44px,7vw,90px) 0; background: linear-gradient(180deg,#edf7f5,#f8faf8); }
.journal-article-heading { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: clamp(28px,6vw,76px); align-items: center; margin-top: 38px; }
.journal-article-heading h1 { margin: 18px 0; max-width: 900px; font-size: clamp(2.7rem,6vw,6rem); line-height: .94; letter-spacing: -.06em; }
.journal-article-heading .lead { max-width: 780px; }
.journal-article-heading .journal-cover { min-height: 340px; border-radius: 24px; box-shadow: 0 24px 70px rgba(17,26,24,.14); }
.journal-article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: clamp(36px,7vw,96px); align-items: start; padding-top: 62px; padding-bottom: 80px; }
.journal-article-body { max-width: 790px; }
.journal-purpose { margin: 0 0 42px; padding: 16px 18px; border-left: 3px solid var(--gold); color: #5e513d; background: #fbf7ef; }
.journal-article-body section { margin-top: 46px; }
.journal-article-body h2 { margin: 0 0 14px; font-size: clamp(1.7rem,3vw,2.55rem); letter-spacing: -.035em; }
.journal-article-body p { margin: 0; color: #40504d; font-size: 1.05rem; line-height: 1.82; }
.journal-sources { padding-top: 32px; border-top: 1px solid var(--line); }
.journal-sources ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.journal-sources a { color: var(--aqua-dark); font-weight: 800; }
.journal-article-aside { position: sticky; top: 130px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #f7faf8; }
.journal-article-aside h3 { margin: 18px 0 8px; }
.journal-article-aside p { color: var(--muted); font-size: .84rem; line-height: 1.6; }
.journal-related { border-top: 1px solid var(--line); }

@media (max-width: 980px) {
  .journal-home-grid,
  .journal-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .journal-grid .journal-card.featured { grid-column: span 2; }
  .journal-article-heading { grid-template-columns: 1fr; }
  .journal-article-heading .journal-cover { min-height: 260px; }
  .journal-article-layout { grid-template-columns: 1fr; }
  .journal-article-aside { position: static; }
}

@media (max-width: 650px) {
  .journal-home-grid,
  .journal-grid { grid-template-columns: 1fr; }
  .journal-grid .journal-card.featured { grid-column: auto; display: block; }
  .journal-intro { grid-template-columns: 1fr; gap: 16px; }
  .journal-cover { min-height: 210px; }
  .journal-card-copy { padding: 20px; }
  .journal-filters { flex-wrap: nowrap; margin-right: -14px; padding: 0 14px 6px 0; overflow-x: auto; }
  .journal-filter { flex: 0 0 auto; }
  .journal-disclaimer { grid-template-columns: 1fr; }
  .journal-article-heading { margin-top: 26px; }
  .journal-article-heading h1 { font-size: clamp(2.4rem,13vw,4rem); }
  .journal-article-layout { padding-top: 38px; padding-bottom: 54px; }
}

/* Bundle calculator + research navigator */
.desktop-nav .bundle-nav { color: var(--aqua-dark); }
.bundle-whisper { padding: 0 0 34px; }
.bundle-whisper a { min-height: 74px; display: grid; grid-template-columns: 40px minmax(0,1fr) auto; gap: 16px; align-items: center; padding: 14px 18px; border: 1px solid #d6e2de; border-radius: 16px; background: rgba(255,255,255,.76); box-shadow: 0 8px 24px rgba(17,26,24,.05); text-decoration: none; }
.bundle-whisper a:hover { border-color: #9fc9c5; background: #fff; }
.bundle-whisper-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--aqua-dark); font-weight: 900; }
.bundle-whisper a > span:nth-child(2) { display: grid; gap: 2px; }
.bundle-whisper small { color: var(--muted); font-size: .78rem; }
.bundle-whisper b { display: flex; align-items: center; gap: 7px; color: var(--aqua-dark); font-size: .8rem; }
.bundle-whisper b svg { width: 17px; }
.section-heading-actions, .catalog-toolbar-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; align-items: center; }
.discount-nav-link { padding: 7px 10px; border-radius: 999px; color: var(--aqua-dark); background: var(--aqua-soft); font-size: .72rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.discount-nav-link:hover { color: #fff; background: var(--aqua-dark); }
.product-bundle-path { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; margin-top: 20px; padding: 12px 14px; border: 1px solid #cae0dc; border-radius: 12px; color: var(--ink); background: #f0f8f6; font-size: .72rem; text-decoration: none; }
.product-bundle-path span { color: var(--aqua-dark); font-weight: 850; }
.product-bundle-path strong { font-size: .72rem; }
.product-bundle-path b { color: var(--aqua-dark); }

.bundle-page { background: linear-gradient(180deg,#f7f7f3,#edf3f0); }
.bundle-tiers { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 26px; }
.bundle-tiers article { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.72); }
.bundle-tiers article:nth-child(2) { border-color: #e3d2b6; background: #fcf7ee; }
.bundle-tiers article:nth-child(3) { border-color: #aed9d5; background: #eff9f7; }
.bundle-tiers article:nth-child(4) { color: #fff; border-color: var(--ink); background: var(--ink); }
.bundle-tiers article > span { grid-row: 1/3; color: var(--gold); font-size: .7rem; font-weight: 850; }
.bundle-tiers strong { font-size: 1.35rem; line-height: 1; }
.bundle-tiers small { color: var(--muted); }
.bundle-tiers article:nth-child(4) small { color: rgba(255,255,255,.64); }
.bundle-layout { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 24px; align-items: start; }
.bundle-products { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.bundle-products-head { display: flex; justify-content: space-between; gap: 22px; align-items: end; padding: 27px 28px; border-bottom: 1px solid var(--line); }
.bundle-products-head h2 { margin: 0; font-size: clamp(1.65rem,3vw,2.5rem); }
.bundle-product { min-height: 174px; display: grid; grid-template-columns: 145px minmax(0,1fr) 135px; gap: 22px; align-items: center; padding: 16px 24px 16px 14px; border-bottom: 1px solid var(--line); }
.bundle-product:last-child { border-bottom: 0; }
.bundle-product:hover { background: #f8fbfa; }
.bundle-product-image { height: 140px; display: grid; place-items: center; overflow: hidden; border-radius: 14px; background: linear-gradient(145deg,#ecf5f4,#fff); }
.bundle-product-image .premium-product { width: 128%; }
.bundle-product-image .premium-packshot { width: 100%; height: 165px; object-fit: contain; }
.bundle-product-copy h3 { margin: 3px 0 2px; }
.bundle-product-copy > small { display: block; margin-bottom: 12px; color: var(--muted); }
.bundle-product-copy label { display: grid; grid-template-columns: auto minmax(160px,260px); gap: 12px; align-items: center; color: var(--muted); font-size: .74rem; font-weight: 800; }
.bundle-product-copy .select { min-height: 42px; padding: 8px 34px 8px 12px; }
.bundle-stock { color: var(--success); font-size: .7rem; font-weight: 850; }
.bundle-product-buy { display: grid; gap: 14px; justify-items: stretch; }
.bundle-product-buy > strong { font-size: 1.1rem; text-align: right; }
.bundle-product-buy .quantity-control { min-height: 44px; }
.bundle-aside { position: sticky; top: 126px; }
.bundle-live-summary { padding: 25px; border: 1px solid #c8d9d5; border-radius: 22px; background: var(--white); box-shadow: 0 18px 55px rgba(17,26,24,.12); }
.bundle-summary-head { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.bundle-summary-head span { color: var(--muted); font-size: .8rem; }
.bundle-summary-head strong { font-size: 1.15rem; }
.bundle-meter { position: relative; height: 9px; margin: 28px 7px 24px; border-radius: 999px; background: #e3eae7; }
.bundle-meter > span { position: absolute; inset: 0 auto 0 0; border-radius: inherit; background: linear-gradient(90deg,var(--gold),var(--aqua)); transition: width .25s ease; }
.bundle-meter i { position: absolute; top: 17px; color: var(--muted); font-size: .65rem; font-style: normal; font-weight: 850; }
.bundle-meter .at-four { left: 50%; }
.bundle-meter .at-two { left: 25%; }
.bundle-meter .at-eight { right: 0; }
.bundle-next { min-height: 44px; margin: 0 0 22px; padding: 11px 13px; border-radius: 10px; color: #5e513d; background: #fbf5e9; font-size: .78rem; }
.bundle-next.unlocked { color: #165a4b; background: #e9f6f1; }
.bundle-saving, .bundle-saving strong { color: var(--success); }
.bundle-live-summary .btn { margin-top: 24px; }
.bundle-live-summary .bundle-reset { display: block; margin: 13px auto 0; }
.bundle-fineprint { margin: 22px 0 0; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; line-height: 1.55; }
.cart-bundle-hint { display: block; margin-top: 18px; padding: 11px 13px; border-radius: 10px; color: var(--aqua-dark); background: var(--aqua-soft); font-size: .76rem; font-weight: 800; text-decoration: none; }
.cart-bundle-hint.reached { color: var(--success); background: #e8f5ef; }

.navigator-page { background: linear-gradient(180deg,#f7f7f3,#edf3f0); }
.navigator-boundary { display: grid; grid-template-columns: 44px 1fr; gap: 16px; margin-bottom: 24px; padding: 19px 22px; border: 1px solid #bcdad3; border-radius: 16px; color: #194c47; background: #eaf6f2; }
.navigator-boundary svg { width: 29px; }
.navigator-boundary p { margin: 4px 0 0; color: #39645f; font-size: .88rem; }
.navigator-layout { display: grid; grid-template-columns: 340px minmax(0,1fr); gap: 24px; align-items: start; }
.navigator-controls { position: sticky; top: 126px; display: grid; gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.navigator-controls h2 { margin: -4px 0 4px; font-size: 1.75rem; }
.navigator-controls label { display: grid; gap: 7px; color: var(--muted); font-size: .76rem; font-weight: 800; }
.navigator-engine-note { margin: 5px 0 0; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; line-height: 1.55; }
.navigator-results { min-width: 0; }
.navigator-results-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin: 8px 0 20px; }
.navigator-results-head h2 { margin: 0; font-size: clamp(1.7rem,3vw,2.6rem); }
.navigator-results-head > span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.navigator-result-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.navigator-result { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.navigator-rank { position: absolute; z-index: 2; top: 14px; left: 14px; width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: .68rem; font-weight: 850; }
.navigator-result-image { height: 225px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg,#eaf5f3,#fff); }
.navigator-result-image .premium-product { width: 120%; }
.navigator-result-image .premium-packshot { height: 270px; object-fit: contain; }
.navigator-result > div:last-child { padding: 22px; }
.navigator-result > div > small { color: var(--aqua-dark); font-size: .7rem; font-weight: 800; }
.navigator-result h3 { margin: 6px 0 8px; font-size: 1.45rem; }
.navigator-result p { min-height: 70px; margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.navigator-result-meta { display: grid; gap: 4px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line); }
.navigator-result-meta span { color: var(--muted); font-size: .73rem; }
.navigator-result-actions { display: flex; gap: 9px; margin-top: 17px; }
.navigator-result-actions .btn { flex: 1; }

@media (max-width: 1080px) {
  .desktop-nav a { font-size: .76rem; }
  .desktop-nav { gap: 10px; }
  .bundle-layout { grid-template-columns: 1fr 315px; }
  .bundle-product { grid-template-columns: 120px minmax(0,1fr) 120px; gap: 16px; }
  .navigator-layout { grid-template-columns: 300px minmax(0,1fr); }
}

@media (max-width: 860px) {
  .bundle-layout, .navigator-layout { grid-template-columns: 1fr; }
  .bundle-aside, .navigator-controls { position: static; }
  .bundle-aside { order: -1; }
}

@media (max-width: 650px) {
  .bundle-whisper { padding-bottom: 22px; }
  .bundle-whisper a { grid-template-columns: 36px 1fr; gap: 12px; padding: 13px 14px; }
  .bundle-whisper-icon { width: 36px; height: 36px; }
  .bundle-whisper b { grid-column: 2; margin-top: -4px; }
  .section-heading-actions, .catalog-toolbar-meta { justify-content: flex-start; }
  .product-bundle-path { grid-template-columns: 1fr auto; }
  .product-bundle-path strong { grid-column: 1/-1; grid-row: 2; }
  .bundle-tiers { grid-template-columns: repeat(2,1fr); }
  .bundle-tiers article { min-height: 74px; }
  .bundle-products-head { display: grid; padding: 22px 18px; }
  .bundle-product { grid-template-columns: 92px minmax(0,1fr); gap: 14px; padding: 14px; }
  .bundle-product-image { height: 118px; }
  .bundle-product-image .premium-packshot { height: 138px; }
  .bundle-product-copy label { grid-template-columns: 1fr; gap: 4px; }
  .bundle-product-buy { grid-column: 2; grid-template-columns: 1fr 120px; align-items: center; }
  .bundle-product-buy > strong { text-align: left; }
  .navigator-boundary { grid-template-columns: 1fr; }
  .navigator-result-grid { grid-template-columns: 1fr; }
  .navigator-results-head { display: grid; }
  .navigator-results-head > span { width: max-content; }
}
:root { --contact-qr-size: 180px; }
.contact-qr-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; max-width:780px; margin-inline:auto; }
.contact-qr-card { min-width:0; padding:24px 16px; border:1px solid #d7e1de; border-radius:24px; background:#fff; text-align:center; }
.contact-qr-card h2 { display:flex; align-items:center; justify-content:center; gap:8px; margin:0 0 16px; font-size:22px; }
.contact-qr-card h2 svg { width:24px; height:24px; }
.contact-qr-card p { font-size:14px; margin:14px 0; }
.contact-qr-card .btn { white-space:normal; min-height:44px; }
.contact-qr-frame { position:relative; display:block; width:min(var(--contact-qr-size),100%); aspect-ratio:1; overflow:hidden; margin-inline:auto; background:white; }
.contact-qr-frame img { position:absolute; max-width:none; height:auto; }
/* CSS framing only: the uploaded QR originals remain byte-for-byte unchanged. */
.contact-qr-whatsapp img { width:203.4483%; left:-51.7241%; top:-171.7241%; }
.contact-qr-telegram img { width:166.4789%; left:-33.2394%; top:-123.9437%; }
@media(max-width:520px) { .contact-qr-grid { gap:12px; } .contact-qr-card { padding:18px 10px; border-radius:18px; } .contact-qr-card h2 { font-size:18px; gap:6px; } .contact-qr-card .btn { padding-inline:10px; font-size:13px; } }
