/* ================================================================
   MenUp365 — APEX ELEVATION LAYER
   Loads after main.css + components.css. Refines the highest-visibility
   surfaces to agency-grade craft: cinematic hero, tactile buttons,
   editorial cards, real footer. Faith-rooted, masculine, premium.
   ================================================================ */

/* ─────────────────────────────────────────────────────────────
   1. HERO — cinematic, monumental, editorial
   ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  isolation: isolate;
}

/* Warm cinematic grade on the background photo */
.hero__bg img {
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
  transform: scale(1.04);
  animation: apex-hero-drift 24s ease-in-out infinite alternate;
}
@keyframes apex-hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.5%, -1.5%, 0); }
}

/* Layered overlay: directional darkness + warm bottom vignette + top fade under nav */
.hero__overlay {
  background:
    linear-gradient(180deg, rgba(11,10,8,0.88) 0%, rgba(11,10,8,0.30) 30%, rgba(11,10,8,0.55) 75%, rgba(11,10,8,0.96) 100%),
    linear-gradient(105deg, rgba(11,10,8,0.85) 0%, rgba(11,10,8,0.45) 48%, rgba(11,10,8,0.10) 100%),
    radial-gradient(120% 90% at 78% 18%, rgba(212,168,67,0.16), transparent 55%);
}

/* The bold bet: a colossal "365" struck behind the headline */
.hero__content { max-width: 760px; }
.hero__content::before {
  content: '365';
  position: absolute;
  right: -2vw;
  top: -8vh;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(12rem, 34vw, 32rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212,168,67,0.14);
  text-stroke: 1.5px rgba(212,168,67,0.14);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

/* Eyebrow as a glass chip */
.hero__label {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  background: rgba(212,168,67,0.06);
  backdrop-filter: blur(6px);
}

/* Monumental headline */
.hero__title {
  font-size: clamp(2.85rem, 6.4vw + 0.5rem, 6.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero__title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero__subtitle { font-size: clamp(var(--text-lg), 1.4vw + 0.5rem, var(--text-xl)); max-width: 560px; }

/* Tertiary text action — keeps CTA hierarchy clean (1 primary, 1 secondary, 1 text) */
.hero__ctas { align-items: center; }
.hero__text-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  color: var(--text-body-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: color var(--duration-fast);
}
.hero__text-link span { transition: transform var(--duration-fast) var(--ease-out-back); }
.hero__text-link:hover { color: var(--gold); }
.hero__text-link:hover span { transform: translateX(4px); }

/* Stat band: gold dividers, monumental numerals */
.hero__stats { gap: 0; flex-wrap: wrap; }
.hero__stats > div { padding: 0 var(--space-6); position: relative; }
.hero__stats > div:first-child { padding-left: 0; }
.hero__stats > div + div::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 70%;
  background: linear-gradient(transparent, var(--border-gold), transparent);
}
.hero__stat-number { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); letter-spacing: -0.03em; }

/* Scroll cue */
.hero::after {
  content: '';
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  width: 22px; height: 34px;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-full);
  z-index: 2;
  transform: translateX(-50%);
}
.hero::before {
  content: '';
  position: absolute;
  bottom: calc(var(--space-6) + 8px);
  left: 50%;
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: var(--radius-full);
  z-index: 3;
  transform: translateX(-50%);
  animation: apex-scroll-cue 1.8s var(--ease-out-expo) infinite;
}
@keyframes apex-scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  70%,100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Hero entrance — staggered, on load (not scroll) */
.hero__label, .hero__title, .hero__subtitle, .hero__ctas, .hero__stats {
  opacity: 0;
  animation: apex-hero-rise 0.9s var(--ease-out-expo) forwards;
}
.hero__label    { animation-delay: 0.05s; }
.hero__title    { animation-delay: 0.18s; }
.hero__subtitle { animation-delay: 0.34s; }
.hero__ctas     { animation-delay: 0.48s; }
.hero__stats    { animation-delay: 0.62s; }
@keyframes apex-hero-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .hero__content::before { top: auto; bottom: -2vh; right: -4vw; font-size: 44vw; }
  .hero__stats > div { padding: 0 var(--space-4); }
}

/* ─────────────────────────────────────────────────────────────
   2. BUTTONS — tactile, with a gold sheen sweep
   ───────────────────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-dark {
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-fast) var(--ease-out-back),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              background-color var(--duration-normal) var(--ease-out-expo),
              color var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo);
}
.btn-primary::after, .btn-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-out-expo);
  pointer-events: none;
}
.btn-primary:hover, .btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }
.btn-primary:hover::after, .btn-dark:hover::after { transform: translateX(130%); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.btn-primary:active, .btn-secondary:active, .btn-dark:active { transform: translateY(0) scale(0.99); }

/* ─────────────────────────────────────────────────────────────
   3. PILLAR CARDS — editorial, with gold corner & lift
   ───────────────────────────────────────────────────────────── */
.pillar-card {
  position: relative;
  border: 1px solid var(--border-dark);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-charcoal));
  transition: transform var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, var(--gold-subtle), transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out-expo);
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card__icon {
  color: var(--gold);
  transition: transform var(--duration-normal) var(--ease-out-back);
}
.pillar-card:hover .pillar-card__icon { transform: scale(1.1) rotate(-3deg); }
.pillar-card__cta { color: var(--gold); transition: gap var(--duration-fast); }
.pillar-card:hover .pillar-card__cta span { display: inline-block; transform: translateX(4px); transition: transform var(--duration-fast) var(--ease-out-back); }

/* ─────────────────────────────────────────────────────────────
   4. PRODUCT CARDS — premium DTC treatment
   ───────────────────────────────────────────────────────────── */
.product-card {
  border: 1px solid var(--border-dark);
  background: var(--bg-charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}
.product-card__image {
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(212,168,67,0.07), transparent 60%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg-charcoal));
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: var(--space-5);
  transition: transform var(--duration-slow) var(--ease-out-expo);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
}
.product-card:hover .product-card__image { transform: scale(1.05); }
.product-card__badge {
  background: linear-gradient(120deg, var(--gold-300), var(--gold));
  color: #1a1206;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Store: premium 2-up capsule layout (4 drops, orphan-free, large imagery) */
.store-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .store-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); } }
.store-grid .product-card__image { aspect-ratio: 4 / 3; }

.store-trustbar { padding: var(--space-8) 0; border-bottom: 1px solid var(--border-dark); background: var(--bg-charcoal); }
.store-trustbar__list { display: grid; gap: var(--space-6); grid-template-columns: 1fr; list-style: none; }
@media (min-width: 640px) { .store-trustbar__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .store-trustbar__list { grid-template-columns: repeat(4, 1fr); } }
.store-trustbar__item { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--text-muted-dark); font-size: var(--text-sm); line-height: 1.45; }
.store-trustbar__item strong { color: var(--text-body-dark); }
.store-trustbar__icon { color: var(--gold); font-size: var(--text-xl); line-height: 1; flex-shrink: 0; }
.store-collection-head { text-align: center; max-width: 640px; margin: 0 auto var(--space-10); }
.store-collection-head__title { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); margin-bottom: var(--space-4); }
.store-collection-head__text { color: var(--text-muted-dark); font-size: var(--text-lg); }
.store-info { margin-top: var(--space-10); padding: var(--space-8); background: var(--bg-charcoal); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); text-align: center; }
.store-info__title { margin-bottom: var(--space-3); }
.store-info__text { color: var(--text-muted-dark); max-width: 620px; margin: 0 auto; }

/* ─────────────────────────────────────────────────────────────
   ELEVATED PAGE HEADER — interior-page hero (cascades to all pages)
   ───────────────────────────────────────────────────────────── */
.page-header {
  position: relative;
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  background:
    radial-gradient(80% 120% at 50% -10%, var(--gold-subtle), transparent 60%),
    linear-gradient(180deg, var(--bg-charcoal), var(--bg-black));
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 auto var(--space-4);
  max-width: 16ch;
}
.page-header__title .text-gold { font-style: italic; }
.page-header__subtitle {
  color: var(--text-muted-dark);
  font-size: clamp(var(--text-lg), 1.6vw, var(--text-xl));
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   5. TESTIMONIAL — oversized editorial pull-quote
   ───────────────────────────────────────────────────────────── */
.testimonial { position: relative; max-width: 880px; margin: 0 auto; }
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -0.35em; left: -0.05em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.16;
  pointer-events: none;
}
.testimonial__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(var(--text-2xl), 2.6vw, var(--text-4xl));
  line-height: 1.32;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────────
   6. FOOTER — warm hairline, gold heading ticks, social lift
   ───────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-gold);
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(212,168,67,0.05), transparent 60%),
    var(--bg-black);
}
.footer__heading {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--gold);
}
.footer__links a { transition: color var(--duration-fast), padding-left var(--duration-fast) var(--ease-out-expo); }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__social a {
  transition: transform var(--duration-fast) var(--ease-out-back), color var(--duration-fast), border-color var(--duration-fast);
}
.footer__social a:hover { transform: translateY(-3px); color: var(--gold); border-color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   7. NAV — refined sticky glass on scroll
   ───────────────────────────────────────────────────────────── */
.nav--scrolled, .nav.scrolled {
  background: rgba(11,10,8,0.78);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border-dark);
}

/* ─────────────────────────────────────────────────────────────
   8. SECTION-LEVEL POLISH
   ───────────────────────────────────────────────────────────── */
.gold-section {
  background:
    radial-gradient(120% 120% at 0% 0%, var(--gold-300), transparent 55%),
    linear-gradient(120deg, var(--gold-dark), var(--gold) 55%, var(--gold-light));
}
.section-title { letter-spacing: -0.025em; }

/* A reusable "lede" — the extractable answer paragraph for AEO */
.lede {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(var(--text-xl), 2vw, var(--text-2xl));
  line-height: 1.5;
  color: var(--text-body-dark);
  max-width: 720px;
}
.light-section .lede { color: var(--text-body-light); }

/* ─────────────────────────────────────────────────────────────
   PILLAR HERO — cinematic, mirrors homepage hero craft (×5 pages)
   ───────────────────────────────────────────────────────────── */
.pillar-hero { position: relative; isolation: isolate; min-height: 72vh; display: flex; align-items: flex-end; padding-bottom: var(--space-12); }
.pillar-hero__bg img { filter: saturate(0.9) contrast(1.05) brightness(0.78); transform: scale(1.04); }
.pillar-hero__overlay {
  background:
    linear-gradient(180deg, rgba(11,10,8,0.55) 0%, rgba(11,10,8,0.30) 40%, rgba(11,10,8,0.92) 100%),
    linear-gradient(100deg, rgba(11,10,8,0.80), rgba(11,10,8,0.10) 80%),
    radial-gradient(110% 80% at 85% 10%, rgba(212,168,67,0.14), transparent 55%);
}
.pillar-hero__content { max-width: 760px; }
.pillar-hero__breadcrumbs {
  display: flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  color: var(--text-muted-dark); margin-bottom: var(--space-5);
}
.pillar-hero__breadcrumbs a { transition: color var(--duration-fast); }
.pillar-hero__breadcrumbs a:hover { color: var(--gold); }
.pillar-hero__breadcrumbs span[aria-hidden] { color: var(--gold); opacity: 0.6; }
.pillar-hero__title {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 800; letter-spacing: -0.035em; line-height: 1; color: var(--text-white);
  margin-bottom: var(--space-4); text-wrap: balance;
}
.pillar-hero__tagline {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(var(--text-xl), 2.2vw, var(--text-3xl));
  line-height: 1.4; color: var(--text-body-dark); max-width: 620px; margin-bottom: var(--space-8);
}
.pillar-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.pillar-card--subtopic { text-align: left; }

/* ================================================================
   CINEMATIC v2 — dark, electric, modern (loads last → wins)
   Energy aesthetic pulled from the merch crests: gold + electric blue
   on near-black, animated glow, glassmorphism, heavy Archivo display.
   ================================================================ */

/* Deeper cinematic base */
.dark-section, .dark-section-alt { background-color: #08080B; }
.dark-section-alt { background-color: #0B0B10; }

/* ── HERO: full cinematic treatment ───────────────────────────── */
.hero { min-height: 100svh; }
.hero__bg img {
  filter: saturate(0.62) contrast(1.12) brightness(0.55);
  transform: scale(1.06);
}
/* Crossfading hero carousel slides */
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transition: opacity 1.5s var(--ease-in-out);
}
.hero__slide.is-active { opacity: 1; }
/* Darker, moodier base overlay */
.hero__overlay {
  background:
    linear-gradient(180deg, rgba(6,6,9,0.86) 0%, rgba(6,6,9,0.45) 38%, rgba(6,6,9,0.99) 100%),
    linear-gradient(100deg, rgba(6,6,9,0.92) 0%, rgba(6,6,9,0.30) 70%);
}
/* Animated GOLD + ELECTRIC energy aurora */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(38% 46% at 72% 16%, rgba(212,168,67,0.42), transparent 60%),
    radial-gradient(44% 52% at 16% 88%, rgba(61,139,255,0.36), transparent 62%),
    radial-gradient(30% 40% at 90% 95%, rgba(61,139,255,0.22), transparent 60%);
  filter: blur(46px);
  mix-blend-mode: screen;
  animation: apex-aurora 18s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}
@keyframes apex-aurora {
  0%   { transform: translate3d(-3%, 2%, 0) scale(1); opacity: 0.85; }
  100% { transform: translate3d(4%, -3%, 0) scale(1.18); opacity: 1; }
}
/* Fine grain + subtle scanline for filmic texture */
.hero__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Watermark → gold→electric gradient stroke */
.hero__content::before {
  -webkit-text-stroke: 1.5px rgba(94,168,255,0.16);
  text-stroke: 1.5px rgba(94,168,255,0.16);
  opacity: 0.9;
}

/* Glass eyebrow with electric tick */
.hero__label {
  border-color: rgba(94,168,255,0.30);
  background: rgba(61,139,255,0.07);
  color: var(--electric-bright);
}

/* HEAVY cinematic headline */
.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(3rem, 7.2vw + 0.5rem, 7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero__title span {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 40%, var(--electric-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.hero__subtitle { color: #C9C7CF; }

/* Stat numbers: gold, electric divider glow */
.hero__stat-number {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__stats > div + div::before { background: linear-gradient(transparent, var(--electric-glow), transparent); }

/* ── GLASSMORPHISM CARDS ──────────────────────────────────────── */
.pillar-card, .product-card, .episode-card, .blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}
.pillar-card:hover, .blog-card:hover, .episode-card:hover {
  border-color: rgba(94,168,255,0.45);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(94,168,255,0.10), 0 0 40px rgba(61,139,255,0.18);
}
.pillar-card::before { background: radial-gradient(80% 60% at 50% 0%, rgba(61,139,255,0.16), transparent 70%); }
.pillar-card__icon { color: var(--electric-bright); }
.product-card:hover { border-color: rgba(212,168,67,0.5); box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 40px var(--gold-glow); }

/* ── BUTTONS: electric glow on the primary ────────────────────── */
.btn-primary:hover { box-shadow: 0 8px 30px var(--gold-glow), 0 0 0 1px rgba(94,168,255,0.3), 0 0 36px rgba(61,139,255,0.25); }
.btn-secondary { border-color: rgba(255,255,255,0.22); }
.btn-secondary:hover { border-color: var(--electric-bright); box-shadow: 0 0 30px rgba(61,139,255,0.25); }

/* ── TESTIMONIAL: bold modern, not italic-serif ───────────────── */
.testimonial__quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.testimonial::before { color: var(--electric); opacity: 0.22; }
.lede { font-family: var(--font-body); font-style: normal; font-weight: 500; }

/* ── SECTION ENERGY: subtle gold/electric backdrops on dark ───── */
.dark-section.bg-noise, .dark-section-alt.bg-noise { position: relative; }
.dark-section-alt::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(60% 50% at 85% 0%, rgba(61,139,255,0.06), transparent 60%);
}

/* ── Section eyebrow + gold-line get the electric touch ───────── */
.section-label { color: var(--gold); }
.section-label::before { background: linear-gradient(90deg, transparent, var(--electric-bright)); }
.gold-line { background: linear-gradient(90deg, var(--gold), var(--electric-bright), transparent); }

/* Headings: heavier, tighter for the modern look */
h1, h2, .h1, .h2, .section-title, .page-header__title { font-weight: 800; letter-spacing: -0.03em; }

/* Page-header gets the electric energy too */
.page-header { background:
    radial-gradient(70% 120% at 50% -10%, rgba(61,139,255,0.10), transparent 60%),
    linear-gradient(180deg, #0B0B10, #08080B); }

@media (prefers-reduced-motion: reduce) {
  .hero__overlay::after { animation: none; }
}

/* ── Scroll progress bar (gold→electric) ──────────────────────── */
.apex-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--electric-bright));
  transform: scaleX(0); transform-origin: 0 50%;
  z-index: 9999; box-shadow: 0 0 12px var(--electric-glow);
  will-change: transform;
}

/* ── Kinetic brand marquee (giant outline Archivo, scrolling) ──── */
.marquee {
  overflow: hidden;
  background: #08080B;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: clamp(1.1rem, 3vw, 2.1rem) 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  white-space: nowrap;
  will-change: transform;
  animation: apex-marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 6vw, 4.75rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(232, 210, 168, 0.42);
}
.marquee i {
  font-style: normal;
  color: var(--electric-bright);
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  filter: drop-shadow(0 0 8px var(--electric-glow));
}
@keyframes apex-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg img,
  .hero__label, .hero__title, .hero__subtitle, .hero__ctas, .hero__stats,
  .hero::before { animation: none !important; }
  .hero__label, .hero__title, .hero__subtitle, .hero__ctas, .hero__stats { opacity: 1; }
}

/* ================================================================
   BEAUTIFUL LEAD POPUP — cinematic split (visual + form)
   ================================================================ */
.popup-overlay { background: rgba(6,6,9,0.80); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.popup--split {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  width: min(92vw, 900px);
  max-width: 900px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(94,168,255,0.18);
  background: linear-gradient(180deg, #14110D, #0A0908);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,168,67,0.10), 0 0 90px rgba(61,139,255,0.12);
}
.popup__close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: var(--radius-full); background: rgba(0,0,0,0.45); color: #fff;
  border: 1px solid var(--border-dark); cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast), transform var(--duration-fast) var(--ease-out-back);
}
.popup__close:hover { background: var(--gold); color: #120d04; transform: rotate(90deg); }
.popup__visual { position: relative; overflow: hidden; }
.popup__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: saturate(0.72) contrast(1.05) brightness(0.72); }
.popup__visual-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,9,0.15), rgba(6,6,9,0.88)), radial-gradient(60% 60% at 28% 8%, rgba(61,139,255,0.28), transparent 60%); }
.popup__visual-copy { position: absolute; inset: auto 0 0 0; padding: var(--space-6); }
.popup__visual-kicker { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.popup__visual-quote { font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); line-height: 1.15; letter-spacing: -0.02em; color: #fff; margin-top: var(--space-3); }
.popup__body { padding: clamp(var(--space-6), 4vw, var(--space-10)); }
.popup__eyebrow { display: inline-block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--electric-bright); margin-bottom: var(--space-3); }
.popup__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl)); letter-spacing: -0.03em; color: #fff; margin-bottom: var(--space-3); }
.popup__text { color: var(--text-muted-dark); font-size: var(--text-base); line-height: 1.55; margin-bottom: var(--space-5); }
.popup__form { display: flex; flex-direction: column; gap: var(--space-3); }
.popup__form input { width: 100%; padding: 0.95rem 1rem; min-height: 48px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius-md); color: #fff; font-size: 16px; transition: border-color var(--duration-fast), box-shadow var(--duration-fast); }
.popup__form input::placeholder { color: var(--text-caption-dark); }
.popup__form input:focus { outline: none; border-color: var(--electric-bright); box-shadow: 0 0 0 3px var(--electric-subtle); }
.popup__form .btn-primary { margin-top: var(--space-2); }
.popup__disclaimer { margin-top: var(--space-4); font-size: var(--text-xs); color: var(--text-caption-dark); text-align: center; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 700px) {
  .popup--split { grid-template-columns: 1fr; width: min(94vw, 440px); max-height: 90vh; overflow-y: auto; }
  .popup__visual { min-height: 130px; max-height: 150px; }
  .popup__visual-quote { font-size: var(--text-lg); }
  .popup__body { padding: var(--space-6); }
}

/* ================================================================
   MOBILE FACELIFT — phone-first polish, zero desktop regression
   (only applies at <=768px / <=480px, so desktop is untouched)
   ================================================================ */
@media (max-width: 768px) {
  /* Tighter, intentional section rhythm on phones */
  section, .section { padding: var(--space-12) 0; }
  .page-header { padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8); }
  .container { padding: 0 var(--space-5); }

  /* Hero: fit big Archivo type, full-width stacked CTAs */
  .hero { min-height: 92svh; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 3.7rem); line-height: 0.97; }
  .hero__subtitle { font-size: var(--text-base); max-width: 100%; }
  .hero__ctas { width: 100%; gap: var(--space-3); }
  .hero__ctas .btn-primary, .hero__ctas .btn-secondary { width: 100%; justify-content: center; }
  .hero__text-link { width: 100%; justify-content: center; }
  .hero__stats { width: 100%; }
  .hero__stat-number { font-size: var(--text-3xl); }
  .hero__content::before { display: none; } /* hide huge 365 watermark on phones */

  /* Split sections stack cleanly (image below text) */
  .split, .split--55-45 { grid-template-columns: 1fr; gap: var(--space-6); }
  .split--reverse { direction: ltr; }

  /* Event card CTA full-width, comfortable tap target */
  .event-card__body .btn-primary,
  .event-card__body .btn-secondary { width: 100% !important; text-align: center; justify-content: center; }

  /* Store: single column, larger imagery */
  .store-grid { grid-template-columns: 1fr; }
  .store-grid .product-card__image { aspect-ratio: 1 / 1; }

  /* Marquee + testimonial sizing */
  .marquee { padding: var(--space-5) 0; }
  .testimonial::before { font-size: 5rem; top: -0.2em; left: 0; }

  /* Mobile nav drawer: cinematic dark glass + tap targets */
  .nav__mobile { background: rgba(8,8,11,0.97); backdrop-filter: blur(16px); }
  .nav__mobile a, .nav__mobile summary { min-height: 48px; display: flex; align-items: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.15rem, 12.5vw, 2.9rem); letter-spacing: -0.02em; }
  .hero__stats { gap: 0; }
  .hero__stats > div { padding: var(--space-1) var(--space-4); }
  .hero__stats > div + div::before { display: none; } /* drop dividers, let stats breathe */
  .section-title, .page-header__title { font-size: clamp(var(--text-2xl), 8.5vw, var(--text-4xl)); }
  .container { padding: 0 var(--space-4); }
  /* Buttons: never cramped */
  .btn-lg { width: 100%; justify-content: center; }
  .marquee span { -webkit-text-stroke-width: 1px; }
}

/* ================================================================
   COMMUNITY PROOF GALLERY — masonry, grayscale→color on hover
   ================================================================ */
.proof-gallery { columns: 2; column-gap: var(--space-4); }
@media (min-width: 768px)  { .proof-gallery { columns: 3; } }
@media (min-width: 1280px) { .proof-gallery { columns: 4; } }
.proof-gallery__item {
  break-inside: avoid;
  margin: 0 0 var(--space-4);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.proof-gallery__item img {
  width: 100%;
  display: block;
  filter: grayscale(0.4) contrast(1.05) brightness(0.9);
  transition: filter 0.55s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.proof-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: box-shadow 0.4s var(--ease-out-expo);
  pointer-events: none;
}
.proof-gallery__item:hover img { filter: grayscale(0) contrast(1.05) brightness(1); transform: scale(1.05); }
.proof-gallery__item:hover::after { box-shadow: inset 0 0 0 1px var(--border-gold), 0 0 34px rgba(212,168,67,0.16); }
@media (prefers-reduced-motion: reduce) {
  .proof-gallery__item img { transition: none; }
}

/* ================================================================
   TESTIMONIAL FEATURE — dramatic quote + real photo
   ================================================================ */
.testimonial-feature__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: center; }
@media (min-width: 900px) { .testimonial-feature__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-12); } }
.testimonial-feature__quote {
  font-family: var(--font-display); font-weight: 800; font-style: normal;
  font-size: clamp(var(--text-2xl), 3.2vw, var(--text-4xl)); line-height: 1.22; letter-spacing: -0.02em;
  color: #fff; position: relative; padding-top: var(--space-8); margin: 0;
}
.testimonial-feature__quote::before {
  content: '\201C'; position: absolute; top: -0.22em; left: -0.04em;
  font-family: var(--font-display); font-weight: 900; font-size: 7rem; line-height: 1;
  color: var(--electric); opacity: 0.25; pointer-events: none;
}
.testimonial-feature__author { margin-top: var(--space-5); display: flex; flex-direction: column; gap: 2px; }
.testimonial-feature__name { font-family: var(--font-body); font-weight: 700; color: var(--gold); letter-spacing: 0.02em; }
.testimonial-feature__role { font-size: var(--text-sm); color: var(--text-muted-dark); }
.testimonial-feature__media { position: relative; }
.testimonial-feature__media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border-gold); filter: saturate(0.92) contrast(1.04); }
.testimonial-feature__media-glow { position: absolute; inset: -12% -12% auto auto; width: 60%; height: 60%; background: radial-gradient(circle, var(--electric-glow), transparent 70%); filter: blur(40px); z-index: -1; }

/* ================================================================
   EVENTS FEATURE — "Every Tuesday" block
   ================================================================ */
.events-feature__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: center; }
@media (min-width: 900px) { .events-feature__grid { grid-template-columns: 0.95fr 1.05fr; gap: var(--space-12); } }
.events-feature__media { position: relative; }
.events-feature__media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border-dark); filter: saturate(0.9) contrast(1.05) brightness(0.92); }
.events-feature__pulse {
  position: absolute; top: var(--space-4); left: var(--space-4);
  display: inline-flex; align-items: center; gap: 8px; padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full); background: rgba(8,8,11,0.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(34,197,94,0.4); color: #fff;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.events-feature__pulse span { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: apex-pulse 2s infinite; }
@keyframes apex-pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); } 70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.events-feature__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(var(--text-3xl), 4.5vw, var(--text-6xl)); line-height: 0.98; letter-spacing: -0.03em; color: #fff; margin-bottom: var(--space-4); }
.events-feature__lead { color: var(--text-muted-dark); font-size: var(--text-lg); line-height: 1.6; margin-bottom: var(--space-5); }
.events-feature__meta { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.events-feature__meta li { display: flex; align-items: center; gap: var(--space-3); color: var(--text-body-dark); font-weight: 500; }
.events-feature__meta svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.events-feature__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }
@media (prefers-reduced-motion: reduce) { .events-feature__pulse span { animation: none; } }

/* ================================================================
   STORE NAV ITEM — gold pill CTA (drives merch clicks)
   ================================================================ */
.nav__link[href="/store"] {
  background: linear-gradient(120deg, var(--gold-300), var(--gold));
  color: #170f02 !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 14px var(--gold-glow);
  transition: transform var(--duration-fast) var(--ease-out-back),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              filter var(--duration-fast);
}
.nav__link[href="/store"]::after { display: none; } /* kill any underline animation */
.nav__link[href="/store"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px var(--gold-glow), 0 0 28px rgba(61,139,255,0.22);
  filter: brightness(1.06);
  color: #170f02 !important;
}
/* Mobile drawer: gold pill, self-contained */
.nav__mobile a[href="/store"] {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: linear-gradient(120deg, var(--gold-300), var(--gold));
  color: #170f02 !important;
  font-weight: 800;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  margin: var(--space-2) 0;
  box-shadow: 0 2px 14px var(--gold-glow);
}
