:root {
  --background: #fbfff3;
  --foreground: #10120f;
  --surface: #ffffff;
  --surface-muted: #eef6df;
  --surface-dark: #11140f;
  --surface-dark-2: #191d15;
  --primary: #c9ff23;
  --primary-strong: #97f000;
  --accent: #ff6f3c;
  --cyan: #45d7f6;
  --muted: rgba(16, 18, 15, .64);
  --muted-dark: rgba(255, 255, 255, .66);
  --border: rgba(16, 18, 15, .14);
  --border-dark: rgba(255, 255, 255, .14);
  --ring: rgba(201, 255, 35, .48);
  --shadow: 0 22px 64px rgba(16, 18, 15, .14);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--foreground);
  background: var(--background);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 88px; }
body { margin: 0; overflow-x: hidden; background: var(--background); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }

#spark-canvas {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 80;
  width: min(var(--container), calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  transition: padding .24s var(--ease);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 8px -14px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition: background .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}

.nav.is-scrolled::before,
.nav.open::before {
  border-color: rgba(16, 18, 15, .1);
  background: rgba(251, 255, 243, .88);
  box-shadow: 0 18px 50px rgba(16, 18, 15, .1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: Archivo, Inter, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.brand span:last-child { color: var(--primary-strong); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(16, 18, 15, .72);
  font-size: 14px;
  font-weight: 800;
  transition: background .18s var(--ease), color .18s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--foreground);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.icon-button:focus-visible,
.menu:focus-visible,
input:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.primary {
  background: var(--primary);
  color: var(--foreground);
  box-shadow: 0 14px 34px rgba(151, 240, 0, .24);
}

.primary:hover { background: #d6ff55; }

.secondary {
  border-color: rgba(16, 18, 15, .22);
  background: rgba(255, 255, 255, .72);
  color: var(--foreground);
}

.secondary:hover {
  border-color: var(--foreground);
  background: #fff;
}

.nav-cta { white-space: nowrap; }

.menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 18, 15, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  padding: 11px;
  cursor: pointer;
}

.menu span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--foreground);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.nav.open .menu span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .menu span:nth-child(2) { opacity: 0; }
.nav.open .menu span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 122px 24px 0;
  background:
    linear-gradient(90deg, rgba(16,18,15,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16,18,15,.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(201,255,35,.24), transparent 30%),
    linear-gradient(180deg, #fbfff3 0%, #f2fbdf 100%);
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.hero-pattern {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(201,255,35,.22));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  min-height: calc(100svh - 178px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: 56px;
}

.hero-copy { max-width: 690px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--foreground);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.eyebrow.light {
  background: rgba(16, 18, 15, .08);
  color: var(--foreground);
}

.hero h1,
.section-head h2,
.creator-copy h2,
.retail h2,
.footer h2 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(64px, 9vw, 124px);
  text-transform: uppercase;
}

.lead {
  max-width: 550px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 120px));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-height: 82px;
  border-left: 3px solid var(--primary);
  padding: 4px 12px;
}

.hero-stats dt {
  font-family: Archivo, Inter, sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.product-orbit {
  position: absolute;
  width: min(86vw, 430px);
  aspect-ratio: 1;
  border: 2px solid rgba(16, 18, 15, .1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,255,35,.32), transparent 62%);
  box-shadow: inset 0 0 0 34px rgba(255, 255, 255, .34);
}

.hero-product img {
  position: relative;
  z-index: 1;
  width: min(360px, 78vw);
  filter: drop-shadow(0 34px 42px rgba(16, 18, 15, .28));
  transform: rotate(-6deg);
}

.product-note {
  position: absolute;
  z-index: 2;
  width: 176px;
  border: 1px solid rgba(16, 18, 15, .12);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 40px rgba(16, 18, 15, .12);
  backdrop-filter: blur(14px);
}

.product-note strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
}

.product-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-note.top { top: 96px; right: 10px; }
.product-note.bottom { bottom: 100px; left: -16px; }

.ticker {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar { display: none; }

.ticker span {
  flex: 0 0 auto;
  border: 1px solid rgba(16, 18, 15, .12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .7);
  color: rgba(16, 18, 15, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

section { padding: 84px 24px; }

.section-head {
  width: min(var(--container), 100%);
  margin: 0 auto 36px;
}

.section-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(42px, 5vw, 72px);
}

.flavours {
  background: var(--surface);
  overflow: hidden;
}

.flavour-shell {
  display: grid;
  grid-template-columns: 50px minmax(0, 900px) 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.icon-button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--foreground);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}

.icon-button:hover {
  background: var(--foreground);
  color: #fff;
  transform: translateY(-2px);
}

.flavour-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 34px;
  align-items: center;
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--flavour-color, #c9ff23) 28%, transparent), transparent 38%),
    linear-gradient(135deg, #fff, #f9fbf4);
  box-shadow: var(--shadow);
}

.can-frame {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.can-frame img {
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 26px 24px rgba(16, 18, 15, .2));
}

.flavour-copy > span {
  color: var(--flavour-color, var(--primary-strong));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flavour-copy h3 {
  margin: 8px 0 14px;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: .94;
}

.flavour-copy p {
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.58;
}

.flavour-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.flavour-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(16, 18, 15, .78);
  font-size: 14px;
  font-weight: 800;
}

.flavour-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flavour-color, var(--primary-strong));
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 18, 15, .18);
  cursor: pointer;
  transition: width .2s var(--ease), background .2s var(--ease);
}

.dots button.active {
  width: 34px;
  background: var(--foreground);
}

.packs {
  background: var(--surface-muted);
}

.pack-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pack {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(16, 18, 15, .1);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .72);
}

.pack.featured {
  background: var(--foreground);
  color: #fff;
  transform: translateY(-16px);
}

.pack-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}

.pack-meta span {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pack-meta strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.pack h3 {
  margin: 52px 0 10px;
  font-family: Archivo, Inter, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.pack p {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.pack.featured p { color: var(--muted-dark); }
.pack .button { margin-top: auto; }
.pack.featured .secondary { color: var(--foreground); }

.dark {
  background: var(--surface-dark);
  color: #fff;
}

.dark .section-head span { color: var(--primary); }
.dark .section-head h2 { color: #fff; }

.formula {
  background:
    radial-gradient(circle at 84% 20%, rgba(201,255,35,.12), transparent 28%),
    linear-gradient(180deg, #11140f, #090b08);
}

.benefit-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit {
  min-height: 230px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface-dark-2);
}

.benefit span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.benefit strong {
  display: block;
  font-family: Archivo, Inter, sans-serif;
  color: var(--primary);
  font-size: 46px;
  line-height: 1;
}

.benefit h3 {
  margin: 12px 0 8px;
  font-size: 17px;
}

.benefit p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.creators {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 720px);
  align-items: center;
  gap: 54px;
  width: min(var(--container), 100%);
  margin: 0 auto;
  background: var(--background);
}

.creator-copy h2 {
  font-size: clamp(40px, 5vw, 66px);
}

.creator-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.social-grid figure {
  position: relative;
  min-height: 178px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #222;
}

.social-grid figure:nth-child(2),
.social-grid figure:nth-child(5) {
  transform: translateY(24px);
}

.social-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
  transition: transform .28s var(--ease), filter .28s var(--ease);
}

.social-grid figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.social-grid figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(16, 18, 15, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.retail {
  padding: 88px 24px;
}

.retail-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.retail h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.retail p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.62;
}

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

.retail-list article {
  min-height: 150px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, .05);
}

.retail-list strong {
  display: block;
  color: var(--primary);
  font-family: Archivo, Inter, sans-serif;
  font-size: 28px;
}

.retail-list span {
  display: block;
  margin-top: 14px;
  color: var(--muted-dark);
  font-weight: 600;
  line-height: 1.5;
}

.footer {
  padding: 86px 24px 28px;
  background:
    linear-gradient(90deg, rgba(16,18,15,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16,18,15,.05) 1px, transparent 1px),
    var(--primary);
  background-size: 32px 32px;
}

.footer-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer h2 {
  font-size: clamp(48px, 7vw, 96px);
}

.signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 30px auto 0;
}

.signup input {
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(16, 18, 15, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  padding: 0 18px;
  color: var(--foreground);
  font-weight: 700;
}

.signup input::placeholder { color: rgba(16, 18, 15, .5); }

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(16, 18, 15, .72);
  font-size: 14px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  width: min(var(--container), 100%);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 18, 15, .18);
}

.footer-links a {
  font-size: 14px;
  font-weight: 900;
}

.footer-links a:hover { text-decoration: underline; }

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--container), 100%);
  margin: 24px auto 0;
  color: rgba(16, 18, 15, .7);
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .58s var(--ease), transform .58s var(--ease);
}

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

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

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu { display: block; }

  .nav.open .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(251, 255, 243, .96);
    box-shadow: 0 22px 54px rgba(16, 18, 15, .14);
    backdrop-filter: blur(18px);
  }

  .nav.open .nav-links a {
    border-radius: var(--radius-sm);
    padding: 14px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-product {
    min-height: 470px;
    order: -1;
  }

  .hero h1 { font-size: clamp(54px, 13vw, 88px); }
  .lead { font-size: 18px; }

  .product-note.top { top: 60px; right: 8%; }
  .product-note.bottom { bottom: 66px; left: 8%; }

  .flavour-shell { grid-template-columns: 1fr; }
  .icon-button { display: none; }

  .benefit-grid,
  .pack-grid,
  .creators,
  .retail-inner {
    grid-template-columns: 1fr 1fr;
  }

  .pack.featured { transform: none; }
  .creators { gap: 28px; }
  .retail-list { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 76px; }
  section { padding: 66px 18px; }
  .nav {
    left: 14px;
    right: 14px;
    width: auto;
    transform: none;
  }
  .brand { font-size: 28px; }

  .hero {
    min-height: auto;
    padding: 98px 18px 0;
  }

  .hero-product {
    min-height: 455px;
    align-content: center;
    gap: 8px;
  }

  .hero-product img {
    width: min(282px, 74vw);
  }

  .product-orbit { width: min(78vw, 330px); }

  .product-note {
    position: static;
    justify-self: stretch;
    width: min(100%, 220px);
    padding: 10px;
  }

  .product-note.top,
  .product-note.bottom {
    inset: auto;
  }

  .actions,
  .signup {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-stats div {
    min-height: 74px;
    padding: 3px 8px;
  }

  .hero-stats dt { font-size: 30px; }
  .hero-stats dd { font-size: 11px; }

  .ticker {
    width: calc(100% - 36px);
    margin-bottom: 18px;
  }

  .flavour-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
    border-radius: var(--radius);
  }

  .can-frame {
    min-height: 320px;
  }

  .can-frame img { max-height: 320px; }

  .pack-grid,
  .benefit-grid,
  .creators,
  .retail-inner,
  .retail-list {
    grid-template-columns: 1fr;
  }

  .pack { min-height: 260px; }
  .pack h3 { margin-top: 38px; }

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

  .social-grid figure {
    min-height: 150px;
  }

  .social-grid figure:nth-child(2),
  .social-grid figure:nth-child(5) {
    transform: none;
  }

  .signup { display: grid; }

  .copyright {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 48px; }
  .section-head h2,
  .creator-copy h2,
  .retail h2 {
    font-size: 38px;
  }

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

  .hero-stats div {
    min-height: auto;
  }

  .product-note { width: 100%; }
}
