/* =====================================================
   GORILLA ELIXIR — Affiliate Landing
   Mobile-first. Black base + teal + lemon yellow.
   ===================================================== */

:root {
  /* Color */
  --c-ink: #0A0A0A;
  --c-ink-2: #131313;
  --c-ink-3: #1c1c1c;
  --c-line: #2a2a2a;
  --c-text: #F4F2EC;
  --c-mute: #B7B3A8;
  --c-faint: #6e6a60;

  --c-teal: #23E5DB;
  --c-teal-deep: #0FB7AD;
  --c-yellow: #F5E14B;
  --c-yellow-deep: #d8c12d;
  --c-berry: #FF5C8A;
  --c-passion: #FF9A35;

  /* Type scale (fluid, mobile-first) */
  --t-xs:  clamp(11px, .72rem, 12px);
  --t-sm:  clamp(13px, .85rem, 14px);
  --t-base: clamp(15px, 1rem, 17px);
  --t-lg:  clamp(18px, 1.15rem, 20px);
  --t-xl:  clamp(22px, 1.6rem, 28px);
  --t-2xl: clamp(30px, 4.5vw, 44px);
  --t-3xl: clamp(40px, 8vw, 72px);
  --t-hero: clamp(48px, 12vw, 128px);

  /* Space */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --max: 1180px;

  --font-display: 'Clash Display', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.16,1,.3,1);
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-ink);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 2px solid var(--c-teal); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ============== AGE GATE ============== */
.age-gate {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(14px);
  display: grid; place-items: center;
  padding: var(--s-5);
  opacity: 1;
  transition: opacity .4s var(--ease);
}
.age-gate.is-hidden { opacity: 0; pointer-events: none; }
.age-gate__card {
  background: linear-gradient(180deg, #141414, #0b0b0b);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: clamp(24px, 6vw, 44px);
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(35,229,219,.05);
}
.age-gate__mark { color: var(--c-teal); display: grid; place-items: center; margin-bottom: var(--s-4); }
.age-gate__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 6vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
  word-spacing: .05em;
  margin-bottom: var(--s-3);
}
.age-gate__copy { color: var(--c-mute); font-size: var(--t-sm); margin-bottom: var(--s-5); }
.age-gate__actions { display: flex; gap: var(--s-3); flex-direction: column; }
.age-gate__fine { margin-top: var(--s-4); font-size: var(--t-xs); color: var(--c-faint); }

/* ============== BUTTONS ============== */
.btn {
  --bg: var(--c-teal); --fg: #061312; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd);
  padding: 14px 22px;
  font-weight: 700; font-size: var(--t-sm);
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
  box-shadow: 0 8px 24px -10px rgba(35,229,219,.5);
}
.btn:hover { transform: translateY(-2px); background: #4af2e9; box-shadow: 0 14px 30px -12px rgba(35,229,219,.6); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 17px 28px; font-size: var(--t-base); }
.btn--xl { padding: 20px 34px; font-size: var(--t-lg); }
.btn--sm { padding: 10px 16px; font-size: var(--t-xs); }
.btn--accent { --bg: var(--c-yellow); --fg: #1a1500; box-shadow: 0 8px 24px -10px rgba(245,225,75,.5); }
.btn--accent:hover { background: #fbef7a; }
.btn--ghost { --bg: transparent; --fg: var(--c-text); --bd: var(--c-line); box-shadow: none; }
.btn--ghost:hover { background: #1a1a1a; }
.btn--ink { --bg: var(--c-ink); --fg: var(--c-text); --bd: var(--c-ink); box-shadow: 0 8px 24px -10px rgba(0,0,0,.6); }
.btn--ink:hover { background: #181818; }

/* ============== STRIP / MARQUEE ============== */
.strip {
  position: relative; z-index: 5;
  background: var(--c-yellow); color: var(--c-ink);
  border-bottom: 2px solid var(--c-ink);
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 12px;
  padding: 8px 0;
}
.strip__track {
  display: inline-flex; gap: 26px; white-space: nowrap;
  animation: scroll 35s linear infinite;
}
.strip__dot { color: var(--c-ink); font-size: 8px; line-height: 1; transform: translateY(-1px); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== HEADER ============== */
.header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 28px);
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
}
.brand__mark { color: var(--c-teal); display: inline-flex; }
.brand__word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(15px, 3.6vw, 18px);
  letter-spacing: .04em;
}
.brand__slash { color: var(--c-yellow); padding: 0 1px; }
.brand__badge {
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: .18em;
  color: var(--c-ink); background: var(--c-teal);
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.brand--footer { color: var(--c-text); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(32px, 6vw, 64px) clamp(16px, 4vw, 28px) clamp(40px, 8vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 6vw, 48px);
  align-items: center;
}
@media (min-width: 880px) {
  .hero__grid { grid-template-columns: 1.15fr 1fr; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: .22em;
  color: var(--c-teal);
  border: 1px solid rgba(35,229,219,.3);
  background: rgba(35,229,219,.06);
  padding: 6px 12px; border-radius: var(--radius-pill);
  margin-bottom: var(--s-5);
}
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot--teal { background: var(--c-teal); box-shadow: 0 0 8px var(--c-teal); }
.dot--yellow { background: var(--c-yellow); box-shadow: 0 0 8px var(--c-yellow); }
.dot--ink { background: var(--c-ink); }

.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-hero);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.hero__line { display: block; }
.hero__line--accent {
  color: var(--c-teal);
  -webkit-text-stroke: 0;
}
.hero__line--small {
  font-size: clamp(18px, 3.6vw, 28px);
  letter-spacing: 0;
  line-height: 1.1;
  margin-top: var(--s-4);
  color: var(--c-text);
  font-weight: 600;
}
.hero__sub {
  color: var(--c-mute);
  font-size: var(--t-base);
  max-width: 46ch;
  margin-bottom: var(--s-6);
}
.hero__cta {
  display: flex; align-items: center; gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.hero__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero__pills li {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: .14em;
  border: 1px solid var(--c-line);
  background: var(--c-ink-2);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  color: var(--c-text);
}
.hero__pills li svg { color: var(--c-teal); }

/* Code pill */
.code-pill {
  display: inline-flex; align-items: stretch;
  border: 1.5px dashed var(--c-yellow);
  border-radius: var(--radius-pill);
  background: rgba(245,225,75,.06);
  padding: 4px 4px 4px 14px;
  gap: 10px;
  align-items: center;
}
.code-pill__label {
  font-family: var(--font-display); font-weight: 600;
  font-size: 10px; letter-spacing: .22em;
  color: var(--c-yellow);
}
.code-pill__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-base);
  letter-spacing: .08em;
  color: var(--c-text);
}
.code-pill__btn {
  border: none; background: var(--c-yellow); color: var(--c-ink);
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: .14em;
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: background .2s;
}
.code-pill__btn:hover { background: #fbef7a; }
.code-pill.is-copied .code-pill__btn { background: var(--c-teal); }
.code-pill.is-copied .code-pill__btn::after { content: ''; }

/* Hero visual */
.hero__visual {
  position: relative;
  min-height: 320px;
  display: grid; place-items: center;
}
.hero__glow {
  position: absolute; inset: 10% 5%;
  background: radial-gradient(60% 50% at 50% 50%, rgba(35,229,219,.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero__bottle {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.55));
  animation: float 6s ease-in-out infinite;
}
.hero__bottle img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
  mix-blend-mode: normal;
}
.hero__bottle--lemon {
  width: clamp(210px, 34vw, 330px);
  transform: rotate(-7deg) translateX(-22%);
  z-index: 3;
}
.hero__bottle--berry {
  position: absolute;
  width: clamp(150px, 22vw, 220px);
  right: 4%;
  bottom: 8%;
  transform: rotate(9deg) translateX(10%);
  animation-delay: -3s;
  opacity: .95;
  z-index: 2;
}
@keyframes float {
  0%, 100% { transform: rotate(-7deg) translate(-22%, 0); }
  50% { transform: rotate(-7deg) translate(-22%, -10px); }
}
.hero__bottle--berry { animation-name: float-b; }
@keyframes float-b {
  0%, 100% { transform: rotate(9deg) translate(10%, 0); }
  50% { transform: rotate(9deg) translate(10%, -12px); }
}
.hero__lemon {
  position: absolute;
  width: clamp(54px, 8vw, 84px);
  top: 2%; left: 8%;
  z-index: 4;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.5));
  animation: spin 28s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============== SECTIONS ============== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) clamp(16px, 4vw, 28px);
}
.section__head {
  max-width: 720px;
  margin: 0 auto var(--s-8);
  text-align: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: .24em;
  color: var(--c-teal);
  margin-bottom: var(--s-4);
}
.kicker--ink { color: var(--c-ink); }
.h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.h2--ink { color: var(--c-ink); }
.lede {
  margin-top: var(--s-4);
  color: var(--c-mute);
  font-size: var(--t-lg);
  line-height: 1.45;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}
.lede--ink { color: rgba(10,10,10,.8); }

/* WHY GRID */
.why-grid {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.why-card {
  padding: var(--s-6);
  background: linear-gradient(180deg, var(--c-ink-2), var(--c-ink-3));
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.why-card:hover { border-color: rgba(35,229,219,.4); transform: translateY(-3px); }
.why-card__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-2xl);
  color: var(--c-teal);
  line-height: 1;
  margin-bottom: var(--s-4);
}
.why-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-xl);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-bottom: var(--s-3);
}
.why-card__body { color: var(--c-mute); font-size: var(--t-sm); }

/* PRODUCTS */
.product-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  padding: var(--s-6);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: var(--c-ink-2);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.product:hover { transform: translateY(-4px); }
.product--lemon { border-color: rgba(245,225,75,.25); }
.product--lemon:hover { border-color: rgba(245,225,75,.55); }
.product--berry { border-color: rgba(255,92,138,.25); }
.product--berry:hover { border-color: rgba(255,92,138,.55); }
.product--passion { border-color: rgba(255,154,53,.25); }
.product--passion:hover { border-color: rgba(255,154,53,.55); }
.product::before {
  content: '';
  position: absolute; inset: -40% -10% auto auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245,225,75,.18), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.product--berry::before {
  background: radial-gradient(circle, rgba(255,92,138,.22), transparent 65%);
}
.product--passion::before {
  background: radial-gradient(circle, rgba(255,154,53,.22), transparent 65%);
}
@media (min-width: 520px) {
  .product { grid-template-columns: 160px 1fr; align-items: center; }
}
@media (min-width: 980px) {
  .product { grid-template-columns: 1fr; align-items: start; }
}
.product__bottle {
  display: grid; place-items: center;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.5));
}
.product__bottle svg { width: clamp(110px, 22vw, 150px); }
.product__bottle img {
  width: min(100%, 210px);
  margin: 0 auto;
  border-radius: 14px;
  object-fit: contain;
}
.product__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-xl);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.product--lemon .product__name { color: var(--c-yellow); }
.product--berry .product__name { color: var(--c-berry); }
.product--passion .product__name { color: var(--c-passion); }
.product__tag { color: var(--c-mute); font-size: var(--t-sm); margin-bottom: var(--s-4); font-style: italic; }
.product__meta {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: var(--s-5);
  font-size: var(--t-xs);
  color: var(--c-text);
}
.product__meta li {
  padding-left: 18px;
  position: relative;
}
.product__meta li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 10px; height: 2px; background: var(--c-teal);
}
.product-grid__note {
  text-align: center;
  font-size: var(--t-xs);
  color: var(--c-faint);
  margin-top: var(--s-6);
}

.bundle-callout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  margin-top: var(--s-8);
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid rgba(35,229,219,.34);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 12% 18%, rgba(245,225,75,.22), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(35,229,219,.2), transparent 30%),
    linear-gradient(135deg, rgba(19,19,19,.98), rgba(5,5,5,.98));
  overflow: hidden;
  box-shadow: 0 26px 80px -50px rgba(35,229,219,.65);
}
.bundle-callout::after {
  content: '2 FLAVORS';
  position: absolute;
  right: -18px;
  bottom: -22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(54px, 12vw, 140px);
  line-height: .8;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.035);
  pointer-events: none;
}
@media (min-width: 820px) {
  .bundle-callout { grid-template-columns: minmax(260px, .8fr) 1.2fr; }
}
.bundle-callout__media {
  position: relative;
  z-index: 2;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.bundle-callout__media img {
  width: min(100%, 360px);
  border-radius: 20px;
  transform: rotate(-2deg);
  filter: drop-shadow(0 28px 36px rgba(0,0,0,.55));
}
.bundle-callout__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--c-yellow);
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
  border-radius: var(--radius-pill);
  padding: 8px 13px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  box-shadow: 0 12px 30px -16px rgba(245,225,75,.7);
  transform: rotate(-4deg);
}
.bundle-callout__copy {
  position: relative;
  z-index: 2;
}
.bundle-callout__copy .kicker {
  margin-bottom: var(--s-3);
}
.bundle-callout__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 58px);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--c-text);
  max-width: 11ch;
  margin-bottom: var(--s-4);
}
.bundle-callout__copy p {
  max-width: 52ch;
  color: var(--c-mute);
  font-size: var(--t-base);
  margin-bottom: var(--s-5);
}

/* ============== POWER SLAP ============== */
.section--slap {
  max-width: none;
  padding: 0;
  margin: 0;
}
.slap {
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: clamp(48px, 9vw, 96px) clamp(20px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
  border-top: 4px solid var(--c-ink);
  border-bottom: 4px solid var(--c-ink);
}
.slap::after {
  content: 'BUZZ. BUZZ. BUZZ.';
  position: absolute;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(80px, 18vw, 220px);
  color: rgba(10,10,10,.06);
  bottom: -10%; left: -2%;
  letter-spacing: -.03em;
  pointer-events: none;
}
@media (min-width: 820px) {
  .slap { grid-template-columns: 1.4fr 1fr; max-width: 1280px; margin: 0 auto; }
}
.slap__copy { position: relative; z-index: 2; max-width: 640px; }
.slap__copy .h2 { margin-bottom: var(--s-4); }
.slap__copy .lede { margin: 0 0 var(--s-6); }
.slap__bolt {
  position: relative; z-index: 2;
  width: clamp(140px, 28vw, 240px);
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.25));
  animation: tilt 6s ease-in-out infinite;
}
@keyframes tilt {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* ============== HOW STEPS ============== */
.steps {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: var(--s-6);
  border-radius: var(--radius);
  background: var(--c-ink-2);
  border: 1px solid var(--c-line);
  position: relative;
}
.step__num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-teal); color: var(--c-ink);
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px;
  margin-bottom: var(--s-4);
}
.step__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-lg);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: var(--s-3);
}
.step__body { color: var(--c-mute); font-size: var(--t-sm); }
.how-cta {
  text-align: center;
  margin-top: var(--s-7);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
}
.how-cta__code { color: var(--c-mute); font-size: var(--t-sm); }
.how-cta__code strong { color: var(--c-yellow); letter-spacing: .08em; }

/* ============== NOTE ============== */
.note {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: start;
  padding: var(--s-6);
  border-radius: var(--radius);
  border: 1px solid rgba(35,229,219,.3);
  background:
    linear-gradient(180deg, rgba(35,229,219,.05), transparent),
    var(--c-ink-2);
}
@media (min-width: 640px) {
  .note { grid-template-columns: 64px 1fr; gap: var(--s-5); }
}
.note__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(35,229,219,.12);
  color: var(--c-teal);
  border: 1px solid rgba(35,229,219,.3);
}
.note__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-lg);
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-bottom: var(--s-3);
}
.note p { color: var(--c-mute); font-size: var(--t-sm); }

/* ============== FAQ ============== */
.faq {
  max-width: 800px; margin: 0 auto;
  border-top: 1px solid var(--c-line);
}
.faq__item {
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-5) 0;
}
.faq__item summary {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-lg);
  text-transform: uppercase;
  letter-spacing: -.005em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3);
  cursor: pointer;
  padding-right: 4px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--c-teal);
  font-weight: 400;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  color: var(--c-mute);
  font-size: var(--t-base);
  margin-top: var(--s-3);
  max-width: 60ch;
}
.faq__item p strong { color: var(--c-yellow); letter-spacing: .06em; }

/* ============== FINAL CTA ============== */
.section--final {
  padding-bottom: clamp(64px, 12vw, 140px);
}
.final {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) var(--s-5);
  border-radius: var(--radius);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(35,229,219,.18), transparent 70%),
    radial-gradient(50% 80% at 50% 100%, rgba(245,225,75,.12), transparent 70%),
    var(--c-ink-2);
  border: 1px solid var(--c-line);
}
.final__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-3xl);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: var(--s-6);
}
.final__title span { color: var(--c-teal); }
.final__code { margin-top: var(--s-5); color: var(--c-mute); font-size: var(--t-sm); }
.final__code strong { color: var(--c-yellow); letter-spacing: .08em; }

/* ============== FOOTER ============== */
.footer {
  background: #050505;
  border-top: 1px solid var(--c-line);
  padding: var(--s-7) clamp(16px, 4vw, 28px);
  padding-bottom: 120px;  /* room for sticky CTA on mobile */
}
.footer__row {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--s-3);
  margin-bottom: var(--s-5);
}
@media (min-width: 720px) { .footer__row { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__tag { color: var(--c-mute); font-size: var(--t-xs); max-width: 520px; }
.footer__legal {
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-5);
  display: grid; gap: var(--s-3);
}
.footer__legal p { color: var(--c-faint); font-size: var(--t-xs); line-height: 1.6; }
.footer__legal p strong { color: var(--c-yellow); letter-spacing: .04em; }
.footer__small { color: #4a4640 !important; }

/* ============== STICKY MOBILE CTA ============== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-line);
  transform: translateY(0);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-hidden { transform: translateY(120%); }
.sticky-cta__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
}
.sticky-cta__copy {
  display: flex; flex-direction: column; line-height: 1.1;
}
.sticky-cta__deal {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px;
  color: var(--c-yellow);
  letter-spacing: .02em;
}
.sticky-cta__code {
  font-family: var(--font-display); font-weight: 500;
  font-size: 10px; letter-spacing: .2em;
  color: var(--c-mute);
}
.sticky-cta__code strong { color: var(--c-teal); letter-spacing: .1em; }
@media (min-width: 880px) {
  .sticky-cta { display: none; }
  .footer { padding-bottom: var(--s-7); }
}

/* ============== TOAST ============== */
.toast {
  position: fixed;
  left: 50%; bottom: 90px;
  transform: translate(-50%, 30px);
  background: var(--c-teal); color: var(--c-ink);
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: .12em;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(35,229,219,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 80;
  text-transform: uppercase;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 880px) {
  .toast { bottom: 30px; }
}

/* ============== UTILITIES / REVEAL ============== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hero__bottle, .hero__bottle--berry, .slap__bolt, .hero__lemon, .strip__track { animation: none !important; }
}
