/* ============================================================================
   ELEV8 STEPH — Tactical Design System
   Firearms · EDC · Preparedness   |  Honest, experience-driven content
   Palette: Tactical Orange #E85D04 · Command Black #0D0D0D · Gunmetal #1C2B3A
            Tactical Gray #2A2A2A · Bone White #E8E4DC
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* Brand */
  --orange: #E85D04;
  --orange-hi: #FF6E1C;
  --orange-deep: #B84604;
  --black: #0D0D0D;
  --gunmetal: #1C2B3A;
  --gray: #2A2A2A;
  --bone: #E8E4DC;

  /* Surfaces (dark theme) */
  --bg: #0A0A0B;
  --bg-2: #0F1115;
  --surface: #14171C;
  --surface-2: #191D24;
  --surface-hi: #202631;

  /* Text */
  --text: #E8E4DC;
  --text-dim: #9BA1AA;
  --text-mute: #6B7178;

  /* Lines */
  --line: rgba(232, 228, 220, 0.10);
  --line-2: rgba(232, 228, 220, 0.18);
  --line-orange: rgba(232, 93, 4, 0.55);

  /* Type */
  --f-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
  --f-mono: "Space Mono", ui-monospace, "SF Mono", monospace;

  /* Scale */
  --step: 8px;
  --gutter: clamp(20px, 5vw, 72px);
  --maxw: 1320px;

  /* Radius */
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 240ms;

  /* Z */
  --z-header: 100;
  --z-menu: 200;
  --z-top: 1000;

  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.75);
  --glow: 0 0 0 1px rgba(232, 93, 4, 0.4), 0 12px 40px -12px rgba(232, 93, 4, 0.35);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--orange); color: #fff; }

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

/* Ambient cinematic depth — sits BEHIND all content (z-index 0, painted first) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(232,93,4,0.06), transparent 60%),
    radial-gradient(100% 100% at 50% 120%, rgba(28,43,58,0.28), transparent 55%);
}
/* Content always paints above the ambient layer */
.site-header, .hero, .section, .section--tight, .marquee,
.page-hero, .footer-cta, .site-footer, main { position: relative; z-index: 2; }

/* ---- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(44px, 5vw, 92px); z-index: 2; }
.section--tight { padding-block: clamp(32px, 3.6vw, 60px); }

/* Field-notebook grid backdrop behind the "Latest Field Notes" rail */
[data-rail-wrap] { isolation: isolate; }
[data-rail-wrap]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(232, 228, 220, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(232, 228, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 93, 4, 0.06) 1.5px, transparent 1.5px),
    linear-gradient(rgba(232, 93, 4, 0.06) 1.5px, transparent 1.5px),
    radial-gradient(130% 90% at 100% 0%, rgba(28, 43, 58, 0.28), transparent 55%);
  background-size:
    26px 26px, 26px 26px,
    130px 130px, 130px 130px,
    100% 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 80%, transparent 100%);
}

/* "From the channel" background — same grid-backdrop idea as above, deliberately gentler
   and self-contained: half the line opacity, no orange grid lines, and a single radial
   mask that fades the grid out right behind the cards (and again toward the section's
   own top/bottom/side edges) so it only ever fills the empty margins. A faint gunmetal
   glow anchors the cards with a bit of depth. */
#channelVideos { position: relative; isolation: isolate; }
#channelVideos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(232, 228, 220, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(232, 228, 220, 0.02) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px;
  -webkit-mask-image: radial-gradient(130% 95% at 50% 58%, transparent 0%, transparent 20%, #000 42%, #000 84%, transparent 100%);
          mask-image: radial-gradient(130% 95% at 50% 58%, transparent 0%, transparent 20%, #000 42%, #000 84%, transparent 100%);
}
#channelVideos::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(55% 50% at 50% 58%, rgba(28, 43, 58, 0.28), transparent 72%);
}
.divider { border: 0; border-top: 1px solid var(--line); }

/* ---- Typography --------------------------------------------------------- */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-stretch: 125%;
}
.h-hero { font-size: clamp(2.6rem, min(8vw, 9vh), 6.8rem); }
.h1 { font-size: clamp(2.6rem, 7vw, 6rem); }
.h2 { font-size: clamp(2rem, 5vw, 4rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.display--outline {
  -webkit-text-stroke: 1.5px var(--line-2);
  color: transparent;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow--dim { color: var(--text-dim); }
.eyebrow--dim::before { background: var(--text-mute); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-dim); max-width: 56ch; }
.muted { color: var(--text-dim); }
.mono { font-family: var(--f-mono); }
.text-orange { color: var(--orange); }

/* Section index label e.g. 01 / SHOP */
.section-index {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.section-index b { color: var(--orange); font-weight: 700; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--orange); color: #120a03; }
.btn--primary:hover { background: var(--orange-hi); box-shadow: var(--glow); }

.btn--ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn--block { width: 100%; justify-content: center; }
.btn--lg { --pad-y: 18px; --pad-x: 34px; font-size: 0.86rem; }

/* Text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-2);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tlink svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.tlink:hover { color: var(--orange); border-color: var(--orange); }
.tlink:hover svg { transform: translate(3px, -3px); }

/* ---- Tactical framed panel (corner ticks) ------------------------------- */
.panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.panel--ticks::before, .panel--ticks::after {
  content: ""; position: absolute; width: 12px; height: 12px; pointer-events: none;
}
.panel--ticks::before { top: 10px; left: 10px; border-top: 2px solid var(--line-orange); border-left: 2px solid var(--line-orange); }
.panel--ticks::after { bottom: 10px; right: 10px; border-bottom: 2px solid var(--line-orange); border-right: 2px solid var(--line-orange); }

/* ---- Blog post CTA banner ------------------------------------------------ */
.post-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(28px, 4vw, 40px);
}
.post-cta__text { flex: 1 1 320px; }
.post-cta__text .eyebrow { margin-bottom: 12px; }
.post-cta__text p { color: var(--text-dim); max-width: 46ch; }
.post-cta .btn { flex: none; }

/* ---- Partnership CTA strip (compact, lower-emphasis than newsletter) ---- */
.footer-cta { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding-block: clamp(28px, 3vw, 44px); }
.footer-cta__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(20px, 4vw, 32px);
}
.footer-cta__text { flex: 1 1 420px; }
.footer-cta__text .eyebrow { margin-bottom: 10px; }
.footer-cta__text h3 { margin-bottom: 8px; }
.footer-cta__text p { max-width: 52ch; }
.footer-cta__link {
  color: var(--orange); border-bottom: 1px solid var(--line-orange);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.footer-cta__link:hover { color: var(--orange-hi); border-color: var(--orange-hi); }
.footer-cta .btn { flex: none; }

/* ---- Newsletter panel (compact) ----------------------------------------- */
.newsletter-section { padding-block: clamp(32px, 4.5vw, 64px); }
.newsletter-panel { padding: clamp(24px, 4vw, 40px); }
.newsletter-panel .eyebrow { margin-bottom: 14px; }
.newsletter-panel .display.h2 { margin-bottom: 12px; }
.newsletter-panel .join { gap: clamp(24px, 4vw, 48px); }
.newsletter-panel .join small { margin-top: 10px; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
/* Keep the toggle (now an X) clickable above the full-screen drawer while it's open */
body.menu-open .site-header { z-index: calc(var(--z-menu) + 1); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; }
.brand__type {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: 1.05rem; letter-spacing: 0.02em; line-height: 1; font-stretch: 125%;
}
.brand__type small { display: block; font-family: var(--f-mono); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.2em; color: var(--orange); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--f-mono); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim);
  padding: 10px 14px; border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a.is-active { color: var(--orange); }
.header__cta { display: inline-flex; align-items: center; gap: 16px; }

.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: var(--r-sm); }
/* Collapse desktop nav to hamburger below 1000px so items never wrap/cramp */
@media (max-width: 1000px){
  .nav.hide-mobile, .header__cta > .hide-mobile { display: none !important; }
  .menu-toggle { display: inline-flex; }
}
.menu-toggle span { position: relative; width: 20px; height: 2px; background: var(--text); transition: background 0.1s; }
.menu-toggle span::before, .menu-toggle span::after { content:""; position:absolute; left:0; width:20px; height:2px; background: var(--text); transition: transform var(--dur) var(--ease); }
.menu-toggle span::before { top: -6px; } .menu-toggle span::after { top: 6px; }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---- Desktop HUD loadout widget (header) --------------------------------- */
.hud-loadout { position: relative; }
.hud-loadout__trigger {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  background: rgba(232, 93, 4, 0.04);
  border: 1px solid rgba(232, 93, 4, 0.28);
  border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hud-loadout__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.18);
  animation: hudPulse 2.2s ease-in-out infinite;
  flex: none;
}
@keyframes hudPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.18); }
  50% { opacity: 0.55; box-shadow: 0 0 0 5px rgba(232, 93, 4, 0.08); }
}
.hud-loadout:hover .hud-loadout__trigger,
.hud-loadout:focus-within .hud-loadout__trigger {
  color: var(--text);
  border-color: rgba(232, 93, 4, 0.55);
  background: rgba(232, 93, 4, 0.08);
}

.hud-loadout__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  padding: 22px 22px 18px;
  background: rgba(13, 14, 17, 0.78);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(232, 93, 4, 0.22);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
  z-index: 10;
}
.hud-loadout__panel::before, .hud-loadout__panel::after {
  content: ""; position: absolute; width: 12px; height: 12px; pointer-events: none;
}
.hud-loadout__panel::before { top: 10px; left: 10px; border-top: 2px solid var(--line-orange); border-left: 2px solid var(--line-orange); }
.hud-loadout__panel::after { bottom: 10px; right: 10px; border-bottom: 2px solid var(--line-orange); border-right: 2px solid var(--line-orange); }
.hud-loadout:hover .hud-loadout__panel,
.hud-loadout:focus-within .hud-loadout__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear 0s;
}
.hud-loadout__panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hud-loadout__count {
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid rgba(232, 93, 4, 0.2);
  padding: 3px 7px;
  border-radius: 2px;
}
.hud-loadout__title {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-stretch: 125%;
  font-size: 1rem; letter-spacing: -0.005em; color: var(--text); margin: 6px 0 12px;
}
.hud-loadout__list { display: flex; flex-direction: column; }
.hud-loadout__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(232, 93, 4, 0.08);
  cursor: default;
}
.hud-loadout__row:last-child { border-bottom: none; }
.hud-loadout__row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.hud-loadout__cat {
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); opacity: 0.7; font-weight: 500;
}
.hud-loadout__item { font-family: var(--f-body); font-size: 0.86rem; color: var(--text-dim); line-height: 1.25; }
.hud-loadout__view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid rgba(232, 93, 4, 0.2);
  padding: 5px 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hud-loadout__view svg { width: 9px; height: 9px; transition: transform var(--dur) var(--ease); }
.hud-loadout__view:hover { color: var(--orange); border-color: rgba(232, 93, 4, 0.55); background: rgba(232, 93, 4, 0.08); }
.hud-loadout__view:hover svg { transform: translate(1.5px, -1.5px); }
.hud-loadout__disclosure {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: none;
  color: #8A9098;
}
.hud-loadout__updated {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(232, 93, 4, 0.08);
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mute); opacity: 0.75;
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--bg);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.menu-open .mobile-nav { transform: translateY(0); visibility: visible; }
.mobile-nav > nav a {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 9vw, 3.2rem); letter-spacing: -0.01em; font-stretch: 125%;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text); transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.mobile-nav > nav a:hover { color: var(--orange); padding-left: 12px; }
.mobile-nav a span { font-family: var(--f-mono); font-size: 0.7rem; color: var(--text-mute); letter-spacing: 0.2em; }
/* ---- Mobile nav loadout module (tactical HUD overlay) -------------------- */
.loadout {
  margin-top: auto;
  margin-left: -20px;
  margin-right: -20px;
  padding: 16px 20px 14px;
  border-top: 2px solid rgba(232, 93, 4, 0.2);
  border-bottom: 1px solid rgba(232, 93, 4, 0.1);
  background: linear-gradient(180deg, rgba(232, 93, 4, 0.04) 0%, transparent 100%);
  position: relative;
}
.loadout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 93, 4, 0.3) 0%, rgba(232, 93, 4, 0.08) 50%, transparent 100%);
}
.loadout__head { margin-bottom: 12px; }
.loadout__badge {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid rgba(232, 93, 4, 0.2);
  padding: 3px 7px;
  border-radius: 2px;
  opacity: 0.7;
  white-space: nowrap;
}
.loadout__title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-stretch: 125%;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: var(--text);
  opacity: 0.95;
}
.loadout__list { display: flex; flex-direction: column; gap: 1px; }
.loadout__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 93, 4, 0.08);
  position: relative;
  cursor: default;
}
.loadout__row:last-child { border-bottom: none; }
.loadout__row-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.loadout__cat {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.65;
  font-weight: 500;
}
.loadout__item {
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.25;
  opacity: 0.85;
  font-weight: 500;
}
.loadout__view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid rgba(232, 93, 4, 0.2);
  padding: 5px 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.loadout__view svg { width: 9px; height: 9px; transition: transform var(--dur) var(--ease); }
.loadout__view:hover { color: var(--orange); border-color: rgba(232, 93, 4, 0.55); background: rgba(232, 93, 4, 0.08); }
.loadout__view:hover svg { transform: translate(1.5px, -1.5px); }
.loadout__disclosure {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: none;
  color: #8A9098;
}
.loadout__updated {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(232, 93, 4, 0.08);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  opacity: 0.75;
}

/* "Live" auto-verify glow on the Last Verified line (both mobile + desktop HUD) */
.loadout__updated, .hud-loadout__updated {
  animation: verifiedGlow 3.6s ease-in-out infinite;
}
.loadout__updated::before, .hud-loadout__updated::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: middle;
  animation: verifiedDot 3.6s ease-in-out infinite;
}
@keyframes verifiedGlow {
  0%, 100% { color: var(--text-mute); opacity: 0.72; text-shadow: none; }
  50%      { color: var(--orange); opacity: 1; text-shadow: 0 0 10px rgba(232, 93, 4, 0.5); }
}
@keyframes verifiedDot {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 0 2px rgba(232, 93, 4, 0.08); }
  50%      { opacity: 1;    box-shadow: 0 0 7px 2px rgba(232, 93, 4, 0.55); }
}
@media (prefers-reduced-motion: reduce){
  .loadout__updated, .hud-loadout__updated,
  .loadout__updated::before, .hud-loadout__updated::before { animation: none; }
}

/* ---- Socials rail ------------------------------------------------------- */
.social-rail { display: inline-flex; gap: 14px; align-items: center; }
.social-rail a { color: var(--text-dim); transition: color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.social-rail a:hover { color: var(--orange); transform: translateY(-2px); }
.social-rail svg { width: 20px; height: 20px; }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; filter: saturate(0.9) contrast(1.05); transform-origin: center center; will-change: transform; }
@media (max-width: 640px){ .hero__media img, .hero__media video { object-position: 42% 18%; } }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: var(--bg); opacity: 0; pointer-events: none; }
.hero__streetlight {
  position: absolute; top: 0; left: 0; z-index: 2; pointer-events: none; opacity: 0;
  border-radius: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(46,50,54,0.95) 0%, rgba(46,50,54,0.7) 55%, rgba(46,50,54,0) 80%);
}
.hero__media::before { /* orange scan tint */
  content:""; position:absolute; inset:0; z-index:3;
  background: radial-gradient(90% 60% at 15% 90%, rgba(232,93,4,0.18), transparent 60%);
  mix-blend-mode: screen;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 4;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.45) 0%, rgba(10,10,11,0.1) 26%, rgba(10,10,11,0.85) 58%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.9) 0%, rgba(10,10,11,0.6) 34%, rgba(10,10,11,0.12) 62%, transparent 82%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(90px, 11vh, 132px) clamp(44px, 7vw, 88px); }
.hero__title { margin-bottom: 26px; max-width: 20ch; }
.hero__title .ln { display: block; overflow: hidden; }
.hero__sub { max-width: 46ch; font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--bone); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 40px; z-index: 3;
  writing-mode: vertical-rl; font-family: var(--f-mono); font-size: 0.66rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__scroll::after { content:""; width: 1px; height: 60px; background: linear-gradient(var(--orange), transparent); }
@media (max-width: 760px){ .hero__scroll { display: none; } }

/* Vertical social rail on hero (desktop) */
.hero__rail {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; flex-direction: column; gap: 20px;
}
@media (max-width: 1080px){ .hero__rail { display: none; } }

/* ---- Mission / big statement ------------------------------------------- */
.statement { font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.8rem, 4.4vw, 3.6rem); line-height: 1.02; letter-spacing: -0.01em; font-stretch: 110%; }
.statement em { color: var(--orange); font-style: normal; }
.statement .dim { color: var(--text-mute); }

/* ---- Stats -------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { padding: 30px 26px; }
.stat__num { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; font-stretch: 110%; }
.stat__num b { color: var(--orange); font-weight: 900; }
.stat__label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-top: 12px; }
@media (max-width: 860px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ---- Section head ------------------------------------------------------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 5vw, 60px); flex-wrap: wrap; }
.sec-head__title { max-width: 20ch; }
.sec-head p { max-width: 44ch; color: var(--text-dim); }
/* Text + button paired in the header row (e.g. "From the channel"'s CTA), instead of
   trailing the section below its content and leaving a dead gap before the next section. */
.sec-head__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }

/* ---- Feature cards (section links) ------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 860px){ .feature-grid { grid-template-columns: 1fr; } }
.feature {
  position: relative; overflow: hidden; border-radius: var(--r);
  height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; border: 1px solid var(--line); background: var(--surface);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature:hover { border-color: var(--line-orange); transform: translateY(-4px); }
.feature__bg { position: absolute; inset: 0; z-index: 0; }
.feature__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.36; transition: opacity var(--dur) var(--ease), transform 600ms var(--ease); }
.feature:hover .feature__bg img { opacity: 0.5; transform: scale(1.05); }
.feature__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,10,11,0.2), rgba(10,10,11,0.9)); }
.feature > *:not(.feature__bg) { position: relative; z-index: 1; }
.feature__idx { font-family: var(--f-mono); font-size: 0.72rem; color: var(--orange); letter-spacing: 0.2em; margin-bottom: auto; }
.feature__title { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 0.98; font-stretch: 115%; margin-bottom: 12px; }
.feature__desc { color: var(--text-dim); max-width: 40ch; margin-bottom: 20px; }
.feature--wide { grid-column: span 2; min-height: 300px; }
@media (max-width: 860px){ .feature--wide { grid-column: span 1; } }

/* ---- Product / content cards ------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
.grid-2 > .panel { display: flex; flex-direction: column; min-height: clamp(220px, 24vw, 260px); }
@media (max-width: 980px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } .grid-2 > .panel { min-height: clamp(260px, 62vw, 320px); } }
/* Exactly 3 items, always — a 2-up tablet tier would orphan the 3rd card next to an
   empty gap, so this grid skips straight from 3 columns to 1. */
@media (max-width: 980px){ #channelVideos .grid-3 { grid-template-columns: 1fr; } }
/* Mobile only: same horizontal-scroll rail behavior as "Latest Field Notes" below it,
   instead of stacking full-width. Desktop/tablet keep the plain grid above untouched. */
@media (max-width: 640px) {
  #channelVideos .grid-3 {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 16px; scrollbar-width: thin; scrollbar-color: var(--gray) transparent;
  }
  #channelVideos .grid-3::-webkit-scrollbar { height: 6px; }
  #channelVideos .grid-3::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 10px; }
  #channelVideos .grid-3 > * { scroll-snap-align: start; flex: 0 0 clamp(280px, 42vw, 400px); }
}

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.card:hover { border-color: var(--line-orange); transform: translateY(-4px); background: var(--surface-2); }
.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media--video { aspect-ratio: 16 / 9; }
.card__media--video::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(13,13,13,0.15), transparent 60%);
  opacity: 0; transition: opacity var(--dur) var(--ease); pointer-events: none;
}
.card[href*="youtube.com"]:hover .card__media--video::after { opacity: 1; }
/* Persistent play affordance — always partially visible (reads as "video" on touch
   with no hover), full prominence on hover/focus. */
.card__play {
  position: absolute; inset: 0; z-index: 2; color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.55; transition: opacity var(--dur) var(--ease); pointer-events: none;
}
.card__play svg { width: 52px; height: 52px; transition: transform var(--dur) var(--ease); }
.card:hover .card__play, .card:focus-visible .card__play { opacity: 1; }
.card:hover .card__play svg, .card:focus-visible .card__play svg { transform: scale(1.06); }
/* Runtime badge — same overlay-pill treatment as .card__tag, opposite corner. */
.card__duration {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  font-family: var(--f-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 8px; border-radius: 3px;
  background: rgba(10,10,11,0.78); backdrop-filter: blur(6px); color: var(--bone);
}
.card__duration:empty { display: none; }
.card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--f-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 10px; border-radius: 3px;
  background: rgba(10,10,11,0.7); backdrop-filter: blur(6px); color: var(--bone); border: 1px solid var(--line-2);
}
.card__tag--orange { background: var(--orange); color: #120a03; border-color: transparent; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__kicker { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.card__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; line-height: 1.02; letter-spacing: -0.01em; }
/* Video cards carry longer, SEO-oriented YouTube titles — clamp to 2 lines and
   loosen size/line-height so the thumbnail stays the dominant element. */
#channelVideos .card__title {
  font-size: 1.08rem; line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; }
.card__price { font-family: var(--f-display); font-weight: 900; font-size: 1.4rem; }
.card__price s { color: var(--text-mute); font-weight: 400; font-size: 0.9rem; margin-right: 8px; }

/* ---- Shop folder cards --------------------------------------------------- */
.folder-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 980px){ .folder-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .folder-grid { grid-template-columns: repeat(2, 1fr); } }

.folder-card-wrap { position: relative; display: flex; }
.folder-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
  min-height: 170px;
  padding: 24px 20px 20px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.folder-card__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  color: var(--text-dim);
  opacity: 0; pointer-events: none; transform: translateY(-2px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.folder-card__close svg { width: 12px; height: 12px; }
.folder-card__close:hover { color: var(--orange); border-color: var(--orange); background: rgba(232,93,4,0.12); }
.folder-card.is-active + .folder-card__close { opacity: 1; pointer-events: auto; transform: translateY(0); }
.folder-card::before {
  content: "";
  position: absolute; top: -11px; left: 22px;
  width: 44px; height: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.folder-card__icon { width: 24px; height: 24px; color: var(--text-mute); transition: color var(--dur) var(--ease); }
.folder-card__index { display: block; margin-top: 10px; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
.folder-card__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 1.26rem; line-height: 1.05; letter-spacing: -0.01em; }
.folder-card__count { display: block; margin-top: 6px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .08em; color: var(--text-dim); }

.folder-card:hover, .folder-card:focus-visible { border-color: var(--line-orange); transform: translateY(-4px); background: var(--surface-2); }
.folder-card:hover::before, .folder-card:focus-visible::before { border-color: var(--line-orange); }
.folder-card:hover .folder-card__icon { color: var(--orange); }

.folder-card.is-active { border-color: var(--orange); background: linear-gradient(160deg, var(--surface), var(--gunmetal)); }
.folder-card.is-active::before { border-color: var(--orange); background: var(--gunmetal); }
.folder-card.is-active .folder-card__icon { color: var(--orange); }
.folder-card.is-active .folder-card__count { color: var(--orange); }

/* ---- Marquee (shared keyframe used by .partners below) ------------------ */
@keyframes marquee { to { transform: translateX(-50%); } }

/* Partner logo marquee (text-based) */
.partners { display: flex; align-items: center; gap: clamp(40px, 7vw, 90px); white-space: nowrap; animation: marquee 40s linear infinite; }
.partners span { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.1rem, 2vw, 1.6rem); color: var(--text-mute); font-stretch: 110%; letter-spacing: 0.02em; }
.partner-wrap:hover .partners { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){ .partners { animation: none; flex-wrap: wrap; white-space: normal; } }

/* ---- Carousel (horizontal scroll snap) --------------------------------- */
.rail { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: thin; scrollbar-color: var(--gray) transparent; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 10px; }
.rail > * { scroll-snap-align: start; flex: 0 0 clamp(280px, 42vw, 400px); }
.rail-ctrls { display: inline-flex; gap: 10px; }
.rail-btn { width: 52px; height: 52px; border: 1px solid var(--line-2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur); }
.rail-btn:hover { border-color: var(--orange); color: var(--orange); }
.rail-btn svg { width: 18px; height: 18px; }

/* ---- Newsletter --------------------------------------------------------- */
.join { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 860px){ .join { grid-template-columns: 1fr; } }
.join__form { display: flex; gap: 10px; max-width: 460px; }
.join__form input {
  flex: 1; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 16px 18px; color: var(--text); font: inherit; font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease);
}
.join__form input::placeholder { color: var(--text-mute); }
.join__form input:focus { outline: none; border-color: var(--orange); }
.join small { display: block; margin-top: 14px; color: var(--text-mute); font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em; }
@media (max-width: 520px){ .join__form { flex-direction: column; } }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 64px 40px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-dim); padding: 6px 0; transition: color var(--dur) var(--ease); font-size: 0.95rem; }
.footer-col a:hover { color: var(--orange); }
.footer-col a.icon-link { display: flex; align-items: center; gap: 8px; }
.footer-col a.icon-link svg { width: 16px; height: 16px; flex: none; }
.footer-col p { color: var(--text-dim); font-size: 0.95rem; max-width: 34ch; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; border-top: 1px solid var(--line); gap: 20px; flex-wrap: wrap; }
.footer-bottom small { color: var(--text-mute); font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; }

/* ---- Reveal on scroll --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: 80ms; }
.reveal[data-delay="2"]{ transition-delay: 160ms; }
.reveal[data-delay="3"]{ transition-delay: 240ms; }
.reveal[data-delay="4"]{ transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Page hero (interior) ---------------------------------------------- */
.page-hero { position: relative; padding-top: clamp(130px, 18vw, 200px); padding-bottom: clamp(48px, 7vw, 90px); overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(80% 60% at 100% 0%, rgba(28,43,58,0.5), transparent 60%), radial-gradient(60% 50% at 0% 100%, rgba(232,93,4,0.10), transparent 60%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero__title { max-width: 18ch; margin-block: 22px; }
.crumbs { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); }
.crumbs b { color: var(--orange); font-weight: 700; }

/* ---- Shop drop countdown (teaser hero) ---------------------------------- */
.drop-hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; }
.drop-hero__media { position: absolute; inset: 0; z-index: 0; }
.drop-hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  filter: saturate(0.92) contrast(1.03);
}
@media (max-width: 640px){ .drop-hero__media video { object-position: 50% 38%; } }
/* Symmetric top+bottom scrim: keeps the vertical-middle band (where the
   floating object sits) relatively clear, unlike .hero__media::after's
   bottom-anchored asymmetric vignette which is tuned for a different layout. */
.drop-hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(10,10,11,0.74) 0%, rgba(10,10,11,0.18) 24%,
    rgba(10,10,11,0.08) 52%, rgba(10,10,11,0.30) 76%, rgba(10,10,11,0.86) 100%);
}
.drop-hero__inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding-block: clamp(112px, 17vh, 168px) clamp(40px, 6vh, 72px);
}
.drop-hero__top { text-align: center; }
.drop-hero__title { max-width: 20ch; margin-inline: auto; }
.drop-hero__title em { color: var(--orange); font-style: normal; }
.drop-hero__bottom { display: flex; flex-direction: column; align-items: center; gap: clamp(26px, 3.6vw, 44px); text-align: center; margin-top: clamp(220px, 34vh, 360px); }
.drop-hero__copy { max-width: 42ch; font-size: clamp(1.15rem, 2.1vw, 1.5rem); line-height: 1.45; }
.drop-hero__form { justify-content: center; }

.countdown__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(22px, 5.5vw, 56px); }
.countdown__unit { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 64px; }
.countdown__num {
  font-family: var(--f-display); font-weight: 900; font-stretch: 125%;
  font-size: clamp(3.2rem, 10vw, 7.5rem); line-height: 1; color: var(--bone);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.countdown__label { font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); }
.countdown__launched { font-size: clamp(1.3rem, 3vw, 2rem); letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
/* Narrow phones: tighten the floor size + gap just enough to keep all four
   units on one line instead of wrapping to two. */
@media (max-width: 480px){
  .countdown__grid { gap: clamp(10px, 3.6vw, 22px); }
  .countdown__num { font-size: clamp(2.5rem, 15vw, 7.5rem); }
}
/* Mobile crops the video taller/narrower (object-position shifts above), so
   the object's on-screen band sits lower relative to the title — needs more
   clearance than the desktop margin to stay unobstructed. */
@media (max-width: 640px){ .drop-hero__bottom { margin-top: clamp(280px, 44vh, 400px); } }

/* Visually-hidden utility (screen-reader only) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Filters / chips ---------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid var(--line-2); border-radius: 40px; color: var(--text-dim);
  transition: all var(--dur) var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--text-dim); }
.chip.is-active { background: var(--orange); color: #120a03; border-color: transparent; }

/* ---- Partner / affiliate (The Circle) ---------------------------------- */
.partner-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.partner-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.partner-badge {
  width: 54px; height: 54px; border-radius: 10px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 900; font-size: 1.3rem; color: var(--orange);
  background: rgba(232,93,4,0.10); border: 1px solid var(--line-orange);
}
.partner-card h3 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 1.35rem; letter-spacing: -0.01em; line-height: 1; }
.partner-card__cat { font-family: var(--f-mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-top: 6px; }
.partner-card p { color: var(--text-dim); font-size: 0.94rem; }

.code-row { display: flex; gap: 10px; margin-top: auto; }
.code-row > a { flex-shrink: 0; }
.code-pill {
  flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px dashed var(--line-orange); border-radius: var(--r-sm);
  padding: 12px 16px; background: rgba(232,93,4,0.05);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.code-pill:hover { background: rgba(232,93,4,0.12); }
.code-pill.is-copied { border-style: solid; border-color: var(--orange); }
.code-pill__code { font-family: var(--f-mono); font-weight: 700; letter-spacing: 0.14em; color: var(--bone); font-size: 0.92rem; }
.code-pill__label { font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); white-space: nowrap; }
.code-pill svg { width: 15px; height: 15px; }

/* ---- Utility ------------------------------------------------------------ */
.stack-sm > * + * { margin-top: 14px; }
.stack > * + * { margin-top: 22px; }
.stack-lg > * + * { margin-top: 34px; }
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.wrapf { flex-wrap: wrap; }
.gap { gap: 16px; }
.gap-lg { gap: 28px; }
.mt-0 { margin-top: 0; }
.tag-inline { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size:0.66rem; letter-spacing:0.16em; text-transform:uppercase; color: var(--orange); }
.tag-inline svg { width: 12px; height: 12px; flex: none; }
.hide-mobile { }
@media (max-width: 760px){ .hide-mobile { display: none !important; } }
