/* ============================================================
   THE AI ROCKSTARS — neon synthwave brand
   Electric yellow #F3FF0F (primary) + magenta #F41C77 (secondary)
   Retro-CRT / synthwave aesthetic. Dark, loud, graffiti energy.
   ============================================================ */

:root {
  /* Synthwave dark palette (deep purple-black, from the room art) */
  --bg-0: #0A0710;          /* page */
  --bg-1: #110B1A;          /* raised panels */
  --bg-2: #181020;          /* cards */
  --bg-3: #241733;          /* hover / inset */
  --hairline: rgba(255,255,255,0.10);
  --hairline-2: rgba(255,255,255,0.18);

  /* Ink (slightly cool/violet) */
  --fg-0: #F6F3FB;
  --fg-1: #B7AECB;
  --fg-2: #807593;

  /* Brand accents */
  --yellow: #F3FF0F;        /* PRIMARY — electric yellow */
  --yellow-600: #D7E300;
  --yellow-glow: rgba(243,255,15,0.55);
  --yellow-tint: rgba(243,255,15,0.12);

  --magenta: #F41C77;       /* SECONDARY — hot magenta */
  --magenta-600: #D60E63;
  --magenta-300: #FF5C9E;
  --magenta-glow: rgba(244,28,119,0.55);
  --magenta-tint: rgba(244,28,119,0.12);

  --cyan: #36E6FF;          /* OpenMic blue */
  --cyan-glow: rgba(54,230,255,0.5);
  --cyan-tint: rgba(54,230,255,0.12);

  --green: #3DF08B;         /* Finance green */
  --green-glow: rgba(61,240,139,0.5);
  --green-tint: rgba(61,240,139,0.12);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow: 0 18px 50px rgba(0,0,0,0.6);

  --maxw: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  background: var(--bg-0);
  color: var(--fg-0);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--yellow); color: #0A0710; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typographic helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--yellow);
  display: inline-block;
  box-shadow: 0 0 10px var(--yellow-glow);
}
.eyebrow.mag { color: var(--magenta); }
.eyebrow.mag::before { background: var(--magenta); box-shadow: 0 0 10px var(--magenta-glow); }
.accent-text { color: var(--yellow); }
.mag-text { color: var(--magenta); }

/* neon text glow utility */
.neon-y { color: var(--yellow); text-shadow: 0 0 18px var(--yellow-glow), 0 0 42px rgba(243,255,15,0.25); }
.neon-m { color: var(--magenta); text-shadow: 0 0 18px var(--magenta-glow), 0 0 42px rgba(244,28,119,0.3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  transition: transform .15s var(--ease), background .15s var(--ease), box-shadow .2s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--yellow);
  color: #0A0710;
  box-shadow: 0 6px 26px var(--yellow-glow);
}
.btn-primary:hover { background: var(--yellow-600); transform: translateY(-2px); box-shadow: 0 12px 38px var(--yellow-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-mag {
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 6px 26px var(--magenta-glow);
}
.btn-mag:hover { background: var(--magenta-600); transform: translateY(-2px); box-shadow: 0 12px 38px var(--magenta-glow); }
.btn-ghost {
  background: transparent;
  color: var(--fg-0);
  border: 1.5px solid var(--hairline-2);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); background: var(--yellow-tint); }
.btn-lg { padding: 19px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- CRT scanline overlay (used on hero + final) ---------- */
.scanlines::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.16) 0px, rgba(0,0,0,0.16) 1px, transparent 2px, transparent 4px);
  mix-blend-mode: multiply; opacity: 0.5;
}

/* ---------- Nav ---------- */
header.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(10,7,16,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand img.wordmark { height: 58px; width: auto; }
.brand img.icon { width: 34px; height: 34px; filter: drop-shadow(0 0 8px var(--yellow-glow)); }
.brand .word { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; line-height: 1; letter-spacing: 0.02em; }
.brand .word small { display: block; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.32em; color: var(--fg-2); margin-top: 4px; }
.brand .word b { color: var(--yellow); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--fg-1);
  letter-spacing: 0.01em; position: relative; padding: 6px 0;
  transition: color .15s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--yellow); box-shadow: 0 0 8px var(--yellow-glow); transition: width .2s var(--ease);
}
.nav-links a:hover { color: var(--fg-0); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 14px; font-weight: 600; color: var(--fg-1); }
.nav-cta .login:hover { color: var(--fg-0); }
/* Nav CTA uses a white glow (per brand) instead of the accent glow */
.nav-cta .nav-join { box-shadow: 0 6px 26px rgba(255,255,255,0.45); }
.nav-cta .nav-join:hover { box-shadow: 0 12px 40px rgba(255,255,255,0.62); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--fg-0); transition: transform .2s, opacity .2s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0 0; z-index: 99;
  background: var(--bg-0);
  transform: translateY(-100%);
  opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  display: flex; flex-direction: column;
  padding: 32px 28px; gap: 8px;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 34px; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid var(--hairline); color: var(--fg-0);
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 188px 0 92px; overflow: hidden; }
/* Subtle room-banner photo washed into the hero background, with a veil so
   text stays readable. Sits below the color glows so the hues stay on top. */
.hero .hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--room-img); background-size: cover; background-position: center;
  opacity: 0.20;
}
.hero .hero-veil {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(10,7,16,0.30), rgba(10,7,16,0.90) 82%);
}
.hero .glow {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(100px); z-index: 0;
}
.hero .glow.a { width: 620px; height: 620px; background: var(--magenta); top: -200px; right: -120px; opacity: 0.30; }
.hero .glow.b { width: 520px; height: 520px; background: #6b1cff; bottom: -200px; left: -180px; opacity: 0.22; }
.hero .glow.c { width: 360px; height: 360px; background: var(--cyan); top: 30%; left: 44%; opacity: 0.10; }

/* synthwave perspective grid at the bottom */
.hero-grid {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%;
  z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(244,28,119,0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,28,119,0.45) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(420px) rotateX(68deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 92%);
          mask-image: linear-gradient(to top, #000 0%, transparent 92%);
  opacity: 0.55;
}
.hero .wrap { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--hairline);
  padding: 8px 16px 8px 10px; border-radius: var(--radius-pill);
  font-size: 13px; color: var(--fg-1); margin-bottom: 30px; white-space: nowrap;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px var(--yellow-tint), 0 0 10px var(--yellow-glow); }
.hero-badge b { color: var(--fg-0); font-weight: 700; }

.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(46px, 7.6vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin-bottom: 52px;
  padding-bottom: 0.08em;
  max-width: 15ch;
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--yellow);
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 26px var(--yellow-glow);
}
.hero p.sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--fg-1);
  max-width: 56ch;
  margin-bottom: 38px;
  text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { display: flex; gap: 30px; margin-top: 48px; flex-wrap: wrap; }
.hero-meta .stat .n { font-family: var(--font-display); font-size: 42px; line-height: 1; }
.hero-meta .stat .l { font-size: 13px; color: var(--fg-2); margin-top: 6px; letter-spacing: 0.02em; }
.hero-meta .stat .n .accent-text { color: var(--yellow); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-1);
  overflow: hidden; padding: 18px 0; margin-top: 68px;
  position: relative; z-index: 3;
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 26px; letter-spacing: 0.04em; color: var(--fg-2);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee span::after { content: "★"; color: var(--magenta); font-size: 18px; text-shadow: 0 0 12px var(--magenta-glow); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Section scaffolding ---------- */
section.block { padding: 104px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(38px, 5.5vw, 68px); line-height: 0.92;
  margin: 18px 0 18px; letter-spacing: 0.01em;
}
.section-head p { font-size: 18px; color: var(--fg-1); text-wrap: pretty; }

/* ---------- Video embed ---------- */
.video-section { padding-top: 96px; padding-bottom: 96px; }
.video-frame {
  position: relative; max-width: 940px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--magenta);
  box-shadow: 0 0 0 1px var(--magenta), 0 0 38px var(--magenta-glow), 0 24px 60px rgba(0,0,0,0.5);
  background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- BANDS (choose your community) ---------- */
.bands { background: var(--bg-1); position: relative; }
.bands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.bands-grid-2 { grid-template-columns: repeat(2, 1fr); }
.band {
  --neon: var(--yellow);
  --neon-glow: var(--yellow-glow);
  --neon-tint: var(--yellow-tint);
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-2); border: 1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: 32px 30px;
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.band::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--neon); box-shadow: 0 0 16px var(--neon-glow);
}
.band:hover { transform: translateY(-6px); border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 22px 50px rgba(0,0,0,0.5); }
.band .band-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--neon-tint); border: 1px solid var(--neon); color: var(--neon);
  margin-bottom: 22px; box-shadow: 0 0 18px var(--neon-glow);
}
.band .band-ico svg { width: 26px; height: 26px; }
.band .for { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); margin-bottom: 10px; }
.band h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 30px; line-height: 0.95; margin-bottom: 12px; }
.band > p { font-size: 14.5px; color: var(--fg-1); margin-bottom: 22px; }
.band ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.band li { display: flex; gap: 11px; font-size: 14.5px; color: var(--fg-1); align-items: flex-start; }
.band li svg { width: 18px; height: 18px; color: var(--neon); flex-shrink: 0; margin-top: 2px; }
.band .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.band .price .amt { font-family: var(--font-display); font-size: 46px; line-height: 1; }
.band .price .per { font-size: 14px; color: var(--fg-2); }
.band .join {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; font-weight: 800; font-size: 15px; padding: 15px 24px; border-radius: var(--radius-pill);
  background: var(--neon); color: #0A0710;
  box-shadow: 0 6px 24px var(--neon-glow);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), filter .15s var(--ease);
}
.band .join svg { width: 18px; height: 18px; }
.band .join:hover { transform: translateY(-2px); box-shadow: 0 12px 36px var(--neon-glow); filter: brightness(1.06); }
.band.featured { border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 22px 50px rgba(0,0,0,0.45); }
.band .ribbon {
  position: absolute; top: 18px; right: -34px; transform: rotate(45deg);
  background: var(--neon); color: #0A0710; font-family: var(--font-mono); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.12em; padding: 5px 40px; box-shadow: 0 0 16px var(--neon-glow);
}
/* magenta join needs white text for contrast */
.band[data-neon="magenta"] .join { color: #fff; }
.band[data-neon="magenta"] .ribbon { color: #fff; }

.bands-more {
  margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 12px;
  border: 1.5px dashed var(--hairline-2); border-radius: var(--radius-lg);
  padding: 22px; color: var(--fg-2); font-size: 15px; text-align: center;
}
.bands-more b { color: var(--fg-1); font-weight: 700; }
.bands-note { text-align: center; margin-top: 22px; color: var(--fg-2); font-size: 14px; }
.bands-note svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 5px; color: var(--yellow); }

/* ---- Headliner band (OpenMic — big top option) ---- */
.band-hero {
  --neon: var(--cyan); --neon-glow: var(--cyan-glow); --neon-tint: var(--cyan-tint);
  position: relative; display: grid; grid-template-columns: 1.25fr 1fr; gap: 0;
  background: linear-gradient(120deg, rgba(54,230,255,0.10), var(--bg-2) 56%);
  border: 1px solid var(--neon); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 0 1px var(--neon), 0 0 40px var(--cyan-glow), 0 24px 60px rgba(0,0,0,0.5);
  margin-bottom: 46px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.band-hero:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--neon), 0 0 56px var(--cyan-glow), 0 28px 70px rgba(0,0,0,0.55); }
.band-hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--neon); box-shadow: 0 0 18px var(--neon-glow); z-index: 2; }
.band-hero .bh-main { padding: 40px 42px; display: flex; flex-direction: column; }
.band-hero .ribbon-flat {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--neon); background: var(--neon-tint); border: 1px solid var(--neon);
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 22px; box-shadow: 0 0 16px var(--neon-glow);
}
/* price + "most popular" pill sit on one row */
.band-hero .price-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.band-hero .price-row .price { margin-bottom: 0; }
.band-hero .price-row .ribbon-flat { align-self: center; margin-bottom: 0; white-space: nowrap; }
.band-hero .band-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--neon-tint); border: 1px solid var(--neon); color: var(--neon);
  margin-bottom: 20px; box-shadow: 0 0 18px var(--neon-glow);
}
.band-hero .band-ico svg { width: 28px; height: 28px; }
.band-hero .for { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon); margin-bottom: 10px; }
.band-hero h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(36px,4vw,52px); line-height: 0.92; margin-bottom: 14px; }
.band-hero > .bh-main > p { font-size: 16px; color: var(--fg-1); max-width: 44ch; margin-bottom: 26px; }
.band-hero .bh-side {
  background: var(--bg-1); border-left: 1px solid var(--hairline);
  padding: 40px 38px; display: flex; flex-direction: column; justify-content: center;
}
.band-hero ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.band-hero li { display: flex; gap: 11px; font-size: 15px; color: var(--fg-1); align-items: flex-start; }
.band-hero li svg { width: 18px; height: 18px; color: var(--neon); flex-shrink: 0; margin-top: 2px; }
.band-hero .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.band-hero .price .amt { font-family: var(--font-display); font-size: 50px; line-height: 1; }
.band-hero .price .per { font-size: 14px; color: var(--fg-2); }
.band-hero .join {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  font-weight: 800; font-size: 15px; padding: 16px 24px; border-radius: var(--radius-pill);
  background: var(--neon); color: #0A0710; box-shadow: 0 6px 24px var(--neon-glow);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), filter .15s var(--ease);
}
.band-hero .join svg { width: 18px; height: 18px; }
.band-hero .join:hover { transform: translateY(-2px); box-shadow: 0 12px 36px var(--neon-glow); filter: brightness(1.06); }

/* ---- Sub-group label ---- */
.bands-subhead {
  display: flex; align-items: center; gap: 16px; margin: 0 0 24px;
}
.bands-subhead h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; letter-spacing: 0.02em; white-space: nowrap; }
.bands-subhead .line { flex: 1; height: 1px; background: var(--hairline); }
.bands-subhead .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2); }
.bands-section + .bands-section { margin-top: 52px; }

/* ---- Coming-soon cards ---- */
.bands-soon { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.band-soon {
  border: 1.5px dashed var(--hairline-2); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.015);
}
.band-soon .soon-pill { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2); border: 1px solid var(--hairline-2); border-radius: var(--radius-pill); padding: 4px 12px; }
.band-soon h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; color: var(--fg-1); line-height: 0.95; }
.band-soon p { font-size: 14px; color: var(--fg-2); }
.band-soon.suggest { align-items: center; justify-content: center; text-align: center; border-color: var(--hairline); }
.band-soon.suggest a { color: var(--yellow); font-weight: 700; }
.band-soon.suggest a:hover { text-decoration: underline; }

/* ---------- Tools ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool-card {
  background: var(--bg-2); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 26px 24px 24px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
  position: relative; overflow: hidden;
}
.tool-card:hover { transform: translateY(-6px); border-color: var(--magenta); background: var(--bg-3); }
.tool-logo {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  font-weight: 800; font-size: 22px; margin-bottom: 20px; color: #fff;
  border: 1px solid var(--hairline-2);
}
.tool-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.tool-card .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--magenta); margin-bottom: 12px; }
.tool-card p { font-size: 14.5px; color: var(--fg-1); line-height: 1.55; }

/* ---------- Curriculum ---------- */
.curriculum { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.modules { display: flex; flex-direction: column; }
.module {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--hairline);
}
.module:first-child { border-top: 1px solid var(--hairline); }
.module .num { font-family: var(--font-display); font-size: 30px; color: var(--fg-2); line-height: 1; transition: color .2s var(--ease), text-shadow .2s; width: 52px; }
.module:hover .num { color: var(--yellow); text-shadow: 0 0 16px var(--yellow-glow); }
.module h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.module p { font-size: 15px; color: var(--fg-1); }
.module .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.module .tags span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--bg-2); border: 1px solid var(--hairline); color: var(--fg-1);
}
.curr-aside {
  position: sticky; top: 110px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
}
.curr-aside .eyebrow { margin-bottom: 18px; }
.curr-aside h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 32px; line-height: 0.95; margin-bottom: 18px; }
.curr-aside ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.curr-aside li { display: flex; gap: 12px; font-size: 15px; color: var(--fg-1); align-items: flex-start; }
.curr-aside li svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: 1px; }

/* ---------- Frontmen ---------- */
.frontmen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.frontman {
  background: var(--bg-2); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.frontman:hover { border-color: var(--magenta); transform: translateY(-4px); }
.frontman .photo-wrap { position: relative; aspect-ratio: 4/3; background: var(--bg-3); }
.frontman image-slot { width: 100%; height: 100%; }
.frontman img.photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
.frontman .body { padding: 28px 28px 30px; }
.frontman .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--magenta); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.frontman .role::before { content: ""; width: 16px; height: 3px; background: var(--magenta); box-shadow: 0 0 10px var(--magenta-glow); }
.frontman h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 30px; line-height: 0.95; margin-bottom: 6px; }
.frontman .leads { font-size: 13.5px; color: var(--yellow); font-weight: 700; margin-bottom: 16px; }
.frontman p { color: var(--fg-1); font-size: 15px; margin-bottom: 12px; }
.frontman p.editable-bio { border-left: 2px solid var(--hairline); padding-left: 14px; }
.frontmen-intro { max-width: 640px; margin-bottom: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%; text-align: left; padding: 26px 0; font-size: 19px; font-weight: 700;
  transition: color .15s var(--ease);
}
.faq-q:hover { color: var(--yellow); }
.faq-q .ico { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--hairline-2); display: grid; place-items: center; position: relative; transition: all .2s var(--ease); }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .ico::before { width: 12px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 12px; transition: transform .2s var(--ease); }
.faq-item.open .faq-q .ico { background: var(--yellow); border-color: var(--yellow); color: #0A0710; box-shadow: 0 0 16px var(--yellow-glow); }
.faq-item.open .faq-q .ico::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-q { color: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 0 26px; color: var(--fg-1); font-size: 16px; max-width: 70ch; }

/* ---------- Final CTA (room banner bg) ---------- */
.final { position: relative; overflow: hidden; text-align: center; padding: 150px 0; }
.final .bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--room-img); background-size: cover; background-position: center;
  opacity: 0.4;
}
.final .veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 50% 50%, rgba(10,7,16,0.4), rgba(10,7,16,0.92) 78%); }
.final .wrap { position: relative; z-index: 3; }
.final h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(48px, 8vw, 112px); line-height: 0.86; margin-bottom: 24px; }
.final p { font-size: 20px; color: var(--fg-1); max-width: 50ch; margin: 0 auto 38px; }

/* ---------- Footer ---------- */
footer.foot { border-top: 1px solid var(--hairline); padding: 60px 0 40px; background: var(--bg-0); }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { color: var(--fg-2); font-size: 14px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-2); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--fg-1); padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: var(--yellow); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.foot-bottom p { font-size: 13px; color: var(--fg-2); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-anim *, .no-anim *::before, .no-anim *::after { transition: none !important; animation: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .login { display: none; }
  .burger { display: flex; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .bands-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .bands-grid-2 { grid-template-columns: 1fr; }
  .band-hero { grid-template-columns: 1fr; }
  .band-hero .bh-side { border-left: none; border-top: 1px solid var(--hairline); }
  .bands-soon { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .curriculum { grid-template-columns: 1fr; gap: 40px; }
  .curr-aside { position: static; }
  .frontmen-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .tools-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 70px; }
  .hero-meta { gap: 22px; }
  section.block { padding: 72px 0; }
  /* The hollow, see-through "unfair" outline is unreadable against the busy
     hero background at phone size. On phones, make it a SOLID yellow word
     (matching "advantage") so the whole headline reads cleanly. Desktop keeps
     the hollow-outline look. */
  .hero h1 .stroke {
    -webkit-text-stroke-width: 0;
    -webkit-text-fill-color: var(--yellow);
    color: var(--yellow);
    text-shadow: 0 0 14px var(--yellow-glow);
  }
  /* The big 58px desktop logo would push the "Join a Band" button + menu
     off a phone screen, so cap it here where space is tight. */
  .brand img.wordmark { height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.05ms !important; }
  html { scroll-behavior: auto; }
}
