:root {
  --bg-main: #041b26;
  --bg-alt: #071f2b;
  --bg-card: #0a2634;
  --accent: #f2c26b;
  --accent-soft: rgba(242, 194, 107, 0.25);
  --text-main: #f5f5f5;
  --text-muted: #c7d1d9;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --font-heading: "Playfair Display", system-ui, -apple-system, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
  --max-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #0b3143 0, #020912 45%, #01060b 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 1.5rem;
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #0d3749 0, #031019 52%);
}

.section-header {
  max-width: 640px;
  text-align: center;
  margin: 0 auto 3rem;
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(1, 6, 11, 0.9), rgba(1, 6, 11, 0.75));
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fbe3a2, #f2c26b 42%, #f28b50 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: var(--text-main);
}

/* Hero */

.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(242, 194, 107, 0.2), transparent 60%),
    radial-gradient(circle at 70% 90%, rgba(80, 196, 255, 0.15), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 34rem;
  color: var(--text-muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.highlight {
  color: var(--accent);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #f7d18b, #f2a95d);
  color: #2b1606;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn.full-width {
  width: 100%;
}

/* Hero card */

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  position: relative;
  background: radial-gradient(circle at top, rgba(242, 194, 107, 0.12), #04111a 60%);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  max-width: 340px;
}

.hero-orb {
  position: absolute;
  top: -36px;
  right: 26px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fbe9b4, #f2c26b 40%, #f28b50 85%);
  box-shadow: 0 18px 45px rgba(242, 194, 107, 0.4);
}

.hero-quote {
  margin: 0;
  padding-top: 1.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Typography */

h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
}

/* Split layout */

.split {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
}

/* About card */

.about-card {
  background: rgba(3, 10, 16, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
}

/* Episodes */

.episode-list {
  display: grid;
  gap: 1.8rem;
}

.episode {
  background: rgba(3, 10, 16, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.episode-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.episode-number {
  color: var(--accent);
}

.episode-actions {
  margin-top: 0.75rem;
}

.text-link {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}

.text-link.disabled {
  opacity: 0.55;
  cursor: default;
}

/* Platforms */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(4, 17, 26, 0.9);
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.platform-card:hover:not(.disabled) {
  transform: translateY(-1px);
  border-color: var(--accent-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.platform-card.disabled {
  opacity: 0.6;
  cursor: default;
}

.platform-icon {
  font-size: 1.3rem;
}

.platform-name {
  font-size: 0.95rem;
}

/* Forms */

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}

.field span {
  color: var(--text-muted);
}

input,
textarea {
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.6rem 0.8rem;
  border-radius: 9px;
  border: 1px solid var(--border-subtle);
  background: rgba(3, 11, 17, 0.9);
  color: var(--text-main);
}

input:focus,
textarea:focus {
  outline: 1px solid var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(242, 194, 107, 0.3);
}

textarea {
  resize: vertical;
}

.newsletter-form,
.contact-form {
  background: rgba(3, 10, 16, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-success {
  color: #b4f2b8;
}

.form-error {
  color: #ffb4b4;
}

.contact-email a {
  color: var(--accent);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Contact sidecard */

.contact-sidecard {
  background: rgba(3, 10, 16, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.contact-sidecard h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.contact-links li + li {
  margin-top: 0.35rem;
}

.contact-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.92rem;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0 2rem;
  background: #02070c;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-small {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.footer-social {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.footer-social a {
  color: var(--accent);
  text-decoration: none;
}

.footer-social a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 800px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(1, 6, 11, 0.98);
    flex-direction: column;
    padding: 0.75rem 1.5rem 1.2rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.22s ease, opacity 0.22s ease;
  }

  .site-nav.open {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    justify-content: flex-start;
  }

  .hero-card-inner {
    margin-top: 1rem;
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-card-inner {
    max-width: 100%;
  }

  .hero-quote {
    font-size: 0.88rem;
  }
}
