:root {
  --orange: #FC5725;
  --orange-hover: #ff6a3a;
  --black: #191919;
  --white: #F5F3EF;
  --gray: #232323;
  --gray-2: #1f1f1f;
  --line: rgba(245,243,239,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
button, a { cursor: pointer; }

/* ─── Ambient gradient blobs ─────────────────────────────────── */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bg-glow-blob {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,87,37,0.18) 0%, rgba(252,87,37,0) 65%);
  filter: blur(60px);
  will-change: transform;
}
.bg-glow-blob.blob-1 {
  top: -200px; left: -180px;
  animation: drift-1 48s ease-in-out infinite;
}
.bg-glow-blob.blob-2 {
  bottom: -280px; right: -200px;
  width: 820px; height: 820px;
  animation: drift-2 62s ease-in-out infinite;
  background: radial-gradient(circle, rgba(252,87,37,0.14) 0%, rgba(252,87,37,0) 65%);
}
.bg-glow-blob.blob-3 {
  top: 38%; left: 42%;
  width: 540px; height: 540px;
  animation: drift-3 56s ease-in-out infinite;
  background: radial-gradient(circle, rgba(252,87,37,0.08) 0%, rgba(252,87,37,0) 70%);
}
@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(220px, 180px) scale(1.12); }
}
@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-180px, -160px) scale(1.08); }
}
@keyframes drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-120px, 200px) scale(1.18); }
}

/* Lift all main content above the gradient layer */
nav, section, footer, .ticker, .illus-banner,
#how-to-play, #cart-drawer,
div#about, div#waitlist {
  position: relative;
  z-index: 1;
}

/* ─── Nav ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.7) 0%, transparent 100%);
  pointer-events: none;
}
.nav-logo {
  position: relative; z-index: 1;
  display: flex; align-items: center;
}
.nav-logo img { height: 22px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 36px; align-items: center;
  position: relative; z-index: 1;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  opacity: 0.85;
}
.nav-links a:hover { color: var(--orange); opacity: 1; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 11px 26px !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  border-radius: 9999px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-hover) !important; color: var(--white) !important; }

/* ─── Cart toggle (nav) ──────────────────────────────────────── */
.cart-toggle {
  position: relative;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 1;
  transition: color 0.2s;
}
.cart-toggle:hover { color: var(--orange); }
.cart-toggle svg { width: 22px; height: 22px; display: block; }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  border-radius: 9999px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-count.has-items { opacity: 1; transform: scale(1); }

/* ─── basa + TYPE lockup (section header pattern) ────────────── */
.basa-lockup {
  display: inline-flex; align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}
.basa-lockup .lockup-mark {
  height: 24px; width: auto;
}
.basa-lockup .lockup-type {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}
.basa-lockup .lockup-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-left: 8px;
}
.basa-lockup--dark .lockup-type { color: var(--black); }

/* Old section label kept as a subtitle when needed */
.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
}

/* ─── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.05) 40%,
    rgba(8,8,8,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px 120px;
  margin-top: 120px;
}
.hero-title {
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
  line-height: 0;
}
.hero-title img {
  width: clamp(280px, 34vw, 540px);
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

/* Hero outline → fills orange on hover */
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: 18px 44px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1.5px solid rgba(245,243,239,0.85);
  text-decoration: none;
  display: inline-block;
  border-radius: 9999px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-cta-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  display: inline-block;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); }
.btn-primary:disabled, .btn-primary.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary[data-busy] { opacity: 0.7; pointer-events: none; }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid rgba(245,243,239,0.4);
  text-decoration: none;
  display: inline-block;
  border-radius: 9999px;
  transition: border-color 0.2s, transform 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid rgba(245,243,239,0.25);
  text-decoration: none;
  display: inline-block;
  border-radius: 9999px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollPulse 2s infinite;
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.5);
}

/* ─── Ticker ─────────────────────────────────────────────────── */
.ticker {
  background: var(--orange);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 60s linear infinite;
}
.ticker-item {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 26px;
}
.ticker-dot {
  color: var(--white);
  opacity: 1;
  padding: 0;
  font-size: 12px;
  /* No padding — the 26px on each adjacent ticker-item centers the dot in the gap */
}

/* ─── Sections (general) ─────────────────────────────────────── */
section { padding: 120px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

/* Section divider — thin gray rule between sections */
.section-divider {
  height: 1px;
  background: rgba(245,243,239,0.12);
  margin: 0 48px;
  position: relative;
  z-index: 1;
}

/* Topographic divider (subtle band) */
.topo-divider {
  position: relative;
  height: 2px;
  background: var(--line);
  overflow: visible;
}
.topo-divider::after {
  content: '';
  position: absolute;
  top: -42px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 80px;
  background-image: url('topo-pattern.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
}

/* ─── basa FULL KIT (Featured product) ───────────────────────── */
#product { padding: 100px 0 140px; }

/* Launch header */
.product-launch {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 48px;
}
.launch-title {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: nowrap;
}
.launch-title .launch-mark {
  height: clamp(56px, 8.5vw, 116px);
  width: auto;
  filter: brightness(0) invert(1); /* white wordmark */
}
.launch-title span {
  font-size: clamp(44px, 7.2vw, 104px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--white);
  line-height: 0.92;
}
.launch-sub {
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.85);
  margin-top: 18px;
  margin-bottom: 22px;
  font-weight: 600;
}
.launch-divider {
  border: none;
  border-top: 1px solid rgba(245,243,239,0.18);
  margin: 0;
}

.product-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Gallery: vertical thumbs on left, main image on right */
.product-gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
}
.gallery-main {
  position: relative;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  order: 2;
  border-radius: 8px;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumbs {
  display: flex; flex-direction: column; gap: 12px;
  order: 1;
}
.gallery-thumb {
  width: 92px; height: 92px;
  background: var(--gray-2);
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
  padding: 0;
  border-radius: 6px;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--orange); opacity: 1; }
.gallery-thumb:hover { opacity: 1; }

/* Catalog mark in bottom-right of main image */
.gallery-catalog-mark {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 2;
  pointer-events: none;
}
.gallery-catalog-mark .catalog-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0;
  line-height: 1;
}

.product-info > p.lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,243,239,0.78);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.whats-in-box {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.whats-in-box-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.45);
  margin-bottom: 16px;
  font-weight: 700;
}
.whats-in-box-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  list-style: none;
}
.whats-in-box-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245,243,239,0.88);
}
.whats-in-box-list li .qty {
  color: var(--orange);
  font-weight: 800;
  margin-right: 2px;
}

.price-row {
  display: flex; align-items: flex-end; gap: 20px;
  margin-top: 8px; margin-bottom: 28px;
}
.price-stack {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1;
}
.price {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.price-compare {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  color: rgba(245,243,239,0.42);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 10px;
}
.price-compare .price-currency {
  font-size: 0.6em;
  color: rgba(245,243,239,0.35);
  margin-right: 0.05em;
}
.price-currency {
  font-size: 0.55em;
  color: rgba(245,243,239,0.6);
  vertical-align: top;
  margin-right: 0.05em;
  font-weight: 600;
}
.price-note {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.4);
  padding-bottom: 6px;
}

/* Full-width primary button modifier */
.btn-primary--full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 36px;
  font-size: 17px;
  letter-spacing: 0.18em;
}

/* ─── How to Play ────────────────────────────────────────────── */
#how-to-play {
  background: transparent;
  color: var(--white);
  padding: 100px 0 0;
}
.htp-header {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.htp-header h2 {
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}
.htp-header h2 span { color: var(--orange); }
.htp-header p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,243,239,0.55);
  text-align: right;
  letter-spacing: 0.03em;
}
.htp-ig {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.htp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.htp-step {
  background: var(--black);
  color: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.htp-step:hover { transform: translateY(-6px); z-index: 1; }
.htp-step .step-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: opacity 0.4s ease; opacity: 1;
}
.htp-step .step-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0; z-index: 0;
  transition: opacity 0.4s ease;
}
.htp-step:hover .step-video { opacity: 1; }
.htp-step:hover .step-thumb { opacity: 0; }
.htp-step .step-content { position: relative; z-index: 2; }
.htp-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s; z-index: 1;
}
.htp-step::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.0) 0%, rgba(8,8,8,0.2) 30%, rgba(8,8,8,0.55) 60%, rgba(8,8,8,0.85) 100%);
  z-index: 1; pointer-events: none;
}
.htp-step:hover::before { transform: scaleX(1); }
.step-num {
  font-size: 72px;
  font-weight: 800;
  color: rgba(245,243,239,0.06);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}
.step-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,243,239,0.72);
  letter-spacing: 0.02em;
}

/* ─── Social Proof (NEW) ─────────────────────────────────────── */
#social-proof {
  background: var(--black);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}
.sp-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.sp-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative; z-index: 1;
}
.sp-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.sp-header h2 span { color: var(--orange); }
.sp-header p {
  font-size: 14px;
  color: rgba(245,243,239,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 540px;
  margin: 0 auto;
}
.sp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sp-stat {
  background: var(--black);
  padding: 56px 32px;
  text-align: center;
}
.sp-stat-num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sp-stat-num .suffix { color: var(--orange); font-weight: 400; }
.sp-stat-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
  margin-top: 14px;
  font-weight: 600;
}
.sp-footer {
  margin-top: 56px;
  display: flex; justify-content: center; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.sp-footer-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.6);
  font-weight: 600;
}
.sp-footer-text .ig-icon {
  width: 22px; height: 22px;
  color: var(--orange);
}

/* ─── Illus banner (kept as brand moment) ────────────────────── */
.illus-banner {
  background: var(--orange);
  padding: 22px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.illus-banner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.illus-banner-text h3 {
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.illus-banner-text .pill-indicator { height: 10px; filter: brightness(0) invert(1); opacity: 0.85; }

/* ─── About ──────────────────────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.about-images {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--gray-2);
  border-radius: 8px;
}
.about-images img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-badge {
  position: absolute;
  top: 40%;
  right: -20px;
  width: 90px; height: 90px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.about-badge span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}
.about-text h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-text h2 em {
  font-style: normal;
  color: var(--orange);
}
.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245,243,239,0.7);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.about-stats {
  display: flex; gap: 40px; margin-top: 40px;
}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.5);
  margin-top: 4px;
}

/* ─── Merch / Hoodie ─────────────────────────────────────────── */
#merch {
  padding: 100px 0 140px;
}
.merch-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: start;
}
/* Match basa kit gallery: thumbs left vertical, main right square */
.merch-visual {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
}
.merch-main {
  position: relative;
  background: #F6F6F8;
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* guaranteed 1:1 square */
  overflow: hidden;
  border-radius: 8px;
  order: 2;
}
.merch-main img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.merch-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  order: 1;
}
.merch-thumb {
  width: 92px;
  height: 92px;
  background: var(--gray-2);
  border: 1.5px solid transparent;
  overflow: hidden;
  padding: 0;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
  border-radius: 6px;
}
.merch-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.merch-thumb.active { border-color: var(--orange); opacity: 1; }
.merch-thumb:hover { opacity: 1; }
.merch-info h3 {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
#merch .basa-lockup { margin-bottom: 32px; gap: 18px; }
#merch .basa-lockup .lockup-mark { height: 44px; }
#merch .basa-lockup .lockup-type { font-size: 30px; letter-spacing: 0.12em; }
.merch-info h3 span { color: var(--orange); }
.merch-info > p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,243,239,0.6);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  max-width: 420px;
}
.merch-option-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.5);
  margin-bottom: 10px;
  font-weight: 700;
}
.merch-colors {
  display: flex; gap: 12px;
  margin-bottom: 24px;
}
.color-swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  padding: 0;
}
.color-swatch:hover { transform: scale(1.06); }
.color-swatch.active { border-color: var(--orange); }
.color-swatch::after {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: inherit;
}
.color-swatch[data-color="white"] { background: #f3efe6; }
.color-swatch[data-color="black"] { background: #1c1c1c; }
.merch-sizes {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.size-pill {
  min-width: 48px;
  padding: 10px 14px;
  border: 1.5px solid rgba(245,243,239,0.18);
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.2s;
}
.size-pill:hover { border-color: var(--white); }
.size-pill.active { border-color: var(--orange); color: var(--orange); }
.merch-price-row {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 20px;
}
.merch-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

/* ─── FAQ (NEW) ──────────────────────────────────────────────── */
#faq {
  padding: 140px 48px;
}
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}
.faq-header h2 span { color: var(--orange); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .faq-plus {
  font-size: 24px;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-q .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,243,239,0.65);
  letter-spacing: 0.03em;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}

/* ─── Partnerships page ──────────────────────────────────────── */
#partnerships-hero {
  padding: 180px 48px 80px;
  position: relative;
  z-index: 1;
}
.ph-inner { max-width: 1280px; margin: 0 auto; }
.ph-eyebrow {
  font-size: 17px;
  letter-spacing: 0.01em;
  color: rgba(245,243,239,0.75);
  margin-bottom: 26px;
  font-weight: 400;
  max-width: 680px;
  line-height: 1.6;
}
.ph-cta { margin-top: 32px; }
.btn-cta-outline.btn-sm {
  padding: 13px 30px;
  font-size: 11px;
  letter-spacing: 0.2em;
}
.ph-title {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 36px;
  color: var(--white);
}
.ph-title .orange { color: var(--orange); font-style: normal; }
.ph-title-mark {
  display: inline-block;
  height: 0.78em;
  width: auto;
  vertical-align: baseline;
  margin-left: 0.05em;
  margin-bottom: -0.05em;
}
.ph-lead {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,243,239,0.75);
  letter-spacing: 0.01em;
}

#partnership-types {
  padding: 60px 48px 100px;
  position: relative;
  z-index: 1;
}
.pt-inner { max-width: 1280px; margin: 0 auto; }
.pt-section-title {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
  margin-bottom: 28px;
  font-weight: 700;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245,243,239,0.08);
  border: 1px solid rgba(245,243,239,0.08);
}
.pt-card {
  background: var(--black);
  padding: 44px 32px 52px;
  transition: background 0.3s ease;
}
.pt-card:hover { background: #1f1f1f; }
.pt-card-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.pt-card h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  color: var(--white);
}
.pt-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,243,239,0.65);
}

#partnership-form {
  padding: 100px 48px 120px;
  position: relative;
  z-index: 1;
}
.pf-inner { max-width: 840px; margin: 0 auto; }
.pf-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--white);
}
.pf-sub {
  font-size: 15px;
  color: rgba(245,243,239,0.6);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.pf-form { display: flex; flex-direction: column; gap: 22px; }
.pf-honeypot { position: absolute; left: -9999px; }
.pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pf-field { display: flex; flex-direction: column; gap: 8px; }
.pf-field span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
  font-weight: 700;
}
.pf-field input,
.pf-field select,
.pf-field textarea {
  background: rgba(245,243,239,0.04);
  border: 1.5px solid rgba(245,243,239,0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 6px;
}
.pf-field input:focus,
.pf-field select:focus,
.pf-field textarea:focus {
  border-color: var(--orange);
  background: rgba(245,243,239,0.06);
}
.pf-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}
.pf-submit { align-self: flex-start; margin-top: 8px; }
.pf-success {
  display: none;
  margin-top: 32px;
  padding: 20px 24px;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Conditional fields based on partnership type */
.pf-conditional {
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border: 1px dashed rgba(245,243,239,0.12);
  border-radius: 8px;
  background: rgba(245,243,239,0.02);
}
.pf-conditional.is-visible { display: flex; }

/* Input with @ prefix (social handle) */
.pf-input-prefix {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(245,243,239,0.15);
  border-radius: 6px;
  background: rgba(245,243,239,0.04);
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}
.pf-input-prefix:focus-within {
  border-color: var(--orange);
  background: rgba(245,243,239,0.06);
}
.pf-input-prefix .prefix {
  padding: 14px 0 14px 18px;
  color: rgba(245,243,239,0.55);
  font-size: 14px;
  font-family: inherit;
  user-select: none;
  pointer-events: none;
}
.pf-input-prefix input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px 14px 4px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  border-radius: 0;
}
.pf-input-prefix input:focus {
  background: transparent;
  border: none;
}

/* ─── Signup + Footer (combined) ─────────────────────────────── */
#signup-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 48px 32px;
}
.signup-eyebrow {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245,243,239,0.65);
  letter-spacing: 0.01em;
  max-width: 720px;
  margin-bottom: 32px;
}
.signup-input-wrap { margin-bottom: 56px; }
.signup-input {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(245,243,239,0.2);
  color: var(--white);
  padding: clamp(20px, 2.6vw, 32px) clamp(20px, 3vw, 40px);
  font-family: inherit;
  font-size: clamp(28px, 4.2vw, 60px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s;
}
.signup-input::placeholder {
  color: rgba(245,243,239,0.3);
}
.signup-input:focus {
  border-color: var(--orange);
}
.signup-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.signup-support {
  max-width: 380px;
}
.signup-support h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--white);
}
.signup-support p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,243,239,0.58);
  margin-bottom: 8px;
}
.signup-support-email {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.signup-support-email:hover { color: var(--orange-hover); }
.signup-submit {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  padding: 16px 36px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.signup-submit:hover {
  background: var(--orange);
  color: var(--white);
}
.signup-success {
  display: none;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 40px;
}
.signup-wordmark {
  margin: 24px 0 28px;
  line-height: 0;
}
.signup-wordmark img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1); /* white wordmark */
}
.signup-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(245,243,239,0.1);
}
.signup-legal {
  display: flex;
  gap: 32px;
}
.signup-legal a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.signup-legal a:hover { color: var(--orange); }
.signup-copyright {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.3);
  text-align: right;
}

/* Minimal footer (partnerships page) — no email signup */
#signup-footer.footer-minimal { padding-top: 40px; }
#signup-footer.footer-minimal .signup-wordmark { margin-top: 0; }

/* ─── Cart drawer ────────────────────────────────────────────── */
#cart-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
body.cart-open #cart-drawer { visibility: visible; pointer-events: auto; }
.cart-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.cart-open .cart-overlay { opacity: 1; }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 440px;
  background: var(--black);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body.cart-open .cart-panel { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.cart-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cart-close:hover { opacity: 1; }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px;
}
.cart-lines { list-style: none; padding: 0; margin: 0; }
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-line-img {
  width: 72px; height: 72px;
  background: var(--gray-2);
  overflow: hidden;
}
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cart-line-opts {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.5);
  margin-bottom: 12px;
}
.cart-line-controls {
  display: flex; align-items: center; gap: 16px;
}
.qty-group {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 9999px;
  overflow: hidden;
}
.qty-btn {
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.qty-btn:hover { color: var(--orange); }
.qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.cart-line-remove {
  background: transparent;
  border: none;
  color: rgba(245,243,239,0.45);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0;
  transition: color 0.2s;
}
.cart-line-remove:hover { color: var(--orange); }
.cart-line-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 24px;
  text-align: center;
}
.cart-empty p {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.5);
}
.cart-footer {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cart-subtotal-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
  font-weight: 600;
}
.cart-subtotal-amount {
  font-size: 22px;
  font-weight: 800;
}
.cart-note {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.35);
}
.cart-checkout {
  text-align: center;
  width: 100%;
  margin-top: 4px;
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Legal / policy pages ───────────────────────────────────── */
#legal-hero {
  padding: 180px 48px 32px;
  position: relative;
  z-index: 1;
}
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  font-weight: 600;
}
.legal-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 0 0 18px;
  color: var(--white);
}
.legal-updated {
  font-size: 14px;
  color: rgba(245,243,239,0.55);
  letter-spacing: 0.02em;
  margin: 0;
}

#legal-body {
  padding: 24px 48px 120px;
  position: relative;
  z-index: 1;
}
.legal-body-inner {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,243,239,0.78);
  letter-spacing: 0.01em;
}
.legal-body-inner > p:first-child { margin-top: 0; }
.legal-body-inner p { margin: 0 0 16px; }
.legal-body-inner h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 56px 0 18px;
  font-weight: 700;
  scroll-margin-top: 100px;
}
.legal-body-inner h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,243,239,0.95);
  margin: 32px 0 12px;
  font-weight: 700;
}
.legal-body-inner ul {
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-body-inner li { margin: 0 0 10px; }
.legal-body-inner li::marker { color: var(--orange); }
.legal-body-inner a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(252,87,37,0.4);
  transition: border-color 0.2s ease;
}
.legal-body-inner a:hover { border-bottom-color: var(--orange); }
.legal-body-inner strong { color: var(--white); font-weight: 600; }

.legal-toc {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 28px;
  margin: 28px 0 40px;
}
.legal-toc h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.6);
  margin: 0 0 14px;
  font-weight: 600;
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  column-count: 2;
  column-gap: 36px;
}
.legal-toc li {
  margin: 5px 0;
  break-inside: avoid;
  font-size: 14px;
}
.legal-toc li::marker { color: rgba(245,243,239,0.4); }
.legal-toc a {
  color: rgba(245,243,239,0.78);
  border-bottom: none;
  font-size: 14px;
}
.legal-toc a:hover { color: var(--orange); }

@media (max-width: 768px) {
  #legal-hero { padding: 140px 24px 20px; }
  #legal-body { padding: 16px 24px 80px; }
  .legal-body-inner { font-size: 15px; }
  .legal-body-inner h2 { font-size: 19px; margin: 44px 0 14px; }
  .legal-toc { padding: 18px 22px; }
  .legal-toc ol { column-count: 1; padding-left: 20px; }
}

/* ─── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav: keep Pre-Order CTA + cart visible, hide regular text links */
  nav { padding: 14px 18px; }
  .nav-logo img { height: 28px; }
  .nav-links { gap: 10px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 18px !important; font-size: 10px !important; letter-spacing: 0.12em !important; }
  .cart-toggle svg { width: 20px; height: 20px; }

  /* Sections */
  section { padding: 80px 24px; }
  #product, #social-proof, #merch, #faq { padding: 80px 24px; }

  /* Hero */
  .hero-title img { width: clamp(240px, 70vw, 380px); }
  .hero-pill { height: 18px; margin-top: 22px; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 280px;
    margin-left: auto; margin-right: auto;
  }
  .hero-buttons > * { text-align: center; }

  /* basa FULL KIT — launch header + reorder on mobile */
  .product-launch { margin-bottom: 36px; }
  .launch-title { gap: 14px; align-items: baseline; }
  .launch-title .launch-mark { height: 38px; }
  .launch-title span { font-size: 36px; }
  .launch-sub { font-size: 10px; margin-top: 12px; margin-bottom: 16px; letter-spacing: 0.3em; }

  .product-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-main { order: 1; }
  .gallery-thumbs { flex-direction: row; overflow-x: auto; gap: 8px; order: 2; }
  .gallery-thumb { flex-shrink: 0; width: 64px; height: 64px; }
  .gallery-catalog-mark { bottom: 12px; right: 12px; }
  .gallery-catalog-mark .catalog-num { font-size: 22px; }
  .product-info {
    display: flex;
    flex-direction: column;
  }
  .product-info > .price-row    { order: 1; margin-top: 0; margin-bottom: 12px; }
  .product-info > .buy-set-wrap { order: 2; margin-bottom: 40px; }
  .product-info > .lead         { order: 3; }
  .product-info > .whats-in-box { order: 4; }
  .buy-set-wrap .btn-primary { display: block; width: 100%; text-align: center; }
  .whats-in-box-list { grid-template-columns: 1fr; }
  .price { font-size: 52px; }
  .price-compare { font-size: 16px; }
  .basa-lockup .lockup-mark { height: 18px; }
  .basa-lockup .lockup-type { font-size: 14px; }

  /* How to Play */
  .htp-steps { grid-template-columns: 1fr; gap: 2px; }
  .htp-step { min-height: 440px; }
  .htp-header { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
  .htp-header h2 { text-align: center; }
  .htp-header p { text-align: center; }

  /* Social Proof (legacy classes still used for htp-ig) */
  .sp-footer-text { font-size: 12px; }
  .htp-ig { align-items: center; }

  /* About */
  #about { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 380px; order: -1; }
  .about-badge { width: 72px; height: 72px; right: 16px; top: auto; bottom: 16px; }
  .about-stats { gap: 28px; flex-wrap: wrap; margin-top: 32px; }
  .stat-num { font-size: 32px; }

  /* Merch */
  .merch-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .merch-visual { grid-template-columns: 1fr; }
  .merch-main { order: 1; }
  .merch-thumbs { order: 2; flex-direction: row; overflow-x: auto; gap: 8px; }
  .merch-thumb { flex-shrink: 0; width: 64px; height: 64px; }
  .merch-info h3 { font-size: 28px; }
  .color-swatch { width: 36px; height: 36px; }
  .size-pill { min-width: 44px; padding: 9px 12px; }

  /* FAQ */
  .faq-q { font-size: 13px; padding: 22px 0; gap: 16px; letter-spacing: 0.05em; }
  .faq-a { font-size: 13px; }
  .faq-item.open .faq-a { padding: 0 0 22px; }

  /* Signup + Footer */
  #signup-footer { padding: 80px 24px 24px; }
  .signup-input { font-size: 22px; padding: 18px 18px; }
  .signup-input-wrap { margin-bottom: 36px; }
  .signup-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 40px;
  }
  .signup-support { max-width: 100%; }
  .signup-submit { width: 100%; padding: 18px 24px; }
  .signup-wordmark { margin: 24px 0 20px; }
  .signup-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .signup-legal { gap: 24px; flex-wrap: wrap; }
  .signup-copyright { text-align: left; }

  /* Cart drawer — full screen on phone */
  .cart-panel { max-width: 100%; }
  .cart-header { padding: 18px 20px; }
  .cart-body { padding: 8px 20px; }
  .cart-footer { padding: 20px 20px 24px; }
  .cart-line { grid-template-columns: 60px 1fr auto; gap: 12px; }
  .cart-line-img { width: 60px; height: 60px; }

  /* Ticker — slightly tighter */
  .ticker-item { padding: 0 28px; }

  /* Section divider on mobile */
  .section-divider { margin: 0 24px; }

  /* Partnerships mobile */
  #partnerships-hero { padding: 130px 24px 50px; }
  #partnership-types { padding: 40px 24px 70px; }
  #partnership-form { padding: 70px 24px 90px; }
  .pt-grid { grid-template-columns: 1fr; }
  .pt-card { padding: 36px 24px 40px; }
  .pf-row { grid-template-columns: 1fr; }

  /* Illus banner */
  .illus-banner { padding: 48px 24px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(28px, 8vw, 36px); }
  .nav-links { gap: 8px; }
  .nav-cta { padding: 8px 14px !important; font-size: 9.5px !important; }
}
