:root {
  --magenta: #e91557;
  --magenta-deep: #b50e44;
  --magenta-soft: #ff3d7b;
  --yellow: #ffe940;
  --yellow-warm: #ffd400;
  --ink: #14070c;
  --muted: #6e3a4d;
  --line: #f2c3d3;
  --bg: #ffffff;
  --bg-alt: #fff4f8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--magenta); text-decoration: none; }
a:hover { color: var(--magenta-deep); }
img { max-width: 100%; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.wrap.narrow { max-width: 640px; }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  background: var(--magenta);
  color: #fff;
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 85% 110%, transparent 0, transparent 8%, rgba(255,255,255,.6) 8.4%, transparent 8.8%),
    radial-gradient(circle at 85% 110%, transparent 0, transparent 16%, rgba(255,255,255,.5) 16.4%, transparent 16.8%),
    radial-gradient(circle at 85% 110%, transparent 0, transparent 26%, rgba(255,255,255,.45) 26.4%, transparent 26.8%),
    radial-gradient(circle at 85% 110%, transparent 0, transparent 38%, rgba(255,255,255,.4) 38.4%, transparent 38.8%),
    radial-gradient(circle at 85% 110%, transparent 0, transparent 52%, rgba(255,255,255,.35) 52.4%, transparent 52.8%),
    radial-gradient(circle at 85% 110%, transparent 0, transparent 68%, rgba(255,255,255,.3) 68.4%, transparent 68.8%);
}
.hero .logo {
  display: block;
  max-width: 280px;
  width: 50%;
  height: auto;
  margin: 0 0 36px;
}
.hero h1 {
  font-size: clamp(30px, 5.4vw, 56px);
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.hero h1 .hl { color: var(--yellow); }
.hero .lede {
  font-size: 17px;
  max-width: 640px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--yellow);
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
  font-weight: 600;
}
.cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform .15s ease, background .15s ease;
}
.cta:hover {
  transform: translateY(-2px);
  background: var(--yellow-warm);
  color: var(--ink);
}

/* ── HERO AUDIO BUTTON ────────────────────────────────────────────────── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-audio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 22px 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.hero-audio:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
.hero-audio-icon {
  width: 0;
  height: 0;
  border-left: 10px solid var(--yellow);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}
.hero-audio.is-playing .hero-audio-icon {
  border: 0;
  width: 9px;
  height: 11px;
  border-left: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  margin-left: 0;
}

/* ── MARQUEE STRIP (inline, above bundle grid) ────────────────────────── */
.marquee-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 32px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.marquee-strip-label {
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.marquee {
  position: relative;
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 90s linear infinite;
  align-items: center;
}
.marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 22px;
}
.marquee-item img {
  max-height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
}
.marquee-item[data-brand="Factor"] img { transform: scale(1.35); }
.marquee-item.no-logo::after {
  content: attr(data-brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}
@media (max-width: 640px) {
  .marquee-strip { flex-direction: column; align-items: stretch; gap: 8px; padding: 12px 10px; }
  .marquee-strip-label { text-align: center; }
  .marquee-item { height: 22px; padding: 0 16px; }
  .marquee-item img { max-height: 22px; }
}

/* ── HOW IT WORKS (trust + objection-killer) ──────────────────────────── */
.how-it-works {
  background: var(--bg-alt);
}
.how-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.how-left {
  flex: 1;
  min-width: 0;
}
.how-right {
  flex: 0 0 360px;
  width: 360px;
}
.how-right.request {
  background: transparent;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 28px;
}
.how-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
}
.how-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--magenta);
  background: rgba(233, 21, 87, 0.08);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.how-item h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.3;
}
.how-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 860px) {
  .how-layout { flex-direction: column; }
  .how-right { flex: none; width: 100%; }
}

/* ── SECTIONS ─────────────────────────────────────────────────────────── */
section { padding: 72px 0; }
section.alt { background: var(--bg-alt); }

section h2 {
  font-size: clamp(26px, 3.8vw, 36px);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: var(--ink);
}
section h2 .accent { color: var(--magenta); }

.section-lede {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 36px;
  max-width: 640px;
}

/* ── BUNDLE GRID ──────────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) {
  .grid, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(233, 21, 87, 0.12);
}
.card.highlight {
  border: 2px solid var(--magenta);
  background: #fff;
  box-shadow: 0 8px 20px rgba(233, 21, 87, 0.12);
  position: relative;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink);
  background: var(--yellow);
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.card.highlight .card-tag {
  background: var(--magenta);
  color: #fff;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -0.015em;
  font-weight: 800;
}
.card .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--magenta);
  margin: 0 0 6px;
  letter-spacing: -0.025em;
}
.card-blurb {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 16px;
  font-weight: 500;
}
.card ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  color: var(--ink);
}
.card ul li { margin-bottom: 6px; }
.card ul li::marker { color: var(--magenta); }

.best-for {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 12px;
  font-weight: 500;
}

.card-cta {
  display: inline-block;
  margin-top: auto;
  padding: 11px 18px;
  background: var(--magenta);
  color: #fff;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background .15s ease, transform .15s ease;
  align-self: stretch;
}
.card-cta:hover {
  background: var(--magenta-deep);
  color: #fff;
  transform: translateY(-1px);
}
.card.highlight .card-cta {
  background: var(--ink);
}
.card.highlight .card-cta:hover {
  background: var(--magenta-deep);
}

.bundle-shows {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 14px;
}
.bundle-shows img {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  object-fit: cover;
  background: var(--line);
  transition: transform .15s ease, box-shadow .15s ease;
}
.bundle-shows img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(233, 21, 87, 0.25);
  position: relative;
  z-index: 2;
}
.bundle-thumb-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--magenta-deep) 0%, var(--magenta) 100%);
  color: var(--yellow);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  border: 1px dashed rgba(255, 235, 64, 0.55);
}

/* ── ROSTER ───────────────────────────────────────────────────────────── */
.shows {
  background: var(--magenta);
  color: #fff;
}
.shows h2 { color: #fff; }
.shows h2 .accent { color: var(--yellow); }
.shows .section-lede { color: rgba(255, 255, 255, 0.85); }
.show-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .show-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .show-grid { grid-template-columns: repeat(2, 1fr); } }

.show-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  transition: transform .15s ease;
}
a.show-card:hover { transform: translateY(-3px); color: #fff; }
a.show-card:hover .show-art { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); }
.show-card-static { cursor: default; }

.show-art-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.show-art-wrap .show-art {
  width: 100%;
  height: 100%;
}

.play-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(20, 7, 12, 0.78);
  color: var(--yellow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  z-index: 2;
}
.play-btn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 11px solid var(--yellow);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.play-btn.is-playing::before {
  border: 0;
  width: 10px;
  height: 12px;
  border-left: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  margin-left: 0;
}
.play-btn:hover {
  background: var(--magenta);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.play-btn.is-playing {
  background: var(--magenta);
}

.show-art {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: box-shadow .15s ease;
}
.show-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--magenta-deep) 0%, var(--magenta) 100%);
  border: 1px dashed rgba(255, 235, 64, 0.55);
  text-align: center;
  padding: 12px;
}
.show-placeholder span {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--yellow);
  line-height: 1.2;
}

.show-title {
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

/* ── REQUEST FORM ─────────────────────────────────────────────────────── */
.request {
  background: var(--bg-alt);
}
.request form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.request label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.request input,
.request textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 400;
  color: var(--ink);
}
.request input:focus,
.request textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(233, 21, 87, 0.15);
}
.request button {
  font: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 0;
  background: var(--magenta);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background .15s ease, transform .15s ease;
}
.request button:hover {
  background: var(--magenta-deep);
  transform: translateY(-1px);
}
.request button[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.form-status {
  font-size: 14px;
  min-height: 20px;
  color: var(--muted);
  font-weight: 500;
}
.form-status.ok { color: var(--magenta); font-weight: 700; }
.form-status.err { color: #b3261e; font-weight: 700; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: #f8d4e0;
  padding: 32px 0;
  font-size: 13px;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer a { color: var(--yellow); }
.footer a:hover { color: #fff; }
