/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #060606;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --surface-3: #222222;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.16);
  --text: #f0f0f0;
  --text-2: #999999;
  --text-3: #666666;
  --accent: #00B4A6;
  --accent-dark: #009688;
  --accent-soft: rgba(0,180,166,.1);
  --accent-glow: rgba(0,180,166,.12);
  --green: #34d399;
  --green-soft: rgba(52,211,153,.08);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #33c9bd; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ===== Nav ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 2rem;
  background: rgba(6,6,6,.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: .95rem; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -.01em;
}
.nav-logo span { font-weight: 400; color: var(--text-2); }
.nav-logo-img { height: 130px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .8rem; color: var(--text-2); text-decoration: none;
  transition: color .2s; font-weight: 450;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: var(--accent) !important; font-weight: 550 !important;
  background: var(--accent-soft);
  padding: .4rem 1rem; border-radius: 6px;
  transition: all .2s !important;
}
.nav-cta:hover {
  background: var(--accent) !important; color: var(--bg) !important;
}

.mobile-menu {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 200;
}
.mobile-menu span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  position: absolute; left: 0;
  transition: all .25s ease;
}
.mobile-menu span:nth-child(1) { top: 0; }
.mobile-menu span:nth-child(2) { top: 9px; }
.mobile-menu span:nth-child(3) { top: 18px; }
.mobile-menu.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.mobile-menu.open span:nth-child(2) { opacity: 0; }
.mobile-menu.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--font); font-size: .875rem; font-weight: 550;
  padding: .7rem 1.5rem; border-radius: 8px;
  text-decoration: none; cursor: pointer;
  transition: all .2s ease; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-dark); color: #fff;
  box-shadow: 0 4px 16px rgba(0,180,166,.25);
  transform: translateY(-1px);
}
.btn-white { background: #fff; color: var(--bg); }
.btn-white:hover { background: #eee; color: var(--bg); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,.5); color: #fff;
}
.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }
.btn-lg { padding: .85rem 2rem; font-size: .95rem; }

/* ===== Labels ===== */
.label {
  display: inline-block;
  font-size: .7rem; font-weight: 550;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

/* ===== Sections ===== */
.section { padding: 4rem 0 14rem; }
.section-alt { background: var(--bg); }
.section-host { padding-top: 0; margin-top: -8rem; }
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -.03em;
  line-height: 1.15; margin-bottom: .75rem;
}
.section-header { margin-bottom: 3rem; padding-top: 4rem; }
.section-header h2 { max-width: 100%; }

/* ===== Hero ===== */
.hero { padding: 14rem 0 2.5rem; }
.hero-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; min-height: 480px;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 3rem;
}
.hero-tag {
  font-size: .7rem; font-weight: 550;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem; display: block;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; color: #fff;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
  max-width: 440px; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ===== About ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.about-text p {
  color: var(--text-2); font-size: .95rem; line-height: 1.75;
  margin-bottom: 1rem;
}
.stat {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.stat:first-child { padding-top: 0; }
.stat:last-child { border-bottom: none; }
.stat-icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}
.stat-icon svg { width: 40px; height: 40px; }
.stat strong { font-size: 1.8rem; font-weight: 600; display: block; margin-bottom: .3rem; }
.stat p { font-size: 1rem; color: var(--text-2); margin: 0; }

/* ===== Host ===== */
.host-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.host-image-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4;
}
.host-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% center;
}
.host-info h2 {
  font-size: 2rem; margin-bottom: .25rem;
}
.host-role {
  font-size: .85rem; color: var(--text-2); margin-bottom: 1.25rem;
}
.host-info p {
  color: var(--text); font-size: .9rem; line-height: 1.75;
  margin-bottom: 1rem;
}
.host-info em { color: var(--text); font-style: italic; }
.host-shows { margin-top: 1.5rem; }
.host-shows-label {
  font-size: .72rem; font-weight: 550;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: .65rem; display: block;
}
.show-logos {
  display: flex; gap: .5rem;
}
.show-logos img {
  height: 72px; width: auto; border-radius: 6px;
  object-fit: cover;
}

/* ===== Episodes ===== */
.section-episodes { padding: 0 0 2rem; margin-top: -8rem; }
.episodes-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3rem; align-items: center;
}
.sc-logo-wrap { margin-bottom: 0; display: flex; align-items: center; justify-content: center; }
.sc-logo-img { max-width: 832px; width: 100%; height: auto; }
.episodes-desc {
  color: var(--text); font-size: .95rem; line-height: 1.75;
  margin: 0 0 2.5rem;
}
.platform-links {
  display: flex; gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.platform-card {
  display: flex; align-items: center; gap: .6rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  color: var(--text); font-size: .85rem; font-weight: 550;
  text-decoration: none;
  transition: all .2s;
}
.platform-card:hover {
  border-color: var(--border-hover); color: var(--text);
  background: var(--surface-2);
}
.platform-card img { height: 32px; width: 32px; border-radius: 8px; object-fit: contain; background: #fff; }

/* ===== CTA - Be a Guest ===== */
.section-cta { padding: 3rem 0 5rem; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 0; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.cta-image {
  overflow: hidden; min-height: 380px;
}
.cta-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-content {
  background: var(--surface);
  padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-content h2 { margin-bottom: .75rem; }
.cta-content p {
  color: var(--text-2); font-size: .9rem; line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-tagline {
  font-size: .82rem; color: var(--text-3);
  margin-top: .35rem;
}
.footer-links-col h4 {
  font-size: .7rem; font-weight: 550;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: .75rem;
}
.footer-links-col a {
  display: block; font-size: .82rem; color: var(--text-2);
  padding: .25rem 0; text-decoration: none;
}
.footer-links-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .75rem; color: var(--text-3);
}
.footer-bottom a { color: var(--text-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  nav { padding: .75rem 1.25rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg); z-index: 150;
    justify-content: center; align-items: center;
    gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .mobile-menu { display: block; }

  .hero { padding: 4rem 0 1.5rem; }
  .hero-card { min-height: 380px; }
  .hero-content { padding: 2rem 1.5rem; }

  .section { padding: 3.5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .host-grid { grid-template-columns: 1fr; }
  .host-image-wrap { aspect-ratio: 4/3; max-height: 350px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-image { min-height: 240px; }

  .platform-links { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
