:root {
  color-scheme: dark;
  --ink: #f8f7ff;
  --muted: #bdb6d2;
  --dim: #8d86a3;
  --line: rgba(230, 222, 255, 0.16);
  --page: #080714;
  --panel: rgba(21, 17, 42, 0.78);
  --panel-strong: #15112a;
  --blue: #36aef4;
  --cyan: #9bc7ff;
  --violet: #695cf6;
  --indigo: #2e2a7b;
  --silver: #d9d8e8;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(32, 184, 255, 0.16) 0%, rgba(8, 7, 20, 0) 36%),
    linear-gradient(255deg, rgba(105, 92, 246, 0.16) 0%, rgba(8, 7, 20, 0) 32%),
    linear-gradient(180deg, #120b31 0%, #080714 42%, #110a2a 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  color: #fff;
  background: rgba(8, 7, 20, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand--dark {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet) 58%, var(--indigo));
  font-size: 0.95rem;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.top-nav a {
  color: #fff;
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--cyan);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(680px, 86vh, 860px);
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 7, 20, 0.94) 0%, rgba(8, 7, 20, 0.78) 42%, rgba(8, 7, 20, 0.5) 100%),
    radial-gradient(circle at 78% 34%, rgba(105, 92, 246, 0.2), transparent 28rem),
    radial-gradient(circle at 18% 16%, rgba(32, 184, 255, 0.14), transparent 30rem),
    url("/images/flick-movie-talk-podcast-3x-upscale.jpg") center / cover,
    linear-gradient(135deg, #080714 0%, #120b31 48%, #090619 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 20, 0.96) 0%, rgba(18, 11, 49, 0.78) 54%, rgba(8, 7, 20, 0.52) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 72px);
  opacity: 0.72;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #080714 0%, transparent 30%, transparent 72%, rgba(8, 7, 20, 0.64) 100%);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 82px) 0;
}

.hero__copy {
  max-width: 820px;
  padding-top: clamp(34px, 5vw, 78px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.7vw, 4.35rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1;
}

p,
li,
address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: #eeeaff;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.primary-links,
.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-decoration: none;
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet) 56%, var(--indigo));
}

.button:hover {
  border-color: #fff;
  background: #fff;
  color: #120a2f;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(116, 240, 255, 0.24);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(116, 240, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: capitalize;
}

.cover-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: min(100%, 420px);
  overflow: hidden;
  border: 1px solid rgba(230, 222, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 7, 20, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 70px rgba(32, 184, 255, 0.18);
}

.cover-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #080714;
}

.hero__copy {
  grid-column: 2;
  grid-row: 1;
}

.listen-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -44px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.listen-strip a {
  display: block;
  min-height: 104px;
  padding: 22px;
  color: #fff;
  background: rgba(21, 17, 42, 0.94);
  text-decoration: none;
}

.listen-strip a:hover {
  background: rgba(40, 27, 86, 0.98);
}

.listen-strip span,
.listen-strip strong {
  display: block;
}

.listen-strip span {
  margin-bottom: 8px;
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.listen-strip strong {
  font-size: clamp(1rem, 2vw, 1.34rem);
}

.platform-bar {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px auto 0;
  color: var(--muted);
}

.platform-bar span {
  margin-right: 4px;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-bar a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.platform-bar a:hover {
  color: var(--cyan);
  border-color: rgba(116, 240, 255, 0.32);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 94px) 0;
}

.player-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.player-card {
  overflow: hidden;
  border: 1px solid rgba(116, 240, 255, 0.24);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: 0 22px 76px rgba(0, 0, 0, 0.34);
}

.player-card iframe {
  display: block;
  border: 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.section-heading h2 {
  max-width: 680px;
}

.intro-copy {
  border-left: 5px solid var(--cyan);
  padding-left: clamp(20px, 3vw, 34px);
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 17, 42, 0.74);
}

.faq-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.08rem;
}

.faq-grid p {
  margin-bottom: 0;
}

.faq-grid a {
  color: #fff;
  font-weight: 850;
  text-decoration-color: rgba(155, 199, 255, 0.72);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.faq-grid a:hover {
  color: var(--cyan);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.feature-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(230, 222, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  background: #130f2d;
  text-decoration: none;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background: url("/images/flick-movie-talk-podcast-3x-upscale.jpg") center / cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 20, 0.98) 0%, rgba(18, 10, 47, 0.34) 76%);
}

.feature-card:hover::before {
  opacity: 0.52;
  transform: scale(1.04);
}

.feature-card--blue {
  background: #0e3a76;
}

.feature-card--image::before {
  opacity: 0.68;
}

.feature-card--dark {
  background: #221052;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.card-kicker {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card strong {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.04;
}

.feature-card span:last-child {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.resource-block {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.resource-block--primary {
  grid-row: span 2;
  border-top: 6px solid var(--cyan);
}

.resource-block--dark {
  color: #fff;
  background: linear-gradient(145deg, rgba(14, 58, 118, 0.82), rgba(48, 23, 105, 0.88));
  border-color: rgba(116, 240, 255, 0.2);
}

.resource-block--dark p,
.resource-block--dark li,
.resource-block--dark a {
  color: #e2dcf4;
}

.channel-list {
  display: grid;
  gap: 12px;
}

.channel-list a {
  display: block;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.channel-list a:hover,
.link-list a:hover,
.text-links a:hover {
  color: var(--cyan);
}

.channel-list strong,
.channel-list span {
  display: block;
}

.channel-list span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  font-weight: 850;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  width: auto;
  padding: clamp(36px, 5vw, 58px) clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(8, 7, 20, 0.72);
  border-top: 1px solid var(--line);
}

.trust-band h2,
.trust-band p,
.trust-band address {
  color: #fff;
}

.trust-band p {
  max-width: 720px;
  color: #d8d1eb;
}

address {
  margin: 0;
  font-style: normal;
}

.text-links a {
  color: #fff;
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #d8d1eb;
  background: #06050f;
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.error-page {
  display: grid;
  place-items: center;
  padding: 28px;
}

.error-shell {
  max-width: 680px;
}

.error-shell h1 {
  margin-top: 36px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .top-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero__content,
  .listen-strip,
  .player-section,
  .intro-section,
  .faq-grid,
  .feature-grid,
  .resource-layout,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .cover-card {
    justify-self: start;
    max-width: 420px;
  }

  .hero__copy {
    padding-top: 0;
  }

  .resource-block--primary {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero__content,
  .section,
  .listen-strip,
  .platform-bar {
    width: min(100% - 28px, 1180px);
  }

  .hero__content {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .primary-links,
  .button {
    width: 100%;
  }

  .listen-strip {
    margin-top: -22px;
  }

  .listen-strip a {
    min-height: auto;
    padding: 18px;
  }

  .player-card iframe {
    height: 390px;
  }

  .feature-card {
    min-height: 260px;
    padding: 24px;
  }

  .trust-band,
  .site-footer {
    padding-right: 14px;
    padding-left: 14px;
  }
}
