@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --fc-bg: #ffffff;
  --fc-surface: rgba(255, 255, 255, 0.96);
  --fc-surface-strong: #ffffff;
  --fc-ink: #111111;
  --fc-muted: #737373;
  --fc-line: rgba(0, 0, 0, 0.1);
  --fc-brand: #fcc858;
  --fc-brand-deep: #000000;
  --fc-accent: #fcc858;
  --fc-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --fc-radius-xl: 32px;
  --fc-radius-lg: 24px;
  --fc-radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fc-ink);
  font-family: "DM Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(252, 200, 88, 0.22), transparent 24%),
    radial-gradient(circle at top right, rgba(252, 200, 88, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffcf4 45%, #ffffff 100%);
}

a {
  color: inherit;
}

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

.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}

.fc-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fc-nav-shell {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.fc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fc-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.fc-brand img {
  width: auto;
  height: 74px;
  max-width: min(100%, 360px);
}

.fc-nav-links {
  gap: 0.35rem;
}

.fc-nav-links .nav-link {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--fc-muted);
  transition: 0.2s ease;
}

.fc-nav-links .nav-link:hover,
.fc-nav-links .nav-link:focus {
  color: var(--fc-brand-deep);
  background: rgba(252, 200, 88, 0.18);
}

.fc-main {
  padding: 2rem 0 4rem;
}

.fc-section {
  margin-bottom: 2rem;
}

.fc-section-compact {
  margin-bottom: 0.5rem;
}

.fc-section-heading {
  margin-bottom: 1.2rem;
}

.fc-section-heading h2,
.fc-section-heading h1 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1;
}

.fc-section-heading p {
  margin: 0;
  color: var(--fc-muted);
  font-size: 1.05rem;
}

.fc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--fc-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 230, 0.95));
  box-shadow: var(--fc-shadow);
}

.fc-hero::after {
  content: "";
  position: absolute;
  inset: auto -6% -28% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 200, 88, 0.28), transparent 68%);
  pointer-events: none;
}

.fc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.fc-hero-copy {
  position: relative;
  z-index: 1;
}

.fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(252, 200, 88, 0.22);
  color: #3f3f3f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-badge::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--fc-brand);
  box-shadow: 0 0 0 6px rgba(252, 200, 88, 0.18);
}

.fc-hero-copy h1 {
  margin: 1rem 0 1rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(2.7rem, 7vw, 5.3rem);
  line-height: 0.95;
}

.fc-hero-copy p {
  max-width: 48rem;
  margin: 0;
  color: var(--fc-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.fc-hero-actions,
.fc-listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.fc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fc-button:hover,
.fc-button:focus {
  transform: translateY(-2px);
}

.fc-button-primary {
  color: #111111;
  background: linear-gradient(135deg, #fcc858, #f2b71b);
  box-shadow: 0 14px 30px rgba(252, 200, 88, 0.32);
}

.fc-button-secondary {
  color: var(--fc-brand-deep);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.1);
}

.fc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.fc-stat {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--fc-radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.fc-stat strong {
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.45rem;
}

.fc-stat span {
  color: var(--fc-muted);
  font-size: 0.95rem;
}

.fc-hero-media {
  position: relative;
}

.fc-portrait-card,
.fc-surface-card,
.fc-page-card,
.fc-calendar-shell,
.fc-embed-shell,
.fc-cta-band {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--fc-radius-lg);
  background: var(--fc-surface);
  box-shadow: var(--fc-shadow);
}

.fc-portrait-card {
  overflow: hidden;
}

.fc-portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.fc-portrait-copy {
  padding: 1.15rem 1.25rem 1.35rem;
}

.fc-portrait-copy strong {
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.2rem;
}

.fc-portrait-copy p {
  margin: 0.35rem 0 0;
  color: var(--fc-muted);
}

.fc-embed-shell,
.fc-calendar-shell,
.fc-page-card,
.fc-surface-card {
  padding: 1.4rem;
}

.fc-video-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fc-video-head h3,
.fc-page-card h3 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.fc-video-head p,
.fc-page-card p,
.fc-surface-card p {
  margin: 0.3rem 0 0;
  color: var(--fc-muted);
}

.fc-ratio {
  overflow: hidden;
  border-radius: 20px;
}

.fc-ratio iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  border: 0;
}

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

.fc-episode-card,
.fc-platform-card {
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-episode-card:hover,
.fc-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(45, 21, 10, 0.12);
}

.fc-episode-card a,
.fc-platform-card a {
  text-decoration: none;
}

.fc-episode-thumb {
  overflow: hidden;
  border-radius: 16px;
  background: #f7f7f7;
}

.fc-episode-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fc-episode-meta {
  margin-top: 0.9rem;
}

.fc-episode-date {
  color: #8c8c8c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-episode-title {
  margin: 0.45rem 0 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.fc-link-inline {
  display: inline-flex;
  margin-top: 0.75rem;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
}

.fc-platform-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
}

.fc-platform-card p {
  margin: 0;
  color: var(--fc-muted);
}

.fc-home-episode-list {
  display: grid;
  gap: 0.9rem;
}

.fc-home-episode-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-home-episode-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.fc-home-episode-row .fc-episode-thumb {
  border-radius: 14px;
}

.fc-home-episode-copy {
  min-width: 0;
}

.fc-home-episode-copy h3 {
  margin: 0.35rem 0 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.fc-home-episode-copy p {
  margin: 0.45rem 0 0;
  color: var(--fc-muted);
  font-size: 0.94rem;
}

.fc-copy {
  color: var(--fc-muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.fc-copy p:last-child {
  margin-bottom: 0;
}

.fc-legal-card h1,
.fc-legal-card h2 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.fc-legal-card h2 {
  margin-top: 1.8rem;
  font-size: 1.2rem;
}

.fc-legal-card p {
  color: var(--fc-muted);
  line-height: 1.8;
}

.fc-table-wrap {
  overflow-x: auto;
}

.table {
  margin-bottom: 0;
}

.table > :not(caption) > * > * {
  padding: 1rem;
  border-bottom-color: var(--fc-line);
  vertical-align: middle;
}

.table thead th {
  color: var(--fc-brand-deep);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table tbody tr:hover {
  background: rgba(252, 200, 88, 0.14);
}

.table img {
  max-width: 180px;
  border-radius: 14px;
}

.pagination {
  gap: 0.45rem;
  flex-wrap: wrap;
}

.page-link {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px !important;
  color: var(--fc-brand-deep);
  background: rgba(255, 255, 255, 0.9);
}

.page-link:hover,
.page-link:focus {
  color: #111111;
  background: var(--fc-brand);
  border-color: var(--fc-brand);
}

.page-item.active .page-link {
  color: #111111;
  background: var(--fc-brand);
  border-color: var(--fc-brand);
}

.fc-cta-band {
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(43, 43, 43, 0.96));
  color: #ffffff;
}

.fc-cta-band h3 {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.45rem;
}

.fc-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.fc-cta-band .fc-button-secondary {
  color: #ffffff;
  border-color: rgba(252, 200, 88, 0.34);
  background: rgba(252, 200, 88, 0.12);
}

.fc-sponsor-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.fc-sponsor-strip img {
  height: 46px;
  width: auto;
}

.fc-sponsor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fc-sponsor-link img {
  height: 42px;
  width: auto;
}

.fc-sponsor-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.08);
}

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

.fc-social-card {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.fc-social-card img {
  width: 100%;
  border-radius: 18px;
}

.fc-social-card strong {
  display: block;
  margin-top: 0.85rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.fc-social-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--fc-muted);
}

.fc-site-footer {
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.fc-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(160px, 220px));
  gap: 1.5rem;
}

.fc-footer-brand p,
.fc-footer-links a,
.fc-footer-bottom p {
  color: var(--fc-muted);
}

.fc-footer-links h5 {
  margin-bottom: 0.8rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.fc-footer-links .nav-link {
  padding: 0.25rem 0;
}

.fc-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.fc-socials {
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(252, 200, 88, 0.16);
  color: var(--fc-brand-deep);
}

.fc-socials a:hover,
.fc-socials a:focus {
  background: var(--fc-brand);
  color: #111111;
}

@media (max-width: 991.98px) {
  .fc-nav {
    flex-direction: column;
    align-items: center;
  }

  .fc-nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .fc-hero-grid,
  .fc-footer-top {
    grid-template-columns: 1fr;
  }

  .fc-episode-grid,
  .fc-platform-grid,
  .fc-hero-stats,
  .fc-social-grid {
    grid-template-columns: 1fr;
  }

  .fc-sponsor-divider {
    display: none;
  }

}

@media (max-width: 575.98px) {
  .fc-main {
    padding-top: 1rem;
  }

  .fc-nav-links {
    gap: 0.2rem;
  }

  .fc-nav-links .nav-link {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    font-size: 0.92rem;
  }

  .fc-brand img {
    height: 58px;
  }

  .fc-home-episode-row {
    grid-template-columns: 1fr;
  }

  .fc-hero,
  .fc-embed-shell,
  .fc-calendar-shell,
  .fc-page-card,
  .fc-surface-card,
  .fc-cta-band {
    border-radius: 22px;
  }
}
