:root {
  --navy: #0b0f1a;
  --navy-2: #10121c;
  --gold: #c99a3b;
  --gold-light: #e3c07a;
  --teal: #1f6f5c;
  --cream: #f6f3ec;
  --cream-2: #ece6d6;
  --ink: #12141c;
  --muted: #5b5d68;
  --radius: 14px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.hidden-field { display: none; }

/* ---------- Hero shell (positioning context for the overlay header) ---------- */
.hero-shell {
  position: relative;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding-top: 20px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.header-cta {
  font-size: 14px;
  padding: 10px 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(201,154,59,0.35);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover { background: rgba(255,255,255,0.16); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,26,0.55) 0%, rgba(11,15,26,0.85) 55%, var(--navy) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  color: #fff;
  max-width: 760px;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold-light);
  margin: 0 0 16px;
}

.eyebrow-dark { color: var(--teal); }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 20px;
}

.hero h1 .accent { color: var(--gold-light); }

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 0 32px;
}

.hero-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Signup form ---------- */
.signup-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 480px;
}

.signup-form input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  min-width: 0;
}

.signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.signup-form input[type="email"]:focus {
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.12);
}

.signup-form-dark input[type="email"] {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.form-status {
  min-height: 20px;
  font-size: 14px;
  color: var(--gold-light);
  margin: 12px 0 0;
}

/* ---------- Listen band ---------- */
.listen-band {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.listen-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.listen-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.listen-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.listen-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background .15s ease, transform .15s ease;
}

.listen-pill:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.listen-pill[data-platform="spotify"]:hover { color: #1DB954; }
.listen-pill[data-platform="discord"]:hover { color: #5865F2; }
.listen-pill[data-platform="instagram"]:hover { color: #E1306C; }
.listen-pill[data-platform="apple"]:hover { color: #d63384; }
.listen-pill[data-platform="youtube"]:hover { color: #FF0000; }

/* ---------- Testimonials ticker ---------- */
.social-proof {
  background: var(--navy-2);
  padding: 48px 0 0;
}

.social-proof-head {
  text-align: center;
  padding-bottom: 28px;
}

.social-proof-head h2 {
  color: #fff;
  margin: 0 auto;
  text-align: center;
}

.ticker-wrap {
  --ticker-bg: var(--navy-2);
  --ticker-text: #ffffff;
  --ticker-speed: 2400s;
  --ticker-size: 0.95rem;
  --ticker-padding: 18px 0 48px;
  width: 100%;
  overflow: hidden;
  background: var(--ticker-bg);
  padding: var(--ticker-padding);
  position: relative;
}

/* Slim variant pinned at the very top of the page */
.top-ticker {
  --ticker-padding: 9px 0;
  --ticker-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-ticker .ticker-item { opacity: 0.7; }

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--ticker-bg), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--ticker-bg), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll var(--ticker-speed) linear infinite;
  will-change: transform;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--ticker-text);
  opacity: 0.88;
  font-size: var(--ticker-size);
  font-family: var(--font-body);
  padding: 0 1rem;
}

.ticker-sep {
  color: var(--gold-light);
  opacity: 0.9;
  padding: 0 1.2rem;
  font-weight: 900;
  font-size: 1.1em;
  user-select: none;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }

.section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 640px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 40px;
}

.lead.light { color: rgba(255,255,255,0.72); }

/* Problem / stats */
.problem { background: var(--cream); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(11,15,26,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(11,15,26,0.04);
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.source-note {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
}

/* What you get */
.whatyouget { background: var(--cream-2); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: left;
}

.cta-inner h2 { color: #fff; max-width: 700px; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-2);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-mark {
  height: 34px;
  width: auto;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  width: 100%;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; text-align: center; }
  .footer-copy { order: 3; }
  .hero-content { padding-top: 100px; }
}
