/*
 * Commander & Coffee — styles.css
 *
 * TABLE OF CONTENTS
 * ─────────────────────────────────────────────────────────────────
 *  1.  Tokens (CSS custom properties)
 *  2.  Reset & Base
 *  3.  Grain texture overlay
 *  4.  Layout utilities
 *  5.  Typography scale
 *  6.  Brass decorative rule
 *  7.  Animation keyframes
 *  8.  Scroll reveal
 *  9.  Buttons
 * 10.  Brass corner frame
 * 11.  Sticky bar
 * 12.  Navigation
 * 13.  Hero section
 * 14.  Sunday pinboard section
 * 15.  Matchmaking section
 * 16.  Partner section
 * 17.  Content / creator shelf section
 * 18.  Decks section
 * 19.  Coffee section
 * 20.  Merch section (parchment cream)
 * 21.  Discord section
 * 22.  Footer
 * 23.  Responsive breakpoints
 * ─────────────────────────────────────────────────────────────────
 */


/* ═══════════════════════════════════════════════════════════════
   1. TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  /* backgrounds */
  --deep:  #0C0A07;   /* deepest — hero, footer */
  --dark:  #131008;   /* standard dark sections */
  --warm:  #1A160E;   /* warm dark — matchmaking, partner */
  --chalk: #100E09;   /* chalkboard — sunday pinboard */
  --slate: #1E2138;   /* slate blue — discord, decks */
  --slate2:#2B2E42;

  /* brand colours */
  --gold:  #FFB700;
  --brew:  #96661C;
  --cream: #FFF7E3;
  --parch: #EDE3CC;   /* parchment cream — merch section bg */

  /* alpha variants */
  --c2: rgba(255,247,227,.70);
  --c3: rgba(255,247,227,.38);
  --c4: rgba(255,247,227,.14);
  --gdim: rgba(255,183,0,.28);

  /* typography */
  --serif: 'Fraunces', Georgia, serif;
  --mono:  'Syne Mono', 'Courier New', monospace;

  /* borders */
  --bb:  1px solid rgba(255,183,0,.22);  /* standard brass border */
  --bbh: 1px solid rgba(255,183,0,.55);  /* highlighted brass border */
}


/* ═══════════════════════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: var(--mono);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }


/* ═══════════════════════════════════════════════════════════════
   3. GRAIN TEXTURE OVERLAY
   SVG fractal noise applied as a fixed overlay at low opacity.
   Creates a subtle print/paper texture across the full page.
═══════════════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ═══════════════════════════════════════════════════════════════
   4. LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════ */
.wrap    { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }


/* ═══════════════════════════════════════════════════════════════
   5. TYPOGRAPHY SCALE
═══════════════════════════════════════════════════════════════ */
.label {
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--dim { color: var(--c3); }

/* Fallback text shown when logo images fail to load */
.logo-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.nav-logo-fb {
  display: none;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
}


/* ═══════════════════════════════════════════════════════════════
   6. BRASS DECORATIVE RULE
═══════════════════════════════════════════════════════════════ */
.rule {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem 0;
}
.rule--c { margin-left: auto; margin-right: auto; }


/* ═══════════════════════════════════════════════════════════════
   7. ANIMATION KEYFRAMES
═══════════════════════════════════════════════════════════════ */

/* Glowing dot pulse — hero eyebrow */
@keyframes dpulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,183,0,.45); }
  60%       { opacity: .7; box-shadow: 0 0 0 6px rgba(255,183,0,0); }
}

/* Coffee mug steam */
@keyframes steam {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  15%  { opacity: .55; }
  80%  { opacity: .22; }
  100% { opacity: 0; transform: translateY(-40px) scaleX(1.7); }
}

/* Table scene gentle float */
@keyframes floatg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero scroll line pulse */
@keyframes sline {
  0%, 100% { opacity: .45; }
  50%       { opacity: 1; }
}

/* Hero logo — warm glow breathing */
@keyframes logo-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 28px rgba(255,183,0,.10))
      drop-shadow(0 8px 32px rgba(0,0,0,.70));
  }
  50% {
    filter:
      drop-shadow(0 0 64px rgba(255,183,0,.32))
      drop-shadow(0 0 28px rgba(150,102,28,.22))
      drop-shadow(0 8px 32px rgba(0,0,0,.70));
  }
}

/* Hero logo — subtle float */
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Hero logo — warm aura behind logo */
@keyframes logo-aura {
  0%, 100% { opacity: .5; transform: translate(-50%, -52%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -52%) scale(1.18); }
}

/* Partner flywheel outer ring spin.
   FIX vs embedded version: transform-origin removed from keyframes
   (non-standard). transform-box + transform-origin on the element instead. */
@keyframes fw-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ═══════════════════════════════════════════════════════════════
   8. SCROLL REVEAL
   Applied via JavaScript IntersectionObserver.
   Elements start invisible and slide up. .in class triggers reveal.
═══════════════════════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.rv.in { opacity: 1; transform: none; }

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .28s; }
.d4 { transition-delay: .38s; }


/* ═══════════════════════════════════════════════════════════════
   9. BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .88rem 1.8rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

/* Gold — primary CTA */
.btn-gold { background: var(--gold); color: #0C0A07; font-weight: 700; }
.btn-gold:hover {
  background: #ffc930;
  box-shadow: 0 0 28px rgba(255,183,0,.45);
  transform: translateY(-1px);
}

/* Ghost — secondary CTA on dark backgrounds */
.btn-ghost { background: transparent; color: var(--cream); border: var(--bbh); }
.btn-ghost:hover {
  background: rgba(255,183,0,.07);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Dark — tertiary on dark backgrounds */
.btn-dark { background: rgba(35,38,64,.75); color: var(--cream); border: var(--bb); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

/* Brew — primary CTA on parchment/cream background (merch section) */
.btn-brew {
  background: var(--brew);
  color: var(--cream);
  font-weight: 700;
  border: 1px solid rgba(150,102,28,.6);
}
.btn-brew:hover { background: #a8731f; transform: translateY(-1px); }

/* Disabled — coming-soon states */
.btn-off {
  background: rgba(80,75,70,.3);
  color: var(--c3);
  border: 1px solid rgba(255,247,227,.08);
  cursor: not-allowed;
  pointer-events: none;
}

/* Small size modifier */
.btn-sm { padding: .6rem 1.15rem; font-size: .65rem; }


/* ═══════════════════════════════════════════════════════════════
   10. BRASS CORNER FRAME
   Four corner brackets (like a picture frame) using four
   pseudo-elements across two elements (.bf and .bf-inner).
   Usage: <div class="bf"><span class="bf-inner"></span>...</div>
═══════════════════════════════════════════════════════════════ */
.bf { position: relative; }

.bf::before, .bf::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
}
.bf::before { top: 0; left: 0; border-top: 1.5px solid rgba(255,183,0,.45); border-left: 1.5px solid rgba(255,183,0,.45); }
.bf::after  { bottom: 0; right: 0; border-bottom: 1.5px solid rgba(255,183,0,.45); border-right: 1.5px solid rgba(255,183,0,.45); }

.bf-inner { position: absolute; inset: 0; pointer-events: none; }
.bf-inner::before, .bf-inner::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
}
.bf-inner::before { top: 0; right: 0; border-top: 1.5px solid rgba(255,183,0,.45); border-right: 1.5px solid rgba(255,183,0,.45); }
.bf-inner::after  { bottom: 0; left: 0; border-bottom: 1.5px solid rgba(255,183,0,.45); border-left: 1.5px solid rgba(255,183,0,.45); }


/* ═══════════════════════════════════════════════════════════════
   11. STICKY BAR
   Slides up from bottom after 500px scroll.
   JavaScript toggles .on class.
═══════════════════════════════════════════════════════════════ */
.sbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(12,10,7,.97);
  border-top: 1px solid rgba(255,183,0,.18);
  backdrop-filter: blur(14px);
  transform: translateY(100%);
  transition: transform .4s ease;
  padding: .75rem 2rem;
}
.sbar.on { transform: none; }

.sbar-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sbar-copy { font-size: .78rem; color: var(--c2); }
.sbar-copy strong { color: var(--cream); }
.sbar-btns { display: flex; gap: .6rem; }


/* ═══════════════════════════════════════════════════════════════
   12. NAVIGATION
   Fixed top bar. JavaScript toggles .on class on scroll.
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 2.5rem;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.on {
  background: rgba(12,10,7,.97);
  border-bottom-color: rgba(255,183,0,.13);
  backdrop-filter: blur(16px);
  padding: 1rem 2.5rem;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 32px; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-acts { display: flex; gap: .6rem; justify-self: end; }


/* ═══════════════════════════════════════════════════════════════
   13. HERO SECTION — CENTERED LOGO + EDISON BULB COUNTDOWN
   Full-viewport centered composition.
   Logo mark in nav. Full logo centered in hero.
   Countdown styled as warm incandescent / Edison bulbs.
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
}

/* Centered backlit glow — warm light source behind the logo */
.hero-atmo { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-atmo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: 70%; height: 60%;
  background: radial-gradient(ellipse at center,
    rgba(255,183,0,.09) 0%,
    rgba(150,102,28,.05) 38%,
    transparent 68%
  );
}
/* Edge vignette */
.hero-atmo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 22%, rgba(0,0,0,.74) 100%);
}

/* Centered content stack */
.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  padding: 7rem 2rem 5rem;
  text-align: center;
  width: 100%;
}

/* ── FULL LOGO ───────────────────────────────────────────── */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
}

/* Warm golden aura radiating behind the logo */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 130%; padding-bottom: 55%;
  background: radial-gradient(ellipse, rgba(255,183,0,.09) 0%, rgba(150,102,28,.05) 45%, transparent 70%);
  transform: translate(-50%, -52%);
  animation: logo-aura 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  animation:
    logo-float 5s ease-in-out infinite,
    logo-glow  4s ease-in-out infinite;
}

/* Animated pulse dot — eyebrow label */
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: .5rem;
  vertical-align: middle;
  animation: dpulse 2.5s ease infinite;
}

/* CTA row */
.hero-acts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── VINTAGE CLOCK COUNTDOWN ─────────────────────────────── */
/*
 * Each digit sits in a brass-bordered rectangular panel,
 * like a vintage tavern clock or railway departure board.
 * A subtle horizontal split-flap line runs across the panel centre.
 * No neck, no base — just the panel face and a label below.
 */
/* ── TWITCH LIVE PLAYER — Sunday 10am–2pm ET ─────────────── */
.hero-live-wrap {
  display: none; /* JS shows this on Sunday during live window */
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  max-width: 760px;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(145,70,255,.15);
  border: 1px solid rgba(145,70,255,.4);
  border-radius: 100px;
  padding: .32rem .95rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bf9eff;
}

.hero-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #9146ff;
  animation: dpulse 1.5s ease infinite;
  flex-shrink: 0;
}

.hero-twitch-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(145,70,255,.3);
  box-shadow: 0 0 48px rgba(145,70,255,.12), 0 16px 48px rgba(0,0,0,.55);
}

.hero-twitch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Visual mock — shown when iframe can't load (file:// protocol) */
.twitch-mock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #18103a 0%, #0e0a1f 100%);
  pointer-events: none;
}
.twitch-mock-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding: 2rem;
  text-align: center;
}
.twitch-mock-logo { width: 48px; height: 56px; opacity: .7; }
.twitch-mock-channel {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: .1em;
  color: #9146ff;
}
.twitch-mock-note {
  font-family: var(--mono);
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 340px;
}

.hero-live-link {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9146ff;
  text-decoration: none;
  transition: color .2s;
}
.hero-live-link:hover { color: #bf9eff; }


.hero-cd-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.hero-cd-label {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,247,227,.62);
}

/* Row: panels + dot separators, top-aligned so dots sit at panel midpoint */
.hero-bulb-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.bulb-wrap { display: flex; flex-direction: column; align-items: center; }

/* Clock panel — brass-edged, dark interior, recessed depth */
.bulb-glass {
  width: 88px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Enables 3D perspective for child flap transforms */
  perspective: 600px;
  /* Warm dark interior, lighter at top as if lit from above */
  background: linear-gradient(180deg,
    #201608 0%,
    #16100a 48%,
    #120d07 100%
  );
  border-radius: 7px;
  /* Brass border */
  border: 1.5px solid rgba(255,183,0,.52);
  /* Dark gap ring + faint outer brass halo */
  box-shadow:
    0 0 0 3px rgba(12,10,7,.88),
    0 0 0 4.5px rgba(255,183,0,.16),
    0 0 22px rgba(255,183,0,.09),
    inset 0 1px 0 rgba(255,183,0,.07),
    inset 0 -1px 0 rgba(0,0,0,.45);
}

/* Inner recessed border — panel-within-panel depth effect */
.bulb-glass::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,183,0,.1);
  border-radius: 3px;
  pointer-events: none;
}

/* Split-flap divider — thin shadow line at panel midpoint */
.bulb-glass::after {
  content: '';
  position: absolute;
  left: 1px; right: 1px;
  top: calc(50% - 0.5px);
  height: 1px;
  background: rgba(0,0,0,.65);
  box-shadow: 0 1px 0 rgba(255,183,0,.04);
  z-index: 2;
}

/* Digit — warm cream, very subtle brass glow */
.bulb-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  text-shadow:
    0 0 14px rgba(255,183,0,.22),
    0 0 32px rgba(255,183,0,.08);
  line-height: 1;
  font-variation-settings: 'opsz' 36;
  letter-spacing: -.01em;
  user-select: none;
}

/* Neck and base — not used in clock panel style */
.bulb-neck { display: none; }
.bulb-base { display: none; }

/* Unit label */
.bulb-lbl {
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,247,227,.6);
  margin-top: .8rem;
}

/* Dot separators — brass-toned, vertically centered to panel face */
.bulb-colon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* 100px panel / 2 = 50px centre. Offset for dot pair height ~24px → pad 38px */
  padding-top: 38px;
}
.bulb-colon-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,183,0,.58);
  box-shadow: 0 0 7px rgba(255,183,0,.6), 0 0 16px rgba(255,183,0,.22);
}

/* ── SPLIT-FLAP ANIMATION STRUCTURE ────────────────────────
   Each panel is divided at its midpoint into two halves.
   .flap-lower-bg — static, always shows the new digit's lower half.
   .flap-upper-card — the animated flap. Folds forward (rotateX -90°)
     to hide the old digit, then snaps up (rotateX 90° → 0°) revealing
     the new digit. z-index keeps it on top of the lower half.
   JavaScript adds/removes .flap-folding and .flap-revealing classes.
──────────────────────────────────────────────────────────── */

/* Bottom half — static, always pre-loaded with the incoming digit */
.flap-lower-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  /* Slightly brighter — facing upward, catches ambient light */
  background: linear-gradient(180deg, #16100a 0%, #120d07 100%);
}
.flap-lower-bg .flap-dw {
  /* Full-height digit wrapper anchored to bottom so only lower half shows */
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Top flap — the moving card */
.flap-upper-card {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  overflow: hidden;
  /* Rotate around the bottom edge of the top half = panel midpoint */
  transform-origin: 50% 100%;
  z-index: 4;
  background: linear-gradient(180deg, #201608 0%, #16100a 100%);
  border-radius: 5px 5px 0 0;
  /* Subtly brighter border at top — reads as the card edge catching light */
  box-shadow: inset 0 1px 0 rgba(255,183,0,.06);
}
.flap-upper-card .flap-dw {
  /* Full-height digit wrapper anchored to top so only upper half shows */
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Hard shadow at bottom edge of the flap card (simulates card thickness) */
.flap-upper-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,.55);
  z-index: 5;
}

/* Animation keyframes */
@keyframes flap-fold {
  from { transform: rotateX(0deg); }
  to   { transform: rotateX(-90deg); }
}
@keyframes flap-reveal {
  from { transform: rotateX(90deg); }
  to   { transform: rotateX(0deg); }
}

/* Classes added/removed by JS */
.flap-upper-card.flap-folding   { animation: flap-fold   0.14s ease-in  forwards; }
.flap-upper-card.flap-revealing { animation: flap-reveal 0.13s ease-out forwards; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  z-index: 3;
}
.hero-scroll-l { font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c3); }
.hero-scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,183,0,.45), transparent); animation: sline 2.2s ease infinite; }


/* ═══════════════════════════════════════════════════════════════
   14. SUNDAY PINBOARD SECTION
   Dark chalkboard background. Parchment note cards are
   pinned at angles. One large primary note + three smaller.
═══════════════════════════════════════════════════════════════ */
.sunday-sec {
  padding: 90px 0 100px;
  background: var(--chalk);
  position: relative;
  overflow: hidden;
}

.sunday-sec::before {
  display: none;
}

/* Subtle warm lamp glow from top */
.sunday-sec::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,183,0,.05) 0%, transparent 65%);
}

.sunday-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.sunday-hdr .sh2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  font-variation-settings: 'opsz' 72;
}
.sunday-hdr .sh2 em { font-style: italic; color: var(--gold); }
.sunday-hdr p { font-size: .86rem; color: var(--c2); line-height: 1.7; max-width: 440px; margin: .8rem auto 0; }

/* ── INTERACTIVE STEP JOURNEY ─────────────────────────────── */
.step-journey {
  position: relative;
  z-index: 1;
}

/* Step track — horizontal rail with numbered circle stops */
.step-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 2rem;
  padding: 0 18px;
}

.step-track-rail {
  position: absolute;
  top: 17px;
  left: calc(18px + 36px);
  right: calc(18px + 36px);
  height: 2px;
  background: rgba(255,183,0,.12);
  border-radius: 2px;
}

.step-track-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #c8841a);
  width: 0%;
  border-radius: 2px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}

.step-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 2;
}

.step-stop-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,183,0,.2);
  background: var(--chalk);
  font-family: var(--mono);
  font-size: .75rem;
  color: rgba(255,247,227,.25);
  transition: border-color .3s, color .3s, background .3s, box-shadow .3s;
}

.step-stop-lbl {
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,247,227,.22);
  transition: color .3s;
  white-space: nowrap;
}

.step-stop.active .step-stop-num {
  border-color: var(--gold);
  color: var(--gold);
  background: #16100A;
  box-shadow: 0 0 16px rgba(255,183,0,.28);
}
.step-stop.done .step-stop-num {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--chalk);
}
.step-stop.active .step-stop-lbl,
.step-stop.done .step-stop-lbl {
  color: rgba(255,247,227,.6);
}
.step-stop:focus-visible .step-stop-num {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Step stage — CSS Grid stack: all panels occupy same cell */
.step-stage {
  display: grid;
  grid-template-areas: 'panel';
  margin-bottom: 1.75rem;
}

.step-panel {
  grid-area: panel;
  background: #1a160e;
  border: 1px solid rgba(255,183,0,.13);
  border-left: 4px solid rgba(255,183,0,.4);
  border-radius: 4px;
  padding: 2.5rem 3rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  opacity: 0;
  transform: translateX(var(--enter-x, 24px));
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  user-select: none;
}

.step-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  user-select: auto;
  border-left-color: var(--gold);
}

.step-ghost-num {
  position: absolute;
  top: -.05em; right: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(5.5rem, 12vw, 9.5rem);
  font-weight: 800;
  font-variation-settings: 'opsz' 144;
  color: rgba(255,183,0,.055);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.step-eyebrow {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

.step-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  font-variation-settings: 'opsz' 48;
}

.step-body {
  font-family: var(--mono);
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(255,247,227,.58);
  max-width: 600px;
}

.step-note {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: rgba(255,183,0,.04);
  border: 1px solid rgba(255,183,0,.16);
  border-radius: 3px;
  padding: .9rem 1.1rem;
  font-family: var(--mono);
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,247,227,.5);
  max-width: 580px;
}
.step-note strong {
  display: block;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.step-note-icon {
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .15em;
  opacity: .75;
}

.step-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Step navigation — prev/counter/next row */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.step-btn {
  background: none;
  border: 1.5px solid rgba(255,183,0,.25);
  color: rgba(255,247,227,.5);
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.25rem;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.step-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,183,0,.05);
}
.step-btn:disabled {
  opacity: .28;
  cursor: default;
}
.step-btn--next {
  border-color: var(--gold);
  color: var(--gold);
}
.step-btn--next:hover {
  background: rgba(255,183,0,.08);
}
.step-counter {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,247,227,.3);
}

.sunday-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════
   15. ABOUT THE HOST SECTION
   Two-column: bio text left, portrait right.
   Deck showcase below as 3-column card grid.
═══════════════════════════════════════════════════════════════ */
.host-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--warm) 100%);
  position: relative;
  overflow: hidden;
}
.host-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 68% 35%, rgba(255,183,0,.06) 0%, transparent 55%);
}

.host-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.host-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.host-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.06;
  font-variation-settings: 'opsz' 72;
}
.host-h2 em { font-style: italic; color: var(--gold); }

.host-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c2);
  max-width: 520px;
}
.host-text p em { font-style: italic; color: var(--cream); }

.host-text a {
  color: var(--gold);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(255,183,0,.3);
  transition: text-shadow .25s ease, letter-spacing .25s ease;
}
.host-text a:hover {
  text-shadow: 0 0 22px rgba(255,183,0,.55);
  letter-spacing: .02em;
}

/* Platform / social proof row */
.host-platforms {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,183,0,.1);
  border-bottom: 1px solid rgba(255,183,0,.1);
}

.host-platform {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.host-platform:hover { opacity: .7; }

.host-platform-ic {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: rgba(255,183,0,.06);
  border: 1px solid rgba(255,183,0,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
}

.host-platform-n {
  display: block;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  font-variation-settings: 'opsz' 24;
}
.host-platform-l {
  display: block;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c3);
  margin-top: .15rem;
}

.host-acts {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* Portrait column */
.host-photo-wrap {
  position: relative;
  z-index: 1;
}

.host-photo-frame {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.host-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Warm fade at photo bottom */
.host-photo-frame::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(0deg, rgba(26,22,14,.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.host-photo-caption {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c3);
  text-align: center;
  margin-top: .85rem;
}

/* Deck showcase */
.host-decks {
  border-top: var(--bb);
  padding-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.host-decks-hdr {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}

.host-decks-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--cream);
  font-variation-settings: 'opsz' 48;
}

.host-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.host-deck-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.65rem;
  background: linear-gradient(155deg, rgba(255,247,227,.04), rgba(255,247,227,.01));
  border: var(--bb);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.host-deck-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,183,0,.4), transparent);
}
.host-deck-card:hover {
  border-color: rgba(255,183,0,.42);
  box-shadow: 0 12px 40px rgba(255,183,0,.08);
  transform: translateY(-3px);
}

/* ── COMBINED REACH — full-width dramatic counter ────────── */
.host-reach-full {
  text-align: center;
  padding-top: 5rem;
  border-top: var(--bb);
  position: relative;
  z-index: 1;
}

/* Warm spotlight glow behind the number */
.host-reach-full::before {
  content: '';
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 220px;
  background: radial-gradient(ellipse, rgba(255,183,0,.1) 0%, transparent 68%);
  pointer-events: none;
}

/* Large split-flap panels — override the base .bulb-glass size */
.reach-digits-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 1.25rem 0 1.5rem;
}
.reach-digits-lg .bulb-glass {
  width: 100px;
  height: 126px;
}
.reach-digits-lg .bulb-num {
  font-size: 5rem;
  text-shadow:
    0 0 20px rgba(255,183,0,.3),
    0 0 48px rgba(255,183,0,.12);
}
.reach-digits-lg .reach-comma {
  font-size: 4rem;
  color: rgba(255,183,0,.55);
  padding-bottom: .3rem;
}

.host-reach-platforms {
  display: block;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,247,227,.2);
  margin-top: .6rem;
}

/* ── SOCIAL PLATFORM CHIPS ────────────────────────────────── */
.host-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: .6rem;
}

.host-chip {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem .85rem;
  border-radius: 6px;
  border: 1px solid rgba(255,247,227,.1);
  background: rgba(255,247,227,.03);
  text-decoration: none;
  min-width: 0; /* prevent grid blowout from nowrap text */
  transition: transform .2s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.host-chip:hover { transform: translateY(-2px); }

.host-chip--twitch:hover    { border-color: rgba(145,70,255,.55);  box-shadow: 0 4px 20px rgba(145,70,255,.15); background: rgba(145,70,255,.07); }
.host-chip--youtube:hover   { border-color: rgba(255,30,30,.5);    box-shadow: 0 4px 20px rgba(255,30,30,.12);  background: rgba(255,30,30,.06);  }
.host-chip--facebook:hover  { border-color: rgba(24,119,242,.55);  box-shadow: 0 4px 20px rgba(24,119,242,.14); background: rgba(24,119,242,.07); }
.host-chip--instagram:hover { border-color: rgba(214,36,159,.5);   box-shadow: 0 4px 20px rgba(214,36,159,.13); background: rgba(214,36,159,.06); }
.host-chip--tiktok:hover    { border-color: rgba(255,255,255,.22); box-shadow: 0 4px 20px rgba(255,255,255,.06); background: rgba(255,255,255,.05); }

.host-chip-logo {
  width: 28px; height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.host-chip--twitch   .host-chip-logo { background: rgba(145,70,255,.2); }
.host-chip--youtube  .host-chip-logo { background: rgba(255,30,30,.18); }
.host-chip--facebook .host-chip-logo { background: rgba(24,119,242,.18); }
.host-chip--instagram .host-chip-logo {
  background: linear-gradient(135deg, rgba(253,89,73,.5) 0%, rgba(214,36,159,.5) 50%, rgba(40,90,235,.5) 100%);
}
.host-chip--tiktok   .host-chip-logo { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }

.host-chip-info {
  flex: 1;
  min-width: 0;  /* allows ellipsis to work inside a flex container */
  overflow: hidden;
}

.host-chip-platform {
  display: block;
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c3);
}
.host-chip-handle {
  display: block;
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.host-chip-arrow {
  margin-left: auto;
  font-size: .72rem;
  color: var(--c3);
  opacity: 0;
  transform: translateX(-5px) translateY(-5px);
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.host-chip:hover .host-chip-arrow { opacity: 1; transform: translateX(0) translateY(0); }

/* ── REACH COUNTER (right column, below photo) ────────────── */
.host-reach {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem 1.4rem;
  background: linear-gradient(155deg, rgba(255,247,227,.04), rgba(255,247,227,.01));
  border: var(--bb);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
.host-reach-eyebrow {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,183,0,.65);
}
/* Digit panels reuse .bulb-glass — override sizing only */
.reach-digits {
  display: flex;
  align-items: center;
  gap: .28rem;
}
.reach-digits .bulb-glass { width: 36px; height: 46px; }
.reach-digits .bulb-num   { font-size: 1.65rem; }
.reach-comma {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: rgba(255,183,0,.45);
  line-height: 1;
  padding-bottom: .15rem;
  font-variation-settings: 'opsz' 24;
  user-select: none;
}
.host-reach-sub {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--c3);
}

/* ── MOXFIELD CTA ─────────────────────────────────────────── */
.host-mox {
  border-top: var(--bb);
  padding-top: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.host-mox-badge {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, rgba(255,183,0,.07), rgba(255,247,227,.02));
  border: 1px solid rgba(255,183,0,.28);
  border-radius: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.host-mox-icon {
  width: 42px; height: 42px;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(255,183,0,.18), rgba(255,183,0,.06));
  border: 1px solid rgba(255,183,0,.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  font-variation-settings: 'opsz' 24;
  flex-shrink: 0;
}
.host-mox-text { display: flex; flex-direction: column; gap: .18rem; }
.host-mox-title {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  font-variation-settings: 'opsz' 24;
}
.host-mox-sub {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,183,0,.62);
}
.host-mox-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #0c0a07;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.host-mox-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.host-mox-body p {
  font-size: .86rem;
  line-height: 1.72;
  color: var(--c2);
  max-width: 520px;
}

/* Moxfield chip hover */
.host-chip--moxfield .host-chip-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255,183,0,.1);
  border: 1px solid rgba(255,183,0,.22);
}
.host-chip--moxfield:hover {
  border-color: rgba(255,183,0,.5);
  box-shadow: 0 4px 20px rgba(255,183,0,.12);
  background: rgba(255,183,0,.06);
}


/* ═══════════════════════════════════════════════════════════════
   16. PARTNER SECTION
   Asymmetric layout: intro text left, flywheel SVG right.
═══════════════════════════════════════════════════════════════ */
.partner-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--warm) 0%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
}
.partner-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -5%, rgba(255,183,0,.06) 0%, transparent 55%);
}

/* Two-column intro */
.partner-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.partner-intro-text { display: flex; flex-direction: column; gap: 1.4rem; }
.partner-intro-text p { font-size: .88rem; line-height: 1.75; color: var(--c2); max-width: 460px; }
.partner-intro-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem; }

.ph2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  font-variation-settings: 'opsz' 72;
}
.ph2 em { font-style: italic; color: var(--gold); }

/* Flywheel SVG wrapper */
.flywheel-wrap { display: flex; align-items: center; justify-content: center; }
.flywheel-wrap svg { width: 100%; max-width: 440px; overflow: visible; }

/* FIX: transform-origin on element (not in keyframes — non-standard) */
.fw-ring-spin {
  animation: fw-spin 60s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Stats bar — 6 columns */
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,183,0,.12);
  border: var(--bb);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.stat { background: var(--deep); padding: 1.65rem 1rem; text-align: center; }
.stat-n {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  font-variation-settings: 'opsz' 48;
}
.stat-l {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c3);
  display: block;
  margin-top: .4rem;
  line-height: 1.4;
}

/* Value pillars — 2 columns */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.pillar {
  background: linear-gradient(155deg, rgba(255,247,227,.04), rgba(255,247,227,.01));
  border: var(--bb);
  border-radius: 8px;
  padding: 1.65rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  transition: all .3s;
}
.pillar:hover {
  border-color: rgba(255,183,0,.44);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255,183,0,.12);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: rgba(255,183,0,.07);
  border: 1px solid rgba(255,183,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.pillar-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: .45rem; }
.pillar-body  { font-size: .78rem; line-height: 1.7; color: var(--c3); }

/* Opportunity tag cloud */
.opp-block {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.opp-lbl { font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; color: var(--c3); display: block; margin-bottom: .9rem; }
.opp-tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.otag {
  background: rgba(255,247,227,.035);
  border: 1px solid rgba(255,183,0,.18);
  border-radius: 100px;
  padding: .38rem .95rem;
  font-size: .7rem;
  color: var(--c2);
  transition: all .2s;
}
.otag:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,183,0,.06); }

/* Partner CTA block (uses .bf brass frame) */
.pcta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255,183,0,.05), rgba(255,247,227,.015));
  border: var(--bbh);
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.pcta-copy h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--cream); margin-bottom: .4rem; }
.pcta-copy p  { font-size: .8rem; color: var(--c3); max-width: 500px; }
.pcta-acts    { display: flex; gap: .7rem; flex-shrink: 0; }


/* ── PARTNERS.HTML — page hero ───────────────────────────── */
.partner-pg-hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--deep) 0%, var(--warm) 100%);
  position: relative;
  overflow: hidden;
}
.partner-pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,183,0,.06) 0%, transparent 55%);
  pointer-events: none;
}
.partner-pg-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.partner-pg-sub {
  font-size: .92rem;
  line-height: 1.78;
  color: var(--c2);
  max-width: 580px;
}


/* ── AFFILIATE SHOWCASE (main page partner section) ──────── */
.aff-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.aff-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  font-variation-settings: 'opsz' 72;
}
.aff-h2 em { font-style: italic; color: var(--gold); }
.aff-sub {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--c2);
  max-width: 520px;
  margin: .8rem auto 0;
}

.aff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Card base */
.aff-card {
  background: rgba(255,247,227,.03);
  border: 1px solid rgba(255,183,0,.18);
  border-radius: 8px;
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden; /* clips the tile pattern to rounded corners */
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.aff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,183,0,.5), transparent);
}
.aff-card:hover {
  border-color: rgba(255,183,0,.42);
  box-shadow: 0 12px 48px rgba(255,183,0,.1);
  transform: translateY(-3px);
}
.aff-card--bookmark { border-color: rgba(255,183,0,.25); }
.aff-card--bookmark::before {
  background: linear-gradient(90deg, transparent, rgba(255,183,0,.7), transparent);
}

/* Deal badge — top-right corner chip */
.aff-deal-badge {
  position: absolute;
  top: 0; right: 0;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .3rem .75rem;
  border-radius: 0 7px 0 6px;
  background: var(--gold);
  color: var(--deep);
}
.aff-deal-badge--gems    { background: #6c4dff; color: #fff; }
.aff-deal-badge--support { background: rgba(255,183,0,.15); color: var(--gold); border: 1px solid rgba(255,183,0,.3); }

/* Logo display row */
.aff-logo-row {
  display: flex;
  align-items: center;
}
.aff-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 4px;
  opacity: .88;
}
.aff-card--ds .aff-logo { height: 54px; max-width: 200px; }

/* Foreground content wrapper */
.aff-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}

.aff-desc {
  font-family: var(--mono);
  font-size: .84rem;
  line-height: 1.72;
  color: var(--c2);
  flex: 1;
}

/* Coupon-style code block */
.aff-code-block {
  background: rgba(255,183,0,.055);
  border: 2px dashed rgba(255,183,0,.38);
  border-radius: 5px;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .22rem;
}

.aff-code-label {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,183,0,.65);
}

.aff-code {
  font-family: var(--mono);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
}
/* Exact-case code — no uppercase transform */
.aff-code--exact {
  text-transform: none;
  letter-spacing: .12em;
}

.aff-code-case {
  font-family: var(--mono);
  font-size: .62rem;
  color: rgba(255,183,0,.55);
  letter-spacing: .04em;
  font-style: italic;
}

.aff-code-note {
  font-family: var(--mono);
  font-size: .75rem;
  color: rgba(255,247,227,.5);
  line-height: 1.45;
  margin-top: .1rem;
}

/* Bookmark block — TCGPlayer card */
.aff-bookmark-block {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: rgba(255,183,0,.06);
  border: 1px solid rgba(255,183,0,.22);
  border-radius: 5px;
  padding: 1.1rem 1.2rem;
}
.aff-bookmark-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: .1em; }
.aff-bookmark-title {
  display: block;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.aff-bookmark-body {
  font-family: var(--mono);
  font-size: .78rem;
  line-height: 1.65;
  color: rgba(255,247,227,.55);
}

/* Bottom pitch bar */
.aff-pitch-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,183,0,.12);
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.aff-pitch-bar span {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--c2);
}


/* ═══════════════════════════════════════════════════════════════
   17. CONTENT / CREATOR SHELF SECTION
═══════════════════════════════════════════════════════════════ */
.content-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--deep) 0%, var(--dark) 100%);
}

.content-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.ch2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  font-variation-settings: 'opsz' 72;
  margin-top: .6rem;
}
.ch2 em { font-style: italic; color: var(--gold); }

/* Full-width featured video — two columns */
.content-feature {
  background: linear-gradient(155deg, rgba(255,247,227,.04), rgba(255,247,227,.01));
  border: var(--bb);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  margin-bottom: 1.5rem;
  transition: all .3s;
}
.content-feature:hover { border-color: rgba(255,183,0,.45); box-shadow: 0 0 32px rgba(255,183,0,.14); }

.c-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e1208, #2c1c0a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.c-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,183,0,.09) 0%, transparent 60%);
}

/* Play button */
.play {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,183,0,.14);
  border: 2px solid rgba(255,183,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  z-index: 1;
}
.play:hover {
  background: rgba(255,183,0,.28);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(255,183,0,.35);
}
.play-tri {
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--gold);
  margin-left: 4px;
}

.c-info {
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-content: center;
}
.c-info .label { display: block; }
.c-info h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--cream); line-height: 1.2; }
.c-info p   { font-size: .8rem; color: var(--c3); line-height: 1.65; }

/* Horizontal scrolling content shelf */
.shelf-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--c3); display: block; margin-bottom: 1rem; }

.content-shelf-wrap {
  overflow-x: auto;
  /* Bleed padding trick — shelf extends to screen edge on mobile */
  margin: 0 -2rem;
  padding: 0 2rem .75rem;
  scrollbar-color: rgba(255,183,0,.25) transparent;
  scrollbar-width: thin;
}
.content-shelf { display: flex; gap: 1rem; width: max-content; }

.shelf-card {
  width: 210px;
  flex-shrink: 0;
  background: linear-gradient(155deg, rgba(255,247,227,.04), transparent);
  border: var(--bb);
  border-radius: 10px;
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}
.shelf-card:hover { border-color: rgba(255,183,0,.42); transform: translateY(-3px); box-shadow: 0 0 20px rgba(255,183,0,.1); }

.shelf-thumb {
  height: 118px;
  background: linear-gradient(135deg, #1e1208, #2c1c0a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.shelf-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,183,0,.06) 0%, transparent 65%);
}

.shelf-play {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,183,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.shelf-play-tri {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgba(255,183,0,.6);
  margin-left: 2px;
}

.shelf-info  { padding: .85rem .9rem; }
.shelf-type  { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); opacity: .8; }
.shelf-title { font-size: .78rem; color: var(--cream); margin-top: .2rem; line-height: 1.35; }
.shelf-meta  { font-size: .63rem; color: var(--c3); margin-top: .3rem; }

.content-cta { text-align: center; margin-top: 3rem; }


/* ═══════════════════════════════════════════════════════════════
   18. DECKS SECTION
   Slate tint background differentiates this from adjacent sections.
═══════════════════════════════════════════════════════════════ */
.decks-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #1a1d30 50%, var(--dark) 100%);
}

.decks-hdr { margin-bottom: 3rem; }
.dh2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  font-variation-settings: 'opsz' 72;
  margin-top: .6rem;
}
.dh2 em { font-style: italic; color: var(--gold); }
.decks-hdr p { font-size: .86rem; color: var(--c2); line-height: 1.7; max-width: 500px; margin-top: .75rem; }

.decks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.deck {
  background: linear-gradient(165deg, rgba(43,46,66,.5), rgba(20,18,14,.9));
  border: var(--bb);
  border-radius: 14px;
  padding: 1.65rem 1.4rem;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
/* Gold top edge — reveals on hover */
.deck::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.deck:hover {
  transform: translateY(-7px) rotate(-.4deg);
  border-color: rgba(255,183,0,.5);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 30px rgba(255,183,0,.1);
}
.deck:hover::before { opacity: 1; }

.deck-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,247,227,.06);
}
.deck-art {
  width: 46px; height: 46px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(150,102,28,.3), rgba(255,183,0,.1));
  border: 1px solid rgba(255,183,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

/* Power level badge */
.dpow { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; padding: .22rem .55rem; border-radius: 100px; }
.dpow.casual  { background: rgba(140,190,80,.1);  color: #8bc34a; border: 1px solid rgba(140,190,80,.2); }
.dpow.focused { background: rgba(255,183,0,.1);   color: var(--gold); border: 1px solid rgba(255,183,0,.25); }
.dpow.high    { background: rgba(210,80,80,.1);   color: #e06060; border: 1px solid rgba(210,80,80,.2); }

.deck-cmd  { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: .22rem; }
.deck-arch { font-size: .7rem; color: var(--c3); letter-spacing: .05em; margin-bottom: .9rem; }
.deck-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .9rem; }
.dtag { font-size: .6rem; padding: .18rem .45rem; background: rgba(255,247,227,.045); border: 1px solid rgba(255,247,227,.1); border-radius: 3px; color: var(--c3); }

.deck-coffee {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .7rem;
  background: rgba(150,102,28,.08);
  border: 1px solid rgba(150,102,28,.2);
  border-radius: 4px;
  margin-bottom: 1.1rem;
}
.dc-lbl { font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; color: #c8882a; }
.deck-acts { display: flex; gap: .45rem; }
.deck-acts .btn { flex: 1; justify-content: center; }


/* ═══════════════════════════════════════════════════════════════
   19. COFFEE SECTION
   Amber warm glow from below — distinct from surrounding sections.
═══════════════════════════════════════════════════════════════ */
.coffee-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--deep) 0%, #140E07 50%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
}
.coffee-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(150,102,28,.09) 0%, transparent 55%);
  pointer-events: none;
}

.coffee-inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: end;
  position: relative;
  z-index: 1;
}
.coffee-text { display: flex; flex-direction: column; gap: 1.4rem; }
.coffee-text p { font-size: .88rem; line-height: 1.75; color: var(--c2); }

.coffee-ritual { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: #c8882a; }

.coffee-h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.06;
  font-variation-settings: 'opsz' 72;
}
.coffee-h2 em { font-style: italic; color: var(--gold); }

.coffee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.coffee-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: linear-gradient(170deg, #1e1509 0%, #130e06 100%);
  border: 1px solid rgba(150,102,28,.28);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.coffee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(150,102,28,.22);
  border-color: rgba(150,102,28,.55);
}

/* Product image area — transparent PNGs float on dark bg */
.coffee-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem 1rem;
  background: radial-gradient(ellipse at 50% 80%, rgba(150,102,28,.1) 0%, transparent 65%);
  min-height: 170px;
}
.coffee-product-img {
  width: 100%;
  max-width: 140px;
  height: 160px;
  object-fit: contain;
  transition: transform .4s ease;
}
.coffee-card:hover .coffee-product-img { transform: translateY(-4px) scale(1.03); }

/* Product info below image */
.coffee-card-body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1rem 1.1rem 1.25rem;
  border-top: 1px solid rgba(150,102,28,.15);
  flex: 1;
}

.coffee-card-roast {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c8882a;
  opacity: .85;
}

.coffee-card-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  font-variation-settings: 'opsz' 24;
}

.coffee-card-notes {
  font-family: var(--mono);
  font-size: .72rem;
  color: rgba(255,247,227,.5);
  line-height: 1.6;
  flex: 1;
}

.coffee-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(150,102,28,.14);
}

.coffee-card-price {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  font-variation-settings: 'opsz' 24;
}

.coffee-card-cta {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c8882a;
  transition: color .2s, letter-spacing .2s;
}
.coffee-card:hover .coffee-card-cta {
  color: var(--gold);
  letter-spacing: .18em;
}


/* ═══════════════════════════════════════════════════════════════
   20. MERCH SECTION — PREMIUM SHOP
   Parchment cream background — the page's big visual contrast.
   Centered editorial header + 3-col product card grid.
═══════════════════════════════════════════════════════════════ */
.merch-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--deep) 0%, #1A1009 50%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
}
.merch-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 30%, rgba(150,102,28,.08) 0%, transparent 55%);
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.merch-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.merch-hdr-left {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.merch-h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  font-variation-settings: 'opsz' 72;
  color: var(--cream);
}
.merch-h2 em { font-style: italic; color: var(--gold); }

/* ── PRODUCT CARD GRID ────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.merch-card {
  display: block;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(170deg, #1e1509 0%, #130e06 100%);
  box-shadow: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  border: 1px solid rgba(150,102,28,.28);
}
.merch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(150,102,28,.22);
  border-color: rgba(150,102,28,.55);
}

/* Dark branded art area — logo mark watermark + type chip */
.merch-card-art {
  height: 260px;
  background: linear-gradient(155deg, #1e170e 0%, #0c0a07 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Subtle vignette at bottom — keeps type chip readable over photos */
.merch-card-art::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(0deg, rgba(0,0,0,.38) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
/* Gold hairline at top */
.merch-card-art::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,183,0,.45), transparent);
  z-index: 2;
}

.merch-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.merch-card:hover .merch-card-img { transform: scale(1.04); }

.merch-card-type-chip {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,183,0,.65);
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,183,0,.18);
  border-radius: 3px;
  padding: .22rem .55rem;
  z-index: 2;
}

/* Info panel below art area */
.merch-card-info {
  padding: 1.4rem 1.5rem 1.65rem;
  background: transparent;
  border-top: 1px solid rgba(150,102,28,.15);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.merch-card-badge {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c8882a;
  opacity: .85;
}

.merch-card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  font-variation-settings: 'opsz' 36;
  margin-top: .1rem;
}

.merch-card-detail {
  font-family: var(--mono);
  font-size: .72rem;
  color: rgba(255,247,227,.5);
  letter-spacing: .04em;
  line-height: 1.5;
}

.merch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .4rem;
}

.merch-card-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  font-variation-settings: 'opsz' 24;
}

.merch-card-cta {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c8882a;
  font-weight: 700;
  transition: letter-spacing .2s, color .2s;
}
.merch-card:hover .merch-card-cta { letter-spacing: .18em; color: var(--gold); }

/* ── VIEW ALL STRIP ───────────────────────────────────────── */
.merch-view-all {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,183,0,.12);
  position: relative;
  z-index: 1;
}
.merch-view-all-link {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c2);
  text-decoration: none;
  transition: color .2s;
}
.merch-view-all-link:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════════════════════
   21. DISCORD SECTION
   Deep slate blue — distinct from warm dark sections.
═══════════════════════════════════════════════════════════════ */
.discord-sec {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1d30 0%, #232640 50%, #1a1d30 100%);
}

.discord-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: center;
}
.discord-text { display: flex; flex-direction: column; gap: 1.4rem; }
.discord-text p { font-size: .88rem; line-height: 1.75; color: var(--c2); }

.discord-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  font-variation-settings: 'opsz' 72;
}
.discord-h2 em { font-style: italic; color: var(--gold); }

.d-feats { display: flex; flex-direction: column; gap: .7rem; }
.d-feat  { display: flex; align-items: center; gap: .7rem; font-size: .8rem; color: var(--c2); }
.d-feat-ic {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: rgba(255,183,0,.07);
  border: 1px solid rgba(255,183,0,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
}

/* Discord chat window mock */
.discord-mock {
  background: linear-gradient(145deg, #1e2030, #191c2a);
  border: 1px solid rgba(88,101,242,.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,.7);
}
.dm-hdr {
  background: rgba(22,25,38,.9);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.dm-hash { color: rgba(255,255,255,.35); font-size: 1rem; }
.dm-name { font-size: .83rem; color: rgba(255,255,255,.8); font-weight: 700; }
.dm-dot  { width: 7px; height: 7px; border-radius: 50%; background: #57f287; }
.dm-cnt  { margin-left: auto; font-size: .62rem; color: rgba(255,255,255,.28); letter-spacing: .07em; }

.dm-msgs { padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: .9rem; }
.dm-msg  { display: flex; gap: .7rem; }
.dm-av   { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; }
.dm-meta { display: flex; align-items: baseline; gap: .45rem; margin-bottom: .12rem; }
.dm-un   { font-size: .78rem; font-weight: 700; }
.dm-time { font-size: .6rem; color: rgba(255,255,255,.22); }
.dm-txt  { font-size: .78rem; color: rgba(255,255,255,.68); line-height: 1.5; }
.dm-txt .g { color: var(--gold); }
.dm-txt .w { color: rgba(255,255,255,.9); }

.dm-footer { padding: .9rem 1.25rem; border-top: 1px solid rgba(255,255,255,.05); background: rgba(16,18,28,.6); }
.dm-input  { display: flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 4px; padding: .55rem .9rem; }
.dm-ph     { flex: 1; font-size: .73rem; color: rgba(255,255,255,.18); }
.dm-btn    { background: rgba(88,101,242,.8); color: #fff; border: none; border-radius: 4px; padding: .32rem .72rem; font-size: .67rem; cursor: pointer; transition: background .2s; letter-spacing: .04em; }
.dm-btn:hover { background: rgba(88,101,242,1); }


/* ═══════════════════════════════════════════════════════════════
   22. FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,183,0,.1);
  padding: 60px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo { height: 28px; margin-bottom: 1rem; }
.footer-tag  { font-size: .78rem; color: var(--c3); line-height: 1.65; margin-bottom: 1.4rem; }
.footer-note { font-size: .62rem; letter-spacing: .06em; color: rgba(255,247,227,.18); }

/* Footer fallback text — shown if logo image fails */
.footer-logo-fb {
  display: none;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-col-lbl { font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .9rem; }
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .78rem; color: var(--c3); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,247,227,.05);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-legal { font-size: .65rem; color: rgba(255,247,227,.18); letter-spacing: .04em; }
.footer-ext   { display: flex; gap: 1.5rem; }
.footer-ext a { font-size: .65rem; color: rgba(255,247,227,.22); transition: color .2s; }
.footer-ext a:hover { color: var(--c3); }


/* ═══════════════════════════════════════════════════════════════
   23. RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1100px) ─────────────────────────────────── */
@media (max-width: 1100px) {
  /* Hero: reduce logo and clock panels on tablet */
  .hero-logo  { max-width: 380px; }
  .bulb-glass { width: 74px; height: 84px; }
  .bulb-num   { font-size: 2.5rem; }
  .bulb-colon { padding-top: 32px; }

  /* Sunday: compact step panel on tablet */
  .step-track { padding: 0 8px; }
  .step-panel { padding: 2rem 2rem 2rem 2rem; }

  /* Host: stack photo below bio on tablet */
  .host-inner { grid-template-columns: 1fr; gap: 3rem; }
  .host-photo { height: 380px; }
  .host-mox   { flex-direction: column; gap: 1.5rem; }

  /* Partner: stack intro + flywheel */
  .partner-intro { grid-template-columns: 1fr; }
  .flywheel-wrap svg { max-width: 340px; }

  /* Stats: 6 → 3 columns */
  .stats { grid-template-columns: repeat(3, 1fr); }

  /* Pillars: 2 → 1 column */
  .pillars { grid-template-columns: 1fr; }

  /* Content: featured video stacks */
  .content-feature { grid-template-columns: 1fr; }

  /* Decks: 4 → 2 columns */
  /* Coffee, Discord: stack */
  .coffee-inner, .discord-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Affiliates: 1-col on tablet */
  .aff-grid { grid-template-columns: 1fr; }
  .aff-pitch-bar { flex-direction: column; text-align: center; }

  /* Merch: 2-col grid on tablet */
  .merch-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 4 → 2 columns */
  .footer-main { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (≤ 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .wrap    { padding: 0 1.25rem; }

  /* Nav: hide text links, tighten padding */
  .nav-links      { display: none; }
  .nav, .nav.on   { padding: 1rem 1.25rem; }

  /* Hero: scale down logo and clock panels for small screens */
  .hero-logo        { max-width: 260px; }
  .hero-bulb-row    { gap: .3rem; }
  .bulb-glass       { width: 56px; height: 64px; }
  .bulb-num         { font-size: 1.8rem; }
  .bulb-lbl         { font-size: .65rem; margin-top: .5rem; }
  .bulb-colon       { gap: 7px; padding-top: 24px; }
  .bulb-colon-dot   { width: 5px; height: 5px; }

  /* Sunday step journey: compact for mobile */
  .step-track      { padding: 0; }
  .step-stop-lbl   { display: none; }
  .step-stop-num   { width: 32px; height: 32px; font-size: .68rem; }
  .step-panel      { padding: 1.75rem 1.25rem 1.75rem 1.5rem; }
  .step-ghost-num  { font-size: 5rem; }
  .step-nav        { gap: .5rem; }
  .step-btn        { padding: .5rem .9rem; font-size: .75rem; }

  /* Stats: 2 columns */
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* Partner CTA: stack */
  .pcta      { flex-direction: column; }
  .pcta-acts { width: 100%; flex-direction: column; }

  /* Host: tighten on mobile */
  .host-chips { grid-template-columns: 1fr 1fr; }
  .host-photo { height: 260px; }
  .host-mox-badge { white-space: normal; }
  .reach-digits-lg .bulb-glass { width: 46px; height: 58px; }
  .reach-digits-lg .bulb-num   { font-size: 2.2rem; }
  .reach-digits-lg .reach-comma { font-size: 1.8rem; }

  /* Coffee: 1 column */
  .coffee-grid { grid-template-columns: 1fr; }

  /* Merch: single column on mobile */
  .merch-hdr { flex-direction: column; align-items: flex-start; }
  .merch-grid { grid-template-columns: 1fr; }
  .merch-card-art { height: 200px; }

  /* Footer: stack everything */
  .footer-main   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Sticky bar: stack */
  .sbar-in { flex-direction: column; text-align: center; }

  /* Content header: stack */
  .content-hdr { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
