:root {
  --bg: #06101f;
  --bg-deep: #08162a;
  --bg-panel: rgba(10, 20, 37, 0.82);
  --surface: #f5f2ea;
  --surface-soft: #ebe5d8;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(10, 20, 37, 0.1);
  --text: #f7f7f3;
  --muted: #aab7cb;
  --ink: #0f1b2d;
  --ink-soft: #425067;
  --gold: #c7a15a;
  --gold-soft: #e8ca94;
  --cyan: #82bdd7;
  --green: #25d366;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(100% - 32px, 1180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(130, 189, 215, 0.12), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(199, 161, 90, 0.12), transparent 18%),
    linear-gradient(180deg, #050c18 0%, #091426 42%, #06101f 100%);
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 90, 0.28);
  background: rgba(199, 161, 90, 0.08);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #8a6323;
  border-color: rgba(138, 99, 35, 0.16);
  background: rgba(199, 161, 90, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 12, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: headerGlow 10s ease-in-out infinite alternate;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 3px 0;
}

.brand-full-logo {
  width: clamp(170px, 16vw, 238px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(199, 161, 90, 0.12));
}

.header-links {
  display: none;
  align-items: center;
  gap: 16px;
}

.header-links a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 243, 0.78);
  text-decoration: none;
}

.header-links a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta,
.mobile-cta,
.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.mobile-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.header-cta,
.mobile-cta {
  background: var(--green);
  color: white;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.22);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(90vw, 420px);
  background:
    radial-gradient(circle at 0% 0%, rgba(130, 189, 215, 0.13), transparent 34%),
    radial-gradient(circle at 100% 8%, rgba(199, 161, 90, 0.12), transparent 28%),
    rgba(7, 16, 31, 0.98);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  z-index: 60;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
}

.mobile-menu-top img {
  width: 190px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(199, 161, 90, 0.12));
}

.menu-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.menu-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  text-decoration: none;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--text);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.045), rgba(130, 189, 215, 0.035)),
    rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mobile-menu-item:hover {
  transform: translateY(-1px);
  color: var(--text);
  background:
    linear-gradient(110deg, rgba(232, 202, 148, 0.12), rgba(130, 189, 215, 0.08)),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(232, 202, 148, 0.2);
}

.mobile-menu-item-primary {
  background:
    linear-gradient(110deg, rgba(199, 161, 90, 0.16), rgba(130, 189, 215, 0.08)),
    rgba(199, 161, 90, 0.055);
  border-color: rgba(232, 202, 148, 0.4);
}

.mobile-menu-item strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-copy {
  margin: 24px 0 22px;
  color: rgba(170, 183, 203, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.menu-overlay,
.age-gate {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-overlay {
  background: rgba(0, 0, 0, 0.58);
  z-index: 50;
}

.menu-overlay.is-open,
.age-gate.is-open {
  opacity: 1;
  pointer-events: auto;
}

.age-gate {
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.age-gate-card {
  width: min(100%, 620px);
  max-width: calc(100vw - 28px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 40px);
  background:
    radial-gradient(circle at top center, rgba(130, 189, 215, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 16, 31, 0.98), rgba(8, 20, 38, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.age-gate-card h2,
.hero-copy h1,
.section-heading h2,
.feature-copy h2,
.closing-copy h2,
.footer-brand h3 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: 0;
}

.age-gate-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.age-gate-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.age-gate-card strong {
  color: var(--text);
  font-weight: 800;
}

.age-link {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
}

.age-link:hover {
  color: var(--text);
}

.age-gate-note {
  margin: 16px 0 0;
  color: rgba(170, 183, 203, 0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.age-gate-actions button {
  justify-content: center;
  min-height: 54px;
  width: 100%;
}

.age-decline {
  background: rgba(255, 255, 255, 0.03);
}

.age-accept {
  text-transform: uppercase;
}

.age-remember {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(247, 247, 243, 0.86);
  font-weight: 600;
}

.age-remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-soft);
}

.button-primary {
  color: #0b1628;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(199, 161, 90, 0.4);
  box-shadow: 0 18px 36px rgba(199, 161, 90, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-ghost {
  color: var(--ink);
  background: rgba(15, 27, 45, 0.06);
  border: 1px solid rgba(15, 27, 45, 0.12);
}

.trust-ticker {
  display: flex;
  overflow: hidden;
  gap: 26px;
  min-height: 48px;
  align-items: center;
  background: linear-gradient(90deg, #c7a15a, #e8ca94 45%, #c7a15a);
  border-bottom: 1px solid rgba(6, 16, 31, 0.18);
  color: #07101f;
}

.trust-ticker-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  animation: tickerScroll 24s linear infinite;
}

.trust-ticker span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-ticker span::after {
  content: "✦";
  margin-left: 28px;
  color: rgba(6, 16, 31, 0.55);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 26px));
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 92px);
  padding: clamp(42px, 8vw, 82px) 0 34px;
  display: grid;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(199, 161, 90, 0.16), transparent 60%);
}

.hero::after {
  width: 480px;
  height: 480px;
  left: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(130, 189, 215, 0.12), transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.hero-grid-solo {
  max-width: 900px;
}

.hero-bg-visual {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
}

.hero-bg-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.98) 0%, rgba(6, 16, 31, 0.82) 43%, rgba(6, 16, 31, 0.66) 76%, rgba(6, 16, 31, 0.84) 100%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  z-index: 1;
}

.hero-bg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.8) contrast(1.08);
}

.hero-copy-compact {
  max-width: 820px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(3.4rem, 12vw, 7rem);
  line-height: 0.9;
}

.hero-copy .hero-statement {
  max-width: 960px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.15rem, 6.2vw, 4.85rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-copy h1 span {
  color: var(--gold-soft);
}

.hero-copy h1 .hero-mark {
  display: inline-block;
  margin: 0 0.04em;
  padding: 0 0.16em 0.04em;
  border: 2px dotted currentColor;
  border-radius: 0.18em;
  font-weight: 600;
  line-height: 1;
}

.hero-copy h1 .hero-mark-blue {
  color: #79bdf7;
}

.hero-copy h1 .hero-mark-gold {
  color: #ffb75d;
}

.hero-copy h1 .hero-mark-green {
  color: #32d07b;
}

.hero-copy p,
.section-heading p,
.intro-copy p,
.quality-card p,
.compound-copy p,
.insight-card p,
.closing-copy p,
.footer-brand p,
.footer-links a {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy p {
  max-width: 56ch;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  line-height: 1.55;
}

.copy-highlight {
  display: inline-block;
  padding: 0 0.18em 0.04em;
  border: 2px dotted currentColor;
  border-radius: 0.28em;
  font-weight: 800;
  line-height: 1.08;
}

.copy-highlight-blue {
  color: #8bc9ff;
}

.copy-highlight-gold {
  color: #f2bd68;
}

.copy-highlight-green {
  color: #35d17c;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 4vw, 46px);
  max-width: 720px;
  margin-top: clamp(34px, 7vw, 66px);
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics div {
  min-width: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--cyan);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-metrics strong span {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 247, 243, 0.68);
  font-size: clamp(0.82rem, 2.2vw, 1rem);
  line-height: 1.35;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.professional-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(199, 161, 90, 0.14), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(130, 189, 215, 0.12), transparent 30%),
    linear-gradient(180deg, #071323 0%, #0a1729 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.professional-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
  pointer-events: none;
}

.professional-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.professional-copy h2 {
  max-width: 760px;
  margin: 16px 0 18px;
  color: var(--text);
  font-size: clamp(2.9rem, 8vw, 5.7rem);
  line-height: 0.92;
}

.professional-copy p {
  max-width: 62ch;
  margin: 0 0 28px;
  color: rgba(247, 247, 243, 0.72);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.68;
}

.professional-cards {
  display: grid;
  gap: 14px;
}

.professional-cards article {
  padding: clamp(20px, 4vw, 28px);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(8, 22, 42, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.professional-cards span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.professional-cards h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(1.18rem, 3vw, 1.55rem);
}

.professional-cards p {
  margin: 0;
  color: rgba(247, 247, 243, 0.66);
  line-height: 1.62;
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 90, 0.22);
  pointer-events: none;
  animation: orbitDriftA 18s linear infinite;
}

.orbit.a {
  width: 88%;
  height: 52%;
}

.orbit.b {
  width: 78%;
  height: 38%;
  transform: translate(-50%, -50%) rotate(58deg);
  animation: orbitDriftB 23s linear infinite;
}

.orbit.c {
  width: 78%;
  height: 38%;
  transform: translate(-50%, -50%) rotate(120deg);
  animation: orbitDriftC 26s linear infinite;
}

.hero-panel {
  position: relative;
  width: min(100%, 510px);
  border-radius: 34px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 16%, rgba(130, 189, 215, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  animation: vialFloat 6.8s ease-in-out infinite;
}

.hero-panel img {
  width: 100%;
  border-radius: 22px;
}

.hero-note {
  position: absolute;
  max-width: 200px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(6, 16, 31, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-note span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247, 247, 243, 0.8);
}

@keyframes orbitDriftA {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitDriftB {
  0% {
    transform: translate(-50%, -50%) rotate(58deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(418deg);
  }
}

@keyframes orbitDriftC {
  0% {
    transform: translate(-50%, -50%) rotate(120deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(480deg);
  }
}

@keyframes vialFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes headerGlow {
  0% {
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  }
  100% {
    box-shadow: inset 0 -1px 0 rgba(199, 161, 90, 0.08);
  }
}

.hero-note.top {
  top: 14px;
  right: 8px;
}

.hero-note.bottom {
  left: 0;
  bottom: 20px;
}

.light-band {
  background: linear-gradient(180deg, var(--surface) 0%, #f0ece1 100%);
  color: var(--ink);
}

.light-band .section-heading p,
.light-band .intro-copy p,
.light-band .quality-card p,
.light-band .compound-copy p,
.light-band .insight-card p,
.light-band .closing-copy p,
.light-band .footer-brand p,
.light-band .footer-links a {
  color: var(--ink-soft);
}

.section {
  padding: 72px 0;
}

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

.section-heading h2,
.feature-copy h2,
.closing-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 0.92;
}

.section-heading p,
.intro-copy p,
.closing-copy p {
  max-width: 60ch;
  font-size: 15px;
}

.category-showcase {
  position: relative;
  scroll-margin-top: 78px;
  padding-top: 32px;
}

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

.category-heading > div {
  max-width: 760px;
}

.category-showcase-stack {
  display: flex;
  gap: 14px;
  margin-inline: calc((100vw - var(--shell)) / -2);
  padding: 0 calc((100vw - var(--shell)) / 2) 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100vw - min(88vw, 680px)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-showcase-stack::-webkit-scrollbar {
  display: none;
}

.category-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.category-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8ced8;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.category-dot.is-active {
  width: 48px;
  background: #96a1b2;
}

.category-dot:hover,
.category-dot:focus-visible {
  transform: translateY(-1px);
  background: #aeb7c5;
  outline: none;
}

.category-panel {
  position: relative;
  flex: 0 0 min(88vw, 680px);
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 82% 8%, rgba(111, 203, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #061225 0%, #0a1a33 58%, #10213a 100%);
  border: 1px solid rgba(218, 172, 85, 0.22);
  box-shadow: 0 26px 70px rgba(10, 20, 37, 0.18);
  color: rgba(248, 250, 252, 0.92);
  isolation: isolate;
  scroll-snap-align: center;
}

.category-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(218, 172, 85, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(218, 172, 85, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 70%);
  opacity: 0.32;
}

.category-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -94px;
  top: -110px;
  border: 1px solid rgba(218, 172, 85, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(111, 203, 255, 0.12);
  opacity: 0.75;
  pointer-events: none;
}

.category-panel-metabolic {
  background:
    radial-gradient(circle at 84% 14%, rgba(67, 151, 222, 0.32), transparent 36%),
    linear-gradient(145deg, #051225 0%, #082447 58%, #0c3154 100%);
}

.category-panel-tissue {
  background:
    radial-gradient(circle at 84% 14%, rgba(184, 92, 210, 0.22), transparent 36%),
    linear-gradient(145deg, #061225 0%, #102047 58%, #161b39 100%);
}

.category-panel-neuro {
  background:
    radial-gradient(circle at 84% 14%, rgba(121, 205, 191, 0.22), transparent 36%),
    linear-gradient(145deg, #061225 0%, #0b2033 58%, #112f3d 100%);
}

.category-panel-gh {
  background:
    radial-gradient(circle at 84% 14%, rgba(218, 172, 85, 0.24), transparent 36%),
    linear-gradient(145deg, #061225 0%, #151f32 58%, #2a2432 100%);
}

.category-panel-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.category-panel-head h3 {
  max-width: 11ch;
  margin: 14px 0 10px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  color: #f7f8fb;
}

.category-panel-head p {
  max-width: 55ch;
  margin: 0;
  color: rgba(242, 246, 252, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.category-panel-link {
  align-self: start;
  justify-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(218, 172, 85, 0.42);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.peptide-select-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.peptide-select-card {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.peptide-select-card:hover {
  transform: translateY(-3px);
  border-color: rgba(218, 172, 85, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.peptide-image-wrap {
  display: grid;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.96), rgba(226, 232, 240, 0.92));
  box-shadow: inset 0 0 0 1px rgba(8, 17, 33, 0.06);
  overflow: hidden;
}

.peptide-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.peptide-select-card strong {
  font-size: 16px;
  line-height: 1.15;
}

.peptide-select-card small {
  min-height: 18px;
  color: rgba(242, 246, 252, 0.72);
  font-size: 12px;
}

.select-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #f7f8fb;
  color: #0b1730;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-panel-note {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: rgba(242, 246, 252, 0.66);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-grid,
.closing-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.intro-card,
.closing-panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  box-shadow: var(--shadow);
}

.trust-list,
.footer-links {
  display: grid;
  gap: 14px;
}

.trust-row,
.footer-links a {
  display: grid;
  gap: 4px;
}

.trust-row strong {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-row span {
  font-size: 14px;
  color: rgba(247, 247, 243, 0.8);
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.faq-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(6, 16, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(6, 16, 31, 0.06);
}

.faq-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 0.95;
}

.faq-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.quality-grid {
  display: grid;
  gap: 16px;
}

.quality-card {
  border-radius: 24px;
  padding: 24px;
  background: rgba(15, 27, 45, 0.03);
  border: 1px solid rgba(15, 27, 45, 0.08);
}

.quality-card strong {
  display: block;
  margin-bottom: 10px;
  color: #8a6323;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quality-card h3,
.compound-copy h3,
.insight-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.compound-grid,
.insight-grid {
  display: grid;
  gap: 18px;
}

.compound-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), white);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 56px rgba(10, 20, 37, 0.12);
}

.compound-visual {
  padding: 16px;
  background:
    radial-gradient(circle at top center, rgba(130, 189, 215, 0.16), transparent 30%),
    linear-gradient(180deg, #07101f 0%, #0d1d35 100%);
}

.compound-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.compound-copy {
  padding: 22px;
}

.compound-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(199, 161, 90, 0.1);
  color: #8a6323;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.compound-link,
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  text-decoration: none;
  color: #8a6323;
  font-weight: 700;
}

.feature-band {
  position: relative;
  overflow: hidden;
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(130, 189, 215, 0.14), transparent 20%),
    radial-gradient(circle at 15% 82%, rgba(199, 161, 90, 0.14), transparent 18%);
  pointer-events: none;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: center;
}

.feature-copy p {
  max-width: 58ch;
  font-size: 15px;
}

.insight-card {
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-kicker {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.closing-panel {
  background:
    radial-gradient(circle at top center, rgba(199, 161, 90, 0.12), transparent 28%),
    linear-gradient(180deg, #07101f 0%, #0a1527 100%);
}

.footer {
  padding: 28px 0 40px;
  background: #050c18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand h3 {
  margin: 12px 0 8px;
  font-size: 2.3rem;
  line-height: 0.95;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  width: clamp(180px, 18vw, 250px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(199, 161, 90, 0.12));
}

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

.footer-links a:hover {
  color: var(--text);
}

.footer-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 247, 243, 0.6);
  font-size: 12px;
  line-height: 1.7;
}

.whatsapp-bubble {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #f7fff9;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #2ee173 0%, var(--green) 58%, #18a84c 100%);
  box-shadow:
    0 18px 38px rgba(37, 211, 102, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 0 8px rgba(37, 211, 102, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-bubble svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-bubble span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.whatsapp-bubble:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow:
    0 22px 44px rgba(37, 211, 102, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 0 0 10px rgba(37, 211, 102, 0.1);
}

.whatsapp-bubble:focus-visible {
  outline: 3px solid rgba(232, 202, 148, 0.76);
  outline-offset: 5px;
}

.desktop-only {
  display: none;
}

@media (max-width: 767px) {
  .age-gate {
    padding: 14px;
  }

  .age-gate-actions {
    grid-template-columns: 1fr;
  }

  .age-gate-actions button {
    min-height: 50px;
  }

  .trust-ticker {
    min-height: 44px;
  }

  .trust-ticker span {
    min-height: 44px;
    font-size: 12px;
  }

  .category-showcase-stack {
    margin-inline: -16px;
    padding-inline: 16px;
    scroll-padding-inline: 6vw;
  }

  .category-panel {
    flex-basis: 88vw;
  }

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

  .category-panel-head {
    padding-top: 0;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 30px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .brand {
    padding: 2px 0;
  }

  .brand-full-logo {
    width: 164px;
  }

}

@media (min-width: 768px) {
  .desktop-only {
    display: inline-flex;
  }

  .whatsapp-bubble {
    width: auto;
    min-width: 58px;
    padding: 0 18px;
    gap: 9px;
  }

  .whatsapp-bubble span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    color: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .hero {
    padding: 64px 0 42px;
  }

  .hero-grid,
  .intro-grid,
  .closing-grid,
  .feature-grid,
  .footer-grid,
  .professional-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .hero-grid-solo {
    grid-template-columns: 1fr;
  }

  .category-panel-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .category-panel-head h3 {
    max-width: 15ch;
  }

  .peptide-select-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quality-grid,
  .compound-grid,
  .insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (min-width: 1024px) {
  .header-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .site-header-inner {
    min-height: 70px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
    gap: 42px;
    align-items: center;
  }

  .hero-grid-solo {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
  }
}

.catalog-page {
  overflow: clip;
  background:
    radial-gradient(circle at 18% 4%, rgba(130, 189, 215, 0.16), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(199, 161, 90, 0.15), transparent 28%),
    linear-gradient(180deg, #06101f 0%, #08162a 42%, #f5f2ea 42%, #f5f2ea 100%);
}

.catalog-hero {
  position: relative;
  padding: clamp(56px, 9vw, 104px) 0 clamp(34px, 7vw, 76px);
  isolation: isolate;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  opacity: 0.72;
}

.catalog-hero-grid {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.catalog-hero-copy h1 {
  max-width: 820px;
  margin: 20px 0 18px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(4.4rem, 13vw, 8.8rem);
  line-height: 0.82;
  color: var(--text);
}

.catalog-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(247, 247, 243, 0.72);
  font-size: clamp(1.04rem, 2.7vw, 1.34rem);
  line-height: 1.58;
}

.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.catalog-ghost-light {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.catalog-lab-card {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border-radius: 30px;
  padding: 18px;
  background:
    radial-gradient(circle at 70% 12%, rgba(199, 161, 90, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
}

.catalog-lab-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -170px;
  border-radius: 50%;
  border: 1px solid rgba(199, 161, 90, 0.22);
  animation: catalogOrbit 16s linear infinite;
}

.catalog-lab-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-lab-tag {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(6, 16, 31, 0.76);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.catalog-lab-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.catalog-lab-card strong {
  color: var(--text);
  font-size: 18px;
}

.catalog-lab-card span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.catalog-proof {
  padding: 0 0 clamp(30px, 6vw, 58px);
  background: linear-gradient(180deg, transparent, #f5f2ea 74%);
}

.catalog-proof-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  background: #4f9bcf;
  color: white;
  box-shadow: 0 24px 50px rgba(6, 16, 31, 0.18);
}

.proof-item {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
}

.proof-item span {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2.1rem;
  line-height: 0.9;
}

.proof-item strong {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-item small {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.catalog-section {
  padding: clamp(46px, 8vw, 86px) 0;
  background: #f5f2ea;
  color: var(--ink);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}

.catalog-content,
.catalog-product-grid,
.catalog-product-card,
.catalog-product-body {
  min-width: 0;
}

.catalog-sidebar {
  position: sticky;
  top: 88px;
  z-index: 3;
  align-self: start;
}

.catalog-sidebar-card {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid rgba(8, 22, 42, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(6, 16, 31, 0.08);
  backdrop-filter: blur(14px);
}

.catalog-sidebar-kicker {
  display: none;
}

.catalog-filter {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(8, 22, 42, 0.12);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-filter:hover,
.catalog-filter.is-active {
  transform: translateY(-1px);
  border-color: rgba(199, 161, 90, 0.48);
  background: #08162a;
  color: var(--gold-soft);
}

.catalog-section-head {
  display: grid;
  gap: 18px;
  align-items: end;
  margin-bottom: clamp(28px, 6vw, 52px);
}

.catalog-section-head h2 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3.6rem, 10vw, 6.6rem);
  line-height: 0.84;
}

.catalog-section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.catalog-family {
  margin-bottom: clamp(42px, 7vw, 76px);
}

.catalog-family.is-hidden,
.catalog-product-card.is-hidden {
  display: none;
}

.family-title {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(8, 22, 42, 0.12);
  padding-bottom: 12px;
}

.family-title span {
  color: var(--gold);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 0.9;
}

.family-title h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.9;
}

.catalog-product-grid {
  display: grid;
  gap: 16px;
}

.catalog-product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(130, 189, 215, 0.14), transparent 30%),
    #08162a;
  border: 1px solid rgba(8, 22, 42, 0.14);
  box-shadow: 0 22px 54px rgba(6, 16, 31, 0.13);
  color: var(--text);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.catalog-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(6, 16, 31, 0.2);
}

.sequence-strip {
  width: 180%;
  padding: 10px 14px;
  color: rgba(232, 202, 148, 0.74);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.035);
  animation: sequenceSlide 18s linear infinite;
}

.catalog-product-media {
  padding: 18px 18px 0;
}

.catalog-product-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #e8ecf2;
}

.catalog-product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.catalog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-product-body h4 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.9rem, 8vw, 4.4rem);
  line-height: 0.84;
}

.catalog-product-body p {
  margin: 0;
  color: rgba(247, 247, 243, 0.72);
  line-height: 1.6;
}

.format-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.format-row span {
  color: rgba(247, 247, 243, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-row strong {
  color: var(--text);
  font-size: 13px;
  text-align: right;
}

.catalog-product-body a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--text);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.catalog-product-body a:hover {
  transform: translateY(-1px);
  background: var(--gold-soft);
}

.catalog-compliance {
  padding: 0 0 clamp(54px, 9vw, 96px);
  background: #f5f2ea;
}

.compliance-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 12%, rgba(199, 161, 90, 0.14), transparent 28%),
    #08162a;
  color: var(--text);
  box-shadow: var(--shadow);
}

.compliance-card h2 {
  margin: 16px 0 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(3rem, 9vw, 5.4rem);
  line-height: 0.84;
}

.compliance-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 247, 243, 0.74);
  line-height: 1.7;
}

.catalog-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.catalog-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sequenceSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes catalogOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 720px) {
  .catalog-proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .catalog-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

  .catalog-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
  }

  .catalog-sidebar-card {
    display: grid;
    gap: 10px;
    overflow: visible;
    padding: 16px;
  }

  .catalog-sidebar-kicker {
    display: block;
    color: #8a6323;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .catalog-filter {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .catalog-section-head {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  }
}

@media (max-width: 719px) {
  body:has(.catalog-page) .site-header-inner {
    min-height: 58px;
  }

  body:has(.catalog-page) .brand-full-logo {
    width: 142px;
  }

  body:has(.catalog-page) .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 18px;
  }

  .catalog-page {
    background:
      radial-gradient(circle at 20% 0%, rgba(130, 189, 215, 0.16), transparent 34%),
      linear-gradient(180deg, #06101f 0%, #08162a 32%, #f5f2ea 32%, #f5f2ea 100%);
  }

  .catalog-hero {
    padding: 24px 0 22px;
  }

  .catalog-hero-grid {
    gap: 18px;
  }

  .catalog-hero-copy h1 {
    max-width: 12ch;
    margin: 14px 0 14px;
    font-size: clamp(3rem, 14vw, 3.7rem);
    line-height: 0.88;
  }

  .catalog-hero-copy p {
    max-width: 32ch;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .catalog-hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .catalog-hero-actions .button-primary,
  .catalog-hero-actions .button-ghost {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
  }

  .catalog-lab-card {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-radius: 22px;
    padding: 12px;
  }

  .catalog-lab-card::after {
    width: 220px;
    height: 220px;
    right: -110px;
    top: -120px;
  }

  .catalog-lab-card img {
    grid-row: 1 / span 2;
    border-radius: 16px;
  }

  .catalog-lab-tag {
    position: static;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    font-size: 9px;
  }

  .catalog-lab-card strong {
    font-size: 14px;
  }

  .catalog-lab-card span:last-child {
    font-size: 12px;
    line-height: 1.42;
  }

  .catalog-proof {
    padding-bottom: 26px;
  }

  .catalog-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .proof-item {
    min-height: 96px;
    padding: 12px;
    border-radius: 15px;
  }

  .proof-item span {
    font-size: 1.8rem;
  }

  .proof-item strong {
    font-size: 11px;
    line-height: 1.2;
  }

  .proof-item small {
    font-size: 11px;
    line-height: 1.35;
  }

  .catalog-section {
    padding: 30px 0 48px;
  }

  .catalog-layout {
    gap: 18px;
  }

  .catalog-sidebar {
    top: 58px;
    margin-inline: -16px;
  }

  .catalog-sidebar-card {
    border-radius: 0;
    border-inline: 0;
    gap: 7px;
    padding: 7px 16px;
    background: rgba(245, 242, 234, 0.94);
    box-shadow: 0 12px 26px rgba(6, 16, 31, 0.08);
    scrollbar-width: none;
  }

  .catalog-sidebar-card::-webkit-scrollbar {
    display: none;
  }

  .catalog-filter {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 13px;
    font-size: 9px;
    letter-spacing: 0.065em;
  }

  .catalog-section-head {
    gap: 10px;
    margin-bottom: 20px;
  }

  .catalog-section-head h2 {
    max-width: 11ch;
    margin-top: 10px;
    font-size: clamp(2.35rem, 10.8vw, 3rem);
    line-height: 0.92;
  }

  .catalog-section-head p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .catalog-family {
    margin-bottom: 34px;
  }

  .family-title {
    align-items: start;
    gap: 8px;
    margin-bottom: 11px;
  }

  .family-title span {
    font-size: 1.8rem;
  }

  .family-title h3 {
    max-width: 18ch;
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    line-height: 0.96;
  }

  .catalog-product-grid {
    gap: 12px;
  }

  .catalog-product-card {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: stretch;
    border-radius: 16px;
  }

  .sequence-strip {
    grid-column: 1 / -1;
    width: 100%;
    overflow: hidden;
    padding: 6px 10px;
    font-size: 7px;
    letter-spacing: 0.12em;
    text-overflow: clip;
    animation: none;
  }

  .catalog-product-media {
    padding: 10px 0 10px 10px;
  }

  .catalog-product-media img {
    height: 100%;
    min-height: 108px;
    border-radius: 12px;
  }

  .catalog-product-body {
    align-content: center;
    gap: 6px;
    padding: 10px;
  }

  .catalog-card-meta {
    gap: 4px;
  }

  .catalog-card-meta span {
    min-height: 20px;
    padding: 0 6px;
    font-size: 7px;
    letter-spacing: 0.075em;
  }

  .catalog-product-body h4 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .catalog-product-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.73rem;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .format-row {
    display: none;
  }

  .catalog-product-body a {
    min-height: 31px;
    padding: 0 10px;
    font-size: 8.5px;
    letter-spacing: 0.085em;
  }

  .catalog-compliance {
    padding-bottom: 68px;
  }

  .compliance-card {
    gap: 16px;
    border-radius: 22px;
  }

  .compliance-card h2 {
    margin-top: 12px;
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}

@media (max-width: 374px) {
  .catalog-product-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .catalog-product-media img {
    min-height: 104px;
  }

  .catalog-product-body h4 {
    font-size: 1.65rem;
  }
}

.mytide-catalog-page {
  background:
    linear-gradient(rgba(6, 16, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 16, 31, 0.025) 1px, transparent 1px),
    #f5f2ea;
  background-size: 84px 84px;
  color: var(--ink);
}

.mytide-catalog-hero {
  scroll-margin-top: 90px;
  padding: clamp(48px, 9vw, 92px) 0 clamp(34px, 7vw, 64px);
}

.mytide-kicker,
.mytide-tested {
  color: #8a6323;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mytide-catalog-hero h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12em;
  margin: 16px 0 18px;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, system-ui, sans-serif;
  font-size: clamp(3.35rem, 10vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.mytide-catalog-hero h1 span:first-child {
  color: var(--gold);
}

.mytide-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.mytide-hero-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(6, 16, 31, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(15, 27, 45, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mytide-catalog-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.65;
}

.mytide-product-list {
  padding: 0 0 clamp(64px, 10vw, 110px);
}

.mytide-family {
  margin-bottom: clamp(42px, 8vw, 74px);
}

.mytide-family-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  border-top: 1px solid rgba(6, 16, 31, 0.12);
  padding-top: 22px;
}

.mytide-family-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: rgba(15, 27, 45, 0.48);
  font-family: "Barlow Condensed", Inter, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mytide-family-head h2::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(199, 161, 90, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 161, 90, 0.95) 0 3px, transparent 4px),
    linear-gradient(65deg, transparent 40%, rgba(199, 161, 90, 0.72) 41% 44%, transparent 45%),
    linear-gradient(115deg, transparent 40%, rgba(199, 161, 90, 0.72) 41% 44%, transparent 45%);
  box-shadow: 0 0 0 6px rgba(199, 161, 90, 0.08);
}

.mytide-family-head span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(199, 161, 90, 0.28);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.mytide-card-grid {
  display: grid;
  gap: 12px;
}

.mytide-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(6, 16, 31, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(6, 16, 31, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mytide-product-card::before {
  content: "";
  position: absolute;
  top: 68px;
  right: 18px;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(199, 161, 90, 0.45);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 161, 90, 0.9) 0 3px, transparent 4px),
    linear-gradient(35deg, transparent 42%, rgba(199, 161, 90, 0.6) 43% 47%, transparent 48%),
    linear-gradient(145deg, transparent 42%, rgba(199, 161, 90, 0.6) 43% 47%, transparent 48%);
  opacity: 0.82;
  animation: catalogIconPulse 3.4s ease-in-out infinite;
}

.mytide-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 161, 90, 0.38);
  box-shadow: 0 24px 52px rgba(6, 16, 31, 0.08);
}

.mytide-sequence {
  display: block;
  grid-column: 1 / -1;
  overflow: hidden;
  width: max-content;
  min-width: 100%;
  padding: 10px 16px;
  color: rgba(138, 99, 35, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(199, 161, 90, 0.08);
  animation: mytideSequenceDrift 18s ease-in-out infinite;
}

.mytide-meta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid rgba(6, 16, 31, 0.08);
  background: rgba(6, 16, 31, 0.08);
}

.mytide-meta b {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 27, 45, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mytide-meta b::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.mytide-product-visual {
  position: relative;
  grid-column: 1;
  grid-row: span 3;
  width: auto;
  margin: 14px 14px 12px 16px;
  overflow: hidden;
  border: 1px solid rgba(6, 16, 31, 0.1);
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 32%, rgba(199, 161, 90, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(6, 16, 31, 0.04), rgba(6, 16, 31, 0.02));
}

.mytide-product-visual::after {
  content: "";
  position: absolute;
  inset: auto 18% 10% 18%;
  height: 18%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(199, 161, 90, 0.22), transparent 68%);
  filter: blur(10px);
  transform: translateY(10%);
}

.mytide-product-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mytide-product-card:hover .mytide-product-visual img {
  transform: scale(1.07) rotate(-0.7deg);
}

.mytide-product-card small {
  display: block;
  grid-column: 2;
  padding: 18px 16px 0 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mytide-product-card h3 {
  grid-column: 2;
  margin: 6px 16px 12px 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.mytide-formats {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 7px;
  align-content: start;
  padding: 0 16px 16px 0;
}

.mytide-formats span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(6, 16, 31, 0.1);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(15, 27, 45, 0.66);
  font-size: 11px;
  font-weight: 800;
}

.mytide-product-card > strong {
  display: flex;
  grid-column: 1 / -1;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(6, 16, 31, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mytide-compliance {
  display: grid;
  gap: 14px;
  margin-top: clamp(40px, 8vw, 70px);
  border: 1px solid rgba(6, 16, 31, 0.1);
  border-radius: 22px;
  padding: clamp(22px, 5vw, 34px);
  background: rgba(6, 16, 31, 0.04);
}

.mytide-compliance h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

@keyframes mytideSequenceDrift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-12%);
  }
}

@keyframes catalogIconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.mytide-compliance p {
  max-width: 850px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (min-width: 720px) {
  .mytide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .mytide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .mytide-catalog-hero {
    scroll-margin-top: 76px;
    padding: 36px 0 28px;
  }

  .mytide-kicker,
  .mytide-tested {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .mytide-catalog-hero h1 {
    display: grid;
    gap: 0;
    margin: 14px 0 14px;
    font-size: clamp(2.85rem, 15vw, 4rem);
    line-height: 0.92;
  }

  .mytide-hero-tags {
    gap: 8px;
  }

  .mytide-hero-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 9px;
  }

  .mytide-catalog-hero p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .mytide-family-head {
    margin-bottom: 10px;
    padding-top: 18px;
  }

  .mytide-family-head h2 {
    max-width: 22ch;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .mytide-family-head h2::before {
    width: 24px;
    height: 24px;
  }

  .mytide-family-head span {
    width: 28px;
    height: 28px;
    font-size: 1.25rem;
  }

  .mytide-card-grid {
    gap: 9px;
  }

  .mytide-product-card {
    grid-template-columns: 134px minmax(0, 1fr);
    border-radius: 17px;
  }

  .mytide-sequence {
    padding: 8px 12px;
    font-size: 8px;
  }

  .mytide-meta b {
    min-height: 32px;
    font-size: 8px;
  }

  .mytide-product-card small {
    padding: 10px 12px 0;
    font-size: 8px;
  }

  .mytide-product-card h3 {
    margin: 5px 12px 10px;
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .mytide-formats {
    gap: 6px;
    padding: 0 12px 12px;
  }

  .mytide-formats span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
  }

  .mytide-product-card > strong {
    min-height: 38px;
    font-size: 10px;
  }

  .mytide-product-card::before {
    top: 42px;
    right: 10px;
    width: 18px;
    height: 18px;
  }

  .mytide-product-visual {
    margin: 10px 12px 10px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mytide-sequence,
  .mytide-product-card::before {
    animation: none;
  }
}

/* Mytide-style catalog cards: image-led, two-column product grid. */
body:has(.mytide-catalog-page) .mytide-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 3.5vw, 28px);
}

body:has(.mytide-catalog-page) .mytide-product-card {
  grid-template-columns: minmax(0, 1fr);
  border-color: rgba(6, 16, 31, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(6, 16, 31, 0.045);
}

body:has(.mytide-catalog-page) .mytide-product-card::before {
  content: none;
}

body:has(.mytide-catalog-page) .mytide-product-visual {
  grid-column: auto;
  grid-row: auto;
  width: auto;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(6, 16, 31, 0.08);
  border-radius: 0;
  aspect-ratio: 1 / 1.16;
  background: #071322;
}

body:has(.mytide-catalog-page) .mytide-product-visual img {
  box-sizing: border-box;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
}

body:has(.mytide-catalog-page) .mytide-product-card:hover .mytide-product-visual img {
  transform: scale(1.045) rotate(-0.5deg);
}

.mytide-status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(6, 16, 31, 0.09);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(71, 84, 104, 0.82);
  box-shadow: 0 6px 14px rgba(6, 16, 31, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mytide-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #28d6a0;
  box-shadow: 0 0 0 4px rgba(40, 214, 160, 0.13);
}

.mytide-product-visual figcaption {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  z-index: 2;
  overflow: hidden;
  color: rgba(138, 99, 35, 0.5);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mytide-purity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 20px 16px 10px;
}

.mytide-purity span {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(6, 16, 31, 0.06);
}

.mytide-purity span::after {
  content: "";
  position: absolute;
  inset: 0 24% 0 0;
  border-radius: inherit;
  background: #0bbfe6;
  animation: purityFill 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mytide-purity b {
  color: rgba(15, 27, 45, 0.78);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0;
}

body:has(.mytide-catalog-page) .mytide-product-card small {
  grid-column: auto;
  padding: 8px 16px 0;
  color: rgba(71, 84, 104, 0.58);
  font-size: clamp(0.62rem, 1.7vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1.45;
}

body:has(.mytide-catalog-page) .mytide-product-card h3 {
  grid-column: auto;
  margin: 8px 16px 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

body:has(.mytide-catalog-page) .mytide-formats {
  grid-column: auto;
  padding: 0 16px 18px;
}

body:has(.mytide-catalog-page) .mytide-formats span {
  border-color: rgba(6, 16, 31, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

body:has(.mytide-catalog-page) .mytide-product-card > strong {
  display: grid;
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr) 48px;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  justify-content: stretch;
  padding: 0 16px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.86rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.mytide-product-card > strong span {
  opacity: 0.62;
}

.mytide-product-card > strong i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(6, 16, 31, 0.1);
  border-radius: 999px;
  color: rgba(15, 27, 45, 0.56);
  font-style: normal;
  font-size: 1.2rem;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

.mytide-product-card:hover > strong i {
  color: var(--gold);
  transform: translate(2px, -2px);
}

@keyframes purityFill {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 719px) {
  body:has(.mytide-catalog-page) .mytide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body:has(.mytide-catalog-page) .mytide-product-card {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 20px;
  }

  body:has(.mytide-catalog-page) .mytide-product-visual {
    margin: 0;
    border-radius: 0;
    aspect-ratio: 1 / 1.2;
  }

  body:has(.mytide-catalog-page) .mytide-product-visual img {
    padding: 0;
  }

  .mytide-status {
    top: 10px;
    left: 10px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 9px;
  }

  .mytide-product-visual figcaption {
    right: 10px;
    bottom: 9px;
    left: 10px;
    font-size: 9px;
  }

  .mytide-purity {
    gap: 10px;
    padding: 14px 12px 8px;
  }

  .mytide-purity b {
    font-size: 1rem;
  }

  body:has(.mytide-catalog-page) .mytide-product-card small {
    padding: 8px 12px 0;
    font-size: 0.62rem;
  }

  body:has(.mytide-catalog-page) .mytide-product-card h3 {
    margin: 7px 12px 10px;
    font-size: clamp(1.36rem, 6vw, 1.72rem);
  }

  body:has(.mytide-catalog-page) .mytide-formats {
    padding: 0 12px 14px;
  }

  body:has(.mytide-catalog-page) .mytide-product-card > strong {
    grid-template-columns: minmax(0, 1fr) 38px;
    min-height: 56px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .mytide-product-card > strong i {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* AtomicLab product detail pages */
.atomic-product-page {
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 3%, rgba(199, 161, 90, 0.13), transparent 27%),
    radial-gradient(circle at 8% 14%, rgba(130, 189, 215, 0.1), transparent 28%),
    linear-gradient(rgba(6, 16, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 16, 31, 0.035) 1px, transparent 1px),
    #f7f3ea;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.product-detail-hero {
  padding: clamp(30px, 8vw, 88px) 0 clamp(44px, 9vw, 96px);
}

.product-detail-grid {
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.product-detail-media {
  position: relative;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 27, 45, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-detail-visual {
  position: relative;
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(15, 27, 45, 0.16);
  border-radius: 30px;
  aspect-ratio: 1 / 1.05;
  background:
    radial-gradient(circle at 50% 100%, rgba(130, 189, 215, 0.18), transparent 32%),
    #071322;
  box-shadow: 0 34px 90px rgba(6, 16, 31, 0.25);
}

.product-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.product-detail-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 16px;
  color: rgba(247, 243, 234, 0.82);
  background: rgba(5, 12, 24, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-detail-purity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 27, 45, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.product-detail-purity span {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 27, 45, 0.1);
}

.product-detail-purity span::after {
  content: "";
  position: absolute;
  inset: 0 8% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.product-detail-purity b {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.product-breadcrumb {
  color: #8a6323;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-copy h1 {
  margin: 12px 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(4.1rem, 16vw, 9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.product-subtitle {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(15, 27, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(15, 27, 45, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-formats-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 27, 45, 0.1);
}

.product-formats-block h2,
.product-detail-panels h2,
.product-spec-grid h2,
.product-compliance-band h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.product-format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-format-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 27, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 999px;
  color: #f7f7f3;
  background: #25d366;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.26);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.product-kit-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-detail-section {
  padding: clamp(34px, 7vw, 78px) 0;
}

.product-detail-panels {
  display: grid;
  gap: 14px;
}

.product-detail-panels article {
  padding: 24px;
  border: 1px solid rgba(15, 27, 45, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.product-detail-panels article span {
  display: block;
  margin-bottom: 18px;
  color: #8a6323;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.9;
}

.product-detail-panels p,
.product-spec-grid > div:first-child p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.product-spec-section {
  background:
    linear-gradient(rgba(247, 243, 234, 0.9), rgba(247, 243, 234, 0.9)),
    radial-gradient(circle at 18% 20%, rgba(199, 161, 90, 0.14), transparent 26%);
}

.product-spec-grid {
  display: grid;
  gap: 26px;
  align-items: start;
}

.product-spec-grid > div:first-child p {
  max-width: 560px;
}

.product-spec-table {
  overflow: hidden;
  border: 1px solid rgba(15, 27, 45, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.product-spec-table div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.product-spec-table div:last-child {
  border-bottom: 0;
}

.product-spec-table span {
  color: rgba(15, 27, 45, 0.54);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-spec-table strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.product-compliance-band {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(199, 161, 90, 0.32);
  border-radius: 28px;
  color: #f7f3ea;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 161, 90, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(6, 16, 31, 0.96), rgba(7, 19, 34, 0.9));
}

.product-compliance-band h2 {
  color: #f7d79b;
}

.product-compliance-band p {
  max-width: 900px;
  margin: 14px 0 0;
  color: rgba(247, 243, 234, 0.78);
  line-height: 1.7;
}

@media (min-width: 900px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .product-detail-media {
    position: sticky;
    top: 96px;
  }

  .product-detail-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-spec-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .product-spec-table div {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
}

@media (max-width: 719px) {
  .product-detail-hero {
    padding: 24px 0 44px;
  }

  .product-back-link {
    min-height: 34px;
    font-size: 0.68rem;
  }

  .product-detail-visual {
    border-radius: 24px;
    aspect-ratio: 1 / 1.04;
  }

  .product-detail-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 0.62rem;
  }

  .product-detail-copy h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .product-tags span {
    min-height: 30px;
    font-size: 0.6rem;
  }

  .product-detail-panels article {
    padding: 20px;
  }
}
