/*
  Neon Static Static Site v4
  --------------------------
  Discord-inspired dark mode, with toned-down Neon Static accents.

  EDITING GUIDE:
  - Colors live in :root.
  - Layout is controlled by reusable classes like .card, .media-card, .section-pad.
  - Podcast and YouTube embeds are edited in the HTML files.
*/

/* =========================
   DESIGN TOKENS
   ========================= */

:root {
  /*
    Discord-ish dark colors:
    - main background around #313338 / #2b2d31 family
    - cards slightly darker/lighter for contrast
    - text off-white, not pure white
  */
  --color-bg: #313338;
  --color-bg-2: #2b2d31;
  --color-card: #383a40;
  --color-card-2: #404249;

  --color-text: #f2f3f5;
  --color-text-soft: #dbdee1;
  --color-muted: #b5bac1;

  /*
    Neon Static accents, softened so they do not hurt on dark backgrounds.
  */
  --color-blue: #8bddea;
  --color-pink: #df6aa8;
  --color-yellow: #e8d36f;
  --color-green: #8fd7ad;
  --color-purple: #bba5e8;

  --color-border: rgba(242, 243, 245, 0.14);
  --color-border-strong: rgba(242, 243, 245, 0.28);

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
  --shadow-hover: 0 24px 64px rgba(0, 0, 0, 0.26);
  --glow-blue: 0 0 28px rgba(139, 221, 234, 0.20);
  --glow-pink: 0 0 28px rgba(223, 106, 168, 0.22);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --font-heading: "Orbitron", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-max: 1160px;
}

/* =========================
   BASE / RESET
   ========================= */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 221, 234, 0.08), transparent 26rem),
    radial-gradient(circle at 95% 10%, rgba(223, 106, 168, 0.08), transparent 28rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

img, iframe { max-width: 100%; }

a { color: inherit; }

p { margin: 0 0 1rem; }

h1, h2, h3 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

/* =========================
   LAYOUT HELPERS
   ========================= */

.container {
  width: min(var(--container-max), calc(100% - 32px));
  margin: 0 auto;
}

.section-pad { padding: 72px 0; }

.narrow { max-width: 720px; }

.rich-text p + p { margin-top: 1rem; }

/* =========================
   HEADER / NAVIGATION
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(43, 45, 49, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-text);
}

.brand-logo {
  max-height: 56px;
  width: auto;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-border-strong);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #202225;
  box-shadow: var(--glow-blue);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-tagline {
  font-size: 0.83rem;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-text-soft);
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(139, 221, 234, 0.14);
  color: var(--color-blue);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--color-border-strong);
  background: var(--color-card);
  color: var(--color-text);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* =========================
   HERO
   ========================= */

.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(139, 221, 234, 0.16), transparent 24rem),
    radial-gradient(circle at 15% 85%, rgba(223, 106, 168, 0.12), transparent 26rem),
    var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.eyebrow {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
  color: var(--color-blue);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--color-text-soft);
  max-width: 720px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}

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

.button-blue {
  background: var(--color-blue);
  color: #202225;
  box-shadow: var(--glow-blue);
}

.button-dark {
  background: var(--color-text);
  color: #202225;
}

.button-outline {
  background: transparent;
  color: var(--color-text);
}

.button-outline:hover {
  background: rgba(223, 106, 168, 0.14);
  color: var(--color-pink);
  box-shadow: var(--glow-pink);
}

/* =========================
   PANELS / CARDS
   ========================= */

.feature-panel,
.card,
.drop-panel,
.embed-wrap,
.media-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)), var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-panel {
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-soft), var(--glow-pink);
}

.feature-panel-top,
.media-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  background: rgba(139, 221, 234, 0.13);
  border: 1px solid rgba(139, 221, 234, 0.42);
  color: var(--color-blue);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
  font-size: 0.8rem;
}

.small-pill { font-size: 0.72rem; }

.pink-pill {
  background: rgba(223, 106, 168, 0.12);
  border-color: rgba(223, 106, 168, 0.42);
  color: var(--color-pink);
}

.small-muted {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.text-link,
.card-link {
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  color: var(--color-blue);
}

.text-link:hover,
.card-link:hover { color: var(--color-pink); }

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(139, 221, 234, 0.36);
}

.card-accent {
  width: 64px;
  height: 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.card-accent.blue { background: var(--color-blue); box-shadow: var(--glow-blue); }
.card-accent.pink { background: var(--color-pink); box-shadow: var(--glow-pink); }
.card-accent.yellow { background: var(--color-yellow); }
.card-accent.green { background: var(--color-green); }

/* =========================
   MEDIA SECTIONS
   ========================= */

.media-band {
  background:
    radial-gradient(circle at 30% 10%, rgba(187, 165, 232, 0.10), transparent 24rem),
    rgba(0,0,0,0.10);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.media-stack {
  display: grid;
  gap: 28px;
}

.media-card {
  padding: 24px;
}

.media-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 28px;
  align-items: center;
}

.embed-wrap {
  padding: 12px;
  margin: 18px 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #000;
  margin: 18px 0;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder,
.embed-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: rgba(139, 221, 234, 0.08);
  border: 1px dashed rgba(139, 221, 234, 0.38);
  border-radius: var(--radius-md);
  font-weight: 900;
  padding: 24px;
  color: var(--color-muted);
}

/* =========================
   PAGE HEROES / PAGE LAYOUTS
   ========================= */

.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(139, 221, 234, 0.14), transparent 24rem),
    var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 0;
}

.episode-list {
  display: grid;
  gap: 28px;
}

.episode-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

/* =========================
   LISTS / DROPS / CTA / FOOTER
   ========================= */

.link-list,
.check-list {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.link-list li,
.check-list li { margin: 0.4rem 0; }

.link-list a {
  font-weight: 800;
  color: var(--color-blue);
}

.drop-panel {
  padding: 32px;
  background:
    radial-gradient(circle at 80% 0%, rgba(223, 106, 168, 0.14), transparent 20rem),
    var(--color-card);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(139, 221, 234, 0.10), rgba(223, 106, 168, 0.08)),
    var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2,
.cta-inner p { margin: 0; }

.site-footer {
  background: #232428;
  color: var(--color-text);
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p { margin: 0; }

/* =========================
   RESPONSIVE DESIGN
   ========================= */

@media (max-width: 980px) {
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-header { flex-wrap: wrap; }

  .menu-toggle { display: inline-flex; }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .main-nav.open { display: flex; }

  .main-nav a { background: rgba(255,255,255,0.04); }

  .hero-grid,
  .two-column,
  .episode-card,
  .media-card-wide {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-tagline { display: none; }
  .section-pad { padding: 48px 0; }
  h1 { font-size: 2.45rem; }
}
