:root {
  --bg: #070707;
  --panel: #111111;
  --panel-soft: #171717;
  --text: #f3f3f0;
  --muted: #b8b6ae;
  --dim: #77756d;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #f37021;
  --orange-soft: #c95a1d;
  --silver: #d9d9d4;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 78px;
  margin: 0 auto;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: clamp(148px, 16vw, 220px);
  height: auto;
}

.brand-series {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #080808;
  box-shadow: 0 12px 28px rgba(243, 112, 33, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(78svh - 78px);
  margin: 0;
  padding: clamp(38px, 5vw, 72px) 0 clamp(44px, 5vw, 72px);
  overflow: hidden;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 42%;
  background: url("../images/gummies-hero-campaign.png") right center / 110% auto no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, #050505 34%, rgba(5,5,5,0.92) 44%, rgba(5,5,5,0.28) 60%, rgba(5,5,5,0) 100%),
    linear-gradient(180deg, rgba(4,4,4,0.48) 0%, rgba(4,4,4,0) 38%, rgba(4,4,4,0.52) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7.8vw, 92px);
  line-height: 0.94;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-lede,
.intro p,
.standard-item p,
.product-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 34px;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #090909;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(38px, 5vw, 68px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #0b0b0b;
}

.product-card div {
  padding: 18px;
}

.product-card p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.standard-item {
  position: relative;
  min-height: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(243, 112, 33, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.standard-item span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(243, 112, 33, 0.38);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta {
  display: block;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 64px;
  padding: clamp(42px, 7vw, 74px);
  border: 1px solid rgba(243, 112, 33, 0.38);
  background:
    linear-gradient(90deg, rgba(243, 112, 33, 0.12), transparent 52%),
    var(--panel-soft);
}

.final-cta h2 {
  max-width: 820px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(78svh - 78px);
  }

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

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

@media (max-width: 760px) {
  body {
    width: 100%;
  }

  .site-header {
    min-height: 66px;
  }

  .brand-series {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(9, 9, 9, 0.96);
  }

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

  .site-nav a {
    padding: 14px 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: calc(82svh - 66px);
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero-copy,
  .hero-lede,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero-lede {
    width: 100%;
  }

  .hero::before {
    left: 20%;
    background-position: 68% center;
    background-size: cover;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(4,4,4,0.96) 0%, rgba(4,4,4,0.86) 46%, rgba(4,4,4,0.28) 100%),
      linear-gradient(180deg, rgba(4,4,4,0.74) 0%, rgba(4,4,4,0.18) 42%, rgba(4,4,4,0.86) 100%);
  }


  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

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

  .product-card {
    grid-template-columns: 132px 1fr;
    grid-template-rows: auto;
    align-items: center;
  }

  .product-card img {
    height: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .product-card {
    grid-template-columns: 116px 1fr;
  }

  .product-card div {
    padding: 14px;
  }

  .hero::before {
    left: 0;
    background-position: 65% center;
  }
}
