:root {
  --bg: #14131a;
  --panel: #1d1b26;
  --ink: #efecf6;
  --muted: #a59fb5;
  --line: #2c2937;
  --accent: #8b6ff0;
  --accent-ink: #fff;
  --error: #ff6b6b;
  --serif: "Iowan Old Style", Palatino, Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: radial-gradient(1200px 600px at 50% -10%, #221f33 0%, var(--bg) 60%) no-repeat, var(--bg);
  color: var(--ink); font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 640px; margin: 0 auto; padding: 0 18px 64px; }

.hero { text-align: center; padding: 64px 0 28px; }
.hero.small { padding: 36px 0 12px; }
.brand { font-family: var(--serif); font-size: clamp(40px, 9vw, 64px); font-weight: 700; letter-spacing: -.02em; }
.tagline { font-size: 18px; color: var(--muted); margin: 6px 0 16px; }
.bio { max-width: 48ch; margin: 0 auto 20px; color: var(--ink); }

.socials { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.social {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14px;
  border: 1px solid var(--line); background: var(--panel); border-radius: 999px; padding: 9px 16px;
  transition: .15s;
}
.social:hover { border-color: var(--accent); color: #fff; transform: translateY(-1px); }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; margin: 16px 0;
}
.card h2 { font-family: var(--serif); font-size: 22px; margin: 0 0 10px; }
.muted { color: var(--muted); margin: 0 0 12px; font-size: 14px; }

.video { aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #000; }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

.form { display: flex; flex-direction: column; gap: 10px; }
.form.row { flex-direction: row; flex-wrap: wrap; }
.form.row input { flex: 1 1 220px; }
.form input, .form textarea {
  width: 100%; font: inherit; color: var(--ink); background: #16151d;
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,111,240,.18); }
.form textarea { resize: vertical; }
button {
  font: inherit; font-weight: 700; color: var(--accent-ink); background: var(--accent);
  border: 0; border-radius: 10px; padding: 11px 18px; cursor: pointer; transition: .15s; white-space: nowrap;
}
button:hover { filter: brightness(1.08); }
button:active { transform: translateY(1px); }

.error { color: var(--error); text-align: center; font-weight: 600; }
.back { color: var(--accent); text-decoration: none; font-weight: 600; }

.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th, .tbl td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl th { color: var(--muted); font-weight: 700; }
.tbl a { color: var(--accent); }
.nowrap { white-space: nowrap; color: var(--muted); }

.site-foot { text-align: center; color: var(--muted); font-size: 12px; margin-top: 40px; }

@media (max-width: 480px) { .hero { padding: 44px 0 22px; } }
