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

:root {
  --bg: #12141d;
  --bg-soft: #1a1d2a;
  --card: #202436;
  --ink: #e8e6f0;
  --muted: #9a97ad;
  --accent: #a78bfa;
  --accent-deep: #8b6cf0;
  --line: #2e3248;
  --ok: #6ee7b7;
  --danger: #f0a3a3;
}

body {
  font-family: -apple-system, "Segoe UI", "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
}

main { max-width: 44rem; margin: 0 auto; padding: 1.5rem; }
h1, h2, h3 { font-family: Georgia, serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 3.2rem); }
h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

header.hero { text-align: center; padding: clamp(3rem, 12vh, 6rem) 0 2.5rem; }
.hero .tag { color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
.hero p.lede { color: var(--muted); font-size: 1.15rem; max-width: 34rem; margin: 1.25rem auto 2rem; }

.btn {
  display: inline-block; font: inherit; font-weight: 600;
  background: var(--accent); color: #16121f;
  border: none; border-radius: 999px; padding: 0.8rem 1.7rem;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-deep); color: #fff; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.5rem; margin: 1rem 0;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

label { display: grid; gap: 0.35rem; font-weight: 500; font-size: 0.92rem; margin-bottom: 1rem; }
input, textarea, select {
  font: inherit; width: 100%; padding: 0.65rem 0.8rem;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-soft); color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.form-note { min-height: 1.4rem; color: var(--muted); }
.form-note.ok { color: var(--ok); }
.form-note.err { color: var(--danger); }

.listener-row {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.25rem; margin: 0.6rem 0;
}
.listener-row .info { flex: 1; }
.listener-row .handle { font-weight: 600; }
.listener-row .meta { color: var(--muted); font-size: 0.85rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); flex-shrink: 0; }

.toggle { display: flex; align-items: center; gap: 0.75rem; }
.price { color: var(--accent); font-weight: 600; }
footer { text-align: center; padding: 2.5rem 1rem; color: var(--muted); font-size: 0.8rem; }
a { color: var(--accent); }
.center { text-align: center; }
