/* ====================================================================
   SKUNKY BREW — Design System v2
   "Taste of Chaos" — punk-cartoon canned tea brand
   Built for: skunkybrew.com (Hostinger static deploy)
   Audience: 16+ adult, loud, irreverent, retail-shelf credibility
   ==================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Black base — matte can finish */
  --c-void:       #000000;
  --c-coal:       #0A0A0A;
  --c-ink:        #14141A;
  --c-ink-soft:   #1F1F26;
  --c-mist:       #6B6B75;
  --c-line:       rgba(250,250,245,0.10);
  --c-line-strong:rgba(250,250,245,0.28);
  --c-bone:       #FAFAF5;          /* warm white text */

  /* Flavor accents — pulled directly from can art */
  --c-matcha:     #B5F23B;          /* Emerald Funk green */
  --c-matcha-deep:#7FB814;
  --c-purple:     #B96BFF;          /* Midnight Matcha purple */
  --c-purple-deep:#7B2BD9;
  --c-passion:    #FF2D7A;          /* Psycho Passion pink */
  --c-passion-deep:#C0185D;
  --c-gold:       #F9C42F;          /* Skunky's tooth + chain */

  /* Default brand accent (rotates per section) */
  --c-accent:     var(--c-matcha);
  --c-accent-deep:var(--c-matcha-deep);

  /* Type */
  --f-display: "Anton", "Bebas Neue", "Impact", system-ui, sans-serif;
  --f-stencil: "Bungee", "Black Ops One", "Anton", system-ui, sans-serif;
  --f-marker:  "Permanent Marker", "Anton", system-ui, sans-serif;
  --f-body:    "Inter", "Helvetica Neue", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --container:   1280px;
  --gap-xs: 8px;
  --gap-s:  16px;
  --gap-m:  24px;
  --gap-l:  48px;
  --gap-xl: 96px;

  --shadow-pop: 0 12px 30px rgba(0,0,0,0.6);
  --shadow-glow-matcha: 0 0 64px rgba(181,242,59,0.35);
  --shadow-glow-purple: 0 0 64px rgba(185,107,255,0.4);
  --shadow-glow-passion: 0 0 64px rgba(255,45,122,0.4);
}

/* Section-scoped flavor theming */
.theme-matcha  { --c-accent: var(--c-matcha);  --c-accent-deep: var(--c-matcha-deep); }
.theme-purple  { --c-accent: var(--c-purple);  --c-accent-deep: var(--c-purple-deep); }
.theme-passion { --c-accent: var(--c-passion); --c-accent-deep: var(--c-passion-deep); }

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-bone);
  background: var(--c-void);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 0.95; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* ---------- 3. Typography ---------- */
.eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 16px;
  display: inline-block;
}
.h1 {
  font-family: var(--f-display);
  font-size: clamp(64px, 12vw, 200px);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 112px);
  text-transform: uppercase;
  line-height: 0.9;
}
.h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  text-transform: uppercase;
}
.lead {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(250,250,245,0.78);
  max-width: 60ch;
}
.brush {
  font-family: var(--f-marker);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--c-accent);
  display: inline-block;
  transform: rotate(-2deg);
}

/* ---------- 4. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.section--bone   { background: var(--c-bone); color: var(--c-ink); }
.section--bone .lead { color: var(--c-ink-soft); }
.section--bone .eyebrow { color: var(--c-passion-deep); }

.section--coal   { background: var(--c-coal); }
.section--ink    { background: var(--c-ink); }
.section--void   { background: var(--c-void); }

.grid { display: grid; gap: var(--gap-m); }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- 5. Buttons (sharp corners, punk attitude) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform .12s ease, box-shadow .15s ease, background .12s ease, color .12s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translate3d(0,-2px,0); }
.btn:active { transform: translate3d(0,0,0); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-coal);
  border-color: var(--c-accent);
}
.btn--primary:hover { box-shadow: 0 0 30px var(--c-accent); }

.btn--ghost {
  background: transparent;
  color: var(--c-bone);
  border-color: var(--c-line-strong);
}
.btn--ghost:hover { border-color: var(--c-bone); background: rgba(250,250,245,0.06); }

.btn--ink { background: var(--c-coal); color: var(--c-bone); border-color: var(--c-coal); }
.btn--ink:hover { background: var(--c-ink); }

.btn--small { padding: 12px 22px; font-size: 14px; letter-spacing: 1.5px; }

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-header__logo {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 12px;
  color: var(--c-bone);
  text-transform: uppercase;
}
.site-header__logo .stripe {
  display: inline-block;
  width: 14px; height: 32px;
  background: linear-gradient(to bottom, #fff 0% 50%, #000 50% 100%);
}
.site-header__logo .brew { color: var(--c-matcha); }

.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-bone);
}
.site-nav a:hover { color: var(--c-matcha); }
@media (max-width: 800px) { .site-nav { display: none; } }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(123,43,217,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(127,184,20,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(255,45,122,0.12) 0%, transparent 55%),
    var(--c-void);
  padding: 64px 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/></svg>");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--gap-l);
  align-items: center;
  width: 100%;
}
@media (max-width: 1000px) { .hero__inner { grid-template-columns: 1fr; gap: var(--gap-l); } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(181,242,59,0.10);
  border: 1px solid rgba(181,242,59,0.4);
  color: var(--c-matcha);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pulse {
  width: 8px; height: 8px; background: var(--c-matcha); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(181,242,59,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(181,242,59,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(181,242,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,242,59,0); }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(72px, 13vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-transform: uppercase;
  color: var(--c-bone);
}
.hero__title .matcha  { color: var(--c-matcha); }
.hero__title .purple  { color: var(--c-purple); }
.hero__title .passion { color: var(--c-passion); }

.hero__lede {
  font-size: clamp(18px, 1.6vw, 23px);
  color: rgba(250,250,245,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 480px;
}
.hero__lineup {
  width: 100%;
  aspect-ratio: 16 / 12;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(185,107,255,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(181,242,59,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,45,122,0.4) 0%, transparent 50%),
    var(--c-coal);
  border: 2px dashed rgba(250,250,245,0.2);
  display: grid; place-items: center;
  color: rgba(250,250,245,0.6);
  font-family: var(--f-mono);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero__lineup img { max-width: 100%; max-height: 100%; }

.hero__trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  color: rgba(250,250,245,0.55);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* ---------- 8. Marquee strip ---------- */
.marquee {
  background: var(--c-matcha);
  color: var(--c-coal);
  padding: 22px 0;
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  border-top: 3px solid var(--c-coal);
  border-bottom: 3px solid var(--c-coal);
}
.marquee--purple { background: var(--c-purple); }
.marquee--passion { background: var(--c-passion); color: var(--c-bone); }
.marquee__track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
.marquee span { padding: 0 24px; }
.marquee .dot { color: var(--c-coal); }
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ---------- 9. Section header ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}
.section-head__title { max-width: 800px; }

/* ---------- 10. Flavor cards ---------- */
.flavor-card {
  position: relative;
  padding: 32px 28px 36px;
  border: 2px solid var(--c-line-strong);
  background: var(--c-coal);
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.flavor-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--c-accent) 0%, transparent 65%);
  opacity: 0.08;
  pointer-events: none;
  transition: opacity .25s ease;
}
.flavor-card:hover { transform: translate3d(0,-4px,0); border-color: var(--c-accent); }
.flavor-card:hover::before { opacity: 0.18; }
.flavor-card__can {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.5) 100%),
    var(--c-ink);
  display: grid; place-items: center;
  margin-bottom: 24px;
  position: relative;
  color: rgba(250,250,245,0.4);
  font-family: var(--f-mono);
  font-size: 12px;
  text-align: center;
  padding: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px dashed rgba(250,250,245,0.15);
}
.flavor-card__can img { max-width: 100%; max-height: 100%; object-fit: contain; }
.flavor-card__name {
  font-family: var(--f-display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--c-accent);
  margin-bottom: 6px;
}
.flavor-card__type {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250,250,245,0.6);
  margin-bottom: 14px;
}
.flavor-card__desc {
  font-size: 15px;
  color: rgba(250,250,245,0.85);
  margin-bottom: 20px;
  flex: 1;
}
.flavor-card__vote {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
}

/* ---------- 11. Molecules / ingredients ---------- */
.molecules {
  position: relative;
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--c-coal);
  overflow: hidden;
}
.molecules::before {
  /* Lifestyle scene placeholder slot */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(181,242,59,0.08) 0%, transparent 70%),
    var(--c-void);
  opacity: 0.6;
}
.molecules__inner { position: relative; z-index: 1; }
.molecule-card {
  border: 2px solid var(--c-line);
  padding: 32px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .2s ease, transform .2s ease;
}
.molecule-card:hover { border-color: var(--c-matcha); transform: translate3d(0,-3px,0); }
.molecule-card__name {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-matcha);
  margin-bottom: 8px;
}
.molecule-card__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,245,0.5);
  margin-bottom: 14px;
}
.molecule-card__desc { font-size: 15px; color: rgba(250,250,245,0.85); margin: 0; }

/* ---------- 12. Lifestyle gallery ---------- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.lifestyle-grid__cell {
  background: var(--c-ink);
  border: 1px dashed rgba(250,250,245,0.15);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  color: rgba(250,250,245,0.5);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 16px;
  text-transform: uppercase;
}
.lifestyle-grid__cell img {
  width: 100%; height: 100%; object-fit: cover;
}
.lifestyle-grid__cell--hero { grid-row: span 2; }
.lifestyle-grid__cell .caption {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-marker);
  font-size: 22px;
  color: var(--c-bone);
}
  /* ============================================================
   SKUNKY HERO v2 — drag carousel
   ============================================================ */
.skunky-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0A0A0A;
  font-family: 'Inter', sans-serif;
  color: #fff;
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.skunky-hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/></svg>");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: overlay;
}

.skunky-hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 75%, var(--glow, #A6FF00) 0%, transparent 65%);
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
  transition: background 650ms cubic-bezier(0.4,0,0.2,1);
}

.skunky-hero__ghost-logo {
  position: absolute;
  top: 12%; left: 50%;
  transform: translateX(-50%);
  height: 60%;
  width: auto;
  max-width: 95vw;
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
  filter: brightness(1.1);
  mix-blend-mode: lighten;        
}

.skunky-hero__brand {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skunky-hero__brand-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.skunky-hero__brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04);
  width: fit-content;
}
.skunky-hero__pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #A6FF00;
  box-shadow: 0 0 10px #A6FF00;
  animation: skunky-pulse 1.6s infinite ease-in-out;
}
@keyframes skunky-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.skunky-hero__carousel {
  position: absolute; inset: 0;
  z-index: 3;
  cursor: grab;
}
.skunky-hero__carousel:active { cursor: grabbing; }

.skunky-hero__can {
  position: absolute;
  bottom: 0;
  aspect-ratio: 0.55 / 1;
  pointer-events: none;
  transition:
    left 650ms cubic-bezier(0.4,0,0.2,1),
    transform 650ms cubic-bezier(0.4,0,0.2,1),
    filter 650ms cubic-bezier(0.4,0,0.2,1),
    opacity 650ms cubic-bezier(0.4,0,0.2,1),
    height 650ms cubic-bezier(0.4,0,0.2,1),
    bottom 650ms cubic-bezier(0.4,0,0.2,1);
  will-change: transform, filter, opacity, left, height;
}
.skunky-hero__can img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: bottom center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.skunky-hero__can[data-role="center"] {
  left: 50%;
  transform: translateX(-50%) scale(1);
  height: 92%;
  bottom: 0;
  opacity: 1;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
  z-index: 20;
}
.skunky-hero__can[data-role="left"] {
  left: 22%;
  transform: translateX(-50%) scale(1);
  height: 42%;
  bottom: 14%;
  opacity: 0.7;
  filter: blur(2px) drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  z-index: 10;
}
.skunky-hero__can[data-role="right"] {
  left: 78%;
  transform: translateX(-50%) scale(1);
  height: 42%;
  bottom: 14%;
  opacity: 0.7;
  filter: blur(2px) drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  z-index: 10;
}

.skunky-hero__hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
  z-index: 55;
  pointer-events: none;
  animation: skunky-hint 2.6s ease-in-out infinite;
  transition: opacity 400ms;
}
@keyframes skunky-hint {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.skunky-hero__info {
  position: absolute;
  bottom: 36px; left: 24px;
  z-index: 60;
  max-width: 360px;
}
.skunky-hero__info-title {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 4px;
  opacity: 0.85;
}
.skunky-hero__info-name {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 10px;
  transition: color 500ms;
}
.skunky-hero__info-name[data-flavor="midnight-matcha"] { color: #7B2DFF; }
.skunky-hero__info-name[data-flavor="emerald-funk"]    { color: #A6FF00; }
.skunky-hero__info-name[data-flavor="psycho-passion"]  { color: #FF1E8A; }

.skunky-hero__info-blurb {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0 0 18px;
  transition: opacity 220ms;
}
.skunky-hero__nav { display: flex; gap: 12px; }
.skunky-hero__nav-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms, background-color 160ms, border-color 160ms;
}
.skunky-hero__nav-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.08);
}
.skunky-hero__nav-btn:active { transform: scale(0.95); }

.skunky-hero__cta {
  position: absolute;
  bottom: 44px; right: 32px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 4.2vw, 56px);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 0.95;
  transition: opacity 200ms, transform 200ms;
}
.skunky-hero__cta:hover { opacity: 1; }
.skunky-hero__cta-arrow {
  display: inline-block;
  transition: transform 200ms;
}
.skunky-hero__cta:hover .skunky-hero__cta-arrow {
  transform: translateX(8px);
}

/* Mobile */
@media (max-width: 720px) {
  .skunky-hero { min-height: 580px; }
  .skunky-hero__ghost-logo { height: 38%; top: 18%; opacity: 0.18; }
  .skunky-hero__brand-badge { display: none; }
.skunky-hero__can { transition-duration: 400ms; }
.skunky-hero__can[data-role="center"] {
  height: 56%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}
.skunky-hero__can[data-role="left"] {
  left: 14%; height: 22%; bottom: 30%;
  filter: brightness(0.5) drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}
.skunky-hero__can[data-role="right"] {
  left: 86%; height: 22%; bottom: 30%;
  filter: brightness(0.5) drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}
  .skunky-hero__info {
    bottom: 24px; left: 20px; right: 20px;
    max-width: none;
  }
  .skunky-hero__info-title { font-size: 18px; }
  .skunky-hero__info-name { font-size: 28px; margin-bottom: 6px; }
  .skunky-hero__info-blurb { font-size: 13px; margin-bottom: 14px; }
  .skunky-hero__nav-btn { width: 44px; height: 44px; }
  .skunky-hero__cta {
    position: absolute;
    top: 24px; right: 20px;
    bottom: auto;
    font-size: 16px;
    gap: 8px;
  }
  .skunky-hero__hint { bottom: 14px; font-size: 9px; }
}
/* ============================================================
   MANIFESTO VIDEO SECTION
   ============================================================ */
.skunky-manifesto {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.skunky-manifesto__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.skunky-manifesto__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.skunky-manifesto__sound {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 2px solid #A6FF00;
  border-radius: 999px;
  background: rgba(166,255,0,0.15);
  color: #A6FF00;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 200ms, transform 200ms, box-shadow 220ms, color 200ms, border-color 200ms;
}
.skunky-manifesto__sound:hover {
  background: rgba(166,255,0,0.3);
  box-shadow: 0 0 20px rgba(166,255,0,0.55);
  transform: scale(1.05);
}
.skunky-manifesto__sound[data-state="on"] {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}
.skunky-manifesto__sound[data-state="on"]:hover {
  background: rgba(255,255,255,0.28);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.skunky-manifesto__content {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  width: calc(100% - 48px);
  max-width: 880px;
}
.skunky-manifesto__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(54px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.65);
}
.skunky-manifesto__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 18px);
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.skunky-manifesto__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #A6FF00;
  color: #0A0A0A;
  text-decoration: none;
  font-family: 'Anton', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid #A6FF00;
  transition: transform 180ms, box-shadow 220ms;
}
.skunky-manifesto__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(166,255,0,0.6);
}
.skunky-manifesto__cta-arrow {
  display: inline-block;
  transition: transform 200ms;
}
.skunky-manifesto__cta:hover .skunky-manifesto__cta-arrow {
  transform: translateX(6px);
}

@media (max-width: 720px) {
  .skunky-manifesto { height: 100vh; min-height: 560px; }
  .skunky-manifesto__content { bottom: 16%; }
  .skunky-manifesto__title { font-size: clamp(44px, 13vw, 84px); }
  .skunky-manifesto__sub { font-size: 12px; margin-bottom: 22px; }
  .skunky-manifesto__cta { padding: 14px 26px; font-size: 14px; }
  .skunky-manifesto__sound {
    top: 16px; right: 16px;
    padding: 8px 14px;
    font-size: 11px;
    gap: 8px;
  }
}
/* ============================================================
   LIFESTYLE GALLERY v2 — interactive mosaic
   ============================================================ */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 4px;                              /* was 12px — tight mosaic */
}

.lifestyle-grid__cell {
  background: var(--c-coal);
  border: none;                          /* kill dashed placeholder border */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

/* Image — slow zoom + slight color punch on hover */
.lifestyle-grid__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1),
              filter 500ms ease;
  will-change: transform;
}
.lifestyle-grid__cell:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.05);
}

/* Bottom gradient — always there for caption legibility, intensifies on hover */
.lifestyle-grid__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.82) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 400ms ease;
}

/* Neon inset border on hover — cycles brand colors per cell */
.lifestyle-grid__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 transparent;
  transition: box-shadow 350ms ease;
}
.lifestyle-grid__cell:nth-child(1):hover::after { box-shadow: inset 0 0 0 3px #A6FF00; }
.lifestyle-grid__cell:nth-child(2):hover::after { box-shadow: inset 0 0 0 3px #7B2DFF; }
.lifestyle-grid__cell:nth-child(3):hover::after { box-shadow: inset 0 0 0 3px #FF1E8A; }
.lifestyle-grid__cell:nth-child(4):hover::after { box-shadow: inset 0 0 0 3px #A6FF00; }
.lifestyle-grid__cell:nth-child(5):hover::after { box-shadow: inset 0 0 0 3px #FF1E8A; }

/* Caption — sits low, slides up + color shift on hover */
.lifestyle-grid__cell .caption {
  position: absolute;
  bottom: 22px;
  left: 26px;
  right: 26px;
  z-index: 5;
  font-family: var(--f-marker, 'Permanent Marker', cursive);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,0.85);
  transform: translateY(10px);
  opacity: 0.92;
  letter-spacing: 0.5px;
  transition: transform 400ms cubic-bezier(0.2, 0.6, 0.2, 1),
              opacity 350ms ease,
              color 350ms ease,
              text-shadow 350ms ease;
}
.lifestyle-grid__cell:hover .caption {
  transform: translateY(0);
  opacity: 1;
}

/* Hero cell — bigger caption */
.lifestyle-grid__cell--hero .caption {
  font-size: clamp(30px, 3.8vw, 52px);
  bottom: 34px;
  left: 34px;
  right: 34px;
}

/* Caption colors per cell on hover, matching the border */
.lifestyle-grid__cell:nth-child(1):hover .caption {
  color: #A6FF00;
  text-shadow: 0 0 24px rgba(166,255,0,0.55), 0 4px 16px rgba(0,0,0,0.85);
}
.lifestyle-grid__cell:nth-child(2):hover .caption {
  color: #C9A0FF;
  text-shadow: 0 0 20px rgba(123,45,255,0.6), 0 4px 16px rgba(0,0,0,0.85);
}
.lifestyle-grid__cell:nth-child(3):hover .caption {
  color: #FF6BAA;
  text-shadow: 0 0 20px rgba(255,30,138,0.6), 0 4px 16px rgba(0,0,0,0.85);
}
.lifestyle-grid__cell:nth-child(4):hover .caption {
  color: #A6FF00;
  text-shadow: 0 0 20px rgba(166,255,0,0.55), 0 4px 16px rgba(0,0,0,0.85);
}
.lifestyle-grid__cell:nth-child(5):hover .caption {
  color: #FF6BAA;
  text-shadow: 0 0 20px rgba(255,30,138,0.6), 0 4px 16px rgba(0,0,0,0.85);
}

/* Tablet — collapse to 2-up, hero spans full width */
@media (max-width: 900px) {
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 280px 280px;
  }
  .lifestyle-grid__cell--hero {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

/* Mobile — single column stack */
@media (max-width: 600px) {
  .lifestyle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px;
    grid-auto-rows: 240px;
    gap: 6px;
  }
  .lifestyle-grid__cell--hero { grid-column: 1; }
  .lifestyle-grid__cell .caption {
    transform: translateY(0);
    opacity: 1;
  }
  .lifestyle-grid__cell--hero .caption {
    font-size: clamp(26px, 7vw, 38px);
  }
}
/* ============================================================
   FLAVOR CARDS v2 — let the cans breathe + glow
   ============================================================ */
.flavor-card {
  background: var(--c-coal);
  border: 2px solid transparent;
  padding: 36px 28px;
  overflow: hidden;
  position: relative;
  transition: border-color 300ms ease,
              transform 300ms ease,
              box-shadow 350ms ease;
}

/* Stronger flavor-colored radial glow at rest, exploding on hover */
.flavor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, var(--c-accent) 0%, transparent 65%);
  opacity: 0.14;
  pointer-events: none;
  transition: opacity 400ms ease;
  z-index: 1;
}
.flavor-card > * { position: relative; z-index: 2; }

.flavor-card:hover {
  transform: translate3d(0, -10px, 0);
  border-color: var(--c-accent);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6),
              0 0 60px var(--c-accent);
}
.flavor-card:hover::before { opacity: 0.4; }

/* Kill the muddy dark box around the can — let it float on the card glow */
.flavor-card__can {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 24px;
  aspect-ratio: 3 / 4;
  position: relative;
  display: grid;
  place-items: end center;
  overflow: visible;
}
.flavor-card__can img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.75));
  transition: transform 500ms cubic-bezier(0.2, 0.6, 0.2, 1),
              filter 400ms ease;
  will-change: transform, filter;
}
.flavor-card:hover .flavor-card__can img {
  transform: scale(1.06) translateY(-8px);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8))
          drop-shadow(0 0 35px var(--c-accent));
}

/* Flavor name gets a subtle accent-color glow */
.flavor-card__name {
  text-shadow: 0 0 30px var(--c-accent);
}

/* Vote counter — promote from afterthought to a real badge */
.flavor-card__vote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1.5px solid var(--c-accent);
  border-top: 1.5px solid var(--c-accent);
  background: rgba(0,0,0,0.45);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  width: fit-content;
  margin-top: auto;
  transition: background 250ms ease,
              color 250ms ease,
              transform 200ms ease;
}
.flavor-card:hover .flavor-card__vote {
  background: var(--c-accent);
  color: var(--c-coal);
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .grid--3 { grid-template-columns: 1fr; }
}
/* ============================================================
   MAILERLITE FORM — ID-targeted, beats their specificity
   ============================================================ */
.ml-embedded { margin: 36px 0 20px; max-width: 580px; }

/* Outer wrapper */
#mlb2-41454078.ml-form-embedContainer,
#mlb2-41454078 .ml-form-embedWrapper {
  background: rgba(0,0,0,0.5) !important;
  border: 2px solid rgba(166,255,0,0.35) !important;
  border-radius: 0 !important;
  padding: 32px !important;
  box-shadow: 0 0 60px rgba(166,255,0,0.1) !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Hide the "Newsletter" header + the "Signup for news..." copy */
#mlb2-41454078 .ml-form-embedHeader,
#mlb2-41454078 .ml-form-embedContent {
  display: none !important;
}

/* Email input — matching their exact selector chain to win */
#mlb2-41454078.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background: rgba(0,0,0,0.7) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.2) !important;
  border-radius: 0 !important;
  padding: 18px 20px !important;
  font-size: 16px !important;
  font-family: 'Inter', sans-serif !important;
  height: auto !important;
  line-height: 1.4 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 220ms ease !important;
}
#mlb2-41454078.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:focus {
  outline: none !important;
  border-color: #A6FF00 !important;
  background: rgba(0,0,0,0.85) !important;
  box-shadow: 0 0 20px rgba(166,255,0,0.3) !important;
}
#mlb2-41454078 input::placeholder { color: rgba(255,255,255,0.45) !important; }

/* PRIMARY submit button only — leave the loading button alone */
#mlb2-41454078.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
  display: block !important;
  width: 100% !important;
  background: #A6FF00 !important;
  background-color: #A6FF00 !important;
  color: #0A0A0A !important;
  border: 2px solid #A6FF00 !important;
  border-radius: 0 !important;
  font-family: 'Anton', sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  padding: 20px 32px !important;
  margin: 16px 0 0 !important;
  min-height: 60px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: transform 180ms ease, box-shadow 220ms ease !important;
}
#mlb2-41454078 .ml-form-embedSubmit button.primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 30px rgba(166,255,0,0.65) !important;
}

/* Kill the spinner — it should only show during actual submit */
#mlb2-41454078 .ml-form-embedSubmit button.loading {
  display: none !important;
}

/* Permission / GDPR text below button */
#mlb2-41454078 .ml-form-embedPermissions,
#mlb2-41454078 .ml-form-embedPermissions p {
  font-size: 11px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 14px !important;
  font-family: 'Inter', sans-serif !important;
}

.waitlist-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 18px 0 0;
}
/* ============================================================
   PRICE CARDS — build them properly
   ============================================================ */
.price-card {
  position: relative;
  padding: 40px 30px 32px;
  background: rgba(255,255,255,0.025);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 280ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4);
}

.price-card--featured {
  border-color: #A6FF00;
  background: rgba(166,255,0,0.06);
  box-shadow: 0 0 40px rgba(166,255,0,0.15);
}
.price-card--featured::before {
  content: "FOUNDERS";
  position: absolute;
  top: 18px; right: -38px;
  background: #A6FF00;
  color: #0A0A0A;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 6px 44px;
  text-transform: uppercase;
  transform: rotate(35deg);
  font-weight: 700;
  z-index: 2;
}
.price-card--featured:hover {
  border-color: #A6FF00;
  box-shadow: 0 18px 50px rgba(166,255,0,0.35);
}

.price-card__num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 4px 0 0;
}
.price-card--featured .price-card__num { color: #A6FF00; }

.price-card__sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card__list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.price-card__list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: rgba(255,255,255,0.4);
  font-weight: bold;
}
.price-card--featured .price-card__list li::before { color: #A6FF00; }

/* ============================================================
   STORY SECTION — dark version polish
   ============================================================ */
.section--ink#story {
  background: radial-gradient(ellipse at 20% 30%, rgba(123,45,255,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 90% 80%, rgba(255,30,138,0.08) 0%, transparent 55%),
              var(--c-ink);
}
.section--ink#story .h2 {
  color: #fff;
}
/* ============================================================
   MOLECULES SECTION v2 — Prof. Funkington background
   ============================================================ */
.molecules {
  background: var(--c-coal);
  position: relative;
  isolation: isolate;
}

/* Replace the original gradient with the scientist image */
.molecules::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("images/professor-funk.png") center/cover no-repeat;
  opacity: 0.30;
  z-index: 0;
}

/* Heavy overlay so cards stay readable + atmospheric vignette */
.molecules::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.88) 0%,
      rgba(10,10,10,0.55) 35%,
      rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.molecules__inner {
  position: relative;
  z-index: 2;
}

/* Molecule cards — punch up the hover */
.molecule-card {
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 280ms ease,
              transform 280ms ease,
              box-shadow 320ms ease,
              background 280ms ease;
}
.molecule-card:hover {
  border-color: #A6FF00;
  transform: translateY(-6px);
  background: rgba(0,0,0,0.75);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45),
              0 0 40px rgba(166,255,0,0.22);
}
.molecule-card__name {
  text-shadow: 0 0 20px rgba(166,255,0,0.45);
}
/* ============================================================
   FAQ ACCORDION — proper cards, smooth open/close, neon accent
   ============================================================ */
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 2px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  padding: 0;
  transition: border-color 250ms ease, background 250ms ease, box-shadow 250ms ease;
  overflow: hidden;
}
.faq-item:hover {
  border-color: rgba(166,255,0,0.45);
  background: rgba(255,255,255,0.04);
}
.faq-item[open] {
  border-color: #A6FF00;
  background: rgba(166,255,0,0.05);
  box-shadow: 0 0 24px rgba(166,255,0,0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item:hover summary { color: #A6FF00; }
.faq-item[open] summary { color: #A6FF00; }

/* Custom +/− indicator on the right */
.faq-item summary::after {
  content: "+";
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: #A6FF00;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 350ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 28px 24px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  animation: faq-slide-down 350ms ease forwards;
}
@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-item p a {
  color: #A6FF00 !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}
.faq-item p a:hover {
  color: #fff !important;
}
/* ============================================================
   SITE FOOTER — proper layout + branded polish
   ============================================================ */
.site-footer {
  background: var(--c-void);
  border-top: 1px solid var(--c-line);
  padding: 80px 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

/* Brand column — bigger headline + tighter blurb */
.site-footer__brand h3 {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 18px;
  text-transform: uppercase;
  line-height: 0.95;
}
.site-footer__brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  margin: 0;
}

/* Section headers — neon mono eyebrows */
.site-footer__grid > div > h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #A6FF00;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}

/* Link lists — kill bullets, branded type, slide-right hover */
.site-footer__grid > div > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__grid > div > ul li { margin: 0; }
.site-footer__grid > div > ul li a {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
  display: inline-block;
}
.site-footer__grid > div > ul li a:hover {
  color: #A6FF00;
  transform: translateX(4px);
}

/* Legal strip — small mono, faded, separated by a hairline */
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive collapse */
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   SCROLL REVEAL — fade sections + stagger their children
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .skunky-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.2, 0.6, 0.2, 1),
                transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: opacity, transform;
  }
  .skunky-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger children of grids/lists */
  .skunky-reveal-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms cubic-bezier(0.2, 0.6, 0.2, 1),
                transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: opacity, transform;
  }
  .skunky-reveal-stagger.is-revealed > * {
    opacity: 1;
    transform: translateY(0);
  }
  .skunky-reveal-stagger.is-revealed > *:nth-child(1)  { transition-delay: 0ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(2)  { transition-delay: 90ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(3)  { transition-delay: 180ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(4)  { transition-delay: 270ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(5)  { transition-delay: 360ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(6)  { transition-delay: 450ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(7)  { transition-delay: 540ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(8)  { transition-delay: 630ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(9)  { transition-delay: 720ms; }
  .skunky-reveal-stagger.is-revealed > *:nth-child(10) { transition-delay: 810ms; }
}
@media (max-width: 600px) {
  .flavor-card__can {
    aspect-ratio: auto;
    place-items: center;
  }
  .flavor-card__can img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}
.site-nav a.btn--primary {
  color: var(--c-coal);
}
.footer-legal { margin-top: 12px; font-size: 14px; }
.footer-legal a { color: var(--c-muted, #9A9A92); text-decoration: none; }
.footer-legal a:hover { color: var(--c-accent, #B5F23B); }
.footer-legal span { color: var(--c-muted, #9A9A92); margin: 0 8px; }
.ml-form-embedContainer input[type="email"],
.ml-form-embedContainer input[type="email"]:focus {
  background: #fff !important;
  color: #0A0A0A !important;
}