@font-face {
  font-family: "Geist";
  src: url("assets/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0b0d0c;
  --panel: #131614;
  --panel-raised: #191d1a;
  --ink: #f4f2e9;
  --muted: #a9afa9;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #d8ff72;
  --accent-dark: #11190a;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --page: min(1240px, calc(100% - 48px));
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 83% 4%, rgba(122, 152, 104, 0.12), transparent 28rem),
    radial-gradient(circle at 4% 34%, rgba(54, 107, 98, 0.08), transparent 30rem),
    var(--bg);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  opacity: 0.08;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 34vw;
  min-width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.08;
  pointer-events: none;
}

.ambient-one {
  top: 16vh;
  right: -18vw;
  background: #baff69;
}

.ambient-two {
  bottom: 2vh;
  left: -22vw;
  background: #4cbeaa;
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--page);
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 13, 12, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Geist", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links a,
.text-link {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-cta svg {
  width: 17px;
  color: #ff4e45;
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 88px);
  padding-block: clamp(56px, 8vw, 104px) 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bec4bd;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(3.25rem, 6.15vw, 6.7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-dark);
}

.button-primary:hover {
  background: #e4ff9f;
  transform: translateY(-2px);
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.play-icon {
  font-size: 0.7rem;
}

.hero-art {
  position: relative;
  min-height: min(650px, 68vh);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: #111;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.hero-art::after,
.media-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.16), transparent 35%);
  opacity: 0;
  content: "";
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-art:hover::after,
.media-card:hover::after {
  opacity: 1;
}

.hero-art > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-art:hover > img {
  transform: scale(1.035);
}

.hero-art-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 8, 10, 0.1) 25%, rgba(4, 7, 7, 0.86) 100%);
}

.hero-art-topline,
.hero-art-copy,
.round-play {
  position: absolute;
  z-index: 3;
}

.hero-art-topline {
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 9, 8, 0.5);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.hero-art-copy {
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: grid;
  gap: 9px;
}

.hero-art-copy > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art-copy strong {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.round-play {
  right: 26px;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(5, 8, 8, 0.5);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-art:hover .round-play {
  background: var(--accent);
  color: var(--accent-dark);
  transform: scale(1.06);
}

.content-section {
  padding-block: clamp(78px, 10vw, 138px) 0;
}

.section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.text-link {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.86rem;
}

.text-link span {
  margin-left: 4px;
  color: var(--accent);
}

.playlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  grid-template-rows: repeat(2, minmax(255px, 1fr));
  gap: 16px;
}

.media-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transform: translateZ(0);
}

.playlist-card:first-child {
  grid-row: 1 / 3;
}

.media-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
}

.media-card:hover > img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.card-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 6, 5, 0.04) 16%, rgba(5, 7, 6, 0.9) 100%);
}

.card-chip,
.card-duration {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 10, 9, 0.58);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-chip {
  left: 18px;
}

.card-duration {
  right: 18px;
}

.card-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.card-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-content h3 {
  max-width: 620px;
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.card-content > span:first-child {
  min-width: 0;
}

.playlist-card:not(:first-child) .card-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.card-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(8, 10, 9, 0.52);
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.media-card:hover .card-arrow {
  background: var(--accent);
  color: var(--accent-dark);
  transform: rotate(8deg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  grid-column: span 4;
  min-height: 0;
  aspect-ratio: 16 / 10.5;
}

.video-card:nth-child(4),
.video-card:nth-child(5) {
  grid-column: span 6;
  aspect-ratio: 16 / 8.8;
}

.video-card .card-content h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

.about {
  padding-block: clamp(100px, 12vw, 170px) 80px;
}

.about-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 13% 20%, rgba(216, 255, 114, 0.09), transparent 30%),
    var(--panel);
}

.about-avatar {
  width: 180px;
  height: 180px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  object-fit: cover;
}

.about-copy .eyebrow {
  margin-bottom: 14px;
}

.about-copy h2 {
  max-width: 700px;
  font-size: clamp(2rem, 4vw, 4.1rem);
}

.about-copy > p:not(.eyebrow):not(.headphones-note) {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.headphones-note {
  margin: 20px 0 0;
  color: #d5dad5;
  font-size: 0.82rem;
}

.headphones-note span {
  margin-right: 7px;
  color: var(--accent);
}

.about-link {
  min-width: 134px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 7px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-link span {
  font-size: 1.1rem;
}

.about-link:hover {
  background: #e6ffa3;
  transform: rotate(4deg) scale(1.03);
}

.channel-banner {
  position: relative;
  margin-top: 16px;
  min-height: 180px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0b0b0b;
}

.channel-banner img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.65s ease, opacity 0.35s ease;
}

.channel-banner > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
}

.channel-banner:hover img {
  opacity: 0.88;
  transform: scale(1.015);
}

.channel-banner b {
  color: var(--accent);
}

.site-footer {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #777e78;
  font-size: 0.75rem;
}

.site-footer > p:last-child {
  justify-self: end;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cdd1cc;
  font-weight: 600;
}

.footer-brand .brand-mark {
  width: 29px;
  height: 29px;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  margin: 0;
  padding: 14px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-dark);
  text-align: center;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  animation: reveal-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
  }

  .hero-art {
    min-height: 570px;
  }

  .about-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .about-avatar {
    width: 140px;
    height: 140px;
  }

  .about-link {
    grid-column: 2;
    width: max-content;
    min-width: auto;
    min-height: 46px;
    aspect-ratio: auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-radius: 999px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 32px, 680px);
  }

  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 72px 48px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-art {
    min-height: 590px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .playlist-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 290px;
  }

  .playlist-card:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .video-card,
  .video-card:nth-child(4),
  .video-card:nth-child(5) {
    grid-column: span 6;
    aspect-ratio: 16 / 11;
  }

  .video-card:last-child {
    grid-column: 4 / 10;
  }

  .channel-banner {
    min-height: 130px;
  }

  .channel-banner img {
    min-height: 130px;
  }
}

@media (max-width: 580px) {
  :root {
    --page: calc(100% - 24px);
    --radius-xl: 26px;
    --radius-lg: 20px;
  }

  .brand-copy small,
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .hero {
    padding-top: 58px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .hero-lede {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 500px;
  }

  .hero-art-topline {
    top: 17px;
    left: 17px;
  }

  .hero-art-copy {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .round-play {
    top: 20px;
    right: 18px;
    width: 46px;
    height: 46px;
  }

  .playlist-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .playlist-card,
  .playlist-card:first-child {
    min-height: 390px;
    grid-column: auto;
    grid-row: auto;
  }

  .video-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-card,
  .video-card:nth-child(4),
  .video-card:nth-child(5),
  .video-card:last-child {
    min-height: 330px;
    grid-column: auto;
    aspect-ratio: auto;
  }

  .card-content {
    right: 16px;
    bottom: 17px;
    left: 16px;
  }

  .card-chip,
  .card-duration {
    top: 15px;
  }

  .card-chip {
    left: 15px;
  }

  .card-duration {
    right: 15px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-avatar {
    width: 112px;
    height: 112px;
  }

  .about-link {
    grid-column: auto;
  }

  .channel-banner {
    min-height: 96px;
  }

  .channel-banner img {
    min-height: 0;
    height: auto;
    object-fit: contain;
  }

  .channel-banner > span {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    font-size: 0.63rem;
  }

  .site-footer {
    padding-block: 28px;
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:first-of-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
