/* $HRICH — HoodRich Dashboard */
* { margin: 0; padding: 0; box-sizing: border-box; }
#tv-attr-logo { display: none !important; }

:root {
  --bg: #0a0a0a;
  --bg2: #1a1815;
  --concrete: #141210;
  --card: rgba(20,18,16,.85);
  --border: rgba(255,255,255,0.06);
  --border-hot: rgba(212,175,55,.3);
  --gold: #d4af37;
  --gold-b: #f0c850;
  --gold-d: #7a6218;
  --hood-green: #39ff14;
  --buy: #39ff14;
  --sell: #ff2e2e;
  --txt: #e8e6e0;
  --dim: #666;
  --mono: 'JetBrains Mono', monospace;
  --head: 'Bebas Neue', sans-serif;
  --body: 'Outfit', sans-serif;
  --r: 6px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

body { background: var(--bg); color: var(--txt); font-family: var(--body); overflow-x: hidden; }

/* grain */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .03;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
body { line-height: 1.5; }

/* concrete noise helper */
.concrete-bg {
  background-color: var(--concrete);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.075 0 0 0 0 0.065 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,.85);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: all .35s cubic-bezier(.2,.8,.3,1);
}
.nav.scrolled {
  background: rgba(10,10,10,.92);
  border-bottom-color: var(--border-hot);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.nav::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(212,175,55,.6) 50%, transparent 90%);
  opacity: 0; transition: opacity .4s;
}
.nav.scrolled::before { opacity: 1; }
.nav .wrap {
  display: flex; align-items: center; gap: 24px;
  height: 76px;
  max-width: 1400px;
}

/* Brand (clickable block: logo + wordmark + tag) */
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  padding: 6px 14px 6px 6px; border-radius: 6px;
  transition: background .25s;
}
.nav-brand:hover { background: rgba(212,175,55,.04); }
.nav-logo {
  width: 40px; height: 40px;
  filter: drop-shadow(0 0 14px rgba(212,175,55,.3));
  animation: logoSpin 12s linear infinite;
}
@keyframes logoSpin { 0% { transform: rotate(0); } 50% { transform: rotate(3deg); } 100% { transform: rotate(0); } }
.nav-brand-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.nav-brand h1 {
  font-family: var(--head); font-size: 1.4rem; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold-b) 0%, var(--gold) 50%, var(--gold-d) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.nav-tag {
  font-family: var(--mono); font-size: .56rem; color: var(--dim);
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
}

/* Meta: live dot + price */
.nav-meta { margin-right: auto; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.06); }
.nav-price-wrap {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(57,255,20,.18); border-radius: 30px;
  background: rgba(57,255,20,.04);
}
.nav-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--hood-green);
  box-shadow: 0 0 10px var(--hood-green), 0 0 20px rgba(57,255,20,.4);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.nav-price-label {
  font-family: var(--mono); font-size: .58rem; color: var(--hood-green);
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
}
.nav-price {
  font-family: var(--mono); font-size: .78rem; color: var(--gold); font-weight: 700;
  letter-spacing: .5px;
  padding-left: 8px; border-left: 1px solid rgba(255,255,255,.08);
}

/* Links — underline indicator on hover */
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  position: relative;
  color: rgba(232,230,224,.55); text-decoration: none;
  padding: 9px 14px;
  font-family: var(--body); font-size: .72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color .25s;
  cursor: pointer;
}
.nav-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-b), var(--gold)) !important;
  color: #0a0a0a !important;
  font-family: var(--head) !important; font-size: .85rem; letter-spacing: 3px !important;
  padding: 11px 22px; border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212,175,55,.3), inset 0 -2px 0 rgba(0,0,0,.15);
  position: relative; overflow: hidden;
  margin-left: 12px;
  transition: all .3s cubic-bezier(.2,.8,.3,1);
  will-change: transform;
}
.nav-cta:hover { box-shadow: 0 10px 30px rgba(212,175,55,.55); transform: translateY(-2px); }
.nav-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-150%); transition: transform .8s;
}
.nav-cta:hover::after { transform: translateX(150%); }

/* Hamburger (hidden on desktop) */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid rgba(255,255,255,.08); border-radius: 4px;
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: 0; position: relative; z-index: 102;
  transition: border-color .2s;
}
.nav-burger span {
  display: block; width: 18px; height: 2px; background: var(--gold); border-radius: 1px;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), opacity .2s;
  transform-origin: center;
}
.nav-burger:hover { border-color: var(--border-hot); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0,0,0,.72); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ===== HERO (cinematic) ===== */
html { scroll-behavior: smooth; }
.hero {
  position: relative; min-height: 100vh;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.hero-halo {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 68% 55%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(212,175,55,.12), transparent 70%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  box-shadow: inset 0 -120px 200px 40px rgba(0,0,0,.95), inset 0 60px 140px rgba(0,0,0,.7);
}
.hero-char {
  position: absolute; bottom: 0; right: -4%;
  height: 100vh; width: auto; max-width: 58%;
  object-fit: contain; object-position: bottom right;
  z-index: 2;
  filter: drop-shadow(-30px 10px 60px rgba(0,0,0,.85)) drop-shadow(0 0 80px rgba(212,175,55,.18));
  will-change: transform;
  animation: charBreathe 7s ease-in-out infinite;
  transition: transform 1.2s cubic-bezier(.22,.8,.36,1);
}
@keyframes charBreathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, -6px, 0) scale(1.006); }
}
.hero-content {
  position: relative; z-index: 4;
  padding: 16vh 5vw 0;
  max-width: 1400px; margin: 0 auto;
  width: 100%;
}
.hero-content > * { max-width: 56%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: .72rem; color: var(--gold);
  letter-spacing: 4px; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--border-hot); border-radius: 40px;
  background: rgba(212,175,55,.04); backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(10px);
  animation: fadeUp .8s .05s cubic-bezier(.2,.8,.3,1) forwards;
}
.hero-eyebrow .eb-line { width: 24px; height: 1px; background: var(--gold); display: inline-block; }
.hero-title {
  font-family: var(--head); font-size: clamp(3.5rem, 8.5vw, 10rem);
  line-height: .88;
  letter-spacing: -.012em;
  color: var(--txt);
  margin: 22px 0 24px;
  display: flex; flex-wrap: wrap; gap: 0 .3em;
}
.ht-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(48px) rotate(2deg);
  animation: wordIn 1s cubic-bezier(.2,.8,.3,1) forwards;
  animation-delay: var(--d, 0s);
  text-shadow: 0 6px 40px rgba(0,0,0,.9), 0 0 80px rgba(0,0,0,.5);
}
.ht-word.ht-gold {
  background: linear-gradient(135deg, var(--gold-b) 0%, var(--gold) 40%, var(--gold-d) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes wordIn {
  0% { opacity: 0; transform: translateY(48px) rotate(2deg); filter: blur(8px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}
.hero-sub {
  font-family: var(--body); font-size: clamp(1rem, 1.3vw, 1.3rem); color: rgba(232,230,224,.8);
  letter-spacing: 3px; text-transform: uppercase; font-weight: 300;
  max-width: 540px; line-height: 1.5;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .9s .6s cubic-bezier(.2,.8,.3,1) forwards;
}
.hero-ctas {
  margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .9s .75s cubic-bezier(.2,.8,.3,1) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 4px;
  font-family: var(--head); font-size: 1.05rem; letter-spacing: 3px;
  text-decoration: none; cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), background .25s, color .25s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: #0a0a0a;
  box-shadow: 0 8px 30px rgba(212,175,55,.25), inset 0 -2px 0 rgba(0,0,0,.2);
}
.btn-primary:hover { background: var(--gold-b); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,175,55,.45); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-150%); transition: transform .8s;
}
.btn-primary:hover::after { transform: translateX(150%); }
.btn-ghost {
  background: transparent; color: var(--txt);
  border: 1px solid rgba(255,255,255,.15);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-live {
  position: absolute; bottom: 32px; right: 32px;
  z-index: 5;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 40px;
  background: rgba(10,10,10,.4); backdrop-filter: blur(14px);
  font-size: .7rem; color: rgba(255,255,255,.7); letter-spacing: 1.5px;
  cursor: pointer; transition: all .3s cubic-bezier(.2,.8,.3,1);
  opacity: 0; animation: fadeUp .9s 1.1s cubic-bezier(.2,.8,.3,1) forwards;
  text-transform: uppercase; font-family: var(--mono);
}
.hero-live:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.06); }
.hero-live .mono { font-family: var(--mono); color: var(--gold); }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hood-green);
  box-shadow: 0 0 12px var(--hood-green), 0 0 24px rgba(57,255,20,.4);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--hood-green); }
  50% { opacity: .55; transform: scale(.78); box-shadow: 0 0 4px var(--hood-green); }
}
.hero-scroll {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .65rem; color: var(--dim);
  letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 1.3s cubic-bezier(.2,.8,.3,1) forwards;
}
.hs-line {
  width: 1px; height: 28px;
  background: linear-gradient(180deg, transparent, var(--gold-d), var(--gold));
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0) translateY(28px); opacity: 0; }
}


/* ===== SECTIONS ===== (legacy rules removed — see new section heads below) ===== */


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-d); border-radius: 2px; }
::selection { background: rgba(212,168,47,.2); }

/* ===== TICKER ===== */
.ticker {
  overflow: hidden; padding: 12px 0;
  background: #000; border-top: 1px solid var(--border-hot); border-bottom: 1px solid var(--border-hot);
  white-space: nowrap; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, #000, transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, #000, transparent); }
.ticker-track {
  display: inline-block; font-family: var(--mono); font-size: .85rem;
  letter-spacing: 1px; animation: tickerScroll 60s linear infinite;
  color: var(--txt);
}
.ticker-track .tk-buy { color: var(--buy); }
.ticker-track .tk-sell { color: var(--sell); }
.ticker-track .tk-sep { color: var(--dim); padding: 0 14px; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 0;
  background-color: #000;
  position: relative;
  border-top: 1px solid var(--border);
}
.manifesto::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
}
.manifesto-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.manifesto-head {
  font-family: var(--head); font-size: 7vw; line-height: .9;
  color: var(--txt);
  letter-spacing: -.01em;
}
.manifesto-body p { font-size: 1.15rem; color: var(--txt); margin-bottom: 18px; line-height: 1.6; }
.manifesto-body .lead {
  font-size: 1.4rem; color: var(--gold); font-weight: 300;
  border-left: 2px solid var(--gold); padding-left: 18px; margin-bottom: 28px;
}
.manifesto-body .sign {
  font-family: var(--head); font-size: 1rem; letter-spacing: 3px;
  color: var(--dim); margin-top: 28px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 50px 0;
  background-color: var(--concrete);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.075 0 0 0 0 0.065 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stat {
  padding: 28px 20px; background: rgba(10,10,10,.7);
  text-align: center; transition: background .3s;
}
.stat:hover { background: rgba(20,20,20,.9); }
.stat-label {
  font-family: var(--mono); font-size: .7rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.stat-val {
  font-family: var(--head); font-size: 2rem; color: var(--txt); letter-spacing: 1px;
  line-height: 1;
}
.stat-val.gold { color: var(--gold); }
.stat-sub { font-family: var(--mono); font-size: .65rem; color: var(--dim); margin-top: 8px; }

/* ===== SECTION HEADS (shared) ===== */
.section { padding: 100px 0; background: var(--bg); }
.section-head {
  font-family: var(--head); font-size: 5rem; line-height: .9;
  color: var(--txt); letter-spacing: 1px; text-align: center;
  margin-bottom: 10px;
}
.section-kicker {
  font-family: var(--body); font-size: .95rem; color: var(--dim);
  letter-spacing: 2px; text-transform: uppercase; text-align: center;
  margin-bottom: 60px;
}

/* ===== BONDING CURVE ===== */
.curve-section { background: var(--bg); }
.curve-big { margin: 0 auto 40px; max-width: 800px; }
.curve-outer {
  position: relative; height: 46px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 4px;
  overflow: visible;
}
.curve-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-b));
  transition: width 1.2s var(--ease); position: relative; overflow: hidden;
}
.curve-fill::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine { 0% { left: -100%; } 100% { left: 200%; } }
.curve-mark { position: absolute; top: -12px; transform: translateX(-50%); text-align: center; }
.mark-line { width: 2px; height: 70px; margin: 0 auto; opacity: .8; }
.gold-bg { background: var(--gold); } .green-bg { background: var(--hood-green); }
.mark-label {
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  letter-spacing: 1px; margin-top: 6px;
}
.gold { color: var(--gold); } .green { color: var(--hood-green); }
.curve-pct {
  font-family: var(--head); font-size: 6rem; color: var(--gold);
  line-height: 1; text-align: center; margin-top: 30px;
}
.curve-text {
  font-family: var(--mono); font-size: .9rem; color: var(--dim);
  text-align: center; margin-top: 12px; letter-spacing: 1px;
}

.milestones {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 50px auto 40px; max-width: 800px;
}
.ms {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  padding: 20px 18px; text-align: center; transition: all .3s;
}
.ms:hover { border-color: var(--border-hot); }
.ms.active { border-color: var(--gold); background: rgba(212,175,55,.05); }
.ms-label {
  font-family: var(--mono); font-size: .7rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.ms-val { font-family: var(--head); font-size: 1.4rem; color: var(--txt); letter-spacing: 1px; }

.pool-stats { max-width: 800px; margin: 0 auto; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.pool-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid var(--border);
  background: var(--card);
}
.pool-row:last-child { border-bottom: none; }
.pool-row span {
  font-family: var(--mono); font-size: .8rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.pv { font-family: var(--head); font-size: 1.4rem; color: var(--txt); letter-spacing: 1px; }

/* ===== MATTRESS ===== */
.mattress-section {
  padding: 120px 0;
  background-color: #000;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(212,175,55,.02) 20px 21px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0 0.04 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mattress-label {
  font-family: var(--mono); font-size: .9rem; color: var(--gold);
  letter-spacing: 6px; text-transform: uppercase; margin-bottom: 20px;
}
.mattress-huge {
  font-family: var(--head); font-size: 12vw; line-height: .9;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212,175,55,.3);
  letter-spacing: -.01em;
}
.mattress-sub {
  font-family: var(--body); font-size: 1.1rem; color: var(--txt);
  letter-spacing: 2px; margin-top: 10px;
}
.verify-btn {
  display: inline-block; margin-top: 32px;
  padding: 14px 30px; border: 1px solid var(--gold); border-radius: 4px;
  color: var(--gold); text-decoration: none;
  font-family: var(--head); font-size: 1rem; letter-spacing: 3px;
  transition: all .2s;
}
.verify-btn:hover { background: var(--gold); color: var(--bg); }

/* ===== CHART ===== */
.chart-section { background: var(--bg2); }
.chart-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden;
}
.chart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.4);
}
.chart-info {
  font-family: var(--mono); font-size: .85rem; color: var(--txt);
  letter-spacing: 1px;
}
.chart-info span { color: var(--dim); font-size: .75rem; }
.tf-btns { display: flex; gap: 4px; }
.btn-tf {
  background: rgba(255,255,255,.03); border: 1px solid var(--border); color: var(--dim);
  padding: 6px 12px; border-radius: 3px;
  font-family: var(--mono); font-size: .7rem; letter-spacing: 1px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.btn-tf:hover { color: var(--gold); border-color: var(--border-hot); background: rgba(212,175,55,.05); }
.btn-tf.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.chart-box { width: 100%; height: 500px; position: relative; }
.chart-overlay {
  position: absolute; top: 10px; left: 16px; z-index: 10; pointer-events: none;
  font-family: var(--mono); line-height: 1.5;
}
.co-ohlc { font-size: .72rem; color: var(--dim); }
.co-ohlc span { color: var(--txt); }
.co-ohlc .green { color: var(--buy); }
.co-ohlc .red { color: var(--sell); }
.co-vol { font-size: .65rem; color: var(--dim); margin-top: 2px; }

/* ===== GALLERY ===== */
.trenches { background: var(--bg); }
.meme-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.meme {
  border-radius: 4px; overflow: hidden; position: relative; aspect-ratio: 4/3;
  border: 1px solid var(--border); cursor: pointer;
  transition: transform .4s var(--ease), border-color .3s;
}
.meme:hover {
  border-color: var(--gold);
  transform: rotate(-1deg) scale(1.04);
  z-index: 2;
}
.meme img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: saturate(.95) contrast(1.05); }
.meme:hover img { transform: scale(1.05); filter: none; }
.meme span {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.95));
  font-family: var(--head); font-size: .95rem; color: var(--gold);
  letter-spacing: 3px;
  opacity: 0; transform: translateY(6px); transition: all .3s;
}
.meme:hover span { opacity: 1; transform: translateY(0); }

/* ===== DISPATCH ===== */
.dispatch-section { background: var(--bg2); }
.dispatch-feed {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.dispatch-loading { text-align: center; color: var(--dim); font-family: var(--mono); padding: 40px; }
.disp {
  border: 1px solid var(--border); border-left-width: 4px; border-radius: 4px;
  padding: 18px 22px;
  background: var(--card);
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: start;
  animation: slideIn .4s var(--ease);
  transition: transform .2s, border-color .2s;
}
.disp:hover { transform: translateX(2px); border-color: var(--border-hot); }
.disp.buy { border-left-color: var(--buy); }
.disp.sell { border-left-color: var(--sell); }
.disp.whale { padding: 24px 28px; box-shadow: 0 0 40px rgba(212,175,55,.12); border-color: var(--gold); }
.disp.whale.buy { border-left-color: var(--gold); box-shadow: 0 0 40px rgba(57,255,20,.15); }
@keyframes slideIn { 0% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 1; transform: translateY(0); } }

.disp-icon { font-size: 1.2rem; }
.disp-icon.buy { color: var(--buy); }
.disp-icon.sell { color: var(--sell); }

.disp-main .disp-title {
  font-family: var(--head); font-size: 1.2rem; letter-spacing: 1.5px; color: var(--txt);
  margin-bottom: 4px;
}
.disp.whale .disp-title { font-size: 1.4rem; color: var(--gold); }
.disp-main .disp-title .tag-brother { color: var(--txt); }
.disp-main .disp-title .tag-whale { color: var(--gold); }
.disp-main .disp-title .tag-paper { color: var(--sell); }
.disp-main .disp-title .tag-amt { color: var(--gold); }
.disp-main .disp-title .tag-amt.sell { color: var(--sell); }
.disp-meta {
  font-family: var(--mono); font-size: .72rem; color: var(--dim);
  display: flex; gap: 14px; margin-top: 4px;
}
.disp-meta a { color: var(--gold-d); text-decoration: none; }
.disp-meta a:hover { color: var(--gold); }
.disp-narr {
  font-style: italic; color: var(--dim); font-size: .9rem;
  margin-top: 10px;
}

.disp-size {
  font-family: var(--mono); font-size: .7rem; color: var(--dim);
  text-align: right; white-space: nowrap;
}
.disp-size .h { font-size: 1rem; color: var(--txt); }

.load-more-btn {
  display: block; margin: 32px auto 0;
  padding: 12px 26px; background: transparent; border: 1px solid var(--border);
  color: var(--dim); font-family: var(--mono); font-size: .8rem;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: all .2s; border-radius: 3px;
}
.load-more-btn:hover { color: var(--gold); border-color: var(--border-hot); }

/* ===== FAMILY ROSTER ===== */
.roster-section { background: var(--bg); }
.roster-filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  max-width: 1000px; margin: 0 auto 30px;
}
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--dim); padding: 8px 16px; border-radius: 3px;
  font-family: var(--mono); font-size: .75rem; letter-spacing: 2px; font-weight: 600;
  cursor: pointer; transition: all .2s; text-transform: uppercase;
}
.filter-btn:hover { color: var(--gold); border-color: var(--border-hot); }
.filter-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.filter-btn span { margin-left: 6px; opacity: .7; font-weight: 400; }
.roster-search {
  background: rgba(0,0,0,.3); border: 1px solid var(--border);
  color: var(--txt); padding: 8px 14px; border-radius: 3px;
  font-family: var(--mono); font-size: .8rem;
  min-width: 220px; outline: none;
}
.roster-search:focus { border-color: var(--gold); }

.roster-body { max-width: 1100px; margin: 0 auto; }
.tier-block { margin-bottom: 40px; }
.tier-label {
  font-family: var(--head); font-size: 1.4rem; letter-spacing: 4px;
  color: var(--gold); margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-hot);
}
.tier-don .tier-label { color: var(--gold); font-size: 1.8rem; }
.tier-capo .tier-label { color: var(--gold-b); }
.tier-soldier .tier-label { color: var(--dim); }
.tier-bro .tier-label { color: var(--dim); font-size: 1.1rem; }

.roster-don-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.roster-capo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.roster-soldier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.roster-bro-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }

.rostcard {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  padding: 16px; transition: border-color .2s, transform .2s;
}
.rostcard:hover { border-color: var(--border-hot); transform: translateY(-2px); }
.rostcard.don { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(20,18,16,.85)); }
.rostcard.capo { border-color: rgba(212,175,55,.25); }
.rostcard.mattress { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,175,55,.12), rgba(20,18,16,.85)); }

.rost-rank { font-family: var(--head); font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.rost-rank.crown::before { content: '👑 '; }
.rost-rank.star::before { content: '★ '; }
.rost-rank.lock::before { content: '🔒 '; }
.rost-name { font-family: var(--body); font-size: 1rem; color: var(--gold); font-weight: 600; margin-top: 6px; }
.rost-addr { font-family: var(--mono); font-size: .72rem; color: var(--dim); margin-top: 4px; }
.rost-addr a { color: var(--dim); text-decoration: none; }
.rost-addr a:hover { color: var(--gold); }
.rost-bal { font-family: var(--head); font-size: 1.3rem; color: var(--txt); margin-top: 10px; letter-spacing: 1px; }
.don .rost-bal, .mattress .rost-bal { color: var(--gold); font-size: 1.5rem; }
.rost-pct {
  font-family: var(--mono); font-size: .7rem; color: var(--dim); margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
}
.rost-pct-bar { flex: 1; height: 3px; background: rgba(255,255,255,.05); border-radius: 2px; overflow: hidden; }
.rost-pct-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.rost-tag {
  display: inline-block; font-family: var(--mono); font-size: .55rem;
  padding: 2px 6px; border-radius: 8px; margin-top: 6px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 700;
}
.rost-tag.mattress-tag { background: rgba(212,175,55,.15); color: var(--gold); border: 1px solid var(--gold); }
.rost-tag.treasury { background: rgba(212,175,55,.1); color: var(--gold); }
.rost-tag.creator { background: rgba(57,255,20,.08); color: var(--hood-green); }

/* compact brotherhood pills */
.rostcard.bro {
  padding: 8px 10px; display: flex; flex-direction: column;
}
.rostcard.bro .rost-addr { font-size: .62rem; margin-top: 2px; }
.rostcard.bro .rost-bal { font-size: .85rem; margin-top: 4px; font-family: var(--mono); }

/* ===== SWAP WIDGET ===== */
.swap-section { background: var(--bg2); }
.swap-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  max-width: 1000px; margin: 0 auto; align-items: center;
}
.swap-widget {
  background: #0a0a0a; border: 1px solid var(--border-hot); border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5), 0 0 60px rgba(212,175,55,.08);
}
.swap-next { display: flex; flex-direction: column; gap: 18px; padding-left: 20px; }
.swap-step {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 20px; border: 1px solid var(--border); border-radius: 6px;
  background: var(--card);
  transition: border-color .25s, transform .25s;
}
.swap-step:hover { border-color: var(--border-hot); transform: translateX(4px); }
.swap-step-num {
  font-family: var(--head); font-size: 1.3rem; color: var(--gold);
  letter-spacing: 2px; min-width: 38px;
}
.swap-step > div:last-child { font-size: .95rem; color: var(--txt); line-height: 1.5; }
.swap-step a { color: var(--gold); text-decoration: none; font-weight: 600; }
.swap-step a:hover { text-decoration: underline; }
.swap-step code {
  font-family: var(--mono); font-size: .82rem;
  background: rgba(212,175,55,.08); color: var(--gold);
  padding: 2px 8px; border-radius: 3px;
  border: 1px solid var(--border-hot);
}
.swap-cta { margin-top: 6px; justify-content: center; text-align: center; }

/* ===== RATIONS ===== */
.rations-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0088cc 0%, #006699 100%);
  position: relative; overflow: hidden;
}
.rations-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .5;
}
.rations-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.rations-label {
  font-family: var(--mono); font-size: .85rem; color: rgba(255,255,255,.7);
  letter-spacing: 5px; text-transform: uppercase; margin-bottom: 12px;
}
.rations-head {
  font-family: var(--head); font-size: 3.6rem; color: #fff;
  line-height: 1; letter-spacing: 1px;
}
.rations-sub {
  font-size: 1rem; color: rgba(255,255,255,.85); margin-top: 18px;
  line-height: 1.6;
}
.rations-sub code {
  font-family: var(--mono); background: rgba(0,0,0,.3);
  padding: 2px 8px; border-radius: 3px; font-size: .85em;
}
.rations-btn {
  display: block; text-align: center;
  padding: 26px 30px; background: #fff; color: #0088cc;
  text-decoration: none; border-radius: 4px;
  font-family: var(--head); font-size: 1.5rem; letter-spacing: 3px;
  transition: all .2s;
}
.rations-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }

/* ===== GETTING STARTED ===== */
.start-section { background: var(--bg); }
.start-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.start-card {
  padding: 36px 28px; background: var(--card);
  border: 1px solid var(--border); border-radius: 4px;
  transition: all .3s; position: relative;
}
.start-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.start-num {
  font-family: var(--head); font-size: 4rem; color: var(--gold-d);
  letter-spacing: 2px; line-height: 1; margin-bottom: 12px;
}
.start-card:hover .start-num { color: var(--gold); }
.start-card h3 {
  font-family: var(--head); font-size: 1.8rem; color: var(--txt);
  letter-spacing: 2px; margin-bottom: 12px;
}
.start-card p { font-size: .95rem; color: var(--dim); line-height: 1.6; margin-bottom: 20px; }
.start-links { display: flex; gap: 10px; flex-wrap: wrap; }
.start-links a {
  font-family: var(--mono); font-size: .75rem; color: var(--gold);
  text-decoration: none; padding: 6px 14px;
  border: 1px solid var(--border-hot); border-radius: 3px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
  transition: all .2s;
}
.start-links a:hover { background: var(--gold); color: var(--bg); }
.start-links .start-cta { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px; text-align: center;
  background: #000; border-top: 1px solid var(--border-hot);
}
.footer-logo { width: 40px; height: 40px; opacity: .6; margin-bottom: 16px; }
.footer-tag {
  font-family: var(--head); font-size: 1.4rem; color: var(--gold);
  letter-spacing: 6px; margin-bottom: 12px;
}
.footer-info { font-size: .85rem; color: var(--dim); letter-spacing: 1px; }
.footer-info a { color: var(--gold); text-decoration: none; }
.footer-links {
  margin-top: 20px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--mono); font-size: .75rem; color: var(--dim);
  text-decoration: none; letter-spacing: 2px; text-transform: uppercase;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer {
  font-family: var(--mono); font-size: .7rem; color: var(--dim);
  margin-top: 20px; letter-spacing: 1px; opacity: .7;
}
.footer-ts {
  font-family: var(--mono); font-size: .65rem; color: var(--dim);
  margin-top: 8px; opacity: .5;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.8,.3,1), transform .9s cubic-bezier(.2,.8,.3,1);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* Stats stagger reveal */
.stats-strip.in .stat { animation: statIn .8s cubic-bezier(.2,.8,.3,1) backwards; }
.stats-strip.in .stat:nth-child(1) { animation-delay: .1s; }
.stats-strip.in .stat:nth-child(2) { animation-delay: .2s; }
.stats-strip.in .stat:nth-child(3) { animation-delay: .3s; }
.stats-strip.in .stat:nth-child(4) { animation-delay: .4s; }
@keyframes statIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }

/* Milestones stagger */
.curve-section.in .ms { animation: statIn .8s cubic-bezier(.2,.8,.3,1) backwards; }
.curve-section.in .ms:nth-child(1) { animation-delay: .2s; }
.curve-section.in .ms:nth-child(2) { animation-delay: .32s; }
.curve-section.in .ms:nth-child(3) { animation-delay: .44s; }

/* Start cards stagger */
.start-section.in .start-card { animation: statIn .8s cubic-bezier(.2,.8,.3,1) backwards; }
.start-section.in .start-card:nth-child(1) { animation-delay: .15s; }
.start-section.in .start-card:nth-child(2) { animation-delay: .28s; }
.start-section.in .start-card:nth-child(3) { animation-delay: .41s; }

/* Meme grid stagger */
.trenches.in .meme { animation: memeIn .8s cubic-bezier(.2,.8,.3,1) backwards; }
.trenches.in .meme:nth-child(1) { animation-delay: .05s; }
.trenches.in .meme:nth-child(2) { animation-delay: .1s; }
.trenches.in .meme:nth-child(3) { animation-delay: .15s; }
.trenches.in .meme:nth-child(4) { animation-delay: .2s; }
.trenches.in .meme:nth-child(5) { animation-delay: .25s; }
.trenches.in .meme:nth-child(6) { animation-delay: .3s; }
.trenches.in .meme:nth-child(7) { animation-delay: .35s; }
.trenches.in .meme:nth-child(8) { animation-delay: .4s; }
.trenches.in .meme:nth-child(9) { animation-delay: .45s; }
.trenches.in .meme:nth-child(10) { animation-delay: .5s; }
.trenches.in .meme:nth-child(11) { animation-delay: .55s; }
.trenches.in .meme:nth-child(12) { animation-delay: .6s; }
@keyframes memeIn { from { opacity: 0; transform: translateY(30px) scale(.94); } to { opacity: 1; transform: none; } }

/* Curve fill animated in when section reveals */
.curve-section.in .curve-fill { animation: curveFill 1.4s .3s cubic-bezier(.2,.8,.3,1) backwards; }
@keyframes curveFill { from { width: 0 !important; } }

/* Mattress huge counter glow on reveal */
.mattress-section.in .mattress-huge { animation: mattressGlow 1.8s cubic-bezier(.2,.8,.3,1) backwards; }
@keyframes mattressGlow {
  0% { opacity: 0; transform: scale(.92); text-shadow: 0 0 0 rgba(212,175,55,0); filter: blur(12px); }
  60% { text-shadow: 0 0 80px rgba(212,175,55,.6); }
  100% { opacity: 1; transform: scale(1); text-shadow: 0 0 40px rgba(212,175,55,.3); filter: blur(0); }
}

/* ===== TILT + HOVER POLISH ===== */
.tilt {
  transition: transform .4s cubic-bezier(.2,.8,.3,1);
  transform-style: preserve-3d;
}
.stat {
  cursor: default;
  transition: background .3s, transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(212,175,55,.1);
}
.stat:hover .stat-val { color: var(--gold); }

.ms {
  transition: all .35s cubic-bezier(.2,.8,.3,1);
}
.ms:hover {
  transform: translateY(-4px);
  border-color: var(--gold) !important;
  box-shadow: 0 10px 40px rgba(212,175,55,.15);
}
.ms:hover .ms-val { color: var(--gold); }

.rostcard {
  transition: all .4s cubic-bezier(.2,.8,.3,1);
}
.rostcard:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(212,175,55,.15);
}
.rostcard.don:hover {
  box-shadow: 0 20px 60px rgba(212,175,55,.35);
}

.start-card {
  transition: all .4s cubic-bezier(.2,.8,.3,1);
  will-change: transform;
}
.start-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,175,55,.2);
}

.disp {
  transition: all .35s cubic-bezier(.2,.8,.3,1) !important;
}
.disp:hover {
  transform: translateX(4px) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.disp.whale:hover {
  transform: translateX(4px) scale(1.01) !important;
  box-shadow: 0 14px 60px rgba(212,175,55,.25);
}

.meme {
  transition: transform .5s cubic-bezier(.2,.8,.3,1), border-color .3s, box-shadow .5s;
}
.meme:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}

.verify-btn, .rations-btn, .nav-cta {
  position: relative; overflow: hidden;
}
.verify-btn::after, .rations-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.3) 50%, transparent 70%);
  transform: translateX(-150%); transition: transform .9s;
}
.verify-btn:hover::after, .rations-btn:hover::after { transform: translateX(150%); }

/* Magnetic CTA (JS applies transform) */
.magnetic { display: inline-flex; will-change: transform; }

/* Custom focus ring */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .hero-char { height: 85vh; max-width: 75%; right: -10%; opacity: .8; }
  .hero-content { padding: 16vh 5vw 0; }
  .hero-title { font-size: clamp(3.5rem, 14vw, 10rem); }
  .manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-head { font-size: 12vw; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .meme-grid { grid-template-columns: repeat(3, 1fr); }
  .rations-inner { grid-template-columns: 1fr; }
  .rations-head { font-size: 2.6rem; }
  .start-grid { grid-template-columns: 1fr; }
  .section-head { font-size: 3.6rem; }
  .roster-don-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-capo-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-soldier-grid { grid-template-columns: repeat(3, 1fr); }
  .roster-bro-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .nav .wrap { height: 60px; padding: 0 14px; gap: 10px; justify-content: space-between; }
  .nav-meta { display: none; }
  .nav-tag { display: none; }
  .nav-brand-text h1 { font-size: 1.05rem; letter-spacing: 2.5px; }
  .nav-brand { padding: 4px 6px; gap: 10px; }
  .nav-logo { width: 28px; height: 28px; }
  .nav-burger { display: flex; margin-left: auto; }

  /* Slide-in panel from right */
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: #050505;
    background-image:
      linear-gradient(180deg, rgba(212,175,55,.06), transparent 20%, transparent 80%, rgba(212,175,55,.06)),
      radial-gradient(ellipse 100% 40% at 100% 0%, rgba(212,175,55,.1), transparent 60%);
    border-left: 2px solid var(--gold);
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    padding: 80px 26px 40px; gap: 0;
    z-index: 100;
    transform: translateX(110%);
    transition: transform .45s cubic-bezier(.2,.8,.3,1);
    overflow-y: auto;
    box-shadow: -30px 0 80px rgba(0,0,0,.8);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    display: flex !important; align-items: center;
    padding: 18px 4px !important;
    font-size: 1.15rem !important; letter-spacing: 2.5px !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: var(--txt) !important;
    position: relative;
  }
  .nav-link::before {
    content: '→'; margin-right: 12px;
    color: var(--gold); opacity: 0;
    transform: translateX(-8px);
    transition: all .3s cubic-bezier(.2,.8,.3,1);
  }
  .nav-link::after { display: none !important; }
  .nav-link:hover, .nav-link:active { color: var(--gold) !important; background: transparent; padding-left: 10px !important; }
  .nav-link:hover::before, .nav-link:active::before { opacity: 1; transform: translateX(0); }
  .nav-cta {
    margin: 24px 0 0 !important;
    padding: 16px 22px !important; font-size: .9rem !important;
    text-align: center; justify-content: center;
    letter-spacing: 3px !important;
  }

  /* Hero mobile — override the 56% max-width from desktop, everything full-width centered */
  .hero-content > * { max-width: 100%; }
  .hero-content { padding: 13vh 22px 0; text-align: center; }
  .hero-eyebrow { margin: 0 auto; }
  .hero-title { justify-content: center; font-size: clamp(3rem, 16vw, 5.5rem); line-height: .9; }
  .hero-sub { margin: 12px auto 0; max-width: 320px; }
  .hero-ctas { justify-content: center; margin-top: 28px; }
  .btn-primary, .btn-ghost { padding: 13px 20px; font-size: .85rem; letter-spacing: 2px; }
  .hero-live { bottom: 30px; right: auto; left: 50%; transform: translateX(-50%); font-size: .62rem; padding: 6px 14px; }
  .hero-scroll { display: none; }

  /* Mobile hero: character behind text, text dominates */
  .hero { min-height: 100vh; }
  .hero-halo { background: radial-gradient(circle 60% at 50% 55%, rgba(212,175,55,.15), transparent 65%); }
  .hero-char {
    height: 75vh; width: 100%; max-width: 100%; right: auto; left: 50%;
    transform: translateX(-50%); opacity: .28;
    object-position: center bottom;
  }
  .hero::after { box-shadow: inset 0 -80px 180px 40px rgba(0,0,0,.98), inset 0 40px 100px rgba(0,0,0,.85); }
  .hero-content { padding: 14vh 22px 0; text-align: center; }
  .hero-eyebrow { font-size: .62rem; letter-spacing: 2.5px; padding: 5px 12px; margin: 0 auto; }
  .hero-title { font-size: clamp(3.2rem, 17vw, 6rem); justify-content: center; }
  .hero-sub { font-size: .9rem; letter-spacing: 2px; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .btn-primary, .btn-ghost { padding: 13px 20px; font-size: .9rem; letter-spacing: 2px; }
  .hero-live { bottom: 64px; font-size: .72rem; padding: 8px 14px; }
  .hero-scroll { bottom: 16px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-val { font-size: 1.6rem; }
  .curve-pct { font-size: 4.2rem; }
  .mattress-huge { font-size: 18vw; }
  .section { padding: 70px 0; }
  .section-head { font-size: 2.6rem; }
  .section-kicker { margin-bottom: 40px; }
  .meme-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-box { height: 340px; }
  .milestones { grid-template-columns: 1fr; }
  .disp { grid-template-columns: auto 1fr; padding: 14px 16px; }
  .disp-size { grid-column: 1/-1; text-align: left; font-size: .65rem; }
  .disp-main .disp-title { font-size: .95rem; flex-wrap: wrap; }
  .roster-don-grid, .roster-capo-grid, .roster-soldier-grid, .roster-bro-grid { grid-template-columns: 1fr 1fr; }
  .roster-search { min-width: 0; width: 100%; }
  .swap-wrap { grid-template-columns: 1fr; gap: 24px; }
  .swap-next { padding-left: 0; }
  .manifesto { padding: 80px 0; }
  .manifesto-head { font-size: 16vw; }
  .manifesto-body p { font-size: 1rem; }
  .manifesto-body .lead { font-size: 1.15rem; }
  .rations-head { font-size: 2rem; }
  .rations-btn { padding: 20px; font-size: 1.15rem; }
}
