/* ============================================
   BROKE OR BILLIONAIRE — GLOBAL STYLES
   The business side of sports.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500&family=Inter+Tight:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --black: #080808;
  --black-2: #0e0e0e;
  --black-3: #141414;
  --gold: #D4AF37;
  --gold-bright: #E8C547;
  --gold-dim: #8a7124;
  --white: #F2F2F2;
  --white-dim: #c8c5bf;
  --gray: #6a6862;
  --gray-dark: #2a2825;
  --line: rgba(242, 242, 242, 0.08);
  --line-strong: rgba(242, 242, 242, 0.16);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================
   TICKER BAR (top of every page)
   ============================================ */
.ticker {
  background: var(--black-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 50;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tick 60s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding-left: 100%;
}
.ticker-track span { display: inline-flex; gap: 0.5rem; align-items: center; }
.ticker-track .up { color: var(--gold); }
.ticker-track .down { color: #c44; }
.ticker-track .sep { color: var(--gray); }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-logo img { height: 28px; width: auto; }
.nav-logo .or { color: var(--gold); font-weight: 500; padding: 0 0.15em; }
.nav-logo .bil { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  align-items: center;
}
.nav-links a {
  color: var(--white-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.65rem 1.2rem;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; }

@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black-2); flex-direction: column; padding: 1.5rem var(--pad); gap: 1.2rem;
    border-bottom: 1px solid var(--line); align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.eyebrow.no-bar::before { display: none; }

.kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
}
h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; }

.serif-ital { font-family: var(--serif); font-style: italic; font-weight: 400; }
.gold { color: var(--gold); }

p { color: var(--white-dim); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55; color: var(--white-dim); max-width: 60ch; }

/* ============================================
   LAYOUT
   ============================================ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.wrap-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
section.tight { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.divider-strong { background: var(--line-strong); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HERO (home)
   ============================================ */
.hero {
  min-height: calc(100vh - 32px - 60px);
  display: flex;
  align-items: center;
  position: relative;
  padding: clamp(4rem, 10vh, 8rem) 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,175,55,0.06), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212,175,55,0.04), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-headline {
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 1.5rem 0 2rem;
  max-width: 18ch;
}
.hero-headline .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--white-dim);
  max-width: 52ch;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-meta strong { color: var(--white); font-weight: 500; }

/* ============================================
   SECTION HEADERS (with rule)
   ============================================ */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-strong);
  flex-wrap: wrap;
}
.sec-head-l { max-width: 42rem; }
.sec-head h2 { margin-top: 0.6rem; }
.sec-head-r { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray); padding-bottom: 0.4rem; }

/* ============================================
   VIDEO GRID — vertical Shorts (9:16)
   ============================================ */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  gap: 2.5rem 1.8rem;
  justify-content: start;
}
@media (max-width: 600px) {
  .videos { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
}
.video {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--black-3);
  border: 1px solid var(--line);
  overflow: hidden;
  max-width: 100%;
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-frame.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(212,175,55,0.04) 12px, rgba(212,175,55,0.04) 13px),
    var(--black-3);
}
.video-frame.placeholder span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dim);
  text-align: center; padding: 0 1rem;
}
.video-meta {
  display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}
.video-meta .dot { color: var(--gray); }
.video-meta .cat { color: var(--gold); }
.video-meta .date { color: var(--gray); }
.video h3 { font-size: clamp(0.95rem, 1.3vw, 1.15rem); font-weight: 600; line-height: 1.25; }
.video p { font-size: 0.88rem; color: var(--gray); line-height: 1.45; }

/* ============================================
   EMAIL CAPTURE
   ============================================ */
.capture {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.capture::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.08), transparent 60%);
  pointer-events: none;
}
.capture-inner { position: relative; text-align: center; }
.capture h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 22ch;
  margin: 0.8rem auto 1rem;
}
.capture p { max-width: 48ch; margin: 0 auto 2.5rem; }
.capture-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: var(--black);
  padding: 0.4rem;
}
.capture-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 14px;
  outline: none;
}
.capture-form input::placeholder { color: var(--gray); }
.capture-form button {
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.capture-form button:hover { background: var(--gold-bright); }
.capture-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 1.2rem;
}

/* ============================================
   BEEHIIV EMBED
   ============================================ */
.bb-embed {
  max-width: 480px;
  margin: 0 auto;
  min-height: 80px;
}
.bb-embed-lg { max-width: 540px; min-height: 100px; }
.bb-embed iframe { max-width: 100% !important; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}
.footer-brand img { height: 40px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; max-width: 36ch; }
.footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a {
  color: var(--white-dim); font-size: 0.9rem; transition: color 0.2s ease;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-head {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.05), transparent 60%);
  pointer-events: none;
}
.page-head-inner { position: relative; z-index: 1; }
.page-head h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 400;
  margin: 1rem 0 1.5rem;
  max-width: 18ch;
}
.page-head .lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }

/* ============================================
   CATEGORY CHIPS
   ============================================ */
.chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--white-dim);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.cat-block {
  margin-bottom: 5rem;
}
.cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cat-head-l { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.cat-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
}
.cat-head .num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.15em; color: var(--gold);
}
.cat-head p {
  font-size: 0.9rem; color: var(--gray); max-width: 40ch;
  font-family: var(--sans);
}

/* ============================================
   PLAYBOOK PAGE
   ============================================ */
.pb-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.pb-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,175,55,0.1), transparent 55%);
  pointer-events: none;
}
.pb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .pb-grid { grid-template-columns: 1fr; } }
.pb-cover {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(135deg, #1a1611 0%, #0a0a0a 100%);
  border: 1px solid var(--gold-dim);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.08);
}
.pb-cover::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(212,175,55,0.18), transparent 60%);
  pointer-events: none;
}
.pb-cover-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; justify-content: space-between;
  position: relative; z-index: 1;
}
.pb-cover-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  margin-top: auto;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.pb-cover-title .em { font-style: italic; color: var(--gold); }
.pb-cover-foot {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212,175,55,0.2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex; justify-content: space-between;
  position: relative; z-index: 1;
}
.pb-info h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  margin: 1rem 0 1.5rem;
}
.pb-price {
  display: flex; align-items: baseline; gap: 1rem;
  margin: 2rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pb-price-num { font-family: var(--serif); font-size: 3rem; font-weight: 500; color: var(--gold); }
.pb-price-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray); }

.rules-list {
  list-style: none;
  counter-reset: rule;
}
.rules-list li {
  counter-increment: rule;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.rules-list li::before {
  content: counter(rule, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}
.rules-list .rule-text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
}
.rules-list .rule-athlete {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
@media (max-width: 600px) {
  .rules-list li { grid-template-columns: auto 1fr; }
  .rules-list .rule-athlete { grid-column: 2; margin-top: 0.4rem; }
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  max-width: 28ch;
  margin: 4rem auto;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -3.5rem; left: 50%; transform: translateX(-50%);
  font-size: 8rem; color: var(--gold); opacity: 0.25;
  font-family: var(--serif); line-height: 1;
  font-style: normal;
  font-weight: 500;
}
.pull-quote-attr {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.about-block:last-child { border-bottom: none; }
@media (max-width: 760px) { .about-block { grid-template-columns: 1fr; gap: 1rem; } }
.about-block .label {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  position: sticky; top: 100px;
}
.about-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.about-block p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--white-dim);
  margin-bottom: 1rem;
  max-width: 60ch;
}

.about-block p.about-belief {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 0;
}
.about-block p.about-belief .em { color: var(--gold); font-style: italic; }

/* ============================================
   NEWSLETTER PAGE
   ============================================ */
.nl-page {
  min-height: calc(100vh - 32px - 60px);
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.nl-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.07), transparent 60%);
  pointer-events: none;
}
.nl-inner { text-align: center; position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 var(--pad); }
.nl-inner h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  margin: 1.5rem 0 1.5rem;
  letter-spacing: -0.025em;
}
.nl-inner h1 .em { color: var(--gold); font-style: italic; }
.nl-inner .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin: 0 auto 3rem;
}
.nl-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: var(--black-2);
  padding: 0.4rem;
}
.nl-form input {
  flex: 1; background: transparent; border: none; color: var(--white);
  padding: 1rem 1.2rem; font-size: 15px; outline: none;
}
.nl-form input::placeholder { color: var(--gray); }
.nl-form button {
  background: var(--gold); color: var(--black);
  padding: 1rem 1.6rem; font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s ease;
}
.nl-form button:hover { background: var(--gold-bright); }
.nl-meta {
  display: flex; gap: 2.5rem; justify-content: center;
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray);
}
.nl-meta strong { color: var(--white); }

/* ============================================
   PARTNERSHIPS PAGE
   ============================================ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.partner-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: border-color 0.2s ease;
}
.partner-card:hover { border-color: var(--gold-dim); }
.partner-card .num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1.2rem;
}
.partner-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.partner-card p { font-size: 0.95rem; line-height: 1.5; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  margin-top: 2rem;
}
.pillar {
  background: var(--black);
  padding: 2rem;
}
.pillar .num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1rem;
}
.pillar h4 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  margin-bottom: 0.6rem; line-height: 1.2;
}
.pillar p { font-size: 0.9rem; }

/* ============================================
   FORMS (contact, partnerships)
   ============================================ */
.form {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
  margin-top: 3rem;
}
.form-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--black-2);
  border: 1px solid var(--line-strong);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-size: 15px;
  font-family: var(--sans);
  transition: border-color 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form textarea { resize: vertical; min-height: 140px; }
.form button { justify-self: start; }

/* ============================================
   AFFILIATE / RESOURCES
   ============================================ */
.resource {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}
.resource:last-child { border-bottom: none; }
@media (max-width: 600px) { .resource { grid-template-columns: 1fr; gap: 1.5rem; } }
.resource .num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.8rem;
}
.resource h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.resource p { max-width: 50ch; font-size: 0.95rem; }
.resource-disclaimer {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray); max-width: 60ch;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.25s; }
.reveal-3 { animation-delay: 0.4s; }
.reveal-4 { animation-delay: 0.55s; }
.reveal-5 { animation-delay: 0.7s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.placeholder-note {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px dashed var(--gold-dim);
  padding: 0.3rem 0.6rem;
  margin-left: 0.5rem;
}
