:root {
  --bg: #07111d;
  --bg-soft: #0d1a2a;
  --bg-panel: rgba(14, 22, 36, 0.88);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --text-soft: #acbdd1;
  --text-faint: rgba(172, 189, 209, 0.7);
  --accent: #79d8ff;
  --accent-strong: #2f7cff;
  --accent-warm: #ffd48f;
  --danger: #f1a4a4;
  --success: #9be6be;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1240px;
}

body[data-theme="light"] {
  --bg: #f3efe8;
  --bg-soft: #fbf8f3;
  --bg-panel: rgba(255, 255, 255, 0.9);
  --surface: rgba(9, 18, 32, 0.05);
  --surface-strong: rgba(9, 18, 32, 0.08);
  --surface-border: rgba(9, 18, 32, 0.1);
  --text: #0d1826;
  --text-soft: #4d6075;
  --text-faint: rgba(77, 96, 117, 0.78);
  --accent: #1164ff;
  --accent-strong: #0a4bd0;
  --accent-warm: #a15a00;
  --danger: #a53f3f;
  --success: #15693d;
  --shadow: 0 28px 64px rgba(9, 18, 32, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(47, 124, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(255, 212, 143, 0.16), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #0a1320 100%);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at top left, rgba(17, 100, 255, 0.12), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(161, 90, 0, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

button {
  cursor: pointer;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
}

.site-shell,
.cart-drawer {
  position: relative;
  z-index: 1;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(6, 11, 19, 0.88), rgba(6, 11, 19, 0.24));
}

body[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(251, 248, 243, 0.95), rgba(251, 248, 243, 0.56));
}

.site-header__brandline,
.brand,
.site-header__actions,
.site-nav {
  display: flex;
  align-items: center;
}

.site-header__brandline {
  gap: 0.8rem;
}

.brand {
  gap: 0.45rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon-toggle,
.header-cart,
.pill,
.filter-pill,
.tag {
  border-radius: 999px;
}

.brand__text {
  font-size: 1.05rem;
}

.site-nav {
  gap: 1.35rem;
}

.site-nav__link,
.link-subtle {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.link-subtle:hover {
  color: var(--text);
}

.site-header__actions {
  gap: 0.75rem;
}

.icon-toggle,
.header-cart {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  min-height: 2.7rem;
  padding: 0;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-toggle svg,
.header-cart svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  fill: none;
}

.header-cart__count {
  position: absolute;
  top: -0.18rem;
  right: -0.2rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #07111d;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
}

.icon-toggle--nav {
  flex: 0 0 auto;
}

main {
  display: grid;
  gap: 2rem;
}

.section,
.hero,
.section-grid {
  position: relative;
}

.hero {
  min-height: calc(100svh - 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: 2rem 0 1rem;
}

.hero__copy,
.page-head,
.section-head {
  max-width: 46rem;
}

.hero__copy {
  max-width: 38rem;
}

.eyebrow,
.stat-card__label,
.catalog-card__family,
.search-field__label,
.footer-title {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand__text {
  letter-spacing: -0.04em;
}

.hero h1,
.page-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.section-head h2,
.hero-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.lede,
.section-head p:last-child,
.stat-card p,
.catalog-card__meta,
.supplier-card__meta,
.supplier-card__stats,
.supplier-chip__meta,
.offer-card__supplier-meta,
.offer-card__price-note,
.review-card p,
.coa-row p,
.policy-card p,
.form-note,
.footer-note,
.checklist-item span,
.empty-state p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero__actions,
.detail-chips,
.tag-row,
.supplier-toolbar,
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__actions {
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.filter-pill:hover,
.icon-toggle:hover,
.header-cart:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #dff5ff);
  color: #07111d;
}

.button--ghost {
  border-color: var(--surface-border);
  background: var(--surface);
}

.button--compact {
  min-height: 2.8rem;
}

.hero__stats,
.hero__visual,
.detail-hero,
.detail-hero__visual,
.detail-hero__copy,
.section-grid,
.catalog-grid,
.supplier-highlight-grid,
.supplier-grid,
.offer-stack,
.offer-card__grid,
.checkout-grid,
.footer-grid {
  display: grid;
}

.hero__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero__stats div,
.hero-panel,
.stat-card,
.catalog-card,
.supplier-chip,
.supplier-card,
.offer-card,
.review-card,
.coa-row,
.accordion,
.policy-card,
.form-card,
.form-shell,
.checkout-card,
.checklist-box,
.verify-result {
  border: 1px solid var(--surface-border);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.hero__stats div,
.stat-card,
.supplier-chip,
.supplier-card,
.offer-card,
.review-card,
.coa-row,
.policy-card,
.checkout-card,
.checklist-box,
.verify-result {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.hero__stats strong {
  font-size: 2rem;
  display: block;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(121, 216, 255, 0.18);
  background: rgba(9, 18, 32, 0.46);
}

.hero__proof strong {
  color: var(--text);
  font-size: 0.95rem;
}

.hero__proof span {
  color: var(--text-soft);
  line-height: 1.6;
}

.hero__stats div {
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(12, 21, 35, 0.92), rgba(8, 15, 26, 0.76));
  box-shadow: none;
}

.hero__stats span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero__visual {
  min-height: 42rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at 82% 12%, rgba(121, 216, 255, 0.16), transparent 24%),
    radial-gradient(circle at 16% 88%, rgba(255, 212, 143, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(13, 26, 42, 0.92), rgba(8, 15, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  place-items: stretch;
  padding: 1rem;
}

.specimen__core,
.specimen__glow {
  clip-path: polygon(50% 0%, 85% 22%, 100% 60%, 70% 100%, 22% 92%, 0% 44%, 18% 10%);
}

.bullet-list,
.policy-stack,
.accordion-list,
.offer-stack,
.checkout-items {
  display: grid;
  gap: 1rem;
}

.section,
.section--tight {
  padding: 2rem 0;
}

.section-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section-head {
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
}

.catalog-grid,
.supplier-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card__link,
.supplier-card__link {
  display: grid;
  gap: 0.7rem;
}

.specimen {
  position: relative;
  min-height: 11rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, color-mix(in srgb, var(--swatch-a), white 18%), color-mix(in srgb, var(--swatch-b), black 10%));
  overflow: hidden;
}

.specimen__core,
.specimen__glow {
  position: absolute;
  inset: auto;
}

.specimen__core {
  width: 52%;
  height: 72%;
  left: 24%;
  top: 14%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), color-mix(in srgb, var(--swatch-b), black 25%));
}

.specimen__glow {
  width: 76%;
  height: 76%;
  left: 12%;
  top: 12%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 70%);
}

.specimen--large {
  min-height: 22rem;
}

.hero-board,
.hero-spotlight,
.hero-spotlight__stats,
.hero-preview-grid {
  display: grid;
}

.hero-board {
  height: 100%;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.98), rgba(228, 234, 241, 0.94));
  color: #122032;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.hero-board .eyebrow,
.hero-spotlight__family {
  color: #5d748e;
}

.hero-board__header,
.hero-spotlight__row,
.hero-preview-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.hero-board__header .eyebrow {
  margin-bottom: 0.4rem;
}

.hero-board__header h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-board__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 32, 50, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: #122032;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-spotlight {
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 1rem;
  padding: 0.9rem;
  border-radius: 28px;
  border: 1px solid rgba(18, 32, 50, 0.08);
  background: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease;
}

.hero-spotlight:hover,
.hero-preview-card:hover,
.hero-board__link:hover {
  transform: translateY(-2px);
}

.hero-spotlight__media {
  min-height: 20rem;
}

.hero-spotlight__body {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.hero-spotlight__family {
  margin: 0 0 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-spotlight__body h3,
.hero-preview-card h3 {
  color: #122032;
}

.hero-spotlight__price,
.hero-preview-card__price {
  color: #122032;
  font-size: 1.05rem;
  white-space: nowrap;
}

.hero-note,
.hero-preview-card__meta {
  color: #506377;
  line-height: 1.6;
}

.hero-spotlight__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-spotlight__stats div {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(18, 32, 50, 0.05);
}

.hero-spotlight__stats span {
  display: block;
  margin-bottom: 0.35rem;
  color: #667d95;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-spotlight__stats strong {
  color: #122032;
  font-size: 1.05rem;
}

.hero-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-preview-card {
  display: grid;
  gap: 0.65rem;
  padding: 0.8rem;
  border-radius: 22px;
  border: 1px solid rgba(18, 32, 50, 0.08);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 180ms ease;
}

.hero-preview-card__specimen {
  min-height: 7.8rem;
  border-radius: 18px;
}

.hero-preview-card .catalog-card__family {
  margin-bottom: 0.3rem;
  color: #5d748e;
}

body[data-theme="light"] .hero__proof {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 100, 255, 0.14);
}

body[data-theme="light"] .hero__stats div {
  background: rgba(255, 255, 255, 0.76);
}

body[data-page="home"] .site-shell {
  width: 100%;
}

body[data-page="home"] .site-shell {
  width: 100%;
  max-width: none;
}

body[data-page="home"] main {
  gap: 0;
}

body[data-page="home"] .site-shell {
  width: 100%;
  max-width: none;
}

body[data-page="home"] .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 3.125rem;
  padding: 0.35rem 2rem;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: none;
}

body[data-page="home"] .site-header__brandline,
body[data-page="home"] .site-header__actions {
  flex: 0 0 auto;
}

body[data-page="home"] .brand__text {
  font-size: clamp(1.48rem, 2.05vw, 1.9rem);
  letter-spacing: 0.06em;
}

body[data-page="home"] .site-nav {
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(1.4rem, 3vw, 3rem);
}

body[data-page="home"] .site-nav__link {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.98rem;
}

body[data-page="home"] .site-nav__link.is-active {
  color: #ffffff;
}

body[data-page="home"] .site-nav__link:hover,
body[data-page="home"] .site-nav__link:focus-visible {
  color: #ffffff;
}

body[data-page="home"] .icon-toggle,
body[data-page="home"] .header-cart {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  width: 2.25rem;
  height: 2.25rem;
  min-height: 2.25rem;
}

body[data-page="home"] .header-cart__count {
  display: none;
}

body[data-page="home"] .page-noise {
  opacity: 0;
}

.hero--home {
  min-height: 100svh;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #04080d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__backdrop,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  overflow: hidden;
}

.hero__media,
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
}

.hero__poster,
.hero__video {
  width: 100%;
  height: 100%;
}

.hero__poster {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.hero__video {
  object-fit: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero__media.is-loaded .hero__video {
  opacity: 1;
}

.hero__veil {
  z-index: 1;
  background:
    radial-gradient(circle at 22% 18%, rgba(121, 216, 255, 0.12), transparent 20%),
    radial-gradient(circle at 60% 30%, rgba(255, 165, 115, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(2, 5, 8, 0.16) 0%, rgba(2, 5, 8, 0.48) 50%, rgba(2, 5, 8, 0.84) 100%),
    linear-gradient(90deg, rgba(3, 6, 10, 0.38) 0%, rgba(3, 6, 10, 0.08) 42%, rgba(3, 6, 10, 0.46) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 7.5rem 1rem 4.9rem;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.hero--home h1 {
  max-width: none;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.35rem, 8vw, 6.1rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.hero__headline-desktop,
.hero__headline-mobile {
  display: block;
}

.hero__headline-mobile {
  display: none;
}

.hero__headline-mobile span {
  display: block;
}

.hero__metric-row {
  width: min(100%, 520px);
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.35rem, 1.6vw, 1.15rem);
}

.hero__metric {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.12rem;
}

.hero__metric strong {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 0.92;
}

.hero__metric span {
  max-width: 7.6rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.12;
}

.hero__metric small {
  display: none;
}

.hero__actions--center {
  justify-content: center;
  margin-top: 2.55rem;
}

.button--hero {
  min-height: 3.45rem;
  padding: 0 1.85rem;
  gap: 0.55rem;
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.96);
  color: #0f1724;
  font-weight: 400;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.button--hero:hover {
  background: #ffffff;
}

.button--hero .button__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0;
  line-height: 1;
}

.button--hero .button__arrow::before {
  content: "\2193";
  font-size: 1.2rem;
}

.hero__trust,
.hero__shipping-note {
  display: inline-flex;
  align-items: center;
}

.hero__trust {
  gap: 0.42rem;
  margin-top: 0.95rem;
  padding: 0;
}

.hero__avatars {
  display: flex;
  align-items: center;
  height: 2rem;
}

.hero__avatars span {
  width: 2rem;
  height: 2rem;
  margin-left: -0.92rem;
  border: 1px solid rgba(6, 11, 19, 0.78);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe0d4, #9f6245 72%);
}

.hero__avatars span:first-child {
  margin-left: 0;
}

.hero__avatars span:nth-child(2) {
  background: radial-gradient(circle at 30% 30%, #f7d6bd, #7b503f 72%);
}

.hero__avatars span:nth-child(3) {
  background: radial-gradient(circle at 30% 30%, #f7e8d4, #8d6b50 72%);
}

.hero__trust-count {
  display: inline-flex;
  align-items: center;
  min-width: 3rem;
  height: 2rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1;
  justify-content: center;
  backdrop-filter: blur(14px);
}

.hero__trust-copy {
  color: #b1aeac;
  font-size: 0.78rem;
  font-weight: 400;
}

.hero__shipping-note {
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.79rem;
}

.hero__shipping-note::before {
  content: none;
}

.hero__shipping-note--home {
  position: absolute;
  left: 50%;
  bottom: 1.85rem;
  z-index: 2;
  transform: translateX(-50%);
}

.hero__shipping-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.82rem;
  height: 0.82rem;
}

.hero__shipping-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero__shipping-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-stack {
  width: min(calc(100% - 2rem), 980px);
  margin: 0 auto;
  padding-top: 1.95rem;
  display: grid;
  gap: 0;
}

body[data-page="home"] .site-footer {
  width: min(calc(100% - 2rem), 980px);
  margin: 0 auto;
}

.catalog-surface {
  padding: 0 0 1.65rem;
}

.catalog-surface__head,
.catalog-surface__controls,
.catalog-card__body {
  display: flex;
}

.catalog-surface__head {
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.catalog-surface__head .eyebrow {
  margin-bottom: 0.2rem;
}

.catalog-surface__head h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.62rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.catalog-surface__controls {
  align-items: center;
  gap: 0.7rem;
}

.search-field--home {
  gap: 0.25rem;
}

.search-field--home .search-field__label {
  margin-bottom: 0;
  color: rgba(133, 153, 177, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.search-field--home input {
  min-width: 13rem;
  min-height: 2.55rem;
  border-radius: 10px;
  background: rgba(9, 16, 28, 0.82);
}

.catalog-surface__button {
  min-height: 2.55rem;
  padding: 0.65rem 1rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 28, 0.82);
}

.catalog-grid--home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.catalog-card--home {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-card__link--home {
  gap: 0.35rem;
}

.catalog-card__body {
  flex-direction: column;
  align-items: start;
  gap: 0.05rem;
}

.catalog-card--home h3 {
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.catalog-card--home .catalog-card__meta {
  color: rgba(230, 236, 242, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.catalog-specimen {
  position: relative;
  min-height: 10.75rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, color-mix(in srgb, var(--swatch-a), white 4%), color-mix(in srgb, var(--swatch-b), black 3%));
  overflow: hidden;
}

.catalog-vial,
.catalog-vial__cap,
.catalog-vial__glass,
.catalog-vial__powder {
  position: absolute;
}

.catalog-vial {
  inset: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.catalog-vial__cap {
  top: 1.05rem;
  left: 50%;
  width: 2.4rem;
  height: 1rem;
  border-radius: 999px 999px 0.55rem 0.55rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(142, 147, 151, 0.98), rgba(92, 99, 108, 0.95));
  box-shadow:
    inset 0 -0.15rem 0 rgba(53, 59, 65, 0.52),
    inset 0 0.08rem 0 rgba(255, 255, 255, 0.26);
}

.catalog-vial__glass {
  top: 1.85rem;
  left: 50%;
  width: 2.2rem;
  height: 4.8rem;
  border-radius: 0.68rem 0.68rem 0.9rem 0.9rem;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.92), rgba(210, 220, 232, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 -0.35rem 0 rgba(188, 197, 208, 0.4);
}

.catalog-vial__powder {
  top: 5.25rem;
  left: 50%;
  width: 1.55rem;
  height: 1.35rem;
  border-radius: 0.35rem 0.35rem 0.7rem 0.7rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 0.15rem, rgba(255, 255, 255, 0.9), rgba(238, 239, 232, 0.98) 56%, rgba(216, 219, 210, 0.98) 100%);
  box-shadow: 0 -0.08rem 0 rgba(255, 255, 255, 0.55);
}

.supplier-highlight-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.supplier-chip,
.supplier-card__top,
.supplier-card__stats,
.offer-card__head,
.offer-card__footer,
.review-card__head,
.checkout-card__head,
.checkout-totals,
.checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.supplier-chip__name,
.supplier-card h3,
.catalog-card h3,
.offer-card__supplier,
.policy-card h2,
.checkout-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.pill,
.filter-pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text);
}

.pill--muted {
  color: var(--text-soft);
}

.detail-hero,
.checkout-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
}

.detail-chips,
.dosage-filter,
.tab-switcher,
.split-links {
  margin-top: 1rem;
}

.filter-pill.is-active,
.tab-panel.is-active,
.site-nav__link.is-active {
  color: var(--text);
}

.filter-pill.is-active {
  border-color: rgba(121, 216, 255, 0.4);
  background: rgba(121, 216, 255, 0.14);
}

.offer-card__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0;
}

.offer-card__grid span,
.coa-row span,
.checkout-totals span,
.review-card__head span,
.offer-card__price-note,
.catalog-card__price,
.back-link,
.breadcrumb {
  color: var(--text-faint);
}

.offer-card__price {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.tab-panel {
  display: none;
  margin-top: 1rem;
}

.tab-panel.is-active {
  display: grid;
  gap: 1rem;
}

.accordion {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.accordion p {
  margin-top: 0.9rem;
}

.form-shell,
.form-card {
  border-radius: var(--radius-xl);
  padding: 1.4rem;
}

.form-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-shell label,
.search-field,
.select-field {
  display: grid;
  gap: 0.45rem;
}

.label--full,
.form-shell button,
.form-note,
.verify-result {
  grid-column: 1 / -1;
}

.form-shell input,
.form-shell textarea,
.form-shell select,
.search-field input,
.select-field select {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem 1rem;
}

.form-note {
  min-height: 1.5rem;
}

.section--narrow {
  width: min(100%, 48rem);
}

.policy-stack {
  margin-top: 1rem;
}

.policy-card,
.empty-state {
  display: grid;
  gap: 0.8rem;
}

.breadcrumb,
.back-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.page-head {
  display: grid;
  gap: 1rem;
}

.tag-row {
  margin: 1rem 0 0;
}

.coa-table,
.checkout-items {
  display: grid;
  gap: 0.8rem;
}

.coa-row a {
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: none;
}

.cart-drawer.is-open {
  display: block;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 28rem);
  height: 100%;
  padding: 1.2rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.cart-drawer__body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  overflow: auto;
}

.cart-line,
.checkout-line {
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.35rem;
}

.checkout-grid {
  align-items: start;
}

.checkout-card {
  display: grid;
  gap: 1rem;
}

.checklist-box {
  display: grid;
  gap: 0.8rem;
}

.contact-reveal {
  border-top: 1px solid var(--surface-border);
  padding-top: 1rem;
}

.contact-reveal a {
  color: var(--accent);
}

.verify-result {
  display: grid;
  gap: 0.5rem;
}

.cta-band {
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .catalog-grid,
  .supplier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header,
  .section-head,
  .hero,
  .detail-hero,
  .checkout-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header {
    justify-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .section-grid,
  .offer-card__grid,
  .footer-grid,
  .supplier-highlight-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-surface__head {
    align-items: start;
    flex-direction: column;
  }

  .catalog-surface__controls {
    width: 100%;
  }

  .search-field--home {
    flex: 1 1 auto;
  }

  .search-field--home input {
    min-width: 0;
  }

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

  .hero__visual {
    min-height: auto;
  }

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

  body[data-page="home"] .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
    gap: 0.7rem 1rem;
    padding: 0.45rem 1.25rem 0.25rem;
  }

  body[data-page="home"] .site-header__brandline {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  body[data-page="home"] .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body[data-page="home"] .site-nav::-webkit-scrollbar {
    display: none;
  }

  body[data-page="home"] .site-nav__link {
    flex: 0 0 auto;
    font-size: 0.92rem;
  }

  body[data-page="home"] .site-header__actions {
    grid-column: 3 / 4;
    grid-row: 1;
    justify-self: end;
  }

  body[data-page="home"] .icon-toggle,
  body[data-page="home"] .header-cart {
    width: 2rem;
    height: 2rem;
    min-height: 2rem;
  }

  .hero__content {
    padding-top: 7.2rem;
    padding-bottom: 5rem;
  }

  .hero__metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 500px);
    gap: 0.55rem;
  }

  .hero__metric strong {
    font-size: clamp(1.95rem, 6vw, 2.7rem);
  }

  .hero__metric span {
    font-size: 0.84rem;
  }

  .hero__proof,
  .hero-board__header,
  .hero-spotlight {
    border-radius: var(--radius-lg);
  }

  .hero-spotlight,
  .hero-preview-grid {
    grid-template-columns: 1fr;
  }

  .form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .catalog-grid,
  .supplier-grid {
    grid-template-columns: 1fr;
  }

  .catalog-surface {
    padding-bottom: 1.1rem;
  }

  .catalog-surface__controls {
    flex-wrap: wrap;
  }

  .catalog-surface__button,
  .search-field--home {
    width: 100%;
  }

  .catalog-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .catalog-specimen {
    min-height: 8.85rem;
  }

  .catalog-card--home h3 {
    font-size: 0.96rem;
  }

  .catalog-card--home .catalog-card__meta {
    font-size: 0.83rem;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  body[data-page="home"] .site-header {
    gap: 0.55rem 0.8rem;
    padding: 0.4rem 1rem 0.22rem;
  }

  body[data-page="home"] .site-nav {
    gap: 0.75rem;
  }

  body[data-page="home"] .brand__text {
    font-size: 1.22rem;
  }

  body[data-page="home"] .site-nav__link {
    font-size: 0.82rem;
  }

  .hero--home h1 {
    font-size: clamp(2.95rem, 14vw, 4.2rem);
  }

  .hero__headline-desktop {
    display: none;
  }

  .hero__headline-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
  }

  .hero__metric strong {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .hero__metric span {
    font-size: 0.76rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions--center {
    width: auto;
    margin-top: 1.15rem;
  }

  .button--hero {
    min-height: 3.45rem;
    width: auto;
    padding: 0 1.2rem;
  }

  .hero__trust {
    margin-top: 0.72rem;
    width: auto;
    justify-content: center;
  }

  .hero__avatars span {
    width: 1.6rem;
    height: 1.6rem;
    margin-left: -0.48rem;
  }

  .hero__trust-copy {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .hero__shipping-note {
    font-size: 0.74rem;
  }

  .hero__shipping-note--home {
    bottom: 1rem;
    width: auto;
    justify-content: center;
  }

  .hero__proof {
    border-radius: 20px;
  }

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