/* ============ Base ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0d0b0e;
  --bg-raised: #17131a;
  --text: #f2edf4;
  --text-muted: #a89bae;
  --accent: #e0304e;      /* toxic-love red */
  --accent-hover: #f04a66;
  --border: #2c2430;
  --radius: 12px;
  --wrap-max: 1080px;
  --narrow-max: 640px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 20px;
}

.wrap.narrow {
  max-width: var(--narrow-max);
}

h1, h2 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.75rem;
}

section {
  padding: 72px 0;
}

a {
  color: var(--accent);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 11, 14, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-header nav {
  display: flex;
  gap: 22px;
}

.site-header nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.site-header nav a:hover {
  color: var(--text);
}

/* ============ Hero ============ */
.hero {
  padding: 88px 0 72px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(224, 48, 78, 0.18), transparent 70%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  margin-bottom: 12px;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.video-frame {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

/* ============ Story ============ */
.story {
  text-align: center;
}

.story p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

/* ============ Signup ============ */
.signup {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.signup h2 {
  text-align: center;
}

.signup > .wrap > p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.signup-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-row-split {
  display: flex;
  gap: 18px;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"] {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.15s ease;
}

.form-row input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row.consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}

.form-row.consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

button[type="submit"],
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 15px 34px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, transform 0.1s ease;
}

button[type="submit"]:hover,
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.fine-print {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============ Patreon ============ */
.patreon {
  text-align: center;
}

.patreon p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* ============ Merch ============ */
.merch {
  text-align: center;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.merch p {
  color: var(--text-muted);
}

/* ============ Shows ============ */
.shows h2 {
  text-align: center;
  margin-bottom: 28px;
}

.show-list {
  list-style: none;
}

.show-row {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}

.show-row:first-child {
  border-top: 1px solid var(--border);
}

.show-date {
  font-weight: 700;
  min-width: 90px;
  color: var(--accent);
}

.show-venue {
  color: var(--text-muted);
}

/* ============ Footer ============ */
.site-footer {
  padding: 48px 0 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.social-links a:hover {
  color: var(--text);
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============ Mobile ============ */
@media (max-width: 640px) {
  section {
    padding: 56px 0;
  }

  .site-header nav {
    gap: 14px;
  }

  .site-header nav a {
    font-size: 0.85rem;
  }

  .form-row-split {
    flex-direction: column;
    gap: 18px;
  }
}
