:root {
  --bg: #0b0b10;
  --bg-2: #14141c;
  --fg: #e9e9f0;
  --muted: #9a9aa8;
  --accent: #e63946;
  --rule: #23232e;
  --maxw: 760px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.hero {
  padding: clamp(28px, 6vw, 72px) 20px 40px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(1200px 400px at 50% -10%, rgba(230,57,70,0.12), transparent 60%),
    var(--bg);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.byline { color: var(--muted); margin: 0 0 28px; }
.who { color: var(--fg); }

.yt {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  outline: none;
}
.yt::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
  transition: opacity .2s ease;
}
.yt:hover::after, .yt:focus-visible::after { opacity: 0.6; }
.yt:focus-visible { box-shadow: 0 0 0 3px var(--accent), 0 20px 60px rgba(0,0,0,0.5); }

.yt__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform .2s ease;
}
.yt:hover .yt__play { transform: translate(-50%, -50%) scale(1.06); }

.yt iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.hero__caption {
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0 0;
}

main { max-width: var(--maxw); margin: 0 auto; padding: 8px 20px 40px; }

.section { padding: 36px 0; border-bottom: 1px solid var(--rule); }
.section:last-of-type { border-bottom: 0; }

h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
h3 { margin: 0 0 6px; font-size: 16px; }
p { margin: 0 0 12px; }

.facts {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 20px;
  color: var(--muted);
}
.facts strong { color: var(--fg); font-weight: 600; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 16px;
}
.card p { color: var(--muted); margin: 0; }

.credits p { color: var(--muted); font-size: 14px; }

footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 20px 48px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
