/* ============================================
   KULT ENERGY — Consumer Maximalist Demo
   ============================================ */

/* === RESET ================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

/* === CUSTOM PROPERTIES ==================== */
:root {
  --bg:       #0A0A0A;
  --surface:  #111111;
  --surface2: #1A1A1A;
  --accent:   #D4FF00;
  --accent-rgb: 212,255,0;
  --fg:       #F5F5F5;
  --fg-dim:   rgba(245,245,245,0.5);
  --border:   rgba(255,255,255,0.07);
  --gap:      2px;

  --f-display:    clamp(5rem, 20vw, 22rem);
  --f-display-sm: clamp(3rem, 11vw, 12rem);
  --f-h2:         clamp(2.5rem, 6vw, 6rem);
  --f-body:       1rem;
  --f-sm:         0.875rem;
  --f-xs:         0.75rem;
}

/* === BASE ================================= */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Epilogue', sans-serif;
  font-size: var(--f-body);
  line-height: 1.55;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

body.modal-open { overflow: hidden; }

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

h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
blockquote { font-style: normal; }

html,
body,
body *,
body *::before,
body *::after {
  cursor: none !important;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.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;
}

/* === GRAIN OVERLAY ======================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.14;
  mix-blend-mode: soft-light;
}

/* === CUSTOM CURSOR ======================== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
  mix-blend-mode: difference;
  transition: width 0.2s ease, height 0.2s ease;
}

.cursor--hover {
  width: 42px;
  height: 42px;
}

@media (pointer: coarse) { .cursor { display: none; } }

/* === BUTTONS ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.875rem 1.875rem;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: var(--f-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  background: transparent;
  min-height: 48px;
  white-space: nowrap;
  position: relative;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}

.btn--accent {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: transparent;
  color: var(--accent);
}

.btn--outline {
  color: var(--fg);
  border-color: var(--fg);
}
.btn--outline:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn--product {
  color: var(--fg);
  border-color: var(--border);
  width: 100%;
  margin-top: auto;
}
.btn--product:hover {
  border-color: var(--fg);
}

/* === SITE HEADER ========================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }

/* === HERO ================================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #070707;
  transition: background 0.45s ease;
}

.hero-scene {
  position: absolute;
  inset: 0 0 3.2rem;
  z-index: 0;
  overflow: hidden;
  background: #070707;
}

.hero-scene__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% center;
  filter: grayscale(0.88) contrast(1.18) brightness(0.62);
  transform: scale(1.075);
  transform-origin: 54% 48%;
  animation: hero-scene-settle 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
  will-change: transform;
}

.hero-scene__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0.56) 34%, rgba(7,7,7,0.06) 66%, rgba(7,7,7,0.16) 100%),
    linear-gradient(0deg, rgba(7,7,7,0.88) 0%, transparent 38%),
    radial-gradient(circle at 68% 50%, rgba(var(--accent-rgb),0.16), transparent 30%);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb),0.08);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

.hero-ghost {
  position: absolute;
  inset: 11% auto auto 2.5%;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Anton', sans-serif;
  font-size: clamp(15rem, 38vw, 42rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--accent-rgb),0.18);
  opacity: 0.72;
  pointer-events: none;
  user-select: none;
  line-height: 0.78;
  white-space: nowrap;
  animation: hero-ghost-in 1.45s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.hero-intro-curtain {
  position: absolute;
  inset: 0 0 3.2rem;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}

.hero-intro-curtain i {
  display: block;
  background: var(--accent);
  transform-origin: 50% 0;
  animation: hero-curtain-lift 0.9s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.hero-intro-curtain i:nth-child(2) { animation-delay: 0.055s; }
.hero-intro-curtain i:nth-child(3) { animation-delay: 0.11s; }
.hero-intro-curtain i:nth-child(4) { animation-delay: 0.165s; }
.hero-intro-curtain i:nth-child(5) { animation-delay: 0.22s; }

.hero-flash {
  position: absolute;
  inset: 0 0 3.2rem;
  z-index: 39;
  background: #fff;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: hero-flash-out 0.82s steps(4, end) 0.54s both;
}

.hero-title {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  margin: 0;
}

.ht-line {
  position: absolute;
  display: block;
  letter-spacing: 0;
  line-height: 0.82;
  white-space: nowrap;
  animation: hero-type-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ht-line--1 {
  left: 4.4%;
  top: 28%;
  z-index: 2;
  font-size: clamp(9rem, 22vw, 23rem);
  color: rgba(245,245,245,0.96);
  animation-delay: 0.34s;
}

.ht-line--2 {
  left: 4.4%;
  bottom: 19%;
  z-index: 6;
  font-size: clamp(4.5rem, 11.8vw, 12rem);
  color: var(--accent);
  text-shadow: 0.05em 0.05em 0 rgba(7,7,7,0.92);
  animation-delay: 0.47s;
  transition: color 0.35s ease;
}

.hero-inner {
  position: absolute;
  left: 4.5%;
  bottom: 4.75rem;
  z-index: 10;
  width: min(48rem, 54vw);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  animation: hero-copy-in 0.8s ease-out 1s both;
}

.hero-eyebrow {
  position: absolute;
  left: 4.6%;
  top: 8.9rem;
  z-index: 10;
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.52rem 0.72rem;
  background: rgba(7,7,7,0.82);
  border-left: 3px solid var(--accent);
  animation: hero-copy-in 0.7s ease-out 0.82s both;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.hero-foot {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.flavor-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.flavor-chip {
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(var(--accent-rgb),0.45);
  background: rgba(10,10,10,0.62);
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.flavor-chip:hover,
.flavor-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

.hero-desc {
  font-size: var(--f-sm);
  color: rgba(245,245,245,0.72);
  line-height: 1.65;
  text-shadow: 0 1px 18px #000;
}

/* === HERO PRODUCT STAGE =================== */
.hero-product-stage {
  position: absolute;
  right: clamp(13rem, 19vw, 23rem);
  top: 7.25rem;
  bottom: 3.8rem;
  z-index: 4;
  width: clamp(17rem, 25vw, 28rem);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
  transform: translate3d(calc(var(--hero-px, 0) * 1px), calc(var(--hero-py, 0) * 1px), 0);
  transition: transform 0.18s ease-out;
}

.hero-product-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-origin: 50% 80%;
  animation: hero-can-arrive 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.48s backwards;
  will-change: transform;
}

.hero-product-img,
.hero-product-echo {
  position: absolute;
  inset: auto 50% 0 auto;
  width: auto;
  height: 100%;
  max-width: none;
  transform: translateX(50%);
  object-fit: contain;
  object-position: bottom center;
}

.hero-product-img {
  z-index: 3;
  filter:
    drop-shadow(0 3.2rem 2.2rem rgba(0,0,0,0.82))
    drop-shadow(0 0 2rem rgba(var(--accent-rgb),0.2));
  transition: filter 0.35s ease;
}

.hero-product-echo {
  z-index: 2;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-product-echo--acid {
  filter: sepia(1) saturate(8) hue-rotate(28deg) brightness(1.4);
  animation: hero-echo-acid 0.72s steps(4, end) 0.56s both;
}

.hero-product-echo--red {
  filter: sepia(1) saturate(10) hue-rotate(315deg) brightness(1.25);
  animation: hero-echo-red 0.72s steps(4, end) 0.61s both;
}

.hero-product-gleam {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg,
      transparent 0 34%,
      rgba(255,255,255,0.1) 42%,
      rgba(255,255,255,0.72) 48%,
      rgba(var(--accent-rgb),0.36) 54%,
      transparent 64%);
  background-repeat: no-repeat;
  background-size: 38% 100%;
  background-position: -120% 50%;
  mix-blend-mode: screen;
  -webkit-mask: url('assets/kult-hero-can-cutout.png') bottom center / auto 100% no-repeat;
  mask: url('assets/kult-hero-can-cutout.png') bottom center / auto 100% no-repeat;
  animation: hero-gleam-sweep 1.05s ease-in-out 1.15s both;
}

.hero-product-stamp {
  position: absolute;
  z-index: 6;
  right: -14%;
  top: 38%;
  padding: 0.58rem 0.78rem;
  background: var(--accent);
  color: #070707;
  border: 2px solid #070707;
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transform: rotate(5deg);
  box-shadow: 0.45rem 0.45rem 0 #070707;
  transition: background 0.35s ease;
  animation: hero-stamp-in 0.58s cubic-bezier(0.34,1.56,0.64,1) 1.12s both;
}

.can-glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 160%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.28) 0%, rgba(var(--accent-rgb),0.08) 42%, transparent 72%);
  filter: blur(26px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  transition: background 0.45s ease;
}

.hero-drop-index {
  position: absolute;
  right: 3.5%;
  top: 8.6rem;
  z-index: 11;
  display: grid;
  gap: 0.34rem;
  justify-items: end;
  font-family: 'Space Mono', monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(245,245,245,0.68);
  animation: hero-copy-in 0.7s ease-out 0.92s backwards;
}

.hero-drop-index span:last-child {
  color: var(--accent);
  transition: color 0.35s ease;
}

.hero-edge-copy {
  position: absolute;
  right: 3.5%;
  bottom: 4.7rem;
  z-index: 10;
  display: flex;
  gap: 1.1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(245,245,245,0.72);
  animation: hero-copy-in 0.7s ease-out 1.02s both;
}

@keyframes hero-curtain-lift {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

@keyframes hero-flash-out {
  0% { opacity: 1; }
  22% { opacity: 0.15; }
  38% { opacity: 0.72; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes hero-scene-settle {
  from { transform: scale(1.14); filter: grayscale(1) contrast(1.35) brightness(0.42); }
  to { transform: scale(1.075); filter: grayscale(0.88) contrast(1.18) brightness(0.62); }
}

@keyframes hero-ghost-in {
  from { opacity: 0; transform: translateX(6rem); }
  to { opacity: 0.72; transform: translateX(0); }
}

@keyframes hero-type-in {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateY(1.6rem); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-can-arrive {
  0% { opacity: 0; transform: translate3d(5rem, 6rem, 0) rotate(5deg) scale(0.9); clip-path: inset(18% 0 26% 0); }
  68% { opacity: 1; transform: translate3d(-0.5rem, -0.3rem, 0) rotate(-1deg) scale(1.015); clip-path: inset(-16% -28% -16% -18%); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0deg) scale(1); clip-path: inset(-16% -28% -16% -18%); }
}

@keyframes hero-echo-acid {
  0% { opacity: 0; transform: translateX(calc(50% - 2.4rem)); }
  22%, 72% { opacity: 0.45; }
  100% { opacity: 0; transform: translateX(50%); }
}

@keyframes hero-echo-red {
  0% { opacity: 0; transform: translateX(calc(50% + 2.2rem)); }
  22%, 72% { opacity: 0.34; }
  100% { opacity: 0; transform: translateX(50%); }
}

@keyframes hero-gleam-sweep {
  from { opacity: 0; background-position: -120% 50%; }
  18% { opacity: 1; }
  to { opacity: 0; background-position: 220% 50%; }
}

@keyframes hero-stamp-in {
  from { opacity: 0; transform: translateX(2rem) rotate(11deg) scale(0.8); }
  to { opacity: 1; transform: translateX(0) rotate(5deg) scale(1); }
}

body[data-flavor="void"] .hero-product-img {
  filter:
    hue-rotate(220deg) saturate(0.92) contrast(1.03)
    drop-shadow(0 3.2rem 2.2rem rgba(0,0,0,0.82))
    drop-shadow(0 0 2rem rgba(var(--accent-rgb),0.22));
}

body[data-flavor="burn"] .hero-product-img {
  filter:
    hue-rotate(290deg) saturate(1.75) contrast(1.08)
    drop-shadow(0 3.2rem 2.2rem rgba(0,0,0,0.82))
    drop-shadow(0 0 2rem rgba(var(--accent-rgb),0.22));
}

.hero-product-shell.is-flavor-shifting .hero-product-echo--acid {
  animation: hero-flavor-echo-left 0.58s steps(4, end) both;
}

.hero-product-shell.is-flavor-shifting .hero-product-echo--red {
  animation: hero-flavor-echo-right 0.58s steps(4, end) both;
}

.hero-product-shell.is-flavor-shifting .hero-product-img {
  animation: hero-flavor-snap 0.58s steps(4, end) both;
}

@keyframes hero-flavor-echo-left {
  0% { opacity: 0; transform: translateX(50%); }
  20%, 66% { opacity: 0.44; transform: translateX(calc(50% - 1.5rem)); }
  100% { opacity: 0; transform: translateX(50%); }
}

@keyframes hero-flavor-echo-right {
  0% { opacity: 0; transform: translateX(50%); }
  20%, 66% { opacity: 0.34; transform: translateX(calc(50% + 1.35rem)); }
  100% { opacity: 0; transform: translateX(50%); }
}

@keyframes hero-flavor-snap {
  0%, 100% { transform: translateX(50%); }
  38% { transform: translateX(calc(50% + 0.3rem)); }
  58% { transform: translateX(calc(50% - 0.2rem)); }
}

/* ============================================
   CAN 3D — reusable cylinder
   --can-accent is set inline per variant.
============================================ */
.can3d {
  position: relative;
  z-index: 1;
}

.can3d--hero {
  width: 152px;
  height: 344px;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,0.55));
  animation: can-float 6s ease-in-out infinite;
}
@keyframes can-float {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50%      { transform: translateY(-24px) rotate(3deg); }
}

.can3d--mini {
  width: 92px;
  height: 212px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.5));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.product:hover .can3d--mini { transform: translateY(-12px) rotate(-3deg); }

/* --- BODY (cylinder) --- */
.can3d__body {
  position: absolute;
  left: 0; right: 0;
  top: 7%; bottom: 4%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 11%, transparent 89%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg,
      #030303 0%, #121212 9%, #2c2c2c 19%, #3b3b3b 25%,
      #242424 34%, #0d0d0d 47%, #060606 53%, #131313 63%,
      #292929 76%, #141414 88%, #040404 100%);
}
/* brushed-metal micro lines */
.can3d__body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
  opacity: 0.6;
  pointer-events: none;
}

/* moving specular sheen */
.can3d__sheen {
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-14deg);
  animation: can-sheen 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes can-sheen {
  0%, 100% { left: -40%; }
  50%      { left: 112%; }
}

/* accent band behind the label */
.can3d__band {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 46%;
  transform: translateY(-50%);
  background:
    linear-gradient(90deg, transparent, rgba(0,0,0,0.35) 50%, transparent),
    var(--can-accent);
  opacity: 0.15;
  pointer-events: none;
}

/* --- LID (aluminum top ellipse) --- */
.can3d__lid {
  position: absolute;
  top: 0; left: 8%;
  width: 84%; height: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 32%,
    #f2f2f2 0%, #c7c7c7 30%, #909090 55%, #d4d4d4 74%, #6a6a6a 100%);
  box-shadow:
    inset 0 -3px 5px rgba(0,0,0,0.45),
    inset 0 2px 3px rgba(255,255,255,0.6);
  z-index: 3;
}
/* recessed inner ellipse */
.can3d__lid::after {
  content: '';
  position: absolute;
  inset: 24% 17%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 62%, #8a8a8a, #5f5f5f 70%, #7d7d7d);
  box-shadow: inset 0 2px 3px rgba(0,0,0,0.5);
}
/* pull-tab */
.can3d__tab {
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 40%; height: 34%;
  border: 1.5px solid rgba(70,70,70,0.7);
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 38%, #d6d6d6, #9a9a9a);
  z-index: 4;
}

/* --- BASE (bottom ellipse) --- */
.can3d__base {
  position: absolute;
  bottom: 0; left: 8%;
  width: 84%; height: 9%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 55%, #1c1c1c, #000 75%);
  z-index: 0;
}

/* --- LABEL --- */
.can3d__label {
  position: absolute;
  inset: 18% 6% 14%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 2;
  text-align: center;
}
.can3d__wordmark {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.08em;
  color: var(--can-accent);
  text-transform: uppercase;
  line-height: 1;
}
.can3d--hero .can3d__wordmark { font-size: 2.3rem; }
.can3d--mini .can3d__wordmark { font-size: 1.4rem; }

.can3d__rule {
  width: 54%;
  height: 2px;
  background: var(--can-accent);
  opacity: 0.85;
  margin: 4px 0;
}
.can3d__sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.42em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.can3d__vol {
  font-family: 'Space Mono', monospace;
  font-size: 0.42rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 2px;
}
.can3d__var {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 3px;
}

/* on card hover (acid bg) keep the can wordmark readable */
.product:hover .can3d__wordmark { color: var(--bg); }
.product:hover .can3d__rule     { background: var(--bg); }

/* === MARQUEE ============================== */
.marquee-wrap {
  background: var(--accent);
  padding: 0.75rem 0;
  overflow: hidden;
  contain: paint;
  max-width: 100vw;
  flex-shrink: 0;
}

.hero > .marquee-wrap {
  position: absolute;
  inset: auto 0 0;
  z-index: 20;
}

.marquee-wrap--accent {
  background: var(--bg);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.marquee {
  display: flex;
  width: max-content;
  max-width: none;
  animation: marquee-scroll 32s linear infinite;
}

.marquee--reverse {
  animation-direction: reverse;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
}

.marquee-content span {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  white-space: nowrap;
}

.marquee-wrap--accent .marquee-content span {
  color: var(--accent);
}

.sep {
  opacity: 0.45;
  font-size: 0.75rem !important;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === MANIFESTO ============================ */
.manifesto {
  background: var(--accent);
  color: var(--bg);
  padding: 8rem 5%;
  overflow: hidden;
  transition: background 0.35s ease;
}

.manifesto-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 7vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.manifesto-accent {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--bg);
  margin-bottom: 3.5rem;
  display: block;
}

.manifesto-body {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 52ch;
  color: rgba(10,10,10,0.65);
  line-height: 1.72;
}

/* === CULT RULES =========================== */
.cult-rules {
  min-height: 640px;
  padding: 6rem 5% 7rem;
  background: var(--bg);
  overflow: hidden;
}

.cult-rules__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 3rem;
  color: var(--fg-dim);
}

.cult-rules__head p:last-child {
  max-width: 28ch;
  line-height: 1.55;
}

.rule-list {
  list-style: none;
  display: grid;
  gap: 0.25rem;
  counter-reset: cultRules;
}

.rule-line {
  display: grid;
  grid-template-columns: minmax(5.5rem, 15vw) minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(245,245,245,0.15);
  padding: clamp(0.6rem, 1.5vw, 1.05rem) 0;
  will-change: transform, opacity;
}

.rule-line:last-child {
  border-bottom: 1px solid rgba(245,245,245,0.15);
}

.rule-line span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 10vw, 11rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--accent-rgb),0.72);
  transition: -webkit-text-stroke-color 0.35s ease;
}

.rule-line strong {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 8vw, 9.2rem);
  line-height: 0.85;
  letter-spacing: 0;
  color: var(--fg);
  text-transform: uppercase;
}

/* === KINETIC STATS ======================== */
.kinetic-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  background: var(--bg);
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
}

.kstat {
  min-height: 19rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(2.6rem, 4vw, 4.8rem);
  overflow: hidden;
}

.kstat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.4rem, 10vw, 11rem);
  line-height: 0.92;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  transition: color 0.35s ease;
}

.kstat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* === FORMULA GRID ========================= */
.formula {
  padding: 6rem 5%;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.formula-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 32rem);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.formula-title {
  grid-column: 2;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 1.12;
  text-align: right;
  max-width: 7.6em;
  justify-self: end;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.formula-tile {
  min-height: 13rem;
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), transparent 42%),
    var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.formula-tile span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.6rem, 6vw, 6.6rem);
  line-height: 0.84;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  transition: color 0.18s ease;
}

.formula-tile strong {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.18s ease;
}

.formula-tile:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-0.35rem);
}

.formula-tile:hover span,
.formula-tile:hover strong {
  color: var(--bg);
}

/* === DROP ================================= */
.drop {
  padding: 6rem 5%;
  background: var(--bg);
}

.drop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
  margin-bottom: 4rem;
}

.drop-title {
  font-size: clamp(3rem, 8vw, 9rem);
  color: var(--fg);
}

.drop-cd-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cd-label {
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.cd-timer {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
}

.cd-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.cd-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-top: 3px;
}

.cd-sep {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.1rem;
}

.fomo-ticker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -2rem 0 2.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(var(--accent-rgb),0.42);
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb),0.12), transparent 34%),
    var(--surface);
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.fomo-ticker span {
  white-space: nowrap;
}

.fomo-ticker b {
  color: var(--fg);
  font-weight: 700;
}

/* === PRODUCTS GRID ======================== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.product {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  --variant-accent: var(--accent);
  --variant-rgb: var(--accent-rgb);
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.product:hover {
  background: var(--variant-accent);
  border-color: var(--variant-accent);
}

.product--hot { border-color: var(--variant-accent); }

.product-hot-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--variant-accent);
  color: var(--bg);
  padding: 0.3rem 0.7rem;
  transition: background 0.12s, color 0.12s;
}

.product:hover .product-hot-tag {
  background: var(--bg);
  color: var(--variant-accent);
}

/* === PRODUCT CAN (small) ================== */
.product-can-wrap {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0 0.75rem;
  min-height: 18rem;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 34%),
    radial-gradient(circle at 50% 64%, rgba(var(--variant-rgb),0.16), transparent 15rem);
  border: 1px solid var(--border);
}

.product-can-img {
  --can-tone: ;
  width: min(12.5rem, 72%);
  max-height: 17.5rem;
  object-fit: contain;
  filter: var(--can-tone) drop-shadow(0 24px 24px rgba(0,0,0,0.58));
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.2s ease;
}

.product-can-img--void {
  --can-tone: hue-rotate(220deg) saturate(0.92) contrast(1.03);
}

.product-can-img--burn {
  --can-tone: hue-rotate(290deg) saturate(1.75) contrast(1.08);
}

.product:hover .product-can-img {
  transform: translateY(-0.75rem) rotate(-2.5deg) scale(1.06);
  filter: var(--can-tone) drop-shadow(0 30px 20px rgba(0,0,0,0.42));
}

/* Card hover — everything flips */
.product:hover .product-name,
.product:hover .product-desc,
.product:hover .stock-num,
.product:hover .stock-label,
.product:hover .product-badge { color: var(--bg); }

.product:hover .btn--product {
  color: var(--bg);
  border-color: var(--bg);
}
.product:hover .btn--product:hover {
  background: var(--bg);
  color: var(--variant-accent);
}

/* === PRODUCT BODY ========================= */
.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.product-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--variant-accent);
  color: var(--variant-accent);
  padding: 0.2rem 0.6rem;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}

.product-badge--accent {
  background: var(--variant-accent);
  color: var(--bg);
}

.product:hover .product-badge {
  border-color: var(--bg);
  color: var(--bg);
  background: transparent;
}
.product:hover .product-badge--accent {
  background: var(--bg);
  color: var(--variant-accent);
}

.product-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: 0.04em;
  color: var(--fg);
  transition: color 0.12s;
}

.product-desc {
  font-size: var(--f-sm);
  color: var(--fg-dim);
  line-height: 1.62;
  transition: color 0.12s;
}

.product-stock {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.stock-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  color: var(--fg);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.12s;
}

.stock-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.12s;
}

/* === CULTURE / BENTO ====================== */
.culture {
  padding: 6rem 5%;
  background: var(--bg);
  overflow: hidden;
}

.culture-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 29rem);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.culture-title {
  font-size: var(--f-h2);
  margin-top: 0.7rem;
}

.section-kicker {
  color: var(--accent);
}

.culture-lede {
  color: rgba(245,245,245,0.62);
  line-height: 1.7;
}

.culture-media {
  position: relative;
  margin: 0 0 2px;
  min-height: 27rem;
  overflow: hidden;
  border: 2px solid rgba(var(--accent-rgb),0.24);
  transition: border-color 0.35s ease;
}

.culture-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.32));
  pointer-events: none;
}

.culture-media img {
  width: 100%;
  height: 100%;
  min-height: 27rem;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.bento-cell {
  padding: 2.5rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-quote {
  grid-column: span 2;
  background: var(--accent);
  color: var(--bg);
  min-height: 280px;
  justify-content: center;
}

.bento-quote blockquote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bento-stat {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0;
}

.stat-label {
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.bento-text {
  background: var(--surface2);
}

.bento-text p {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--fg);
}

.bento-tag {
  background: var(--bg);
  border: 2px solid var(--accent);
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.35rem;
}

.big-tag {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--accent);
  letter-spacing: 0.08em;
}

.big-tag-sub {
  font-size: var(--f-xs);
  letter-spacing: 0.25em;
  color: var(--fg-dim);
  text-transform: uppercase;
  font-weight: 700;
}

.bento-wide {
  grid-column: span 2;
  background: var(--surface);
  justify-content: center;
}

.bento-big-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg);
}

/* === HORIZONTAL SCROLL (pinned) =========== */
.hscroll {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.hscroll-track {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.hpanel {
  width: 78vw;
  max-width: 900px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  border-right: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hpanel::after {
  content: 'KULT';
  position: absolute;
  right: -0.1em;
  bottom: -0.18em;
  font-family: 'Anton', sans-serif;
  font-size: 18rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--accent-rgb),0.13);
  pointer-events: none;
}

.hpanel--accent::after {
  -webkit-text-stroke-color: rgba(10,10,10,0.16);
}

.hpanel--accent {
  background: var(--accent);
  color: var(--bg);
}

.hpanel--outline .hpanel-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--fg);
}

.hpanel--product {
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb),0.22), transparent 22rem),
    var(--bg);
}

.hpanel--product::after {
  content: '200MG';
  right: -0.05em;
  bottom: -0.08em;
}

.hpanel-can-shot {
  height: min(66vh, 36rem);
  width: min(26rem, 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.hpanel-can-shot img {
  height: 130%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2.4rem 2.2rem rgba(0,0,0,0.72));
}

.hpanel-stat {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.8;
  color: var(--accent);
}

.hpanel--final {
  max-width: 1040px;
}

.hpanel-idx {
  font-family: 'Space Mono', monospace;
  font-size: var(--f-sm);
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: clamp(1.8rem, 3vw, 2.8rem);
  opacity: 0.5;
}
.hpanel--accent .hpanel-idx { opacity: 0.6; }

.hpanel-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Fallback when not pinned (reduced-motion / no-JS): horizontal strip you can scroll */
.hscroll.is-static {
  height: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.hscroll.is-static .hpanel {
  height: 70vh;
  scroll-snap-align: start;
}

/* === UNDERGROUND PASS ===================== */
.underground-pass {
  padding: 7rem 5%;
  background: var(--accent);
  color: var(--bg);
  overflow: hidden;
  transition: background 0.35s ease;
}

.pass-shell {
  position: relative;
  min-height: 30rem;
  border: 2px solid var(--bg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 2rem;
  align-items: end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    repeating-linear-gradient(0deg, rgba(10,10,10,0.07) 0 1px, transparent 1px 9px),
    rgba(var(--accent-rgb),0.12);
}

.pass-shell.is-unlocked {
  animation: pass-flash 0.42s steps(2, end);
}

@keyframes pass-flash {
  0%, 100% { filter: invert(0); }
  50% { filter: invert(1); }
}

.pass-title {
  margin-top: 1.2rem;
  font-size: clamp(3.2rem, 9vw, 9rem);
  line-height: 1.12;
}

.pass-desc {
  max-width: 42ch;
  margin-top: 1.65rem;
  color: rgba(10,10,10,0.68);
}

.pass-copy .section-kicker {
  margin-bottom: 1.7rem;
}

.pass-form {
  display: grid;
  gap: 0.75rem;
}

.pass-input {
  width: 100%;
  min-height: 56px;
  border: 2px solid var(--bg);
  background: rgba(10,10,10,0.08);
  color: var(--bg);
  font-family: 'Space Mono', monospace;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 1rem;
  outline: none;
}

.pass-input::placeholder { color: rgba(10,10,10,0.45); }
.pass-input:focus { background: var(--fg); }

.pass-teaser {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 2px solid var(--bg);
  transition: max-height 0.45s ease, opacity 0.25s ease, padding-top 0.45s ease;
}

.pass-shell.is-unlocked .pass-teaser {
  max-height: 16rem;
  opacity: 1;
  padding-top: 1.5rem;
}

.pass-teaser img {
  width: 8rem;
  height: 11rem;
  object-fit: cover;
  filter: blur(4px) saturate(1.15) contrast(1.12) brightness(0.78);
}

.pass-teaser p {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.7rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

/* === ZINE MONO CAPTIONS (hierarchy contrast) === */
.hero-eyebrow,
.cd-label,
.cd-lbl,
.stock-label,
.ugc-handle,
.footer-tag,
.footer-legal,
.big-tag-sub,
.stat-label,
.product-badge,
.product-hot-tag,
.join-legal,
.nav-link {
  font-family: 'Space Mono', monospace;
}

/* === UGC ================================== */
.ugc {
  padding: 6rem 5%;
  background: var(--surface);
}

.ugc-title {
  font-size: var(--f-h2);
  margin-bottom: 3rem;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.ugc-card {
  background: var(--surface2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 200px;
  border: 2px solid transparent;
  transition: border-color 0.12s;
}

.ugc-card:hover { border-color: var(--accent); }

.ugc-card--accent {
  background: var(--accent);
  color: var(--bg);
}

.ugc-quote {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  font-style: italic;
}

.ugc-handle {
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.ugc-card--accent .ugc-quote { color: var(--bg); }
.ugc-card--accent .ugc-handle {
  color: rgba(10,10,10,0.55);
  border-color: rgba(10,10,10,0.18);
}

/* === DROP DETAIL MODAL / FLIP ============ */
.drop-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: grid;
  place-items: center;
  padding: 5%;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(18px);
}

.drop-modal[hidden] { display: none; }

.drop-modal__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  min-height: 48px;
  padding: 0 1rem;
  border: 2px solid var(--fg);
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.drop-modal__panel {
  width: min(68rem, 100%);
  min-height: min(42rem, 82dvh);
  display: grid;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(18rem, 1fr);
  overflow: hidden;
  border: 2px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb),0.08), transparent 38%),
    var(--surface);
  box-shadow: 0 2rem 6rem rgba(0,0,0,0.7);
}

.drop-modal__visual {
  display: grid;
  place-items: center;
  min-height: 28rem;
  background:
    radial-gradient(circle at 50% 56%, rgba(var(--accent-rgb),0.28), transparent 18rem),
    #050505;
  overflow: hidden;
}

.drop-modal__visual img {
  width: min(22rem, 76%);
  max-height: 37rem;
  object-fit: contain;
  filter: drop-shadow(0 2rem 1.7rem rgba(0,0,0,0.58));
}

.drop-modal__copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.drop-modal__copy h2 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.drop-modal__copy p {
  color: rgba(245,245,245,0.64);
  max-width: 42ch;
}

.drop-modal__stats {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* === FINAL CTA ============================ */
.final-cta {
  position: relative;
  padding: 9rem 5% 7rem;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}

.fct-bg-text {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: clamp(18rem, 46vw, 56rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--accent-rgb),0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0;
  line-height: 1;
  overflow: clip;
}

.fct-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.fct-title {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: 2rem;
  font-size: var(--f-h2);
}

.fct-word { display: block; }
.fct-accent { color: var(--accent); }

.fct-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--fg-dim);
  margin-bottom: 2.5rem;
}

.join-form {
  display: flex;
  max-width: 580px;
  margin: 0 auto 1rem;
}

.join-input {
  flex: 1;
  background: var(--surface);
  border: 2px solid var(--border);
  border-right: none;
  color: var(--fg);
  font-family: 'Epilogue', sans-serif;
  font-size: var(--f-sm);
  letter-spacing: 0.08em;
  padding: 0 1.5rem;
  min-height: 52px;
  outline: none;
  transition: border-color 0.15s;
}

.join-input::placeholder { color: rgba(245,245,245,0.2); }
.join-input:focus { border-color: var(--accent); }

.join-form .btn {
  border-radius: 0;
  flex-shrink: 0;
  min-height: 52px;
}

.join-legal {
  font-size: 0.68rem;
  color: rgba(245,245,245,0.28);
  letter-spacing: 0.06em;
}

/* === FOOTER =============================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.footer-tag {
  font-size: var(--f-xs);
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.65rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg); }

.footer-legal {
  font-size: 0.65rem;
  color: rgba(245,245,245,0.22);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === INITIAL STATES FOR GSAP ============== */
/* Chars start visible (no transform) so reduced-motion and no-JS
   users always see the title. GSAP sets the hidden start state
   itself via fromTo() only when motion is allowed. */
.js-char-inner {
  display: inline-block;
  will-change: transform;
}

.js-char-wrap {
  display: inline-block;
  overflow: hidden;
  line-height: 1.05;
  vertical-align: bottom;
}

/* === RESPONSIVE =========================== */
@media (max-width: 1100px) {
  .hero-product-stage {
    right: clamp(8rem, 14vw, 11rem);
    width: clamp(16rem, 27vw, 22rem);
  }
  .hero-inner { width: min(42rem, 65vw); }
  .hero-edge-copy { display: none; }
  .hpanel { width: 88vw; }
}

@media (max-width: 900px) {
  .hero-product-stage {
    right: 1%;
    top: 8.5rem;
    bottom: 4rem;
    width: clamp(15rem, 34vw, 20rem);
  }
  .hero-product-stamp {
    right: auto;
    left: -50%;
    top: 48%;
  }
  .hero-inner { width: min(39rem, 72vw); }
  .hero-drop-index { display: none; }
  .hero-scene__image { object-position: 56% center; }
  .hero-scene__wash {
    background:
      linear-gradient(90deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.54) 48%, rgba(7,7,7,0.18) 100%),
      linear-gradient(0deg, rgba(7,7,7,0.9) 0%, transparent 42%),
      radial-gradient(circle at 70% 48%, rgba(var(--accent-rgb),0.15), transparent 34%);
  }

  .products { grid-template-columns: 1fr; }
  .kinetic-stats { grid-template-columns: repeat(2, 1fr); }
  .kstat { min-height: 12rem; }
  .cult-rules__head,
  .formula-head {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }
  .formula-title {
    grid-column: auto;
    text-align: left;
    max-width: 100%;
  }
  .formula-grid { grid-template-columns: repeat(2, 1fr); }
  .fomo-ticker {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .can3d--mini { width: 104px; height: 240px; }
  .product-can-wrap { min-height: 15rem; }
  .product-can-img { max-height: 15rem; }

  .culture-head { grid-template-columns: 1fr; }
  .culture-media,
  .culture-media img { min-height: 20rem; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-quote,
  .bento-wide { grid-column: span 2; }

  .pass-shell { grid-template-columns: 1fr; }
  .pass-form { max-width: 28rem; }

  .drop-modal__panel { grid-template-columns: 1fr; }
  .drop-modal__visual { min-height: 19rem; }
  .drop-modal__visual img {
    width: min(16rem, 70%);
    max-height: 22rem;
  }

  /* horizontal reel becomes a vertical stack on small screens */
  .hscroll { height: auto; overflow: visible; }
  .hscroll-track { flex-direction: column; width: 100%; transform: none !important; }
  .hpanel {
    width: 100%;
    height: auto;
    min-height: 60vh;
    padding: 4.5rem 5%;
    border-right: none;
    border-bottom: 2px solid var(--border);
  }
  .hpanel-idx {
    margin-bottom: 2rem;
  }
  .hpanel-text {
    line-height: 1.18;
  }
}

@media (max-width: 600px) {
  :root {
    --f-display:    5.25rem;
    --f-display-sm: 3.5rem;
  }

  .site-header nav .nav-link { display: none; }
  .site-header {
    padding: 1rem 4%;
    gap: 1rem;
  }
  .site-header nav { gap: 0; }
  .site-header .btn {
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    font-size: 0.62rem;
  }

  .hero {
    min-height: max(100svh, 48rem);
  }
  .hero-scene,
  .hero-intro-curtain,
  .hero-flash {
    bottom: 2.7rem;
  }
  .hero-scene__image {
    object-position: 62% center;
    filter: grayscale(0.92) contrast(1.2) brightness(0.52);
  }
  .hero-scene__wash {
    background:
      linear-gradient(90deg, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0.42) 66%, rgba(7,7,7,0.22) 100%),
      linear-gradient(0deg, rgba(7,7,7,0.96) 0%, transparent 50%),
      radial-gradient(circle at 70% 48%, rgba(var(--accent-rgb),0.14), transparent 34%);
  }
  .hero-eyebrow {
    left: 4%;
    top: 5.5rem;
    max-width: 75%;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }
  .ht-line--1 {
    left: 3.5%;
    top: 21%;
    font-size: clamp(8rem, 42vw, 11rem);
  }
  .ht-line--2 {
    left: 3.5%;
    bottom: 24%;
    font-size: clamp(4.1rem, 19vw, 5.3rem);
  }
  .hero-inner {
    left: 4%;
    right: 4%;
    bottom: 3.55rem;
    width: auto;
    display: block;
  }
  .hero-foot {
    gap: 0.85rem;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .hero-desc {
    max-width: 12rem;
    font-size: 0.68rem;
    line-height: 1.45;
  }
  .hero-foot .btn {
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    font-size: 0.58rem;
  }
  .flavor-switcher {
    margin-top: 0.55rem;
  }
  .flavor-chip {
    min-height: 38px;
    padding: 0.42rem 0.66rem;
    font-size: 0.58rem;
  }
  .hero-product-stage {
    right: 0;
    top: 10.5rem;
    bottom: 8.5rem;
    width: min(60vw, 17rem);
    overflow: visible;
  }
  .hero-product-shell {
    overflow: visible;
  }
  .hero-ghost {
    inset: 24% 0 auto 0;
    width: 100%;
    font-size: 15rem;
    opacity: 0.5;
  }
  .can-glow,
  .hero-product-echo {
    max-width: 100%;
    overflow: clip;
  }
  .hero-product-stamp {
    right: auto;
    left: -56%;
    top: 52%;
    font-size: 0.52rem;
    padding: 0.42rem 0.52rem;
    box-shadow: 0.28rem 0.28rem 0 #070707;
  }

  .manifesto { padding: 5rem 5%; }
  .kinetic-stats { grid-template-columns: 1fr; }
  .kstat {
    min-height: 12.5rem;
    gap: 2.25rem;
  }
  .kstat-num {
    font-size: clamp(4.2rem, 19vw, 6rem);
    line-height: 1;
  }
  .kstat-label {
    max-width: 100%;
  }
  .cult-rules { padding: 4.5rem 5%; min-height: auto; }
  .cult-rules__head { margin-bottom: 2rem; }
  .rule-line {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .rule-line span {
    font-size: clamp(3rem, 18vw, 5.6rem);
  }
  .rule-line strong {
    font-size: clamp(2.4rem, 15vw, 5rem);
  }
  .formula { padding: 4.5rem 5%; }
  .formula-title {
    line-height: 1.16;
  }
  .formula-grid { grid-template-columns: 1fr; }
  .formula-tile { min-height: 10rem; }
  .fomo-ticker {
    margin-top: -1.5rem;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .drop-header { flex-direction: column; }
  .drop-cd-wrap { align-items: flex-start; }

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

  .bento { grid-template-columns: 1fr; }
  .bento-quote,
  .bento-wide { grid-column: span 1; }

  .join-form { flex-direction: column; }
  .join-input {
    border-right: 2px solid var(--border);
    border-bottom: none;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .underground-pass { padding: 4rem 4%; }
  .pass-shell { min-height: auto; }
  .pass-title {
    font-size: clamp(3rem, 14.2vw, 4rem);
    line-height: 1.16;
  }
  .pass-desc {
    margin-top: 1.2rem;
  }
  .pass-teaser {
    grid-template-columns: 6rem minmax(0, 1fr);
  }
  .pass-teaser img {
    width: 5.5rem;
    height: 8rem;
  }
  .drop-modal {
    padding: 4.5rem 4% 4%;
    align-items: start;
  }
  .drop-modal__copy { padding: 1.5rem; }
  .drop-modal__close {
    top: 0.8rem;
    right: 0.8rem;
  }
  .fct-bg-text {
    font-size: clamp(10rem, 58vw, 15rem);
  }
}

/* === REDUCED MOTION ======================== */
@media (prefers-reduced-motion: reduce) {
  .can3d--hero,
  .hero-product-img,
  .hero-product-shell,
  .hero-product-echo,
  .hero-product-gleam,
  .hero-scene__image,
  .hero-ghost,
  .hero-intro-curtain i,
  .hero-flash,
  .can-glow,
  .can3d__sheen,
  .marquee { animation: none !important; }

  .hero-intro-curtain,
  .hero-flash { display: none; }

  /* horizontal reel falls back to a vertical stack */
  .hscroll { height: auto; overflow: visible; }
  .hscroll-track { flex-direction: column; width: 100%; transform: none !important; }
  .hpanel {
    width: 100%;
    height: auto;
    min-height: 55vh;
    border-right: none;
    border-bottom: 2px solid var(--border);
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
  }
}
