:root {
  --bg: #070b16;
  --bg2: #0b1020;
  --edge: #1b2540;
  --accent: #f2b24d;
  --accent-soft: rgba(242, 178, 77, 0.18);
  --text: #eef1f8;
  --muted: #9ea7c2;
  --radius: 18px;
  --font: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transform: scale(1.02);
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: scale(1.02) translateY(0); } to { transform: scale(1.08) translateY(-1.5%); } }
@media (prefers-reduced-motion: reduce) { .hero img.bg { animation: none; } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,11,22,0.25) 0%, rgba(7,11,22,0.05) 35%, rgba(7,11,22,0.75) 75%, var(--bg) 100%),
    radial-gradient(70% 60% at 30% 100%, rgba(7,11,22,0.7), transparent 70%);
}
.hero-inner {
  width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 120px 24px 72px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  padding: 8px 14px; border: 1px solid var(--accent-soft);
  border-radius: 999px; background: rgba(7,11,22,0.55); backdrop-filter: blur(8px);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
h1 {
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.98; letter-spacing: -0.03em; margin: 22px 0 18px;
  font-weight: 800; max-width: 14ch;
  text-shadow: 0 6px 40px rgba(0,0,0,0.6);
}
.lede { font-size: clamp(17px, 2vw, 22px); color: var(--text); max-width: 56ch; margin: 0 0 30px; opacity: 0.92; text-shadow: 0 2px 18px rgba(0,0,0,0.7); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn.primary { background: var(--accent); color: #140d02; box-shadow: 0 10px 30px rgba(242,178,77,0.28); }
.btn.primary:hover { box-shadow: 0 14px 38px rgba(242,178,77,0.4); }
.btn.ghost { background: rgba(7,11,22,0.55); color: var(--text); border-color: rgba(255,255,255,0.14); backdrop-filter: blur(8px); }
.btn.ghost:hover { border-color: var(--accent); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

section { max-width: 1180px; margin: 0 auto; padding: 72px 24px; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; line-height: 1.05; margin: 0; font-weight: 800; }
.section-head p { margin: 0; color: var(--muted); max-width: 48ch; }

.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg2); border: 1px solid var(--edge); border-radius: var(--radius);
  overflow: hidden; color: var(--text);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 60px rgba(0,0,0,0.5); text-decoration: none; }
.card .art { aspect-ratio: 1 / 1; overflow: hidden; background: #000; }
.card .art img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .art img { transform: scale(1.05); }
.card.wide .art { aspect-ratio: 16 / 10; }
.card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card .kicker { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.card h3 { margin: 0; font-size: 22px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card .host { margin-top: auto; padding-top: 12px; font-size: 13px; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.card .host::after { content: "\2192"; }

.list { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.list a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border: 1px solid var(--edge); border-radius: 12px; background: rgba(11,16,32,0.7);
  color: var(--text); font-weight: 600; transition: border-color .15s ease, background .15s ease;
}
.list a span { color: var(--muted); font-weight: 400; font-size: 13px; }
.list a:hover { border-color: var(--accent); background: var(--bg2); text-decoration: none; }

.band {
  border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge);
  background: linear-gradient(180deg, rgba(242,178,77,0.05), transparent);
}
.stats { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stat { padding: 22px; border: 1px solid var(--edge); border-radius: var(--radius); background: var(--bg2); }
.stat b { display: block; font-size: 34px; letter-spacing: -0.02em; color: var(--accent); }
.stat span { color: var(--muted); font-size: 14px; }

footer { max-width: 1180px; margin: 0 auto; padding: 40px 24px 60px; color: var(--muted); font-size: 14px; display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; border-top: 1px solid var(--edge); }
footer nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .hero { min-height: 88vh; align-items: flex-end; }
  .hero-inner { padding: 96px 18px 48px; }
  section { padding: 52px 18px; }
  .btn { width: 100%; justify-content: center; }
}
