:root {
  --bg: #0d0d10;
  --bg-2: #15151b;
  --card: #1b1b23;
  --line: #2a2a35;
  --text: #ecebf2;
  --muted: #9b99a8;
  --accent: #d4312f;
  --accent-2: #e6b34a;
  --radius: 14px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

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

/* header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13, 13, 16, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo {
  font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: .12em;
  font-size: 22px; color: var(--text);
}
.logo span { color: var(--accent); }
.logo:hover { text-decoration: none; }
.nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav a { color: var(--muted); font-size: 15px; }
.nav a:hover, .nav a.active { color: var(--text); text-decoration: none; }
.nav a.active { border-bottom: 2px solid var(--accent); padding-bottom: 4px; }

/* hero */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 84px;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(212, 49, 47, .35), transparent 60%),
    radial-gradient(700px 360px at 0% 110%, rgba(230, 179, 74, .18), transparent 60%),
    linear-gradient(180deg, #121217, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: clamp(42px, 8vw, 88px); line-height: 1; letter-spacing: .06em;
  margin: 0 0 18px;
}
.hero p.lead { font-size: 19px; color: #cfcdd8; max-width: 620px; margin: 0 0 28px; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; color: var(--accent-2); margin-bottom: 14px; }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 15px;
}
.btn:hover { text-decoration: none; filter: brightness(1.1); }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--text); margin-left: 10px; }

.page-head { padding: 64px 0 36px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #131318, var(--bg)); }
.page-head h1 { font-family: "Oswald", sans-serif; font-weight: 600; font-size: clamp(34px, 6vw, 56px); margin: 0 0 8px; letter-spacing: .04em; }
.page-head p { color: var(--muted); margin: 0; max-width: 640px; }

/* sections */
section { padding: 56px 0; }
h2 { font-family: "Oswald", sans-serif; font-weight: 500; font-size: 30px; letter-spacing: .03em; margin: 0 0 22px; }
h3 { font-size: 19px; margin: 0 0 8px; }
.muted { color: var(--muted); }

.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px;
}
.card .date { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.card p { margin: 0; color: #cfcdd8; }
.tag { display: inline-block; font-size: 12px; padding: 3px 10px; border-radius: 999px; background: #262631; color: var(--accent-2); margin-bottom: 10px; }

.cover {
  aspect-ratio: 1 / 1; border-radius: 10px; margin-bottom: 14px;
  display: flex; align-items: flex-end; padding: 14px;
  font-family: "Oswald", sans-serif; font-size: 22px; letter-spacing: .05em; color: #fff;
  background: linear-gradient(135deg, #2b0f10, #7a1d1b 55%, #d4312f);
}
.cover.alt { background: linear-gradient(135deg, #1a1508, #6b4d14 55%, #e6b34a); }
.cover.cold { background: linear-gradient(135deg, #0c1220, #1c3761 55%, #4f7fc4); }

.timeline { border-left: 2px solid var(--line); margin-left: 8px; padding-left: 26px; }
.timeline .item { position: relative; margin-bottom: 30px; }
.timeline .item::before {
  content: ""; position: absolute; left: -34px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--bg);
}
.timeline .year { font-family: "Oswald", sans-serif; color: var(--accent-2); font-size: 18px; }

.quote {
  border-left: 3px solid var(--accent); padding: 6px 0 6px 18px; margin: 28px 0;
  font-size: 19px; color: #dcdae4; font-style: italic;
}

table.tracks { width: 100%; border-collapse: collapse; }
table.tracks td, table.tracks th { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); }
table.tracks th { color: var(--muted); font-weight: 500; font-size: 14px; }

form.join { display: grid; gap: 12px; max-width: 460px; }
form.join input, form.join textarea {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); padding: 12px 14px; font: inherit;
}
form.join button { justify-self: start; border: 0; cursor: pointer; }
.notice { margin-top: 12px; font-size: 14px; color: var(--accent-2); display: none; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0 40px; color: var(--muted); font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .site-header .wrap { height: auto; padding: 12px 20px; flex-direction: column; align-items: flex-start; }
  .nav { gap: 14px; }
  .hero { padding: 64px 0 56px; }
  .btn.ghost { margin: 10px 0 0; }
}
