:root {
  --bg: #121212;
  --panel: #1a1a1a;
  --ink: #f4f4f4;
  --muted: #b3b3b3;
  --line: #2c2c2c;
  --orange: #ff4d00;
  --orange-hover: #ff6a26;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.wrap {
  width: min(68rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

.wrap-narrow {
  width: min(40rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 1.5rem 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.mark {
  width: 2.15rem;
  height: 2.15rem;
  flex: none;
}

.brand-name {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

main {
  flex: 1;
  padding: 3.2rem 0 4rem;
}

h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.lede {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 36rem;
}

p {
  margin: 0 0 1rem;
}

.intro {
  max-width: 38rem;
  color: #ddd;
}

.banner {
  display: inline-block;
  margin: 1.25rem 0 2.4rem;
  padding: 0.55rem 0.9rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
}

.banner:hover,
.banner:focus-visible {
  background: var(--orange-hover);
}

.featured {
  margin: 0 0 1.1rem;
}

.featured .play {
  width: 3rem;
  height: 3rem;
}

.featured .play svg {
  width: 14px;
  height: 14px;
}

.featured .name {
  font-size: 1.15rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  color: inherit;
  border: 1px solid var(--line);
  overflow: hidden;
}

.card:hover,
.card:focus-within {
  border-color: var(--orange);
}

.thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
}

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

.card.is-playing .play {
  display: none;
}

.card.is-playing .thumb {
  cursor: default;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2a140c 0%, #1a1a1a 100%);
}

.play {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  width: 2rem;
  height: 2rem;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

.bar {
  height: 0.35rem;
  background: var(--orange);
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.85rem 0.9rem 1rem;
}

.name {
  font-weight: 700;
  font-size: 0.95rem;
}

.time {
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

footer {
  padding: 1.2rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: baseline;
}

footer a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid #444;
}

footer a:hover,
footer a:focus-visible {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

.legal h1 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  text-transform: none;
  letter-spacing: -0.02em;
}

.legal h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.legal a {
  color: var(--orange);
}

.back {
  display: inline-block;
  margin-bottom: 1.8rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.back:hover,
.back:focus-visible {
  color: var(--orange);
}

address {
  font-style: normal;
}

@media (max-width: 70rem) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .grid {
    grid-template-columns: 1fr;
  }

  main {
    padding-top: 2.2rem;
  }
}
