/* Nervebookings — apex landing. Pure CSS, no framework. The visual
   language matches the artist sites so the platform reads as one product. */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg:       #0A0814;
  --bg2:      #14102A;
  --card:     #1C1638;
  --card-2:   #251B45;
  --line:     #2E2552;
  --ink:      #FAFAFF;
  --dim:      #9B8FBF;
  --hi:       #FFB347;
  --pink:     #FF3B7F;
  --cyan:     #5BE8FF;
  --grn:      #5FE39B;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--cyan); text-decoration: none; }
img { display: block; max-width: 100%; }

/* ========== nav ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,8,20,0.78); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.nav-brand {
  font-weight: 900; letter-spacing: 2px; font-size: 1.15em;
  background: linear-gradient(92deg, var(--hi), var(--pink), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-decoration: none;
}
.nav-brand:hover { opacity: 0.85; }
.nav-links { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--dim); font-size: 0.92em;
  padding: 8px 14px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover {
  color: var(--ink); background: rgba(255,255,255,0.06);
  text-decoration: none;
}
.nav-links a.cta {
  color: var(--hi); border: 1px solid rgba(255,179,71,0.55);
  margin-left: 6px;
}
.nav-links a.cta:hover { background: rgba(255,179,71,0.14); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 5vw 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(255,59,127,0.45), transparent 60%),
    radial-gradient(ellipse at 75% 65%, rgba(91,232,255,0.32), transparent 62%),
    radial-gradient(ellipse at 50% 100%, rgba(255,179,71,0.2), transparent 70%),
    linear-gradient(160deg, #1B0E36 0%, #0A0814 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 0.78em; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--hi);
  padding: 6px 14px;
  border: 1px solid rgba(255,179,71,0.5);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(3em, 9vw, 7.5em);
  font-weight: 900; letter-spacing: -3px; line-height: 1.25;
  /* Big line-height + generous padding-bottom because the gradient
     background-clip:text combined with the drop-shadow filter creates
     a tight bounding box that crops descenders ('g' in Nervebookings)
     when line-height runs tight. */
  background: linear-gradient(92deg, var(--hi), var(--pink) 50%, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 8px 30px rgba(255,59,127,0.35));
  padding-bottom: 22px;
  margin-bottom: 14px;
  position: relative; z-index: 2;
  overflow: visible;
}
.hero .tag {
  font-size: clamp(1.1em, 1.6vw, 1.4em);
  color: var(--ink); opacity: 0.92;
  max-width: 720px; margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.hero-marquee {
  position: relative; z-index: 1;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; padding: 12px 0;
  background: rgba(255,255,255,0.02);
}
.hero-marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.hero-marquee-track span {
  color: var(--dim); font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; font-size: 0.85em;
}
.hero-marquee-track span:nth-child(odd) { color: var(--hi); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== sections ========== */
.bigsec { position: relative; padding: 110px 0; }
.bigsec.alt {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(91,232,255,0.05), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255,59,127,0.06), transparent 55%),
    var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bigsec.alt::before, .bigsec.alt::after {
  content: ""; position: absolute; left: 0; right: 0;
  height: 4px; pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0,
    rgba(255,179,71,0.4) 30%,
    rgba(255,59,127,0.55) 50%,
    rgba(91,232,255,0.4) 70%,
    transparent 100%);
}
.bigsec.alt::before { top: -1px; }
.bigsec.alt::after  { bottom: -1px; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78em; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--cyan);
  padding: 4px 12px;
  border: 1px solid rgba(91,232,255,0.4);
  border-radius: 999px;
  margin-bottom: 14px;
}
.bigsec h2 {
  font-size: clamp(2.2em, 4vw, 3.4em);
  font-weight: 900; letter-spacing: -1px; line-height: 1.18;
  /* Same descender-clip fix as .hero h1 — gradient bbox crops 'g' / 'y'
     tails when line-height runs tight. Padding-bottom gives the glyph room. */
  background: linear-gradient(92deg, var(--hi), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 14px;
  margin-bottom: 4px;
  overflow: visible;
}
.bigsec .sub {
  color: var(--dim); font-size: 1.05em; max-width: 640px;
  margin: 0 auto;
}

/* ========== artist grid ========== */
.artist-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.artist-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--hi);
  box-shadow: 0 14px 40px rgba(255,179,71,0.2);
}
/* All artist cards share a taller 2:3 frame so Steve's full poster
   (head, SOMD logo, BURNZ title) fits without crop. The other three
   posters (4:5 native) cover-crop slightly at top/bottom but read clean
   because their subjects are center-framed. */
.artist-card .art {
  aspect-ratio: 2 / 3;
  background: var(--card-2);
  background-size: cover;
  background-position: center top;
}
.artist-card .meta { padding: 8px 14px 10px; line-height: 1.2; }
.artist-card .name { color: var(--ink); font-weight: 900; font-size: 1.05em; }
.artist-card .sub  { color: var(--dim); font-size: 0.78em; margin-top: 2px; }

/* ========== feature grid ========== */
.feat-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px;
  transition: transform .15s, border-color .15s;
}
.feat:hover { transform: translateY(-4px); border-color: var(--hi); }
.feat .icon { font-size: 2em; margin-bottom: 14px; }
.feat h3 { color: var(--hi); margin-bottom: 8px; font-size: 1.15em; }
.feat p { color: var(--dim); font-size: 0.95em; line-height: 1.55; }

/* ========== join ========== */
.join-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: 40px;
  text-align: center; max-width: 880px; margin: 0 auto;
}
.join-row {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.join-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; color: var(--ink); font-weight: 700;
}
.join-step .num {
  width: 44px; height: 44px;
  border: 1px solid var(--hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hi); font-weight: 900; font-size: 1.15em;
}

/* ========== contact ========== */
.contact-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 36px 28px;
  text-align: center;
}

/* ========== buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 13px;
  font-weight: 800; font-size: 0.98em; cursor: pointer;
  border: 1px solid transparent; transition: all .15s;
  background: none; color: var(--ink); font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--hi), #E0931C);
  color: #2A1700;
  box-shadow: 0 6px 28px rgba(255,179,71,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,179,71,0.55);
}
.btn-ghost { color: var(--ink); border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ========== footer ========== */
footer {
  text-align: center; color: var(--dim); font-size: 0.88em;
  padding: 60px 24px; border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-brand {
  font-weight: 900; letter-spacing: 2px; font-size: 1.2em;
  background: linear-gradient(92deg, var(--hi), var(--pink), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.footer-sub { color: var(--dim); margin-bottom: 18px; font-size: 0.92em; }
.footer-links {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-links a { color: var(--dim); font-size: 0.9em; }
.footer-links a:hover { color: var(--hi); }
.footer-copy { color: #6B6480; font-size: 0.82em; }

/* ========== responsive ========== */
@media (max-width: 760px) {
  .hero { min-height: auto; padding: 60px 5vw 40px; }
  .bigsec { padding: 70px 0; }
  .section-head { margin-bottom: 36px; }
  .nav-brand { font-size: 1em; }
}
