/* ZEED wholesale landing page
   Implemented from "ZEED Wholesale.dc.html" (Claude Design canvas doc).
   The source rendered through a React canvas runtime; this is plain HTML/CSS/JS. */

/* ---------------------------------------------------------------- tokens */
:root {
  --ink:            #080808;
  --ink-soft:       #3E3E3E;
  --green:          #22E06B;
  --green-deep:     #0A3C22;
  --grey:           #8A8A8A;
  --grey-mid:       #6E6E6E;
  --grey-dim:       #5E5E5E;
  --white:          #FFFFFF;

  --surface-1:      #FFFFFF;
  --surface-2:      #F7F7F7;
  --surface-3:      #F4F4F2;

  --line:           #E6E6E6;
  --line-soft:      #EDEDED;
  --line-warm:      #DDDDD9;
  --line-dark:      rgba(255, 255, 255, 0.14);

  --f-display:      'Anton', 'Arial Narrow', Impact, sans-serif;
  --f-body:         'Barlow', Helvetica, Arial, sans-serif;
  --f-cond:         'Barlow Condensed', 'Arial Narrow', sans-serif;

  --pad:            40px;
  --maxw:           1500px;
  --header-h:       121px;

  --stage:          min(38vw, 430px);
  --drum-r:         230px;

  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.is-locked { overflow: hidden; }

body {
  margin: 0;
  padding: 0;
  background: var(--surface-1);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--ink); text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

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

/* shared type ------------------------------------------------------------ */
.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(46px, 7.4vw, 128px);
}
.eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey);
  margin: 0;
}

/* pill buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 34px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn-primary { background: var(--green); color: var(--ink); }
.btn-primary:hover { background: var(--white); color: var(--ink); }
.btn-ghost {
  background: none;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

/* ---------------------------------------------------------------- header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; }

.marquee {
  background: var(--green-deep);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: zeedMarquee 34s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
@keyframes zeedMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--pad);
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}
.nav__toggle {
  background: none; border: 0; padding: 8px;
  cursor: pointer;
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px; width: 44px; height: 44px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block; width: 26px; height: 2px; background: var(--white);
  transition: transform 300ms var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* The supplied wordmark is a dark logotype on an opaque pale background.
   invert + contrast crushes that background to pure black, and screen then
   drops black against the dark bar, leaving a clean white mark. */
.logo {
  height: 26px; width: auto;
  mix-blend-mode: screen;
  filter: invert(1) contrast(2.6) brightness(1.3);
}

.nav__cta {
  background: var(--green); color: var(--ink);
  font-family: var(--f-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 200ms ease;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--white); color: var(--ink); }

.nav__panel {
  overflow: hidden;
  background: var(--ink);
  max-height: 0;
  transition: max-height 460ms var(--ease);
}
.nav__panel.is-open { overflow-y: auto; }
.nav__list {
  display: grid; gap: 2px;
  padding: 28px var(--pad) 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nav__list a {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 160ms ease;
}
.nav__list a:hover { color: var(--green); }
.nav__list a.is-accent { color: var(--green); }
.nav__list a.is-accent:hover { color: var(--white); }
.nav__note {
  font-family: var(--f-body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey); margin-top: 18px;
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 29px);
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
  overflow: hidden;
}
/* Fallback wash so the hero still reads if the video is unavailable. */
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 78% 30%, rgba(34, 224, 107, 0.16), transparent 62%),
    radial-gradient(60% 80% at 15% 80%, rgba(34, 224, 107, 0.07), transparent 60%);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.72) 46%, rgba(8, 8, 8, 0.5) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
  padding: 0 var(--pad) 60px;
}
.hero__eyebrow {
  font-family: var(--f-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.3em; color: var(--green);
  text-transform: uppercase; margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--f-display); font-weight: 400;
  color: var(--white);
  font-size: clamp(48px, 6.4vw, 108px);
  line-height: 0.94; letter-spacing: -0.015em;
  margin: 0; text-transform: uppercase; text-wrap: balance;
}
.hero__lede {
  font-size: 16px; line-height: 1.6; color: var(--grey);
  max-width: 440px; margin: 32px 0 0;
}
.hero__actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero__notice {
  display: flex; align-items: center; gap: 14px;
  margin-top: 44px; padding: 16px 20px;
  border: 1px solid rgba(34, 224, 107, 0.45);
  max-width: 460px; color: var(--white);
  transition: border-color 200ms ease, background 200ms ease;
}
.hero__notice:hover { border-color: var(--green); background: rgba(34, 224, 107, 0.07); }
.hero__notice .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); display: block; flex-shrink: 0;
}
.hero__notice span:last-child { font-size: 13.5px; line-height: 1.5; color: #C8C8C8; }

/* flavour drum ----------------------------------------------------------- */
.drum-wrap {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: 20px;
}
.drum-glow {
  position: absolute; top: 46%; left: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.16;
  background: var(--glow, #2FBF6B);
  transition: background 420ms ease;
  pointer-events: none;
}
.drum-arrow {
  position: relative;
  background: none; border: 0; cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  font-size: 22px; line-height: 1; padding: 10px 16px;
  transition: color 180ms ease;
}
.drum-arrow:hover { color: var(--green); }
.drum-stage {
  position: relative;
  width: var(--stage); height: var(--stage);
  perspective: 1400px;
}
.drum {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 620ms var(--ease);
  transform: translateZ(calc(var(--drum-r) * -1)) rotateX(var(--rot, 0deg));
}
.drum__face {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden;
  transition: opacity 420ms ease;
  opacity: 0; visibility: hidden;
}
.drum__face.is-active { opacity: 1; visibility: visible; }
.drum__face:nth-child(1) { transform: rotateX(0deg)    translateZ(var(--drum-r)); }
.drum__face:nth-child(2) { transform: rotateX(-72deg)  translateZ(var(--drum-r)); }
.drum__face:nth-child(3) { transform: rotateX(-144deg) translateZ(var(--drum-r)); }
.drum__face:nth-child(4) { transform: rotateX(-216deg) translateZ(var(--drum-r)); }
.drum__face:nth-child(5) { transform: rotateX(-288deg) translateZ(var(--drum-r)); }
.drum__face img {
  width: 78%; height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}
/* The can images are pre-normalised to a uniform canvas and 88% fill, so no
   per-flavour scaling is needed here. See README, "Can images". */

.drum-label { position: relative; text-align: center; margin-top: 6px; }
.drum-label__name {
  font-family: var(--f-display); font-size: 28px;
  letter-spacing: 0.14em; color: var(--white); text-transform: uppercase;
}
.drum-label__hint {
  font-family: var(--f-body); font-size: 11px; letter-spacing: 0.26em;
  color: #7A7A7A; text-transform: uppercase; margin-top: 8px;
}
.drum-dots { position: relative; display: flex; gap: 10px; margin-top: 20px; }
.drum-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  cursor: pointer; background: rgba(255, 255, 255, 0.28);
  transition: background 240ms ease;
}
.drum-dots button[aria-selected="true"] { background: var(--green); }

/* -------------------------------------------------------------- products */
.products { background: var(--surface-1); padding: 20px var(--pad) 120px; position: relative; }
.products h2 { margin: 0 0 70px; max-width: 1400px; color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.product {
  border: 1px solid var(--line);
  background: var(--surface-1);
  padding: 20px 20px 24px;
  display: flex; flex-direction: column;
  transition: border-color 200ms ease;
}
.product:hover { border-color: var(--ink); }
.product__shot {
  width: 100%; aspect-ratio: 4 / 5;
  background: var(--surface-2);
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product__shot img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.product__name { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.product__name .swatch { width: 9px; height: 9px; border-radius: 50%; display: block; }
.product__name span:last-child {
  font-weight: 700; font-size: 17px; letter-spacing: 0.04em;
  color: var(--ink); text-transform: uppercase;
}
.product p { font-size: 13.5px; line-height: 1.55; color: var(--grey); margin: 0 0 22px; }
.product__strengths {
  font-weight: 600; font-size: 11.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px; margin: -8px 0 22px;
}
.product__link {
  margin-top: auto; font-weight: 600; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid #D8D8D8; padding-bottom: 6px; width: fit-content;
  transition: border-color 180ms ease;
}
.product__link:hover { border-color: var(--green); }
.products__foot {
  text-align: center; margin-top: 60px;
  font-weight: 600; font-size: 12px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--grey);
}

/* -------------------------------------------------------------- channels */
.channels { background: var(--ink); padding: 120px var(--pad) 130px; }
.channels__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 70px;
}
.channels__head h2 { color: var(--white); font-size: clamp(46px, 7.4vw, 118px); }
.channels__head p { max-width: 400px; }
.channel-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark);
}
.channel { background: var(--ink); padding: 38px 32px 42px; transition: background 200ms ease; }
.channel:hover { background: #101010; }
.channel__num { color: var(--green); margin-bottom: 20px; }
.channel h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 26px;
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--white); margin: 0 0 14px;
}
.channel p { font-size: 15px; line-height: 1.65; color: var(--grey); margin: 0 0 22px; }
.channel__tag {
  font-weight: 600; font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grey-dim);
}
.channels__foot {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap; margin-top: 38px;
}
.channels__foot p { font-size: 15px; line-height: 1.6; color: #7A7A7A; max-width: 620px; margin: 0; }
.channels__foot a {
  font-weight: 700; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green);
  border-bottom: 1px solid rgba(34, 224, 107, 0.4); padding-bottom: 6px;
  transition: color 180ms ease, border-color 180ms ease;
}
.channels__foot a:hover { color: var(--white); border-color: var(--white); }

/* ---------------------------------------------------------- image breaks */
.image-break {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.image-break--banner { aspect-ratio: 3168 / 1344; }
.image-break--range  { height: 74vh; min-height: 480px; }
/* Sits over the fallback; script drops it if the render is missing. */
.image-break__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Stretched hit area for artwork that has a call to action drawn into it. */
.image-break__link { position: absolute; inset: 0; z-index: 2; }
.image-break__link:focus-visible { outline-offset: -6px; }
/* Branded stand-in, shown only when the full-bleed render is unavailable. */
.image-break__fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 4vw, 70px);
  background:
    radial-gradient(60% 120% at 50% 100%, rgba(34, 224, 107, 0.14), transparent 70%),
    linear-gradient(180deg, #0B0B0B 0%, #060606 100%);
  padding: 6% 4%;
}
/* flex: 1 1 0 shares the row evenly, so the strip fits whatever number of
   cans a given break uses, at any viewport width. */
.image-break__fallback img {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  max-height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.6));
}

/* ----------------------------------------------------------------- specs */
.specs { background: var(--surface-3); padding: 120px var(--pad) 130px; }
.specs h2 {
  font-family: var(--f-display); font-weight: 400; color: var(--ink);
  font-size: clamp(38px, 5.2vw, 88px); line-height: 0.92;
  letter-spacing: -0.015em; margin: 0 0 60px; text-transform: uppercase;
}
.specs__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 80px; align-items: start; max-width: var(--maxw);
}
.tablist { display: flex; flex-direction: column; border-top: 1px solid var(--line-warm); }
.tablist button {
  font-family: var(--f-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 18px 4px; background: none; border: 0;
  border-bottom: 2px solid var(--line-warm);
  color: #8A8A86; cursor: pointer; text-align: left;
  transition: color 180ms ease, border-color 180ms ease;
}
.tablist button:hover { color: var(--ink); }
.tablist button[aria-selected="true"] { border-bottom-color: var(--ink); color: var(--ink); }
.tabpanels { min-height: 300px; }
.tabpanel[hidden] { display: none; }
.tabpanel h3 {
  font-weight: 700; font-size: 24px; letter-spacing: 0.02em;
  color: var(--ink); margin: 0 0 24px;
}
.tabpanel > p {
  font-size: 17px; line-height: 1.7; color: var(--grey-dim);
  margin: 0 0 34px; max-width: 620px;
}
.spec-pairs {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px 40px; max-width: 620px; margin: 0;
}
.spec-pairs dt {
  font-weight: 600; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: #9A9A96; margin-bottom: 8px;
}
.spec-pairs dd { font-size: 16px; color: var(--ink); margin: 0; }
.spec-rows { display: flex; flex-direction: column; max-width: 620px; margin: 0; }
.spec-rows > div {
  display: flex; justify-content: space-between; gap: 30px;
  padding: 16px 0; border-top: 1px solid var(--line-warm);
}
.spec-rows > div:last-child { border-bottom: 1px solid var(--line-warm); }
.spec-rows dt { font-weight: 600; font-size: 15px; color: var(--ink); }
.spec-rows dd { font-size: 15px; color: #7A7A76; text-align: right; margin: 0; }
.spec-cards { display: grid; gap: 14px; max-width: 620px; padding: 0; margin: 0; }
.spec-cards li {
  background: var(--white); border: 1px solid #E4E4E0;
  padding: 20px 22px; font-size: 15.5px; color: var(--ink);
  list-style: none;
}

/* ------------------------------------------------------------------- why */
.why { background: var(--surface-1); padding: 130px var(--pad) 190px; }
.why h2 { margin: 0 0 90px; }
.why__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px 90px; max-width: var(--maxw);
}
.why__grid h3 {
  font-weight: 700; font-size: 22px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 14px;
}
.why__rule { width: 56px; height: 3px; background: var(--green); margin-bottom: 20px; }
.why__grid p { font-size: 16px; line-height: 1.65; color: var(--grey); margin: 0; max-width: 460px; }
.why__grid p a { color: var(--ink); border-bottom: 1px solid var(--green); }

/* ----------------------------------------------------------------- trade */
.trade {
  background: var(--ink);
  margin-top: -9vw;
  padding: calc(9vw + 130px) var(--pad) 130px;
  clip-path: polygon(0 9vw, 100% 0, 100% 100%, 0 100%);
}
.trade__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start; max-width: var(--maxw); margin: 0 auto;
}
.trade__cell { text-align: center; padding: 0 30px; }
.trade__cell + .trade__cell { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.trade__fig {
  font-family: var(--f-display); font-size: clamp(34px, 4.2vw, 80px);
  line-height: 1.02; color: var(--white); letter-spacing: -0.01em;
  white-space: nowrap;
}
.trade__cap {
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: #7A7A7A; margin-top: 18px;
}
.trade__foot {
  text-align: center; margin-top: 90px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--green);
}

/* ----------------------------------------------------------------- about */
.about { background: var(--surface-1); padding: 120px var(--pad) 130px; border-top: 1px solid #ECECEC; }
.about__inner { max-width: 880px; }
.about h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(30px, 3.8vw, 58px); line-height: 0.95;
  letter-spacing: -0.012em; color: var(--ink);
  text-transform: uppercase; margin: 0 0 34px; text-wrap: pretty;
}
.about p {
  font-size: 17px; line-height: 1.78; color: var(--ink-soft);
  margin: 0 0 20px; text-wrap: pretty;
}
.about p:last-of-type { margin-bottom: 40px; }
.about__links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.about__links a {
  border: 1px solid var(--line); padding: 22px 24px; color: var(--ink);
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; transition: border-color 200ms ease;
}
.about__links a:hover { border-color: var(--ink); }

/* --------------------------------------------------------------- contact */
.contact {
  background: var(--surface-1);
  margin-top: -7vw; position: relative; z-index: 2;
  padding: calc(7vw + 130px) var(--pad) 130px;
  clip-path: polygon(0 7vw, 100% 0, 100% 100%, 0 100%);
}
.contact h2 { margin: 0 0 80px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.contact__lede { font-size: 18px; line-height: 1.65; color: var(--grey-mid); margin: 0 0 60px; max-width: 460px; }
.contact__email {
  font-family: var(--f-display); font-size: clamp(30px, 3.6vw, 56px);
  color: var(--ink); letter-spacing: -0.01em; display: block;
  overflow-wrap: anywhere; transition: color 180ms ease;
}
.contact__email:hover { color: var(--green); }
.contact__handle { font-size: 16px; color: #9A9A9A; margin-top: 14px; }

.form {
  background: var(--surface-2); padding: 40px;
  box-shadow: 0 24px 60px rgba(8, 8, 8, 0.07);
  display: grid; gap: 16px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid #E2E2E2; background: var(--white);
  padding: 16px 18px; font-family: var(--f-body); font-size: 15px;
  color: var(--ink); outline: none;
  transition: border-color 180ms ease;
}
.form textarea { resize: vertical; }
.form input:focus, .form textarea:focus { border-color: var(--green); }
.form input:user-invalid, .form textarea:user-invalid { border-color: #D6407A; }
.form button {
  background: var(--green); color: var(--ink); border: 0;
  font-weight: 700; font-size: 14px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 20px; border-radius: 999px;
  cursor: pointer; margin-top: 6px;
  transition: background 200ms ease, color 200ms ease;
}
.form button:hover { background: var(--ink); color: var(--white); }
.form button[disabled] { cursor: default; background: var(--ink); color: var(--white); }
.form__status { font-size: 14px; line-height: 1.5; color: var(--grey-mid); margin: 0; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink); padding: 100px var(--pad) 40px; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px; padding-bottom: 70px;
}
.footer__logo { height: 44px; }
.footer__tag { font-size: 14px; color: #7A7A7A; margin-top: 14px; }
.footer__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px; margin-top: 26px; color: var(--white);
  font-weight: 700; font-size: 12px;
  transition: border-color 180ms ease, color 180ms ease;
}
.footer__social:hover { border-color: var(--green); color: var(--green); }
.footer__label {
  font-weight: 600; font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--grey-dim); margin-bottom: 22px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer__links a { color: #D8D8D8; transition: color 160ms ease; }
.footer__links a:hover { color: var(--green); }
.footer__legal { border-top: 1px solid var(--line-dark); padding-top: 34px; display: grid; gap: 22px; }
.footer__warning {
  border: 1px solid rgba(255, 255, 255, 0.2); padding: 20px 24px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
}
.footer__legal p { font-size: 12.5px; line-height: 1.75; color: #6A6A6A; max-width: 1100px; margin: 0; }
.footer__legal p + p { color: #5A5A5A; }
.footer__base {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 22px;
  font-size: 12px; color: #6A6A6A;
}

/* ====================================================== counter kit page */
body.theme-dark { background: var(--ink); }

/* simple wordmark nav used by interior pages */
.pagenav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 80px;
}
.pagenav__mark {
  font-family: var(--f-display); font-size: 22px;
  letter-spacing: 0.06em; color: var(--white); text-transform: uppercase;
}
.pagenav__links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.pagenav__links a {
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--grey);
  transition: color 160ms ease;
}
.pagenav__links a:hover,
.pagenav__links a[aria-current="page"] { color: var(--white); }

/* split hero: copy on the left, request form on the right */
.kit-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  min-height: 100vh;
  background: var(--ink);
}
.kit-intro {
  padding: 44px 60px 80px;
  display: flex; flex-direction: column; min-width: 0;
}
.kit-badge {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  border: 1px solid rgba(34, 224, 107, 0.5);
  padding: 9px 16px; margin-bottom: 28px;
}
.kit-badge span:first-child {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: block;
}
.kit-badge span:last-child {
  font-weight: 700; font-size: 11.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--green);
}
.kit-intro h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(42px, 5.6vw, 92px); line-height: 0.9;
  letter-spacing: -0.015em; color: var(--white); text-transform: uppercase;
  margin: 0; max-width: 16em; text-wrap: pretty;
}
.kit-intro p {
  font-size: 18px; line-height: 1.65; color: #9A9A9A;
  max-width: 580px; margin: 20px 0 0; text-wrap: pretty;
}
.kit-intro p:first-of-type { margin-top: 34px; }
.kit-stats {
  margin-top: 60px; border-top: 1px solid var(--line-dark); padding-top: 34px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px; max-width: 640px;
}
.kit-stats dt {
  font-family: var(--f-display); font-size: 38px; line-height: 1;
  color: var(--white); letter-spacing: -0.01em;
}
.kit-stats dd { font-size: 14px; line-height: 1.55; color: #7A7A7A; margin: 10px 0 0; }
.kit-hint {
  margin: auto 0 0; padding-top: 70px;
  font-weight: 600; font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: #4E4E4E;
}
/* global `a` colour is ink, which would be invisible on this dark panel */
.kit-hint a { color: inherit; transition: color 160ms ease; }
.kit-hint a:hover { color: var(--green); }

.kit-form-pane {
  background: #F7F7F5;
  padding: 44px 52px 60px;
  display: flex; flex-direction: column; min-width: 0;
}
.kit-form-pane h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(28px, 2.9vw, 44px); line-height: 0.96;
  letter-spacing: -0.01em; color: var(--ink);
  text-transform: uppercase; margin: 0 0 16px;
}
.kit-form-pane > p { font-size: 15px; line-height: 1.65; color: var(--grey-dim); margin: 0 0 30px; }
.kit-form { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.kit-form__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.kit-form input, .kit-form select, .kit-form textarea {
  width: 100%; min-width: 0;
  border: 1px solid var(--line-warm); background: var(--white);
  padding: 15px 17px; font-family: var(--f-body); font-size: 15px;
  color: var(--ink); outline: none;
  transition: border-color 180ms ease;
}
.kit-form textarea { resize: vertical; }
.kit-form input:focus, .kit-form select:focus, .kit-form textarea:focus { border-color: var(--ink); }
.kit-form input:user-invalid, .kit-form select:user-invalid { border-color: #D6407A; }
.kit-form button {
  background: var(--ink); color: var(--white); border: 0;
  font-weight: 700; font-size: 13.5px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 19px; border-radius: 999px;
  cursor: pointer; margin-top: 6px; min-width: 0;
  transition: background 200ms ease, color 200ms ease;
}
.kit-form button:hover { background: var(--green); color: var(--ink); }
.kit-form button[disabled] { cursor: default; background: var(--green); color: var(--ink); }
.kit-form__status { font-size: 14px; line-height: 1.5; color: var(--grey-dim); margin: 0; }
.kit-direct { margin-top: 24px; font-size: 14px; color: var(--grey-mid); }
.kit-direct a { color: var(--ink); border-bottom: 1px solid var(--green); }
.kit-trade {
  margin-top: 28px; border-top: 1px solid #E4E4E0; padding-top: 20px;
  font-size: 13px; line-height: 1.6; color: #8A8A86;
}

/* green section eyebrow used above interior h1s */
.kit-eyebrow {
  font-weight: 600; font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--green); margin-bottom: 26px;
}

/* 5 / 4 / 20 figure row */
.stat-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line-dark); margin-top: 64px;
}
.stat-3 > div { background: var(--ink); padding: 28px 26px; }
.stat-3 dt {
  font-family: var(--f-display); font-size: 44px;
  color: var(--green); line-height: 1; margin-bottom: 10px;
}
.stat-3 dd {
  font-weight: 600; font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grey); margin: 0;
}

/* labelled notes down the dark column */
.kit-notes {
  margin-top: 70px; border-top: 1px solid var(--line-dark);
  padding-top: 34px; display: grid; gap: 26px; max-width: 620px;
}
.kit-notes--tight { margin-top: 64px; }
.kit-notes dt {
  font-weight: 700; font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--white); margin-bottom: 9px;
}
.kit-notes dd { font-size: 15px; line-height: 1.65; color: var(--grey); margin: 0; }

/* long-form article body */
.prose { background: var(--surface-1); padding: 130px 60px; }
.prose__inner { max-width: 900px; }
.prose h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(32px, 4.2vw, 64px); line-height: 0.94;
  letter-spacing: -0.012em; color: var(--ink);
  text-transform: uppercase; margin: 0 0 40px; text-wrap: pretty;
}
.prose h3 {
  font-weight: 700; font-size: 20px; letter-spacing: 0.01em;
  color: var(--ink); margin: 52px 0 18px;
}
.prose p {
  font-size: 17px; line-height: 1.75; color: #4E4E4E;
  margin: 0 0 24px; text-wrap: pretty;
}
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--ink); border-bottom: 1px solid var(--green); }

/* stacked documentation list */
.doclist { display: grid; gap: 1px; background: var(--line); margin: 0 0 24px; }
.doclist > div { background: var(--surface-1); padding: 22px 26px; }
.doclist dt { font-weight: 700; font-size: 14.5px; color: var(--ink); margin-bottom: 6px; }
.doclist dd { font-size: 15px; line-height: 1.6; color: var(--grey-mid); margin: 0; }

/* shared interior section shells */
.sheet { padding: 120px 60px; }
.sheet--light { background: var(--surface-1); padding: 130px 60px 110px; }
.sheet--warm  { background: var(--surface-3); }
.sheet--dark  { background: var(--ink); }
.sheet--faq   { background: var(--surface-1); padding: 110px 60px; }
.sheet__inner { max-width: 1200px; }
.sheet__inner--narrow { max-width: 1000px; }
.sheet__inner--faq { max-width: 900px; }
.sheet h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(32px, 4.2vw, 64px); line-height: 0.94;
  letter-spacing: -0.012em; text-transform: uppercase;
  margin: 0 0 20px; text-wrap: pretty; color: var(--ink);
}
.sheet--dark h2 { color: var(--white); font-size: clamp(30px, 3.8vw, 56px); }
.sheet--faq h2 { font-size: clamp(30px, 3.8vw, 56px); margin-bottom: 46px; }
.sheet__lede {
  font-size: 17px; line-height: 1.75; color: #4E4E4E;
  margin: 0 0 60px; max-width: 760px; text-wrap: pretty;
}
.sheet--warm .sheet__lede { margin-bottom: 56px; }
.sheet--dark .sheet__lede { color: #9A9A9A; margin-bottom: 44px; max-width: 740px; }

/* what is in the box */
.box-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.box-card { background: var(--surface-1); padding: 34px 30px 38px; }
.box-card__num { color: #22C25C; margin-bottom: 18px; }
.box-card h3 { font-weight: 700; font-size: 19px; color: var(--ink); margin: 0 0 12px; }
.box-card p { font-size: 15px; line-height: 1.65; color: var(--grey-mid); margin: 0; }
.box-note {
  margin-top: 26px; font-size: 14px; line-height: 1.6;
  color: #8A8A86; max-width: 760px;
}
.box-note a { color: var(--ink); border-bottom: 1px solid var(--green); }

/* why a venue counter */
.venue-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px 70px;
}
.venue-grid h3 {
  font-weight: 700; font-size: 20px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 12px;
}
.venue-grid__rule { width: 48px; height: 3px; background: #22C25C; margin-bottom: 18px; }
.venue-grid p { font-size: 16px; line-height: 1.7; color: var(--grey-dim); margin: 0; }

/* what changed */
.rules {
  display: grid; gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark); margin-bottom: 44px;
}
.rules > div { background: var(--ink); padding: 28px 32px; }
.rules h3 { font-weight: 700; font-size: 16px; color: var(--white); margin: 0 0 8px; }
.rules p { font-size: 15.5px; line-height: 1.65; color: var(--grey); margin: 0; }
.next-h { font-weight: 700; font-size: 19px; color: var(--white); margin: 0 0 14px; }
.next-p {
  font-size: 16.5px; line-height: 1.75; color: var(--grey);
  margin: 0 0 20px; max-width: 740px; text-wrap: pretty;
}
.next-p:last-child { margin-bottom: 0; }
.next-p a { color: var(--white); border-bottom: 1px solid var(--green); }

/* faq */
.faq { display: grid; gap: 34px; }
.faq h3 { font-weight: 700; font-size: 18px; color: var(--ink); margin: 0 0 10px; }
.faq p { font-size: 16px; line-height: 1.7; color: var(--grey-dim); margin: 0; }
.faq-links {
  margin-top: 60px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px;
}
.faq-links a {
  border: 1px solid var(--line); padding: 22px 24px; color: var(--ink);
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; transition: border-color 200ms ease;
}
.faq-links a:hover { border-color: var(--ink); }

/* slim interior footer */
.kit-footer { background: var(--ink); padding: 70px 60px 60px; }
.kit-footer p {
  font-size: 12.5px; line-height: 1.7; color: #7A7A7A;
  margin: 0 0 22px; max-width: 760px;
}
.kit-footer__base { font-size: 12.5px; color: #5A5A5A; }
.kit-footer__base a { color: var(--grey); }
.kit-footer__base a:hover { color: var(--green); }

@media (max-width: 980px) {
  .kit-split { min-height: 0; }
  .kit-intro { padding: 36px 32px 60px; }
  .kit-form-pane { padding: 44px 32px 60px; }
  .pagenav { margin-bottom: 52px; }
  .kit-hint { padding-top: 46px; }
  .sheet, .sheet--light, .sheet--faq, .prose { padding: 80px 32px; }
  .venue-grid { gap: 44px; }
  .kit-notes { margin-top: 48px; }
  .stat-3 { margin-top: 48px; }
}

@media (max-width: 700px) {
  .kit-intro { padding: 28px 20px 48px; }
  .kit-form-pane { padding: 36px 20px 48px; }
  .kit-form__row { grid-template-columns: 1fr; }
  .pagenav { gap: 18px; margin-bottom: 40px; }
  .pagenav__links { gap: 16px; }
  .sheet, .sheet--light, .sheet--faq, .prose { padding: 64px 20px; }
  .rules > div { padding: 22px 20px; }
  .box-card { padding: 26px 22px 30px; }
  .doclist > div { padding: 18px 20px; }
  .stat-3 > div { padding: 20px 16px; }
  .stat-3 dt { font-size: 34px; }
  .kit-footer { padding: 52px 20px 44px; }
}

/* ------------------------------------------------------------------- 404 */
.notfound {
  min-height: 82vh;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 90px var(--pad);
  position: relative; overflow: hidden;
}
.notfound::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 70% 25%, rgba(34, 224, 107, 0.14), transparent 62%),
    radial-gradient(50% 70% at 20% 85%, rgba(34, 224, 107, 0.06), transparent 60%);
  pointer-events: none;
}
.notfound__inner { position: relative; max-width: 620px; text-align: center; }
.notfound__logo { height: 34px; margin: 0 auto 44px; }
.notfound__code {
  font-family: var(--f-display); font-size: clamp(72px, 14vw, 168px);
  line-height: 0.9; letter-spacing: 0.02em; color: var(--green);
}
.notfound h1 {
  font-family: var(--f-display); font-weight: 400; color: var(--white);
  font-size: clamp(26px, 3.4vw, 46px); line-height: 1.04;
  letter-spacing: -0.01em; margin: 18px 0 0; text-transform: uppercase;
}
.notfound p {
  font-size: 16px; line-height: 1.65; color: var(--grey);
  margin: 22px auto 38px; max-width: 460px;
}
.notfound__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.notfound__mail { font-size: 14px; color: #6A6A6A; margin-top: 34px; }
.notfound__mail a { color: var(--green); border-bottom: 1px solid rgba(34, 224, 107, 0.4); }
.notfound__footer { padding-top: 40px; }

/* -------------------------------------------------------------- age gate */
.gate {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 4, 4, 0.97);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.gate[hidden] { display: none; }
.gate__inner { max-width: 620px; text-align: center; }
.gate__logo { height: 38px; margin: 0 auto 46px; }
.gate h2 {
  font-family: var(--f-display); font-weight: 400; color: var(--white);
  font-size: clamp(30px, 3.6vw, 54px); line-height: 1.02;
  letter-spacing: -0.01em; margin: 0; text-transform: uppercase;
}
.gate p { font-size: 15px; line-height: 1.65; color: var(--grey); margin: 26px auto 40px; max-width: 440px; }
.gate__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gate__note { font-size: 12px; color: #5A5A5A; margin-top: 40px; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1200px) {
  :root { --pad: 32px; }
  .specs__grid { gap: 48px; }
  .why__grid { gap: 56px 60px; }
  .contact__grid { gap: 56px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --stage: min(62vw, 400px); --drum-r: 200px; }
  .hero { min-height: 0; padding-bottom: 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__lede, .hero__notice { max-width: none; }
  .hero__bg { clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%); }
  .specs__grid { grid-template-columns: 1fr; gap: 40px; }
  .tablist { flex-direction: row; flex-wrap: wrap; border-top: 0; }
  .tablist button { flex: 1 1 auto; text-align: center; padding: 14px 10px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__grid p { max-width: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__lede { max-width: none; margin-bottom: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trade__grid { grid-template-columns: 1fr; gap: 40px; }
  .trade__cell + .trade__cell {
    border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 40px;
  }
  .channels, .specs, .about { padding-top: 90px; padding-bottom: 90px; }
  .why { padding-top: 90px; padding-bottom: 150px; }
  .products h2, .why h2, .contact h2 { margin-bottom: 48px; }
}

@media (max-width: 700px) {
  :root { --pad: 20px; --stage: min(74vw, 340px); --drum-r: 168px; }
  .nav { padding: 14px var(--pad); }
  .nav__cta { padding: 12px 18px; font-size: 12px; letter-spacing: 0.1em; }
  .nav__cta .nav__cta-arrow { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .form { padding: 26px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .spec-pairs { grid-template-columns: 1fr; }
  .spec-rows > div { flex-direction: column; gap: 4px; }
  .spec-rows dd { text-align: left; }
  .image-break--range { height: 52vh; min-height: 340px; }
  .trade__fig { white-space: normal; }
  .gate { padding: 24px; }
  .btn { padding: 17px 26px; font-size: 13px; }
}

@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

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