/* ==========================================================
   SONGMONKEY v3 — Light Mode · Indie Record Sleeve
   Cream paper background, black ink, orange accent
   ========================================================== */

:root {
  /* Core palette */
  --paper: #FFFFFF;        /* pure white background */
  --paper-warm: #F6F6F6;   /* very light gray for cards */
  --paper-deep: #EFEFEF;   /* cards / surfaces */
  --ink: #0a0a0a;          /* near-black for text */
  --ink-soft: #2a2a2a;     /* secondary text */
  --ink-mute: #6b6b6b;     /* tertiary, captions */
  --ink-faint: #a0a0a0;    /* placeholders */

  --orange: #FF6B1A;
  --orange-hover: #e85d10;
  --orange-soft: #ff8a47;
  --orange-tint: rgba(255, 107, 26, 0.08);
  --orange-tint-2: rgba(255, 107, 26, 0.18);

  --line: #d8d2c4;         /* paper line / borders */
  --line-soft: #e8e3d6;
  --green: #1a8a4a;        /* success, "open" badges */
  --gold: #b08d3a;

  --font-display: 'Archivo Black', 'Impact', sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle paper grain overlay across whole site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(ellipse at top, rgba(0,0,0,0.015) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg, transparent, transparent 2px,
      rgba(0,0,0,0.012) 2px, rgba(0,0,0,0.012) 3px
    );
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
.orange { color: var(--orange); }

/* ============================================
   TOP NAV
   ============================================ */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  height: 70px;
}
.nav-left { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.menu-btn {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 8px; border-radius: 4px;
}
.menu-btn span { width: 18px; height: 2px; background: var(--ink); display: block; }

.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: -0.5px; text-transform: uppercase;
  color: var(--ink);
}
.logo-mark {
  font-size: 32px;
  display: inline-block;
}

.nav-search {
  flex: 1; max-width: 580px; margin: 0 auto;
  display: flex; align-items: stretch;
  border: 1.5px solid var(--ink); border-radius: 4px;
  overflow: hidden; background: var(--paper);
  transition: border-color .15s;
}
.nav-search:focus-within { border-color: var(--orange); }
.nav-search input {
  flex: 1; padding: 10px 18px;
  background: transparent; border: none; color: var(--ink);
  font-size: 14px; font-family: var(--font-body); outline: none;
}
.nav-search input::placeholder { color: var(--ink-faint); }
.search-btn {
  padding: 0 18px; background: var(--ink); color: var(--paper);
  font-size: 16px; font-weight: 700; transition: background .15s;
}
.search-btn:hover { background: var(--orange); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: all .12s;
}
.nav-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

.nav-btn {
  padding: 9px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.3px;
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink);
  transition: all .15s;
  text-transform: uppercase;
}
.nav-btn:hover { background: var(--orange); border-color: var(--orange); }
.nav-btn.outline {
  background: transparent; color: var(--ink);
}
.nav-btn.outline:hover { background: var(--ink); color: var(--paper); }

/* ============================================
   LAYOUT
   ============================================ */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative;
  z-index: 2;
}

/* ============================================
   HERO — record sleeve typography
   ============================================ */
.hero {
  padding: 72px 0 60px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  flex: 0 0 auto;
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}
.hero-tag::after { display: none; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 1000px;
  color: var(--ink);
}
.hero-title .accent {
  color: var(--orange);
  font-style: italic;
  font-family: var(--font-display);
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  background: var(--ink); color: var(--paper);
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid var(--ink);
  transition: all .18s;
  cursor: pointer; font-family: inherit;
  position: relative;
}
.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary.orange-fill {
  background: var(--orange); border-color: var(--orange); color: var(--ink);
}
.btn-primary.orange-fill:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  background: transparent; color: var(--ink);
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 4px;
  transition: all .18s; cursor: pointer; font-family: inherit;
}
.btn-ghost:hover {
  background: var(--ink); color: var(--paper);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--orange);
}

/* ============================================
   TWO-SIDED CARDS — writer × singer
   ============================================ */
.two-sided {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 56px 0;
  background: var(--paper-warm);
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
}
.side-card { padding: 36px; }
.side-card-writer { border-right: 1px dashed var(--ink); }
.side-card-singer { border-left: 1px dashed var(--ink); }

.side-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 14px;
  font-weight: 700; text-transform: uppercase;
}
.side-card h3 {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1.05;
  letter-spacing: -0.5px; text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink);
}
.side-card p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.6;
}
.side-divider-x {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 56px; color: var(--orange);
  padding: 0 12px;
  background: var(--paper);
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}
@media (max-width: 800px) {
  .two-sided { grid-template-columns: 1fr; }
  .side-card-writer { border-right: none; border-bottom: 1px dashed var(--ink); }
  .side-card-singer { border-left: none; }
  .side-divider-x {
    border-left: none; border-right: none;
    border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
    padding: 8px;
    font-size: 40px;
  }
}

/* ============================================
   STATS STRIP — splits
   ============================================ */
.split-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 56px 0;
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.split-cell {
  padding: 28px 24px;
  border-right: 1px dashed var(--ink);
  position: relative;
}
.split-cell:last-child { border-right: none; }
.split-cell.feature { background: var(--orange); color: var(--ink); }
.split-num {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
  color: var(--ink);
}
.split-cell.feature .split-num { color: var(--ink); }
.split-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  color: var(--ink-soft);
}
.split-cell.feature .split-label { color: var(--ink); }
@media (max-width: 700px) {
  .split-strip { grid-template-columns: repeat(2, 1fr); }
  .split-cell:nth-child(2) { border-right: none; }
  .split-cell:nth-child(1), .split-cell:nth-child(2) { border-bottom: 1px dashed var(--ink); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin: 80px 0 32px;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.section-title .accent { color: var(--orange); font-style: italic; }
.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.55;
}

/* ============================================
   HOW IT WORKS — 4 step grid
   ============================================ */
.how-flow {
  margin: 48px 0 80px;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.flow-step {
  padding: 28px 24px;
  border-right: 1px dashed var(--ink);
  transition: background .15s;
  cursor: default;
}
.flow-step:last-child { border-right: none; }
.flow-step:hover { background: var(--paper-warm); }
.step-n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.step-icon {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1;
}
.flow-step h3 {
  font-family: var(--font-display);
  font-size: 18px; text-transform: uppercase;
  letter-spacing: -0.2px; margin-bottom: 8px;
  color: var(--ink);
}
.flow-step p {
  font-size: 13px; color: var(--ink-soft); line-height: 1.55;
}
@media (max-width: 900px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2) { border-right: none; }
  .flow-step:nth-child(1), .flow-step:nth-child(2) { border-bottom: 1px dashed var(--ink); }
}
@media (max-width: 500px) {
  .flow-steps { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px dashed var(--ink); }
  .flow-step:last-child { border-bottom: none; }
}

/* ============================================
   FEATURED COLLAB SPOTLIGHT
   ============================================ */
.collab-spotlight {
  margin: 32px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 800px) { .collab-spotlight { grid-template-columns: 1fr; } }

.collab-art {
  aspect-ratio: 1/1;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.collab-art::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.95;
}
.collab-art::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12%; aspect-ratio: 1;
  background: var(--ink);
  border: 4px solid var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.collab-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--paper);
  position: relative;
  z-index: 3;
}
.collab-art-bottom { position: relative; z-index: 3; }
.collab-art-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--paper);
  margin-bottom: 6px;
}
.collab-art-credit {
  font-size: 13px;
  color: var(--paper);
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.collab-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collab-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--ink);
}
.collab-info > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}
.collab-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 28px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
}
.collab-stat {
  padding: 18px;
  border-right: 1px dashed var(--ink);
}
.collab-stat:last-child { border-right: none; }
.collab-stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.collab-stat span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ============================================
   SONG GRID
   ============================================ */
.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.song-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  transition: all .18s;
  display: flex;
  flex-direction: column;
}
.song-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--orange);
}

.song-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
/* Vinyl-record style thumbs */
.song-thumb::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 75%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--orange) 0%, var(--orange) 30%, var(--ink) 30.5%, var(--ink) 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.song-thumb::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14%; aspect-ratio: 1;
  background: var(--ink);
  border: 3px solid var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.song-thumb.thumb-2::before {
  background: radial-gradient(circle, var(--paper) 0%, var(--paper) 30%, var(--ink) 30.5%, var(--ink) 100%);
}
.song-thumb.thumb-3::before {
  background: radial-gradient(circle, var(--orange-soft) 0%, var(--orange-soft) 30%, var(--ink) 30.5%, var(--ink) 100%);
}
.song-thumb.thumb-4::before {
  background: radial-gradient(circle, var(--gold) 0%, var(--gold) 30%, var(--ink) 30.5%, var(--ink) 100%);
}

.thumb-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 4;
  text-transform: uppercase;
}
.thumb-tag.open {
  background: var(--green);
  color: var(--paper);
}
.thumb-tag.approval {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 3px;
  border: 1.5px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  z-index: 4;
}
.play-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--paper);
  opacity: 0;
  background: rgba(10, 10, 10, 0.55);
  transition: opacity .2s;
  z-index: 3;
}
.song-thumb:hover .play-overlay { opacity: 1; }

.song-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.song-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.1;
  text-transform: uppercase;
}
.written-by {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.writer-link {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color .12s;
}
.writer-link:hover { border-bottom-color: var(--orange); }

.versions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.versions-stack {
  display: flex;
  align-items: center;
}
.ver-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--paper);
  border: 2px solid var(--paper);
  margin-left: -8px;
  background: var(--ink);
}
.ver-avatar:first-child { margin-left: 0; }
.avatar-1 { background: var(--orange); color: var(--ink); }
.avatar-2 { background: var(--ink); color: var(--paper); }
.avatar-3 { background: var(--gold); color: var(--ink); }
.avatar-4 { background: var(--orange-soft); color: var(--ink); }
.avatar-5 { background: var(--ink-soft); color: var(--paper); }
.avatar-6 { background: var(--orange); color: var(--ink); }
.avatar-7 { background: var(--ink); color: var(--orange); }
.avatar-8 { background: var(--gold); color: var(--ink); }
.ver-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-left: 2px;
}
.ver-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  margin-left: auto;
}

.record-btn {
  width: 100%;
  padding: 11px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s;
  margin-top: auto;
}
.record-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.record-btn.approval-btn {
  background: transparent;
  color: var(--ink);
}
.record-btn.approval-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Row head */
.row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.row-head h2 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.row-more {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
}
.row-more:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ============================================
   ROLE SWITCH
   ============================================ */
.role-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 80px 0;
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
@media (max-width: 800px) { .role-switch { grid-template-columns: 1fr; } }

.role-card {
  padding: 40px 36px;
  border-right: 1px dashed var(--ink);
  position: relative;
}
.role-card:last-child { border-right: none; }
@media (max-width: 800px) {
  .role-card { border-right: none; border-bottom: 1px dashed var(--ink); }
  .role-card:last-child { border-bottom: none; }
}

.role-card.writer { background: var(--paper); }
.role-card.singer { background: var(--paper-warm); }

.role-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.role-card h2 {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--ink);
}
.role-list {
  list-style: none;
  margin-bottom: 28px;
}
.role-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 10px 0;
  padding-left: 24px;
  border-bottom: 1px dashed var(--line);
  line-height: 1.5;
  position: relative;
}
.role-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.role-list li:last-child { border-bottom: none; }

/* ============================================
   FOUNDING BACKERS section (replaces fan-investor)
   ============================================ */
.founding-section {
  margin: 80px 0;
  padding: 56px 48px;
  background: var(--paper-warm);
  border: 2px solid var(--ink);
  border-radius: 6px;
  position: relative;
}

.founding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .founding-grid { grid-template-columns: 1fr; } }

.founding-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--ink);
}
.founding-info > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-item {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  transition: all .15s;
}
.tier-item:hover {
  background: var(--orange-tint);
  transform: translateX(-3px);
  border-color: var(--orange);
}
.tier-amt {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.tier-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.tier-info p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  margin: 80px 0 0;
  padding: 72px 56px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.95;
}
.cta-strip::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, var(--ink) 0%, var(--ink) 7%, transparent 7.5%);
  border-radius: 50%;
}
.cta-content { position: relative; max-width: 720px; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--paper);
}
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
}
.cta-strip .btn-primary:hover {
  background: var(--paper); border-color: var(--paper); color: var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
}
.cta-strip .btn-ghost {
  border-color: var(--paper);
  color: var(--paper);
}
.cta-strip .btn-ghost:hover {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
  box-shadow: 4px 4px 0 var(--orange);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  margin-top: 80px;
  padding: 56px 32px 28px;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.foot-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-tag {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 320px;
  line-height: 1.55;
  font-style: italic;
}
.foot-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-grid a {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 5px 0;
  transition: color .12s;
}
.footer-grid a:hover { color: var(--orange); }

.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-link { display: none; }
}
@media (max-width: 640px) {
  .top-nav { padding: 12px 16px; gap: 12px; }
  .menu-btn { display: flex; }
  .nav-search { max-width: none; }
  .nav-btn { padding: 8px 12px; font-size: 11px; }
  .main-content { padding: 0 16px 60px; }
  .hero { padding: 48px 0 40px; }
  .founding-section { padding: 36px 24px; }
  .cta-strip { padding: 48px 28px; }
  .role-card { padding: 28px 22px; }
  .collab-art { padding: 24px; }
}
