/* ============================================================
   HARDY'S CANNABIS — "RACE DAY" DESIGN SYSTEM
   Endurance-race identity × top-shelf California cannabis.
   Display: Anton · Body/UI: Archivo · Race data: IBM Plex Mono
   ============================================================ */

:root {
  --black: #080806;
  --carbon: #0f0e0b;
  --carbon-2: #161510;
  --line: rgba(242, 239, 230, 0.14);
  --line-soft: rgba(242, 239, 230, 0.08);
  --bone: #f2efe6;
  --muted: rgba(242, 239, 230, 0.64);
  --faint: rgba(242, 239, 230, 0.42);
  --yellow: #ffd000;
  --yellow-deep: #e6b800;
  --pink: #ff3a9d;
  --green: #49d83f;
  --danger: #ff5a5a;
  --success: #49d83f;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;
  --wrap: 1240px;
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 74px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--yellow); color: var(--black); }

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

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */

h1, h2, h3 { line-height: 1.05; text-wrap: balance; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }

h3 { font-family: var(--font-body); font-weight: 800; }

.accent { color: var(--yellow); }

.hollow {
  color: transparent;
  -webkit-text-stroke: 2px var(--bone);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker i { font-style: normal; color: var(--faint); }

.kicker::after {
  content: "";
  flex: 0 0 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 56ch;
}

.section-sub { color: var(--muted); max-width: 52ch; }

/* Section scaffolding */
.section { padding: clamp(84px, 10vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 84px) 0; }

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-bottom: 16px; }
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::after { display: none; }
.section-head.center .section-sub { margin: 0 auto; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.section-head.split .section-sub { max-width: 38ch; padding-bottom: 6px; }

/* ------------------------------------------------------------
   Buttons & links
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}

.btn::after {
  content: "→";
  font-family: var(--font-mono);
  font-size: 0.95em;
  transition: transform 0.25s var(--ease-out);
}

.btn:hover::after { transform: translateX(4px); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 208, 0, 0.28);
  background: #ffdb33;
}

.btn-outline, .btn-secondary {
  background: transparent;
  color: var(--bone);
  border-color: var(--line);
}

.btn-outline:hover, .btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}
.btn-ghost::after { content: none; }
.btn-ghost:hover { color: var(--bone); }

.btn-lg { padding: 18px 34px; font-size: 0.88rem; }

.btn.full { width: 100%; }

.btn:disabled { opacity: 0.6; cursor: wait; }

.text-link {
  background: none;
  border: none;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  text-decoration: none;
}

.text-link i, .text-link span { font-style: normal; transition: transform 0.25s var(--ease-out); }
.text-link:hover i, .text-link:hover span { transform: translateX(4px); }

/* ------------------------------------------------------------
   Brand mark
   ------------------------------------------------------------ */

.mark-glyph {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/assets/hardys-hand-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bone);
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 6px;
  flex: none;
  transition: transform 0.3s var(--ease-out);
}

.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }

.brand-copy { display: flex; flex-direction: column; line-height: 1; }

.brand-copy strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 4px;
}

/* ------------------------------------------------------------
   Adult bar + header
   ------------------------------------------------------------ */

.adult-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--carbon);
  border-bottom: 1px solid var(--line-soft);
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
}

.adult-chip {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line-soft);
}

/* Blur lives on a pseudo so the header never becomes a containing
   block for the fixed mobile nav overlay. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  transition: background 0.3s;
}

.site-header.scrolled::before { background: rgba(8, 8, 6, 0.94); }

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.nav-links { display: flex; align-items: center; gap: 6px; }

.nav-links button, .nav-links a {
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 13px;
  border-radius: 6px;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links button i, .nav-links a i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--faint);
  transition: color 0.2s;
}

.nav-links button::after, .nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

.nav-links button:hover, .nav-links a:hover { color: var(--bone); }
.nav-links button:hover i, .nav-links a:hover i { color: var(--yellow); }
.nav-links button.active, .nav-links a.active { color: var(--bone); }
.nav-links button.active i, .nav-links a.active i { color: var(--yellow); }
.nav-links button.active::after, .nav-links a.active::after,
.nav-links button:hover::after, .nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-cta { padding: 12px 20px; font-size: 0.74rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--bone);
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease-out), background 0.2s;
}

.menu-toggle span { top: 50%; margin-top: -1px; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------
   Age gate — the start line
   ------------------------------------------------------------ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(255, 208, 0, 0.08), transparent 60%),
    var(--black);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.age-gate.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.age-track {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 120px, var(--line-soft) 120px 121px),
    repeating-linear-gradient(0deg, transparent 0 120px, var(--line-soft) 120px 121px);
  mask-image: radial-gradient(closest-side at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, black, transparent);
  opacity: 0.5;
}

.age-card {
  position: relative;
  width: min(460px, 100%);
  background: var(--carbon);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 36px 34px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.age-bib-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--yellow);
  color: var(--black);
  margin: 0 -36px 28px;
  padding: 10px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.age-bib-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.bib-hole {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--carbon);
  flex: none;
}

.age-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 6px;
  background: var(--yellow);
  border-radius: 12px;
  padding: 9px;
}

.age-card p.age-big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 5.4rem);
  line-height: 1;
  color: var(--bone);
  letter-spacing: 0.02em;
}

.age-card h1, .age-card h2 {
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  margin: 6px 0 8px;
}

.age-card > p { color: var(--muted); font-size: 0.92rem; }

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 16px;
}

.fine-print {
  font-family: var(--font-mono);
  font-size: 0.62rem !important;
  letter-spacing: 0.08em;
  color: var(--faint) !important;
}

/* ------------------------------------------------------------
   Hero — mile 0
   ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(48px, 7vw, 90px) 0 0;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.96) 0%, rgba(8, 8, 6, 0.82) 34%, rgba(8, 8, 6, 0.25) 68%, rgba(8, 8, 6, 0.55) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 30%);
}

.hero-route {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.hero-route svg { width: 100%; height: 100%; }

.route-line {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  opacity: 0.45;
  animation: routeDraw 3.4s var(--ease-out) 0.5s forwards;
}

@keyframes routeDraw {
  to { stroke-dashoffset: 0; }
}

.route-dot { fill: var(--yellow); opacity: 0; animation: dotIn 0.5s ease forwards; }
.route-dot.d1 { animation-delay: 1.4s; }
.route-dot.d2 { animation-delay: 2.2s; }
.route-dot.d3 { animation-delay: 3s; }

@keyframes dotIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-grid { position: relative; }

.hero-copy { max-width: 720px; }

.hero-bib {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 26px;
  background: rgba(8, 8, 6, 0.5);
}

.bib-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.5); }
  60% { box-shadow: 0 0 0 9px rgba(255, 208, 0, 0); }
}

.hero-title {
  font-size: clamp(3.4rem, 9.6vw, 8.2rem);
  line-height: 0.94;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
}

.hero-title .line {
  display: block;
  animation: lineUp 0.9s var(--ease-out) both;
}

.hero-title .line:nth-child(2) { animation-delay: 0.12s; }
.hero-title .line:nth-child(3) { animation-delay: 0.24s; }

@keyframes lineUp {
  from { transform: translateY(0.4em); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-title em { font-style: normal; color: var(--yellow); }
.hero-title .dot { color: var(--yellow); }

.hero-title .hollow {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--bone);
}

.hero .lead { margin-bottom: 34px; }

.actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: clamp(48px, 6vw, 84px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.stat {
  background: rgba(10, 10, 8, 0.78);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat strong i {
  font-style: normal;
  font-size: 0.55em;
  margin-left: 2px;
}

.stat > span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 44px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--yellow);
  animation: cueDrop 1.8s ease-in-out infinite;
}

@keyframes cueDrop {
  to { top: 110%; }
}

/* ------------------------------------------------------------
   Ticker — finish-line tape
   ------------------------------------------------------------ */

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--carbon);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.ticker-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: tickerMove 32s linear infinite;
  white-space: nowrap;
  padding-left: 34px;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ticker-yellow .ticker-track span { color: var(--black); }

.ticker-track i {
  font-style: normal;
  color: var(--faint);
  font-size: 0.8rem;
}

.ticker-yellow .ticker-track i { color: rgba(8, 8, 6, 0.5); }

@keyframes tickerMove {
  to { transform: translateX(-33.3333%); }
}

/* ------------------------------------------------------------
   The course — three legs
   ------------------------------------------------------------ */

.course-section {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(255, 208, 0, 0.05), transparent 60%),
    var(--black);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.course-card {
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}

.course-card:hover { transform: translateY(-6px); border-color: var(--line); }
.course-card:hover::before { opacity: 1; }

.course-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.leg-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.leg-dist {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 208, 0, 0.65);
  transition: color 0.35s, -webkit-text-stroke-color 0.35s;
}

.course-card:hover .leg-dist { color: var(--yellow); -webkit-text-stroke-color: var(--yellow); }

.course-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.course-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }

.course-card footer {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

.course-note {
  margin-top: 34px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ------------------------------------------------------------
   Drop cards — race bibs
   ------------------------------------------------------------ */

.drop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 22px;
}

.drop-card {
  --accent: var(--yellow);
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  position: relative;
}

.drop-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.drop-bib {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px dashed var(--line);
}

.drop-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.drop-status {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 3px;
}

.drop-media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: #0a0a08;
}

.drop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.drop-card[data-fit="contain"] .drop-media img {
  object-fit: contain;
  padding: 18px;
}

.drop-card:hover .drop-media img { transform: scale(1.05); }

.drop-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(8, 8, 6, 0.55), transparent);
  pointer-events: none;
}

.drop-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.drop-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.drop-meter {
  height: 4px;
  background: var(--line-soft);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}

.drop-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  background: var(--accent);
  border-radius: 2px;
}

.drop-meter i {
  position: absolute;
  top: -2px;
  left: 62%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.drop-body > p { color: var(--muted); font-size: 0.88rem; flex: 1; }

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 4px 9px;
}

.card-action {
  background: none;
  border: none;
  border-top: 1px dashed var(--line);
  color: var(--bone);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0 0;
  margin-top: 2px;
  transition: color 0.25s;
  text-decoration: none;
}

.card-action svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s var(--ease-out);
}

.card-action:hover { color: var(--accent, var(--yellow)); }
.card-action:hover svg { transform: translateX(4px); }

.next-drop-card {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 28px;
  min-height: 320px;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(242, 239, 230, 0.02) 14px 28px);
}

.next-drop-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.next-drop-card p { color: var(--faint); font-size: 0.86rem; max-width: 30ch; }

.next-drop-card .drop-meter { width: 120px; }
.next-drop-card .drop-meter span { width: 30%; animation: loading 2.4s ease-in-out infinite alternate; }
.next-drop-card .drop-meter i { display: none; }

@keyframes loading {
  to { width: 78%; }
}

.empty-mark {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 10px;
  padding: 8px;
  display: block;
}

/* ------------------------------------------------------------
   Lane system
   ------------------------------------------------------------ */

.lanes-section { overflow: hidden; }

.lanes-stripe {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 33%, rgba(255, 208, 0, 0.03) 33% 66%, transparent 66%);
  pointer-events: none;
}

.lane-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.lane-card {
  --lane: var(--yellow);
  position: relative;
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 44px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.lane-pink { --lane: var(--pink); }
.lane-yellow { --lane: var(--yellow); }
.lane-green { --lane: var(--green); }

.lane-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--lane);
}

.lane-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 65%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--lane) 22%, transparent), transparent);
  opacity: 0.6;
  transition: opacity 0.35s;
  pointer-events: none;
}

.lane-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--lane) 45%, transparent);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.lane-card:hover::after { opacity: 1; }

.lane-num {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.lane-card img, .lane-card picture img {
  height: clamp(240px, 26vw, 330px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
  transition: transform 0.45s var(--ease-out);
}

.lane-card:hover img { transform: translateY(-6px) scale(1.03); }

.lane-card > div { display: flex; flex-direction: column; gap: 6px; }

.lane-card span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lane);
}

.lane-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lane-card p { color: var(--muted); font-size: 0.9rem; max-width: 30ch; margin: 0 auto; }

/* ------------------------------------------------------------
   Proof band — the standard
   ------------------------------------------------------------ */

.proof-band {
  background: var(--carbon);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(84px, 9vw, 130px) 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.proof-copy h2 { margin-bottom: 18px; }
.proof-copy > p { color: var(--muted); margin-bottom: 28px; max-width: 50ch; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
}

.check-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.check-list li:first-child { border-top: 1px dashed var(--line-soft); }

.check-list span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--yellow);
  flex: none;
}

.proof-image figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0;
}

.proof-image img { width: 100%; transition: transform 0.8s var(--ease-out); }
.proof-image figure:hover img { transform: scale(1.04); }

.proof-image figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(8, 8, 6, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-image figcaption span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ------------------------------------------------------------
   Founder band
   ------------------------------------------------------------ */

.founder-band {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 0;
}

.founder-bg { position: absolute; inset: 0; z-index: -1; }

.founder-bg img, .founder-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 30%;
}

.founder-bg picture { position: absolute; inset: 0; }

.founder-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.35) 0%, rgba(8, 8, 6, 0.82) 55%, rgba(8, 8, 6, 0.94) 100%),
    linear-gradient(0deg, var(--black) 2%, transparent 30%),
    linear-gradient(180deg, var(--black) 0%, transparent 24%);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.founder-copy { max-width: 560px; margin-left: auto; }

.founder-copy h2 { margin-bottom: 18px; }
.founder-copy > p { color: var(--muted); margin-bottom: 24px; }

.founder-copy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding-left: 22px;
  margin-bottom: 28px;
  line-height: 1.15;
}

.founder-copy cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 10px;
}

.founder-markers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 280px;
}

.marker {
  background: rgba(8, 8, 6, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.marker strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--yellow);
  min-width: 86px;
}

.marker span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------
   CTA panels — finish line
   ------------------------------------------------------------ */

.cta-panel, .drop-alerts {
  position: relative;
  background: var(--carbon);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  overflow: hidden;
}

.cta-tape {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background:
    repeating-linear-gradient(90deg, var(--yellow) 0 22px, var(--black) 22px 44px);
}

.cta-panel .cta-copy h2, .drop-alerts h2 { margin-bottom: 10px; }
.cta-panel .cta-copy p, .drop-alerts p { color: var(--muted); max-width: 46ch; }

.cta-panel.slim { padding: clamp(30px, 4vw, 48px); }

.cta-panel .actions { flex: none; }

/* ------------------------------------------------------------
   Page heroes (inner pages)
   ------------------------------------------------------------ */

.page-hero {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0 clamp(50px, 6vw, 90px);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 85% 0%, rgba(255, 208, 0, 0.07), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 160px, var(--line-soft) 160px 161px);
  mask-image: linear-gradient(180deg, black 30%, transparent);
  -webkit-mask-image: linear-gradient(180deg, black 30%, transparent);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.page-hero-copy h1, .page-hero-grid h1 {
  font-size: clamp(2.8rem, 6.8vw, 5.6rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.page-hero-copy h1 em, .page-hero-grid h1 em { font-style: normal; color: var(--yellow); }

.page-hero-copy .lead { margin-bottom: 26px; }

.hero-mini-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-mini-stats span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.hero-mini-stats strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--yellow);
}

.page-hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.page-hero-media img { width: 100%; }

.media-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 1;
}

/* ------------------------------------------------------------
   Filters
   ------------------------------------------------------------ */

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.25s;
}

.chip:hover { border-color: var(--yellow); color: var(--yellow); }

.chip.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.empty-state[hidden] { display: none; }

.empty-state {
  text-align: center;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.empty-state .empty-mark { margin: 0 auto; }
.empty-state h2 { font-size: 1.6rem; }
.empty-state p { color: var(--muted); }

/* ------------------------------------------------------------
   Standard page
   ------------------------------------------------------------ */

.standard-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(90px, 12vw, 160px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
}

.standard-hero-bg { position: absolute; inset: 0; z-index: -1; }

.standard-hero-bg img, .standard-hero-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standard-hero-bg picture { position: absolute; inset: 0; }

.standard-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--black) 4%, rgba(8, 8, 6, 0.45) 55%, rgba(8, 8, 6, 0.75) 100%);
}

.standard-hero-copy { width: min(var(--wrap), calc(100% - 48px)); }

.standard-hero-copy h1 {
  font-size: clamp(3rem, 7.4vw, 6.4rem);
  line-height: 0.96;
  margin-bottom: 20px;
}

.standard-hero-copy h1 em { font-style: normal; color: var(--yellow); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar {
  --lane: var(--yellow);
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 3px solid var(--lane);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.pillar-green { --lane: var(--green); }
.pillar-pink { --lane: var(--pink); }

.pillar:hover { transform: translateY(-6px); border-color: var(--line); border-top-color: var(--lane); }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lane);
}

.pillar h3 { font-size: 1.05rem; }
.pillar p { color: var(--muted); font-size: 0.88rem; }

.regimen-band {
  background: var(--carbon);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(84px, 9vw, 130px) 0;
}

.regimen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.regimen-copy h2 { margin-bottom: 18px; }
.regimen-copy p { color: var(--muted); margin-bottom: 28px; }

.regimen-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.regimen-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line-soft);
  align-items: baseline;
}

.regimen-list li:first-child { border-top: 1px dashed var(--line-soft); }

.regimen-list span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--yellow);
  flex: none;
  min-width: 44px;
}

.regimen-list div { color: var(--muted); font-size: 0.95rem; }
.regimen-list strong { color: var(--bone); }

/* ------------------------------------------------------------
   Story page
   ------------------------------------------------------------ */

.story-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(90px, 12vw, 170px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
}

.story-hero-bg { position: absolute; inset: 0; z-index: -1; }

.story-hero-bg img, .story-hero-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.story-hero-bg picture { position: absolute; inset: 0; }

.story-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--black) 4%, rgba(8, 8, 6, 0.35) 50%, rgba(8, 8, 6, 0.7) 100%);
}

.story-hero-copy { max-width: 900px; }

.story-hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 6rem);
  line-height: 0.98;
  margin-bottom: 20px;
}

.story-hero-copy h1 em { font-style: normal; color: var(--yellow); }

.story-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.story-copy h2 { margin-bottom: 20px; }
.story-copy p { color: var(--muted); margin-bottom: 20px; }

.story-copy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  text-transform: uppercase;
  color: var(--bone);
  border-left: 3px solid var(--yellow);
  padding-left: 22px;
  line-height: 1.2;
  margin-top: 30px;
}

.story-copy cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 12px;
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.story-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.story-image .media-tag { position: absolute; }

.story-image.tall img { aspect-ratio: 3 / 5; object-fit: cover; }

/* Mile markers timeline */
.mile-markers {
  padding: clamp(84px, 10vw, 140px) 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255, 208, 0, 0.05), transparent 65%),
    var(--black);
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 4%;
  right: 4%;
  border-top: 2px dashed var(--line);
  z-index: 0;
}

.timeline li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding-right: 12px;
}

.tl-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
  background: var(--bone);
  border-radius: 8px;
  padding: 6px 14px;
  display: inline-block;
  width: max-content;
  letter-spacing: 0.02em;
}

.tl-mark.accent { background: var(--yellow); color: var(--black); }

.timeline h3 { font-size: 1.05rem; margin-top: 6px; }
.timeline p { color: var(--muted); font-size: 0.88rem; }

/* Road gallery — snapshots */
.road-gallery { padding: clamp(70px, 9vw, 120px) 0; }

.snapshot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.snapshot {
  background: #fdfcf8;
  padding: 12px 12px 16px;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  margin: 0;
}

.snapshot::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 92px;
  height: 26px;
  background: rgba(255, 208, 0, 0.75);
  opacity: 0.9;
}

.tilt-l { transform: rotate(-2.4deg); }
.tilt-r { transform: rotate(1.8deg) translateY(14px); }
.tilt-l2 { transform: rotate(-1.2deg); }

.snapshot:hover { transform: rotate(0deg) scale(1.03); z-index: 2; box-shadow: 0 34px 80px rgba(0, 0, 0, 0.65); }

.snapshot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
}

.snapshot figcaption {
  padding: 12px 4px 0;
  color: #1a1a16;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.snapshot figcaption span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7500;
}

/* ------------------------------------------------------------
   Find page
   ------------------------------------------------------------ */

.ca-panel {
  position: relative;
  background: var(--carbon);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ca-panel svg { width: min(240px, 60%); }

.ca-outline, .ca-panel svg path {
  fill: rgba(255, 208, 0, 0.04);
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-dasharray: 6 8;
}

.ca-dot, .ca-panel svg circle:not(.ca-pulse) { fill: var(--yellow); stroke: none; }

.ca-pulse {
  fill: none !important;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-dasharray: none;
  animation: mapPulse 2.2s ease-out infinite;
  transform-origin: 225px 363px;
  transform-box: view-box;
}

@keyframes mapPulse {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(3.2); opacity: 0; }
}

.ca-label, .ca-panel > span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.locator-layout { display: flex; flex-direction: column; gap: 30px; }

.locator-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.search-box {
  flex: 1;
  min-width: 260px;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--carbon);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 20px;
  transition: border-color 0.25s;
}

.search-box:focus-within { border-color: var(--yellow); }

.search-box svg {
  width: 17px;
  height: 17px;
  stroke: var(--faint);
  fill: none;
  stroke-width: 2;
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--bone);
  font-size: 0.95rem;
  padding: 11px 0;
}

.search-box input::placeholder { color: var(--faint); }

.locator-note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

.retailer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.retailer-card {
  --accent: var(--yellow);
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.retailer-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}

.retailer-card > img, .retailer-card > picture img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.retailer-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.retailer-status {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.retailer-card h3 { font-size: 1.1rem; }
.retailer-card p { color: var(--muted); font-size: 0.88rem; flex: 1; }

/* ------------------------------------------------------------
   Wholesale page
   ------------------------------------------------------------ */

.wholesale-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.why-card {
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.why-card:hover { transform: translateY(-4px); border-color: var(--line); }

.why-card span {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--yellow);
  display: block;
  margin-bottom: 14px;
}

.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.86rem; }

.pitch-card {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: clamp(26px, 3.6vw, 40px);
}

.pitch-card .kicker { color: var(--black); margin-bottom: 14px; }
.pitch-card .kicker i { color: rgba(8, 8, 6, 0.45); }
.pitch-card .kicker::after { background: linear-gradient(90deg, var(--black), transparent); }

.pitch {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.pitch-note {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 8, 6, 0.65);
}

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */

.form-card {
  background: var(--carbon);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.6vw, 42px);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.form-bib {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.form-card h2 { font-size: 1.9rem; margin-bottom: 10px; }
.form-card > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 26px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field.full, .form-grid > .btn, .form-note.full, .form-grid .form-status { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.req { color: var(--yellow); }

.field input, .field select, .field textarea {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  font-size: 0.95rem;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(242,239,230,0.6) 50%), linear-gradient(135deg, rgba(242,239,230,0.6) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.12);
}

.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }

.error-text { color: var(--danger); font-size: 0.75rem; }

.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.honeypot-input { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; }

.form-note {
  font-size: 0.72rem;
  color: var(--faint);
  line-height: 1.5;
}

.form-status {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
}

.form-status.show { display: block; }

.form-status.success-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.success-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--success);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: none;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.faq-layout h2 { margin-bottom: 14px; }

.faq-list { display: flex; flex-direction: column; }

.faq-list article {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.faq-list article:first-child { border-top: 1px dashed var(--line-soft); }

.faq-list h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-list p { color: var(--muted); font-size: 0.9rem; }

/* ------------------------------------------------------------
   Contact page
   ------------------------------------------------------------ */

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.contact-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.path-card {
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  row-gap: 6px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.path-card:hover { transform: translateX(6px); border-color: var(--line); }

.path-card span {
  grid-row: 1 / -1;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--yellow);
  align-self: start;
  line-height: 1;
  padding-top: 2px;
}

.path-card h3 { font-size: 1.05rem; }
.path-card p { color: var(--muted); font-size: 0.88rem; }
.path-card .text-link { margin-top: 6px; justify-self: start; }

/* Newsletter */
.drop-alerts { flex-direction: column; align-items: stretch; gap: 24px; }

.drop-alerts h2 { margin-top: 4px; }

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.newsletter input[type="email"] {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  font-size: 0.95rem;
  padding: 15px 18px;
  outline: none;
  min-width: 0;
  transition: border-color 0.25s;
}

.newsletter input[type="email"]:focus { border-color: var(--yellow); }

.newsletter .form-note, .newsletter .form-status { grid-column: 1 / -1; }

/* ------------------------------------------------------------
   Legal page
   ------------------------------------------------------------ */

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.legal-card {
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 38px);
}

.legal-card h2 { font-size: 1.6rem; margin-bottom: 12px; }
.legal-card p { color: var(--muted); font-size: 0.92rem; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--carbon);
  position: relative;
  overflow: hidden;
}

.footer-ticker { border-top: none; background: var(--black); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 40px;
  padding: clamp(56px, 7vw, 90px) 0 40px;
  position: relative;
  z-index: 1;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 340px; }

.footer-slogan {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.03em;
}

.footer-brand p:not(.footer-slogan) { color: var(--muted); font-size: 0.9rem; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}

.footer-col button, .footer-col a {
  background: none;
  border: none;
  color: var(--muted);
  text-align: left;
  font-size: 0.92rem;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  width: max-content;
}

.footer-col button:hover, .footer-col a:hover { color: var(--yellow); transform: translateX(3px); }

.footer-col span { color: var(--faint); font-size: 0.85rem; }

.footer-word {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 17rem);
  line-height: 0.8;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 230, 0.07);
  user-select: none;
  pointer-events: none;
  margin-top: -20px;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.warning {
  display: flex;
  align-items: center;
  gap: 14px;
}

.warning span {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 4px;
  flex: none;
}

.warning p { font-size: 0.85rem; color: var(--muted); }

.footer-bottom > p {
  font-size: 0.75rem;
  color: var(--faint);
  max-width: 90ch;
}

/* ------------------------------------------------------------
   Drawer
   ------------------------------------------------------------ */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 3, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 80;
}

.drawer-backdrop.show { opacity: 1; pointer-events: auto; }

.drawer {
  --drawer-accent: var(--yellow);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: var(--carbon);
  border-left: 1px solid var(--line);
  z-index: 90;
  transform: translateX(102%);
  transition: transform 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.show { transform: translateX(0); }

.drawer::before {
  content: "";
  height: 6px;
  background: var(--drawer-accent);
  flex: none;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  flex: none;
}

.drawer-head strong {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: none;
  display: grid;
  place-items: center;
  transition: border-color 0.2s;
}

.icon-button:hover { border-color: var(--yellow); }

.icon-button svg {
  width: 16px;
  height: 16px;
  stroke: var(--bone);
  fill: none;
  stroke-width: 2;
}

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-grip { display: none; }

.drawer-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0a0a08;
  flex: none;
}

.drawer-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.drawer-image.contain img { object-fit: contain; padding: 20px; }

.drawer-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.drawer-title-row h2 { font-size: 1.8rem; }

.drawer-status {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--drawer-accent);
  color: var(--black);
  padding: 5px 10px;
  border-radius: 3px;
  flex: none;
}

.lane-name {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--drawer-accent);
}

.drawer-body > p { color: var(--muted); font-size: 0.92rem; }

.spec-list {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: none;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  font-size: 0.82rem;
}

.spec-row + .spec-row { border-top: 1px dashed var(--line-soft); }

.spec-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-row svg { width: 14px; height: 14px; stroke: var(--drawer-accent); fill: none; stroke-width: 2; }

.spec-row strong { text-align: right; font-size: 0.8rem; }

.drawer-compliance {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.drawer-compliance span {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.66rem;
  padding: 3px 8px;
  border-radius: 3px;
  flex: none;
}

.drawer-compliance p { font-size: 0.75rem; color: var(--faint); }

.drawer .actions { display: flex; gap: 10px; }
.drawer .actions .btn { flex: 1; padding: 13px 10px; font-size: 0.7rem; }

/* ------------------------------------------------------------
   Toast
   ------------------------------------------------------------ */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 13px 22px;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  z-index: 120;
  max-width: min(560px, calc(100vw - 40px));
  text-align: center;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ------------------------------------------------------------
   Pages & reveal animation
   ------------------------------------------------------------ */

.page { display: none; }
.page.active { display: block; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.course-grid .reveal:nth-child(2), .pillar-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.course-grid .reveal:nth-child(3), .pillar-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.pillar-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ------------------------------------------------------------
   404
   ------------------------------------------------------------ */

.not-found-page .page-hero { min-height: 60vh; display: flex; align-items: center; }
.not-found-page .page-hero-grid { width: 100%; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 1080px) {
  .course-grid, .lane-system { gap: 16px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-copy { margin-left: 0; }
  .founder-markers { flex-direction: row; max-width: none; flex-wrap: wrap; }
  .marker { flex: 1; min-width: 180px; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 6, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 40px 40px;
    gap: 8px;
    transform: translateY(-102%);
    transition: transform 0.5s var(--ease-out);
    z-index: 70;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links button, .nav-links a {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: 0.04em;
    padding: 8px 0;
    color: var(--bone);
  }

  .nav-links button i, .nav-links a i { font-size: 0.85rem; }
  .nav-links button::after, .nav-links a::after { display: none; }

  .menu-toggle { display: block; z-index: 75; }
  .nav-cta { display: none; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .proof-grid, .regimen-grid, .story-layout, .wholesale-layout, .contact-layout, .faq-layout { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-media { max-width: 520px; }
  .form-card, .story-image { position: static; }
  .course-grid, .lane-system { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .retailer-list { grid-template-columns: 1fr 1fr; }
  .snapshot-row { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; row-gap: 46px; }
  .tilt-r { transform: rotate(1.8deg); }
  .scroll-cue { display: none; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 36px); }
  .hero { min-height: auto; padding-top: 56px; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 16px; }
  .retailer-list, .legal-layout, .why-grid, .pillar-grid, .timeline { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter .btn { width: 100%; }
  .cta-panel, .drop-alerts { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .drop-grid { grid-template-columns: 1fr; }
  .adult-bar span:not(.adult-chip) { font-size: 0.56rem; }
  .drawer { width: 100%; border-left: none; }
  .founder-markers { flex-direction: column; }
  .marker { width: 100%; }
}

/* ------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .route-line { stroke-dashoffset: 0 !important; }
  .route-dot { opacity: 1; }
}
