/* ═══════════════════════════════════════════════════════════════
   DaJLGShow — Official Stylesheet
   Per Design & Launch Plan · Green Ohana Holdings LLC
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Midnight Navy backgrounds */
  --midnight-1:   #050B18;
  --midnight-2:   #071426;
  --midnight-3:   #0A1930;
  --card-bg:      #0D1A2D;
  --card-border:  rgba(199, 162, 75, 0.25);

  /* Brand accents */
  --gold:         #C7A24B;
  --gold-light:   #E2C47A;
  --emerald:      #063D2B;
  --emerald-mid:  #0A5C40;
  --spotify-grn:  #1DB954;

  /* Text */
  --text-primary:   #F4F2EA;
  --text-secondary: #B9C1CB;
  --text-muted:     #7F8A98;

  /* Fonts */
  --display: 'Bebas Neue', sans-serif;
  --body:    'Inter', sans-serif;
  --mono:    'JetBrains Mono', monospace;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--midnight-1);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ─── LOGO COLORS ────────────────────────────────────────────── */
.da   { color: var(--gold); }
.jlg  { color: var(--text-primary); }
.show { color: var(--emerald-mid); }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(5, 11, 24, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(199, 162, 75, 0.12);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--gold); transition: color 0.2s; }
.nav-cta {
  background: var(--gold);
  color: var(--midnight-1);
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
}

/* ─── SECTION WRAPPER ────────────────────────────────────────── */
.section-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 88px 28px;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0.025em;
  margin-bottom: 48px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 96px 28px 80px;
  background:
    radial-gradient(ellipse at 72% 45%, rgba(6, 61, 43, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(199, 162, 75, 0.07) 0%, transparent 45%),
    var(--midnight-1);
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
}
.show-title {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0.015em;
  margin-bottom: 22px;
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* WAVEFORM */
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 52px;
  margin-bottom: 30px;
}
.waveform span {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: var(--gold);
  animation: wavepulse 1.5s ease-in-out infinite;
}
.waveform span:nth-child(1)  { height:6px;  animation-delay:0s; }
.waveform span:nth-child(2)  { height:14px; animation-delay:.06s; }
.waveform span:nth-child(3)  { height:24px; animation-delay:.12s; }
.waveform span:nth-child(4)  { height:36px; animation-delay:.18s; }
.waveform span:nth-child(5)  { height:46px; animation-delay:.24s; }
.waveform span:nth-child(6)  { height:40px; animation-delay:.30s; background: var(--emerald-mid); }
.waveform span:nth-child(7)  { height:30px; animation-delay:.36s; background: var(--emerald-mid); }
.waveform span:nth-child(8)  { height:50px; animation-delay:.42s; }
.waveform span:nth-child(9)  { height:38px; animation-delay:.48s; }
.waveform span:nth-child(10) { height:22px; animation-delay:.54s; }
.waveform span:nth-child(11) { height:44px; animation-delay:.60s; background: var(--emerald-mid); }
.waveform span:nth-child(12) { height:52px; animation-delay:.66s; }
.waveform span:nth-child(13) { height:34px; animation-delay:.72s; background: var(--gold-light); }
.waveform span:nth-child(14) { height:46px; animation-delay:.78s; }
.waveform span:nth-child(15) { height:28px; animation-delay:.84s; }
.waveform span:nth-child(16) { height:40px; animation-delay:.90s; background: var(--emerald-mid); }
.waveform span:nth-child(17) { height:52px; animation-delay:.96s; }
.waveform span:nth-child(18) { height:36px; animation-delay:1.02s; }
.waveform span:nth-child(19) { height:20px; animation-delay:1.08s; background: var(--emerald-mid); }
.waveform span:nth-child(20) { height:32px; animation-delay:1.14s; }
.waveform span:nth-child(21) { height:44px; animation-delay:1.20s; }
.waveform span:nth-child(22) { height:22px; animation-delay:1.26s; background: var(--gold-light); }
.waveform span:nth-child(23) { height:12px; animation-delay:1.32s; }
.waveform span:nth-child(24) { height:6px;  animation-delay:1.38s; }

@keyframes wavepulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
  50%       { transform: scaleY(1);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .waveform span { animation: none; opacity: 0.6; }
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--spotify-grn);
  color: #000;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-spotify:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,185,84,0.35);
  color: #000;
}
.btn-pueowatch {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-pueowatch:hover { background: var(--gold); color: var(--midnight-1); }
.hero-brief-link {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--mono);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.hero-brief-link:hover { color: var(--gold); }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
}
.dot { color: var(--gold); opacity: 0.5; }

/* HOST CARD */
.host-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(199, 162, 75, 0.28);
  box-shadow: 0 28px 72px rgba(0,0,0,0.55);
}
.host-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.host-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(5, 11, 24, 0.92);
  border-top: 1px solid rgba(199, 162, 75, 0.25);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-dm {
  background: var(--gold);
  color: var(--midnight-1);
  font-family: var(--display);
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.badge-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.badge-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--mono);
  line-height: 1.4;
}

/* ─── FEATURED EPISODE ───────────────────────────────────────── */
.featured-episode {
  background: var(--midnight-2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--emerald-mid));
}
.ep-badge {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.ep-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.ep-summary {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 20px;
  max-width: 600px;
}
.ep-meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
  margin-bottom: 24px;
}
.ep-cat {
  background: rgba(199,162,75,0.1);
  color: var(--gold);
  border: 1px solid rgba(199,162,75,0.25);
  padding: 2px 10px;
  border-radius: 20px;
}
.ep-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--spotify-grn);
  color: #000;
  padding: 12px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  transition: transform 0.2s;
}
.btn-play:hover { transform: translateY(-2px); color: #000; }
.btn-share {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-secondary);
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-family: var(--body);
  transition: border-color 0.2s, color 0.2s;
}
.btn-share:hover { border-color: var(--gold); color: var(--gold); }

/* Episode artwork */
.episode-artwork {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--midnight-3) 100%);
  border-radius: 10px;
  border: 1px solid rgba(199,162,75,0.2);
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artwork-inner { text-align: center; padding: 20px; }
.artwork-logo {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.artwork-ep {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}
.artwork-title {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}
.artwork-host {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--mono);
}

/* Episode list */
.upcoming-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}
.episode-list { display: flex; flex-direction: column; gap: 3px; margin-bottom: 36px; }
.ep-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.ep-row:hover { border-color: var(--card-border); background: #102138; }
.ep-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  min-width: 44px;
  flex-shrink: 0;
}
.ep-body { flex: 1; }
.ep-row-title { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.ep-row-desc { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 4px; line-height: 1.5; }
.ep-row-meta { font-size: 0.72rem; color: var(--text-muted); font-family: var(--mono); }
.ep-status {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--mono);
  font-weight: 600;
  white-space: nowrap;
}
.ep-status.upcoming {
  background: rgba(199,162,75,0.1);
  color: var(--gold);
  border: 1px solid rgba(199,162,75,0.22);
}
.all-eps-cta { text-align: center; }
.btn-spotify-outline {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--spotify-grn);
  color: var(--spotify-grn);
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.btn-spotify-outline:hover { background: rgba(29,185,84,0.1); }

/* ─── WHY LISTEN ─────────────────────────────────────────────── */
.why-listen { background: var(--midnight-1); }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.pillar {
  background: var(--card-bg);
  border: 1px solid rgba(199,162,75,0.1);
  border-radius: 12px;
  padding: 30px 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover { border-color: var(--card-border); transform: translateY(-4px); }
.pillar-icon { font-size: 1.9rem; margin-bottom: 14px; }
.pillar h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin-bottom: 10px;
}
.pillar p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.68; }

/* ─── ABOUT HOST ─────────────────────────────────────────────── */
.about-host { background: var(--midnight-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.about-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.about-text { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.research-callout {
  background: rgba(199,162,75,0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.research-quote { font-size: 0.95rem; color: var(--text-primary); font-style: italic; line-height: 1.65; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cred {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--mono);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.about-links { display: flex; flex-direction: column; gap: 10px; }
.about-link {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(199,162,75,0.25);
  padding-bottom: 2px;
  display: inline-block;
  width: fit-content;
  transition: border-color 0.2s;
}
.about-link:hover { border-color: var(--gold); }
.about-stats { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 24px;
}
.stat-card.gold { background: rgba(199,162,75,0.07); border-color: rgba(199,162,75,0.28); }
.stat-num {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}
.stat-lbl { font-size: 0.78rem; color: var(--text-muted); font-family: var(--mono); }

/* ─── SUBSCRIBE ──────────────────────────────────────────────── */
.subscribe-section {
  background: linear-gradient(140deg, var(--emerald) 0%, #031a11 100%);
}
.subscribe-card { max-width: 680px; margin: 0 auto; text-align: center; }
.subscribe-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  line-height: 1.05;
}
.subscribe-desc { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.subscribe-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.38); }
.form-input:focus { border-color: var(--gold); }
.form-select { color: rgba(255,255,255,0.6); }
.form-select option { background: var(--midnight-2); color: var(--text-primary); }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.consent-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.btn-subscribe-submit {
  width: 100%;
  background: var(--gold);
  color: var(--midnight-1);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--body);
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-subscribe-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.subscribe-fine {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  font-family: var(--mono);
  margin-top: 14px;
}

/* ─── ISLAND CYBERSECURE CTA ─────────────────────────────────── */
.ics-cta { background: var(--midnight-1); }
.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 52px;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.025em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.cta-desc { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 16px; max-width: 560px; }
.cta-distinction {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--mono);
  line-height: 1.6;
}
.cta-distinction strong { color: var(--gold); }
.cta-actions { display: flex; flex-direction: column; gap: 14px; min-width: 260px; }
.btn-assess {
  background: var(--gold);
  color: var(--midnight-1);
  padding: 16px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-assess:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-learn {
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-secondary);
  padding: 15px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-learn:hover { border-color: var(--text-primary); color: var(--text-primary); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--midnight-2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.footer-logo {
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.footer-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 6px; }
.footer-tagline { font-size: 0.8rem; color: var(--gold); font-style: italic; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 14px; font-size: 1.3rem; }
.footer-socials a { transition: opacity 0.2s; }
.footer-socials a:hover { opacity: 0.7; }
.footer-nav { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-hd {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-family: var(--mono);
  margin-bottom: 4px;
}
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-disclosure {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-family: var(--mono);
}
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 28px 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(127,138,152,0.7);
  font-family: var(--mono);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-host { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { display: none; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-right { display: none; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { flex-wrap: wrap; gap: 28px; }
}
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .section-wrap { padding: 64px 20px; }
}
