/* Drop Drawer — hi-fi
   Sticker-pack energy: bold B&W + one punchy accent, chunky condensed type,
   stickers, tape, hi-contrast pricing, real polish.
*/

:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --paper: #f4f1ea;
  --paper-2: #ebe7dc;
  --paper-white: #ffffff;
  --line: #0a0a0a;
  --accent: #ff3b1f;
  --accent-ink: #ffffff;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-soft: 0 12px 32px rgba(10,10,10,0.14);

  --display: 'Anton', 'Bebas Neue', 'Archivo Black', sans-serif;
  --sans: 'Space Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --mono: 'Space Mono', 'JetBrains Mono', monospace;
}

body.stakt-home {
  --accent: #00e58a;
  --accent-ink: var(--ink);
  --paper: #f4f1ea;
  --paper-2: #ece8de;
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body.stakt-brand {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Wrapper ──────────────────────────────────────────────────── */
.hf {
  --nav-height: 86px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  position: relative;
}

/* ── Type ─────────────────────────────────────────────────────── */
.hf .display { font-family: var(--display); font-weight: 400; line-height: 1.02; letter-spacing: 0.02em; text-transform: uppercase; }
.hf .display-condensed { font-family: var(--display); font-weight: 400; line-height: 1.0; letter-spacing: 0.01em; text-transform: uppercase; }
.hf .mono { font-family: var(--mono); }
.hf .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.hf .eyebrow-lg { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.hf .lead { font-size: 19px; line-height: 1.55; letter-spacing: 0.005em; }
.hf .body { font-size: 16px; line-height: 1.6; }
.hf .small { font-size: 13px; line-height: 1.55; }
.hf .strike { text-decoration: line-through; text-decoration-thickness: 2px; color: rgba(10,10,10,0.4); }

/* ── Buttons ─────────────────────────────────────────────────── */
.hf .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper-white);
  color: var(--ink);
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .08s ease;
  border-radius: 2px;
}
.hf .btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.hf .btn-lg { padding: 18px 28px; font-size: 13px; }
.hf .btn-ink { background: var(--ink); color: var(--paper-white); }
.hf .btn-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--ink); }
.hf .btn-ghost { background: transparent; }
.hf .btn .arr { font-family: var(--display); font-size: 16px; }

/* ── Layout ──────────────────────────────────────────────────── */
.hf .container { padding: 0 40px; }
.hf .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.hf .rule { border: none; height: 2px; background: var(--ink); margin: 0; }
.hf .rule-thin { border: none; height: 1px; background: var(--ink); margin: 0; }

/* ── Top nav ─────────────────────────────────────────────────── */
.hf nav.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
/* ── Logo ──────────────────────────────────────────────────── */
.hf .stakt-mark {
  display: inline-block;
  width: 0.95em;
  height: 0.8em;
  background-color: currentColor;
  -webkit-mask: url('../images/stakt-mark.svg') center/contain no-repeat;
          mask: url('../images/stakt-mark.svg') center/contain no-repeat;
  vertical-align: -0.05em;
  flex-shrink: 0;
}
.hf .stakt-mark.accent { background-color: var(--accent); }
.hf .stakt-mark.ink { background-color: var(--ink); }
.hf .stakt-mark.paper { background-color: var(--paper-white); }

.hf .stakt-wordmark {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  white-space: nowrap;
}

.hf .logo-img {
  display: block;
  height: 28px;
  width: auto;
}
.hf .logo-img.lg { height: 60px; }
.hf .logo-img.xl { height: 120px; }
.hf .logo-img.invert { filter: invert(1); }
.hf .logo-img.accent { filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(2380%) hue-rotate(347deg) brightness(101%) contrast(101%); }

.hf .nav-logo {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 2px;
}
.hf .nav-logo .x { color: var(--accent); }
.hf .nav-links { display: flex; align-items: center; gap: 28px; }
.hf .nav-links a {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink); text-decoration: none; font-weight: 700;
}
.hf .nav-links a:hover { color: var(--accent); }

/* ── Sticker primitives ───────────────────────────────────────── */
.hf .sticker {
  position: absolute;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper-white);
  border: 2px solid var(--ink);
  padding: 6px 10px;
  box-shadow: var(--shadow-hard);
  z-index: 3;
  white-space: nowrap;
}
.hf .sticker.accent { background: var(--accent); color: var(--accent-ink); }
.hf .sticker.ink { background: var(--ink); color: var(--paper-white); }

.hf .stamp {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); text-align: center; line-height: 0.95;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  z-index: 4;
}
.hf .stamp.ink { background: var(--ink); color: var(--paper-white); }
.hf .stamp.paper { background: var(--paper-white); color: var(--ink); }

/* burst-edged stamp (star/badge) */
.hf .burst {
  position: absolute;
  width: 130px; height: 130px;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); text-align: center; line-height: 0.95;
  text-transform: uppercase;
  /* 12-point star */
  clip-path: polygon(50% 0%, 60% 14%, 75% 6%, 78% 22%, 94% 22%, 86% 36%, 100% 50%, 86% 64%, 94% 78%, 78% 78%, 75% 94%, 60% 86%, 50% 100%, 40% 86%, 25% 94%, 22% 78%, 6% 78%, 14% 64%, 0% 50%, 14% 36%, 6% 22%, 22% 22%, 25% 6%, 40% 14%);
  z-index: 4;
  filter: drop-shadow(4px 4px 0 var(--ink));
}
.hf .burst.ink { background: var(--ink); color: var(--paper-white); }
.hf .burst.paper { background: var(--paper-white); color: var(--ink); }

/* Tape strip */
.hf .tape {
  position: absolute;
  background: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(10,10,10,0.15);
  border-bottom: 1px solid rgba(10,10,10,0.15);
  backdrop-filter: blur(2px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 3;
}
.hf .tape.accent { background: var(--accent); color: var(--accent-ink); border-color: var(--ink); }

/* Price tag (hangtag style) */
.hf .pricetag {
  position: absolute;
  background: var(--paper-white);
  border: 2px solid var(--ink);
  padding: 10px 16px 12px 22px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  z-index: 5;
  /* Notched left edge to look like a tag */
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  box-shadow: var(--shadow-hard);
}
.hf .pricetag::before {
  content: '';
  position: absolute;
  left: 18px; top: 50%;
  width: 8px; height: 8px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ── Placeholder imagery (sticker-pack flavored) ──────────────── */
.hf .ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(10,10,10,0.04) 0 12px, transparent 12px 24px),
    var(--paper-2);
  border: 2px solid var(--ink);
  overflow: hidden;
}
.hf .ph::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), var(--ink) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), var(--ink) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
  opacity: 0.12;
}
.hf .ph .ph-label {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--mono); font-size: 10px;
  background: var(--ink); color: var(--paper-white);
  padding: 4px 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
}
.hf .ph.foil {
  background:
    linear-gradient(135deg,
      #d0d0e8 0%,
      #f4e8d0 20%,
      #d8e8f0 40%,
      #f0d8e0 60%,
      #d0e8d8 80%,
      #f4e8d0 100%),
    var(--paper-2);
  background-blend-mode: screen;
}
.hf .ph.dark { background: var(--ink); }
.hf .ph.dark::after { opacity: 0.4; filter: invert(1); }
.hf .ph.dark .ph-label { background: var(--accent); color: var(--accent-ink); }

/* ── Countdown ───────────────────────────────────────────────── */
.hf .countdown {
  display: flex;
  gap: 12px;
}
.hf .cd-cell {
  text-align: center;
  background: var(--ink);
  color: var(--paper-white);
  padding: 14px 18px 10px;
  border: 2px solid var(--ink);
  min-width: 88px;
}
.hf .cd-cell .num {
  font-family: var(--display);
  font-size: 72px;
  line-height: 0.86;
  font-feature-settings: 'tnum';
}
.hf .cd-cell .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(255,255,255,0.6);
}
.hf .cd-cell.accent { background: var(--accent); color: var(--accent-ink); }
.hf .cd-cell.accent .lbl { color: var(--accent-ink); opacity: 0.65; }

.hf .countdown.lg .cd-cell { padding: 20px 28px 14px; min-width: 130px; }
.hf .countdown.lg .cd-cell .num { font-size: 120px; }

.hf .countdown.xl .cd-cell { padding: 28px 36px 18px; min-width: 180px; }
.hf .countdown.xl .cd-cell .num { font-size: 200px; }

.hf .countdown.sm .cd-cell { padding: 10px 14px 8px; min-width: 64px; }
.hf .countdown.sm .cd-cell .num { font-size: 44px; }

.hf .countdown-banner .cd-cell {
  min-width: 0;
  background: #161616;
  border-color: #2a2a2a;
}

.hf .countdown-banner .cd-cell.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.hf .countdown-banner .cd-cell.accent .lbl {
  color: var(--accent-ink);
  opacity: 0.65;
}

.hf .countdown-banner__countdown[hidden],
.hf .countdown-banner__register[hidden] {
  display: none !important;
}

.hf .countdown-banner__register {
  margin-top: 8px;
}

/* ── Marquee ─────────────────────────────────────────────────── */
.hf .marquee {
  background: var(--ink);
  color: var(--paper-white);
  border-block: 2px solid var(--ink);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hf .marquee-track {
  display: flex; gap: 56px;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  padding-left: 56px;
}
.hf .marquee.accent-bg { background: var(--accent); color: var(--accent-ink); }
.hf .marquee .star { color: var(--accent); margin: 0 24px; }
.hf .marquee.accent-bg .star { color: var(--ink); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section header ──────────────────────────────────────────── */
.hf .sec {
  padding: 80px 40px;
  position: relative;
}
.hf .sec.pad-sm { padding: 56px 40px; }
.hf .sec.pad-lg { padding: 120px 40px; }
.hf .sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}
.hf .sec-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
}
.hf .sec-title {
  font-family: var(--display);
  font-size: 96px;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

/* ── Pillar card ─────────────────────────────────────────────── */
.hf .pillar {
  border: 2px solid var(--ink);
  padding: 28px 24px 24px;
  background: var(--paper-white);
  position: relative;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hf .pillar.dark { background: var(--ink); color: var(--paper-white); }
.hf .pillar.accent { background: var(--accent); color: var(--accent-ink); border-color: var(--ink); }
.hf .pillar-num {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hf .pillar-title {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hf .pillar-body { font-size: 15px; line-height: 1.5; opacity: 0.85; }

/* ── Drop product card ──────────────────────────────────────── */
.hf .drop {
  border: 2px solid var(--ink);
  background: var(--paper-white);
  position: relative;
  display: flex; flex-direction: column;
}
.hf .drop-img { aspect-ratio: 4/5; }
.hf .drop-body { padding: 18px 18px 20px; border-top: 2px solid var(--ink); }
.hf .drop-title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.hf .drop-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; }
.hf .drop-price { font-family: var(--display); font-size: 36px; line-height: 1; }
.hf .drop-rrp { font-family: var(--mono); font-size: 13px; }

/* ── Step card (How it works) ───────────────────────────────── */
.hf .step {
  border: 2px solid var(--ink);
  background: var(--paper-white);
  padding: 28px 24px;
  position: relative;
  min-height: 240px;
}
.hf .step-num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-block;
  background: var(--ink); color: var(--paper-white);
  padding: 6px 10px;
  margin-bottom: 18px;
}
.hf .step-title {
  font-family: var(--display);
  font-size: 36px; line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hf .step-body { font-size: 15px; line-height: 1.5; opacity: 0.85; }
.hf .step.accent { background: var(--accent); color: var(--accent-ink); }
.hf .step.accent .step-num { background: var(--ink); color: var(--paper-white); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.hf .faq-row {
  border-top: 2px solid var(--ink);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  gap: 20px;
  align-items: start;
  cursor: pointer;
}
.hf .faq-row:last-child { border-bottom: 2px solid var(--ink); }
.hf .faq-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; padding-top: 6px; }
.hf .faq-q { font-family: var(--display); font-size: 36px; line-height: 1.1; letter-spacing: 0.015em; text-transform: uppercase; }
.hf .faq-a { font-size: 17px; line-height: 1.6; margin-top: 14px; max-width: 720px; opacity: 0.8; }
.hf .faq-toggle {
  font-family: var(--display); font-size: 40px; line-height: 1;
  justify-self: end;
}

/* ── Members store teaser ────────────────────────────────────── */
.hf .store {
  background: var(--ink);
  color: var(--paper-white);
  padding: 80px 40px 96px;
  position: relative;
}
.hf .store .sec-title { color: var(--paper-white); }
.hf .store .small { opacity: 0.7; }
.hf .store-card {
  background: var(--paper-white);
  color: var(--ink);
  border: 2px solid var(--paper-white);
  position: relative;
  display: flex; flex-direction: column;
}
.hf .store-card .drop-body { border-color: var(--ink); }
.hf .store-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.hf .lock-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  pointer-events: none;
}
.hf .lock-overlay .pill {
  font-family: var(--mono); font-size: 10px;
  background: var(--accent); color: var(--accent-ink);
  padding: 4px 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: flex-start;
}

/* ── Final CTA ───────────────────────────────────────────────── */
.hf .cta {
  border-top: 2px solid var(--ink);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,59,31,0.10), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,59,31,0.08), transparent 60%),
    var(--paper);
}
.hf .cta-title {
  font-family: var(--display);
  font-size: 200px;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Footer ──────────────────────────────────────────────────── */
.hf .footer {
  border-top: 2px solid var(--ink);
  padding: 40px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.hf .footer h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 14px; opacity: 0.6; }
.hf .footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hf .footer ul li { font-family: var(--sans); font-size: 14px; }
.hf .footer ul li a { color: inherit; text-decoration: none; }
.hf .footer ul li a:hover { color: var(--accent); }
.hf .footer .brand-logo {
  display: block;
  height: 120px;
  width: auto;
  filter: invert(1);
}

/* ── Misc ────────────────────────────────────────────────────── */
.hf .corner-stamp {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 20;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink);
  padding: 6px 10px;
  transform: rotate(2deg);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
}

.hf .hi-marker {
  background: linear-gradient(180deg, transparent 55%, var(--accent) 55%, var(--accent) 95%, transparent 95%);
  padding: 0 6px;
  color: var(--accent-ink);
}

/* Crosshatch underline */
.hf .ink-underline { display: inline-block; border-bottom: 4px solid var(--accent); padding-bottom: 4px; }

/* ── Reusable nav component ───────────────────────────────────── */
.hf .nav__start {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  min-width: 0;
}

.hf .nav__end {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 28px);
  flex-shrink: 0;
}

.hf .nav__countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-left: clamp(20px, 3vw, 32px);
  border-left: 2px solid #2a2a2a;
}

.hf .nav__countdown-label {
  color: var(--accent);
  white-space: nowrap;
  line-height: 1;
}

.hf .nav-countdown {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.hf .nav-countdown__unit {
  color: inherit;
  opacity: 0.8;
}

.hf .nav-countdown__unit.is-accent {
  color: var(--accent);
  opacity: 1;
}

.hf .nav-countdown__suffix {
  font-size: 9px;
  letter-spacing: 0.14em;
  opacity: 0.45;
  margin-left: 1px;
}

.hf .nav-countdown__sep {
  opacity: 0.3;
  font-weight: 400;
}

.hf .nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hf .nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hf .nav__wordmark,
.hf .footer__wordmark {
  font-size: 38px;
}

.hf .nav__wordmark {
  text-decoration: none;
  color: inherit;
}


.hf .nav__login,
.hf .nav__join,
.hf .nav__join-slot .btn {
  height: 48px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hf .nav__account {
  max-width: 148px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hf .nav__join-slot {
  display: flex;
}

.hf .nav__join {
  padding-inline: 18px;
}

.hf nav.nav.nav--light {
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.hf .nav--light .nav__mark {
  background-color: var(--accent);
}

.hf .nav--light .nav-links a {
  color: var(--ink);
}

.hf .nav--light .nav__login {
  color: var(--ink);
  border-color: var(--ink);
}

.hf .nav--light .nav__countdown {
  border-left-color: var(--ink);
}

.hf .nav--light .nav__countdown-label {
  color: var(--accent);
}

.hf nav.nav.nav--dark {
  background: var(--ink);
  color: var(--paper-white);
  border-bottom-color: #2a2a2a;
}

.hf .nav--dark .nav__wordmark {
  color: #ffffff;
}

.hf .nav--dark .nav__mark {
  background-color: var(--accent);
}

.hf .nav--dark .nav-links a {
  color: #ffffff;
}

.hf .nav--dark .nav__login {
  color: #ffffff;
  border-color: #ffffff;
}

.hf .nav--dark .nav__countdown {
  border-left-color: #2a2a2a;
}

.hf .nav__join--invert {
  background: currentColor;
  color: var(--paper);
  border-color: currentColor;
}

.hf .nav--dark .nav__join--invert {
  background: var(--paper-white);
  color: var(--ink);
  border-color: var(--paper-white);
}

.hf .nav__join--outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

/* ── Reusable footer component ────────────────────────────────── */
.hf .footer__tagline {
  margin-top: 20px;
  opacity: 0.7;
  max-width: 320px;
}

.hf .footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.hf .footer__social span {
  border: 1.5px solid var(--paper);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ── Above-the-fold: nav + hero + marquee fill one screen ─────── */
.hf-intro {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100dvh;
}

.hf-intro > nav.nav {
  flex-shrink: 0;
}

.hf-intro > .marquee {
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hf .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 3vh, 32px) clamp(24px, 3vw, 48px);
}

.hf .hero--dark {
  background: var(--ink);
  color: var(--paper-white);
  display: flex;
  align-items: center;
}

.hf-intro > .hero--dark {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
}

.hf .hero__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.hf .hero__inner--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(72px, 8vw, 128px);
  align-items: center;
}

.hf .hero__media {
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hf .hero__product {
  height: 88%;
  transform: rotate(-2deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hf .hero__stamp-ballot {
  top: 10px;
  left: -10px;
  transform: rotate(-12deg);
  width: 150px;
  height: 150px;
  font-size: 22px;
}

.hf .hero__burst-time {
  bottom: 60px;
  right: -20px;
  transform: rotate(8deg);
  width: 150px;
  height: 150px;
  font-size: 18px;
}

.hf .hero__tape-verify {
  top: 130px;
  right: -36px;
  transform: rotate(8deg);
  padding: 6px 18px;
  font-size: 11px;
}

.hf .hero__sticker-sealed {
  bottom: 90px;
  left: 60px;
  transform: rotate(-4deg);
  background: var(--paper-white);
  color: var(--ink);
}

.hf .hero__eyebrow {
  margin-bottom: 4px;
  color: var(--accent);
}

.hf .hero__title {
  font-size: clamp(72px, 10vw, 144px);
  margin: 0 0 20px;
  color: var(--paper-white);
}

.hf .hero__lead {
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0.75;
}

.hf .hero__countdown-wrap {
  margin-bottom: 28px;
}

.hf .hero__countdown-label {
  margin-bottom: 12px;
  color: var(--accent);
}

.hf .hero__ballot-countdown[hidden],
.hf .hero__ballot-register[hidden] {
  display: none !important;
}

.hf .hero__ballot-register {
  margin-top: 4px;
}

.hf .hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hf .hero__btn-ghost {
  background: transparent;
  color: var(--paper-white);
  border-color: var(--paper-white);
}

/* =============================================================
   MOBILE NAV TOGGLE + SLIDE-OUT DRAWER
   Desktop-first: toggle and drawer stay hidden until <=900px.
   ============================================================= */

.hf .nav__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px 0 12px;
  background: transparent;
  border: 2px solid currentColor;
  color: inherit;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background-color .12s ease, color .12s ease, transform .08s ease;
}

.hf .nav--dark .nav__toggle { color: #fff; border-color: #fff; }
.hf .nav--light .nav__toggle { color: var(--ink); border-color: var(--ink); }

.hf .nav__toggle:hover { transform: translate(-1px,-1px); }

.hf .nav__toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
  position: relative;
}

.hf .nav__toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transform-origin: 50% 50%;
  transition: transform .25s cubic-bezier(.6,.05,.3,1), opacity .15s ease, width .25s ease;
}

.hf .nav__toggle-bar:nth-child(2) { width: 70%; align-self: flex-end; }

.hf .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(5.75px) rotate(45deg);
}
.hf .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}
.hf .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-5.75px) rotate(-45deg);
  width: 100%;
}

.hf .nav__toggle-label { display: inline-block; line-height: 1; }
.hf .nav__toggle-text { display: inline-block; }

/* When open, swap label text via data-attr */
.hf .nav__toggle[aria-expanded="true"] .nav__toggle-text { font-size: 0; }
.hf .nav__toggle[aria-expanded="true"] .nav__toggle-text::after {
  content: attr(data-text-close);
  font-size: 11px;
  letter-spacing: 0.14em;
}

/* --- Drawer container (off by default) ----------------------
   Uses visibility + pointer-events instead of display so the
   panel transform animates on open/close. */
.hf .nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear .38s;
}

.hf .nav__drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}

/* Override [hidden] so the drawer can stay in the DOM during
   transitions. JS removes [hidden] on first open. */
.hf .nav__drawer[hidden] { display: none; }

.hf .nav__drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .28s ease;
}

.hf .nav__drawer.is-open .nav__drawer-backdrop { opacity: 1; }

.hf .nav__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 460px);
  background: var(--ink);
  color: var(--paper-white);
  border-left: 2px solid var(--ink);
  box-shadow: -16px 0 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.6,.05,.3,1);
  overflow-y: auto;
  overscroll-behavior: contain;

  /* Sticker-pack texture: faint diagonal hatch in the panel */
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #0a0a0a 0%, #131313 100%);
}

.hf .nav__drawer.is-open .nav__drawer-panel { transform: translateX(0); }

/* Slanted accent slash at top of panel — decorative sticker flair */
.hf .nav__drawer-panel::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 56%;
  height: 4px;
  background: var(--accent);
  transform-origin: 0 0;
  z-index: 2;
}

.hf .nav__drawer-panel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,229,138,0.4), transparent);
  pointer-events: none;
}

/* --- Drawer head ------------------------------------------- */
.hf .nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 2px solid #2a2a2a;
  position: relative;
}

.hf .nav__drawer-wordmark {
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
}

.hf .nav__drawer-wordmark .stakt-mark { background-color: var(--accent); }

.hf .nav__drawer-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background-color .15s ease, color .15s ease, transform .08s ease;
}

.hf .nav__drawer-close:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  transform: translate(-2px,-2px);
  box-shadow: 4px 4px 0 #fff;
}

.hf .nav__drawer-close-x {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
}

.hf .nav__drawer-close-x span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: currentColor;
  border-radius: 1px;
}

.hf .nav__drawer-close-x span:nth-child(1) { transform: translateY(-50%) rotate(45deg); }
.hf .nav__drawer-close-x span:nth-child(2) { transform: translateY(-50%) rotate(-45deg); }

/* --- Drawer decorative tape ------------------------------- */
.hf .nav__drawer-tape {
  position: relative !important;
  top: auto;
  right: auto;
  display: inline-block;
  align-self: flex-end;
  margin: 14px 18px -4px auto;
  transform: rotate(2.5deg);
  background: var(--accent);
  color: var(--accent-ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 #000;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  z-index: 2;
}

/* --- Drawer countdown ------------------------------------- */
.hf .nav__drawer-countdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 24px 22px;
  border-bottom: 2px solid #2a2a2a;
}

.hf .nav__drawer-countdown-label {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.hf .nav__drawer-countdown .nav-countdown {
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
}

.hf .nav__drawer-countdown .nav-countdown__suffix {
  font-size: 11px;
  margin-left: 2px;
}

/* --- Drawer link list ------------------------------------- */
.hf .nav__drawer-links {
  display: flex;
  flex-direction: column;
  padding: 18px 0 8px;
  flex: 1 1 auto;
}

.hf .nav__drawer-link {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: background-color .18s ease, padding-left .18s ease, color .18s ease;
  opacity: 0;
  transform: translateX(24px);
}

.hf .nav__drawer-link:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }

.hf .nav__drawer.is-open .nav__drawer-link {
  animation: drawer-link-in .42s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(120ms + var(--i, 0) * 60ms);
}

@keyframes drawer-link-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.hf .nav__drawer-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height .18s ease;
}

.hf .nav__drawer-link:hover,
.hf .nav__drawer-link:focus-visible {
  background: rgba(0,229,138,0.06);
  padding-left: 30px;
  outline: none;
}

.hf .nav__drawer-link:hover::before,
.hf .nav__drawer-link:focus-visible::before {
  height: 70%;
}

.hf .nav__drawer-link-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-align: left;
}

.hf .nav__drawer-link-label {
  font-family: var(--display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: inherit;
}

.hf .nav__drawer-link-arrow {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  color: rgba(255,255,255,0.4);
  transition: color .18s ease, transform .18s ease;
}

.hf .nav__drawer-link:hover .nav__drawer-link-arrow,
.hf .nav__drawer-link:focus-visible .nav__drawer-link-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* --- Drawer actions --------------------------------------- */
.hf .nav__drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px 16px;
  border-top: 2px solid #2a2a2a;
}

.hf .nav__drawer-action.btn {
  height: 54px;
  font-size: 12px;
  letter-spacing: 0.16em;
  justify-content: center;
  width: 100%;
}

.hf .nav__drawer-action--ghost.btn {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hf .nav__drawer-action--ghost.btn:hover {
  background: #fff;
  color: var(--ink);
}

.hf .nav__drawer-action--cta.btn {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.hf .nav__drawer-action--cta.btn:hover {
  box-shadow: 6px 6px 0 #fff;
  transform: translate(-2px,-2px);
}

/* --- Drawer footer ---------------------------------------- */
.hf .nav__drawer-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 28px;
  border-top: 1px solid #2a2a2a;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hf .nav__drawer-foot-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hf .nav__drawer-foot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,229,138,0.2);
}

.hf .nav__drawer-foot-socials {
  display: inline-flex;
  gap: 8px;
}

.hf .nav__drawer-foot-socials span {
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 6px 10px;
  letter-spacing: 0.12em;
}

/* Light-variant drawer override (used on inner pages) */
.hf .nav--light-drawer .nav__drawer-panel {
  background: var(--paper);
  color: var(--ink);
  background-image:
    repeating-linear-gradient(135deg, rgba(10,10,10,0.025) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.hf .nav--light-drawer .nav__drawer-head { border-bottom-color: var(--ink); }
.hf .nav--light-drawer .nav__drawer-wordmark { color: var(--ink); }
.hf .nav--light-drawer .nav__drawer-close { color: var(--ink); border-color: var(--ink); }
.hf .nav--light-drawer .nav__drawer-link { color: var(--ink); border-top-color: rgba(10,10,10,0.08); }
.hf .nav--light-drawer .nav__drawer-link:last-child { border-bottom-color: rgba(10,10,10,0.08); }
.hf .nav--light-drawer .nav__drawer-link-arrow { color: rgba(10,10,10,0.35); }
.hf .nav--light-drawer .nav__drawer-countdown { border-bottom-color: var(--ink); }
.hf .nav--light-drawer .nav__drawer-actions { border-top-color: var(--ink); }
.hf .nav--light-drawer .nav__drawer-foot { border-top-color: rgba(10,10,10,0.12); color: rgba(10,10,10,0.6); }
.hf .nav--light-drawer .nav__drawer-action--ghost.btn { color: var(--ink); border-color: var(--ink); }
.hf .nav--light-drawer .nav__drawer-action--ghost.btn:hover { background: var(--ink); color: var(--paper); }
.hf .nav--light-drawer .nav__drawer-foot-socials span { border-color: rgba(10,10,10,0.4); }

/* Body lock when drawer open */
body.stakt-nav-open { overflow: hidden; }

/* =============================================================
   MOBILE — full responsive layout
   Desktop remains unchanged above 900px.
   ============================================================= */

@media (max-width: 1100px) {
  /* Slightly tighten huge type before we hit phone break */
  .hf .sec-title { font-size: clamp(64px, 9vw, 96px); }
  .hf .cta-title.cta-title--join { font-size: clamp(80px, 12vw, 132px); }
  .hf .cta-wordmark { font-size: clamp(110px, 18vw, 220px) !important; }
  .hf .pillar-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hf .drops-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hf .store-grid { grid-template-columns: repeat(2, 1fr); }
  .hf .footer { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 900px) {
  /* --- Nav: hide desktop links + actions, show toggle ---- */
  .hf nav.nav { padding: 14px 20px; gap: 12px; }
  .hf .nav-links { display: none; }
  .hf .nav__actions { display: none; }
  .hf .nav__countdown {
    padding-left: 14px;
    border-left-width: 1px;
    gap: 8px;
  }
  .hf .nav__countdown-label { display: none; }
  .hf .nav__wordmark { font-size: 28px; }
  .hf .nav-countdown { font-size: 11px; gap: 4px; }
  .hf .nav-countdown__sep { margin: 0 1px; }
  .hf .nav__toggle { display: inline-flex; }

  /* --- Wrapper padding shrink ---------------------------- */
  .hf .container { padding: 0 20px; }
  .hf .sec { padding: 64px 20px; }
  .hf .sec.pad-sm { padding: 40px 20px; }
  .hf .sec.pad-lg { padding: 96px 20px; }

  /* --- Section head: stack ------------------------------ */
  .hf .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
  }
  .hf .sec-head .lead { font-size: 16px; line-height: 1.55; max-width: 100% !important; }
  .hf .sec-title { font-size: clamp(56px, 13vw, 88px); }
  .hf .sec-num { font-size: 11px; letter-spacing: 0.16em; }

  /* --- Marquee ------------------------------------------ */
  .hf .marquee { font-size: 22px; padding: 10px 0; }
  .hf .marquee-track { gap: 36px; padding-left: 36px; }
  .hf .marquee .star { margin: 0 14px; }

  /* --- Hero: stack content above media ------------------ */
  .hf .hero {
    padding: 24px 20px 36px;
    min-height: 0;
  }
  .hf .hf-intro > .hero--dark {
    flex: 0 0 auto;
  }
  .hf .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .hf .hero__content { order: 1; }
  .hf .hero__media { order: 2; height: 360px; }
  .hf .hero__product { height: 92%; }
  .hf .hero__title {
    font-size: clamp(56px, 14vw, 96px);
    margin-bottom: 14px;
  }
  .hf .hero__eyebrow { font-size: 11px; margin-bottom: 2px; }
  .hf .hero__lead { font-size: 16px; margin-bottom: 22px; max-width: 100%; }
  .hf .hero__countdown-wrap { margin-bottom: 16px; }
  .hf .hero__actions { width: 100%; }
  .hf .hero__actions .btn,
  .hf .hero__ballot-register .btn { width: 100%; justify-content: center; }
  .hf .hero__stamp-ballot {
    top: -10px;
    left: -8px;
    width: 92px;
    height: 92px;
    font-size: 13px;
    border-width: 2px;
  }
  .hf .hero__burst-time {
    bottom: 10px;
    right: -8px;
    width: 92px;
    height: 92px;
    font-size: 12px;
  }
  .hf .hero__tape-verify { top: 22px; right: -12px; font-size: 9px; padding: 4px 12px; }
  .hf .hero__sticker-sealed { bottom: 32px; left: 18px; font-size: 9px; }

  /* Hero countdown cells shrink */
  .hf .hero__countdown-wrap .countdown { gap: 6px; }
  .hf .hero__countdown-wrap .countdown.md .cd-cell,
  .hf .hero__countdown-wrap .cd-cell {
    padding: 10px 8px 6px;
    min-width: 0;
    flex: 1 1 0;
  }
  .hf .hero__countdown-wrap .cd-cell .num { font-size: clamp(36px, 9vw, 56px); }
  .hf .hero__countdown-wrap .cd-cell .lbl { font-size: 9px; letter-spacing: 0.16em; }

  /* --- Pillars: stack ---------------------------------- */
  .hf .pillar-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .hf .pillar { min-height: 0; padding: 24px 22px 22px; }
  .hf .pillar-num { font-size: 56px; margin-bottom: 14px; }
  .hf .pillar-title { font-size: 28px; }
  .hf .pillar-body { font-size: 15px; }

  /* --- Process: stack, hide arrows, vertical divider --- */
  .hf .process-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .hf .process-arrow {
    transform: rotate(90deg);
    font-size: 36px !important;
    padding: 4px 0;
    height: 24px;
  }
  .hf .step { min-height: 0; padding: 24px 22px; }
  .hf .step-title { font-size: 28px; }
  .hf .step-body { font-size: 15px; }

  /* --- Store -------------------------------------------- */
  .hf .store { padding: 64px 20px 80px; }
  .hf .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hf .store-intro,
  .hf .store-intro[style] { max-width: 100% !important; }
  .hf .store-actions { flex-wrap: wrap; }
  .hf .store-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hf .store .drop-title { font-size: 18px !important; }
  .hf .store .drop-price { font-size: 28px; }
  .hf .store .drop-rrp { font-size: 11px; }
  .hf .store .drop-body { padding: 14px; }

  /* --- Drops -------------------------------------------- */
  .hf .drops-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .hf .drop-title { font-size: 24px; }
  .hf .drop-price { font-size: 30px; }

  /* --- FAQ ---------------------------------------------- */
  .hf .faq-row {
    grid-template-columns: 36px 1fr 24px;
    gap: 12px;
    padding: 20px 0;
  }
  .hf .faq-num { font-size: 10px; padding-top: 4px; }
  .hf .faq-q { font-size: 22px; line-height: 1.15; }
  .hf .faq-a { font-size: 15px; margin-top: 10px; }
  .hf .faq-toggle { font-size: 30px; }

  /* --- CTA ---------------------------------------------- */
  .hf .cta { padding: 80px 20px 96px; }
  .hf .cta-wordmark,
  .hf .cta-wordmark[style] { font-size: clamp(80px, 22vw, 160px) !important; }
  .hf .cta-title.cta-title--join,
  .hf .cta-title.cta-title--join[style] { font-size: clamp(56px, 16vw, 110px) !important; line-height: 0.98; }
  .hf .cta-actions,
  .hf .cta-actions[style] { flex-wrap: wrap; gap: 10px !important; }
  .hf .cta-actions .btn { flex: 1 1 100%; justify-content: center; padding: 18px 24px !important; font-size: 12px !important; }
  .hf .cta-burst {
    width: 72px !important;
    height: 72px !important;
    font-size: 10px !important;
  }
  .hf .cta-burst--left,
  .hf .cta-burst--left[style] { top: 32px !important; left: 12px !important; transform: rotate(-14deg) !important; }
  .hf .cta-burst--right,
  .hf .cta-burst--right[style] { bottom: 24px !important; right: 12px !important; transform: rotate(18deg) !important; }
  .hf .cta p.lead { font-size: 16px; }

  /* --- Countdown banner --------------------------------- */
  .hf .countdown-banner,
  .hf .countdown-banner[style] {
    padding: 48px 20px 64px !important;
  }
  .hf .countdown-banner__split,
  .hf .countdown-banner__split[style] {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    margin-top: 36px !important;
  }
  .hf .countdown-banner__feature,
  .hf .countdown-banner__feature[style] {
    flex-direction: column;
    align-items: flex-start !important;
    padding-right: 0 !important;
    border-right: none !important;
    border-top: 1px solid #2a2a2a;
    padding-top: 22px;
    gap: 16px !important;
  }
  .hf .countdown-banner__feature-shot,
  .hf .countdown-banner__feature-shot[style] {
    width: 120px !important;
    height: 120px !important;
  }
  .hf .countdown-banner__feature .display {
    font-size: clamp(28px, 8vw, 40px) !important;
  }
  .hf .countdown-banner .cd-cell {
    padding: 12px 6px 8px !important;
    min-width: 0 !important;
  }
  .hf .countdown-banner .cd-cell .num {
    font-size: clamp(40px, 11vw, 72px) !important;
  }
  .hf .countdown-banner .cd-cell .lbl {
    font-size: 9px !important;
    letter-spacing: 0.14em;
  }
  .hf .countdown-banner__countdown .countdown { gap: 6px !important; }
  .hf .countdown-banner__burst {
    top: 12px !important;
    right: 8px !important;
    width: 72px !important;
    height: 72px !important;
    font-size: 11px !important;
  }
  .hf .countdown-banner > div:first-child {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 10px;
  }
  .hf .countdown-banner__register .btn { width: 100%; justify-content: center; }

  /* --- Footer ------------------------------------------- */
  .hf .footer {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 36px 20px 28px;
  }
  .hf .footer > div:first-child {
    grid-column: 1 / -1;
  }
  .hf .footer__wordmark { font-size: 32px; }
  .hf .footer .brand-logo { height: 80px; }
}

@media (max-width: 600px) {
  /* --- Sticker pruning: hide some decorative pieces  -- */
  .hf .hero__sticker-sealed { display: none; }

  /* Store: 1-col on phone, but keep 2-col cards usable */
  .hf .store-grid { grid-template-columns: 1fr; }

  /* Footer: full single column */
  .hf .footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* Process arrow becomes a chunky chevron */
  .hf .process-arrow {
    font-size: 28px !important;
  }

  /* Nav: hide the countdown if it makes things crowded */
  .hf nav.nav { padding: 12px 16px; }
  .hf .nav__wordmark { font-size: 26px; }
  .hf .nav__countdown {
    font-size: 10px;
    padding-left: 12px;
  }
  .hf .nav-countdown__suffix { font-size: 8px; }
}

@media (max-width: 420px) {
  /* Ultra-small: prioritise the brand and toggle, hide nav countdown */
  .hf .nav__countdown { display: none; }
  .hf .nav__wordmark { font-size: 28px; }

  .hf .hero__title { font-size: clamp(48px, 15vw, 72px); }
  .hf .hero__media { height: 280px; }
  .hf .sec-title { font-size: clamp(48px, 14vw, 72px); }

  .hf .nav__drawer-link-label { font-size: 32px; }
  .hf .nav__drawer-panel { width: 100vw; border-left: 0; }
}

/* Honour reduced-motion preferences on the drawer */
@media (prefers-reduced-motion: reduce) {
  .hf .nav__drawer-panel,
  .hf .nav__drawer-backdrop,
  .hf .nav__drawer-link,
  .hf .nav__toggle-bar {
    transition: none !important;
    animation: none !important;
  }
  .hf .nav__drawer.is-open .nav__drawer-link {
    opacity: 1;
    transform: none;
  }
}
