@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;600;700;900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cy: #22D3EE;
  --vi: #7C3AED;
  --bg: #070B14;
  --surf: #0F1624;
  --card: #111827;
  --brd: rgba(255,255,255,0.10);
  --brdh: rgba(34,211,238,0.30);
  --tp: #FFFFFF;
  --ts: rgba(255,255,255,0.68);
  --tm: rgba(255,255,255,0.42);
  --fn: 'Bebas Neue', sans-serif;
  --fu: 'Barlow', system-ui, sans-serif;
  --ease: cubic-bezier(.34,1.56,.64,1);
  --max: 1200px;
  --hh: 68px;
}

[data-theme="light"] {
  --bg: #F0F4FF;
  --surf: #FFFFFF;
  --card: #FFFFFF;
  --brd: rgba(0,0,0,0.09);
  --brdh: rgba(8,145,178,0.40);
  --tp: #0A0F1E;
  --ts: rgba(10,15,30,0.65);
  --tm: rgba(10,15,30,0.38);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--fu);
  background: var(--bg);
  color: var(--tp);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .35s, color .35s;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: var(--fu); background: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.nd-wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .nd-wrap { padding: 0 16px; } }

/* ── PROGRESS BAR ───────────────────────────────────────── */
#nd-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--cy), var(--vi));
  z-index: 9999; transition: width .1s linear;
}

/* ── HEADER ─────────────────────────────────────────────── */
#nd-header {
  position: sticky; top: 0; z-index: 100; height: var(--hh);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(7,11,20,0.78);
  border-bottom: 1px solid var(--brd);
  transition: background .35s, box-shadow .25s;
}
[data-theme="light"] #nd-header { background: rgba(240,244,255,0.88); }
#nd-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }

.nd-hdr-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nd-logo { font-family: var(--fn); font-size: 1.75rem; letter-spacing: .05em; line-height: 1; }
.nd-logo span { color: var(--cy); }

.nd-nav { display: flex; gap: 28px; list-style: none; }
.nd-nav a {
  font-size: .85rem; font-weight: 600; color: var(--ts);
  transition: color .15s; position: relative; padding-bottom: 4px;
}
.nd-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--cy); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nd-nav a:hover { color: var(--tp); }
.nd-nav a:hover::after { transform: scaleX(1); }

.nd-hdr-right { display: flex; align-items: center; gap: 10px; }

/* ── THEME TOGGLE ───────────────────────────────────────── */
.nd-thm {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--brd); background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: transform .25s var(--ease), border-color .15s;
}
.nd-thm:hover { transform: rotate(20deg) scale(1.1); border-color: var(--cy); }

/* ── HAMBURGER ──────────────────────────────────────────── */
.nd-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; border-radius: 8px;
}
.nd-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--tp); border-radius: 2px;
  transition: transform .25s, opacity .15s;
}
.nd-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nd-burger.open span:nth-child(2) { opacity: 0; }
.nd-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────────────── */
#nd-mobile-nav {
  display: none; position: fixed;
  top: var(--hh); left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99;
  padding: 24px; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--brd);
  overflow-y: auto;
}
#nd-mobile-nav.open { display: flex; }
#nd-mobile-nav a {
  font-size: 1.75rem; font-weight: 900; padding: 14px 0;
  border-bottom: 1px solid var(--brd); color: var(--tp);
  transition: color .15s, padding-left .2s;
}
#nd-mobile-nav a:hover { color: var(--cy); padding-left: 12px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.nd-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 16px;
  font-weight: 700; font-size: .88rem; letter-spacing: .02em;
  transition: transform .2s var(--ease), box-shadow .2s; white-space: nowrap;
  cursor: pointer; border: none; font-family: var(--fu);
}
.nd-btn:hover { transform: translateY(-2px) scale(1.02); }
.nd-btn:active { transform: scale(.97); }
.nd-btn-cy { background: var(--cy); color: #000; box-shadow: 0 6px 20px rgba(34,211,238,.25); }
.nd-btn-cy:hover { box-shadow: 0 10px 28px rgba(34,211,238,.40); }
.nd-btn-gh { background: rgba(255,255,255,.06); color: var(--tp); border: 1px solid var(--brd); }
.nd-btn-gh:hover { background: rgba(255,255,255,.10); border-color: var(--brdh); }
.nd-btn-vi { background: var(--vi); color: #fff; box-shadow: 0 6px 20px rgba(124,58,237,.28); }
.nd-btn-vi:hover { box-shadow: 0 10px 28px rgba(124,58,237,.42); }
.nd-btn-sm { padding: 9px 18px; font-size: .78rem; border-radius: 12px; }
.nd-btn-lg { padding: 16px 32px; font-size: .95rem; border-radius: 20px; }

/* ── BADGES ─────────────────────────────────────────────── */
.nd-badge-new { display: inline-flex; align-items: center; gap: 6px; background: var(--cy); color: #000; font-size: .68rem; font-weight: 900; padding: 5px 12px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; }
.nd-tag { background: rgba(34,211,238,.10); border: 1px solid rgba(34,211,238,.22); color: var(--cy); font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase; }
.nd-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cy); display: block; margin-bottom: 8px; }

/* ── HERO ───────────────────────────────────────────────── */
.nd-hero {
  position: relative; padding: 80px 0 72px; overflow: hidden;
}
.nd-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 75% 20%, rgba(124,58,237,.18) 0, transparent 42%),
              radial-gradient(circle at 8% 82%, rgba(34,211,238,.12) 0, transparent 42%);
}
.nd-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .nd-hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.nd-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--brd); padding: 7px 16px; border-radius: 999px; font-size: .82rem; color: var(--cy); font-weight: 600; margin-bottom: 20px; }
.nd-h1 { font-family: var(--fn); font-size: clamp(3.2rem, 7vw, 5.5rem); line-height: .93; letter-spacing: .02em; margin-bottom: 20px; }
.nd-h1 .nd-gr { display: block; background: linear-gradient(135deg, var(--cy), var(--vi)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nd-hero-p { font-size: 1.05rem; color: var(--ts); line-height: 1.72; max-width: 460px; margin-bottom: 28px; }
.nd-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.nd-platforms { display: flex; flex-wrap: wrap; gap: 12px 18px; color: var(--tm); font-size: .78rem; font-weight: 600; letter-spacing: .05em; align-items: center; }
.nd-platforms span.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--tm); display: inline-block; }

/* ── FEATURED CARD ──────────────────────────────────────── */
.nd-feat { position: relative; border-radius: 28px; overflow: hidden; border: 1px solid var(--brd); box-shadow: 0 32px 64px rgba(0,0,0,.55); animation: nd-float 4s ease-in-out infinite; }
.nd-feat img { width: 100%; height: 460px; object-fit: cover; display: block; }
@media (max-width: 600px) { .nd-feat img { height: 380px; } }
.nd-feat-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.96) 0, rgba(0,0,0,.25) 55%, transparent 100%); }
.nd-feat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.nd-feat-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── SECTIONS ───────────────────────────────────────────── */
.nd-section { padding: 80px 0; }
.nd-section-sm { padding: 0 0 80px; }
.nd-sec-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.nd-sec-title { font-size: clamp(1.7rem, 3.5vw, 2.2rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; }
.nd-display-title { font-family: var(--fn); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: .93; letter-spacing: .02em; margin-bottom: 18px; }

/* ── EPISODE GRID ───────────────────────────────────────── */
.nd-ep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .nd-ep-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .nd-ep-grid { grid-template-columns: 1fr; gap: 18px; } }

.nd-ep-card { background: var(--card); border: 1px solid var(--brd); border-radius: 24px; overflow: hidden; transition: transform .25s var(--ease), border-color .2s, box-shadow .2s; }
.nd-ep-card:hover { transform: translateY(-6px); border-color: var(--brdh); box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 0 48px rgba(34,211,238,.10); }
.nd-ep-img { overflow: hidden; }
.nd-ep-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .45s; }
.nd-ep-card:hover .nd-ep-img img { transform: scale(1.05); }
.nd-ep-body { padding: 20px; }
.nd-ep-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; align-items: center; }
.nd-ep-dur { margin-left: auto; font-size: .72rem; color: var(--tm); font-weight: 600; }
.nd-ep-title { font-weight: 900; font-size: 1.15rem; line-height: 1.25; margin-bottom: 8px; transition: color .15s; }
.nd-ep-card:hover .nd-ep-title { color: var(--cy); }
.nd-ep-desc { color: var(--ts); font-size: .88rem; line-height: 1.6; margin-bottom: 20px; }
.nd-ep-btn { width: 100%; padding: 12px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid var(--brd); color: var(--tp); font-weight: 700; font-size: .82rem; transition: background .2s, color .2s, border-color .2s; cursor: pointer; font-family: var(--fu); }
.nd-ep-btn:hover { background: var(--cy); color: #000; border-color: transparent; }

/* ── CLIPS SECTION ──────────────────────────────────────── */
.nd-clips { border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); background: rgba(255,255,255,.025); }
.nd-clips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .nd-clips-grid { grid-template-columns: 1fr; gap: 36px; } }
.nd-clips-p { color: var(--ts); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.nd-shorts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nd-short { aspect-ratio: 9/16; border-radius: 22px; border: 1px solid var(--brd); background: linear-gradient(180deg, rgba(255,255,255,.07) 0, rgba(255,255,255,.02) 100%); padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; position: relative; overflow: hidden; transition: transform .25s var(--ease), border-color .2s; }
.nd-short::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(34,211,238,.10), rgba(124,58,237,.10)); opacity: 0; transition: opacity .25s; }
.nd-short:hover { transform: translateY(-6px); border-color: var(--brdh); }
.nd-short:hover::before { opacity: 1; }
.nd-short-play { width: 40px; height: 40px; border-radius: 10px; background: var(--cy); display: flex; align-items: center; justify-content: center; color: #000; font-size: 14px; margin-bottom: 12px; position: relative; z-index: 1; flex-shrink: 0; transition: transform .2s var(--ease); }
.nd-short:hover .nd-short-play { transform: scale(1.1); }
.nd-short-title { font-size: .95rem; font-weight: 900; line-height: 1.25; margin-bottom: 4px; position: relative; z-index: 1; }
.nd-short-meta { font-size: .7rem; color: var(--tm); font-weight: 600; position: relative; z-index: 1; }

/* ── ABOUT ──────────────────────────────────────────────── */
.nd-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .nd-about-grid { grid-template-columns: 1fr; gap: 36px; } }
.nd-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nd-photo { border-radius: 22px; overflow: hidden; border: 1px solid var(--brd); }
.nd-photo:last-child { margin-top: 36px; }
.nd-photo img { width: 100%; height: 220px; object-fit: cover; transition: transform .45s; }
.nd-photo:hover img { transform: scale(1.05); }
.nd-about-p { color: var(--ts); font-size: 1rem; line-height: 1.72; margin-bottom: 24px; }
.nd-feat-item { background: rgba(255,255,255,.04); border: 1px solid var(--brd); border-radius: 16px; padding: 18px 20px; margin-bottom: 12px; transition: border-color .2s, background .2s; }
.nd-feat-item:hover { border-color: var(--brdh); background: rgba(34,211,238,.04); }
.nd-feat-item h4 { font-weight: 900; font-size: 1rem; margin-bottom: 4px; }
.nd-feat-item p { color: var(--tm); font-size: .85rem; line-height: 1.5; }

/* ── CTA ────────────────────────────────────────────────── */
.nd-cta-box {
  position: relative; border-radius: 36px; border: 1px solid var(--brd);
  background: linear-gradient(135deg, rgba(34,211,238,.09) 0, rgba(124,58,237,.11) 50%, rgba(34,211,238,.07) 100%);
  backdrop-filter: blur(24px); padding: 72px 48px; text-align: center; overflow: hidden;
}
@media (max-width: 600px) { .nd-cta-box { padding: 48px 24px; border-radius: 24px; } }
.nd-cta-box::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 55%; height: 1px; background: linear-gradient(90deg, transparent, var(--cy), transparent); }
.nd-cta-orb1 { position: absolute; top: -50px; right: -50px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.22), transparent 70%); animation: nd-pulse 4s ease-in-out infinite; pointer-events: none; }
.nd-cta-orb2 { position: absolute; bottom: -40px; left: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(34,211,238,.18), transparent 70%); animation: nd-pulse 5s ease-in-out infinite reverse; pointer-events: none; }
.nd-cta-h { font-family: var(--fn); font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: .93; letter-spacing: .02em; margin-bottom: 16px; position: relative; z-index: 1; }
.nd-cta-gr { background: linear-gradient(135deg, var(--cy), var(--vi)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nd-cta-p { color: var(--ts); font-size: 1rem; line-height: 1.7; max-width: 460px; margin: 0 auto 28px; position: relative; z-index: 1; }
.nd-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 1; }
@media (max-width: 500px) { .nd-cta-btns { flex-direction: column; } .nd-cta-btns .nd-btn { width: 100%; } }

/* ── FOOTER ─────────────────────────────────────────────── */
#nd-footer { border-top: 1px solid var(--brd); background: rgba(0,0,0,.2); padding: 48px 0 32px; }
[data-theme="light"] #nd-footer { background: rgba(0,0,0,.03); }
.nd-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 800px) { .nd-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .nd-footer-grid { grid-template-columns: 1fr; } }
.nd-footer-brand p { color: var(--tm); font-size: .85rem; line-height: 1.6; max-width: 220px; margin-top: 10px; }
.nd-footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tm); margin-bottom: 14px; }
.nd-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.nd-footer-col a { font-size: .88rem; color: var(--ts); transition: color .15s; }
.nd-footer-col a:hover { color: var(--cy); }
.nd-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--brd); flex-wrap: wrap; gap: 16px; }
.nd-footer-copy { font-size: .78rem; color: var(--tm); }
.nd-socials { display: flex; gap: 8px; }
.nd-social { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--brd); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--tm); transition: color .15s, border-color .15s, background .15s, transform .2s var(--ease); text-decoration: none; }
.nd-social:hover { color: var(--cy); border-color: var(--cy); background: rgba(34,211,238,.08); transform: translateY(-3px); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes nd-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes nd-pulse { 0%,100%{opacity:.55} 50%{opacity:1} }

.nd-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.nd-reveal.nd-vis { opacity: 1; transform: translateY(0); }
.nd-d1 { transition-delay: .08s; }
.nd-d2 { transition-delay: .16s; }
.nd-d3 { transition-delay: .24s; }

/* ── WORDPRESS ALIGNMENT HELPERS ────────────────────────── */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--tm); text-align: center; margin-top: 6px; }

/* ── SINGLE EPISODE PAGE ────────────────────────────────── */
.nd-single-hero { padding: 60px 0 48px; }
.nd-single-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 16px; }
.nd-listen-bar { display: flex; flex-wrap: wrap; gap: 12px; padding: 20px 0; border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); margin: 24px 0; }
.nd-single-content { max-width: 720px; font-size: 1.05rem; line-height: 1.8; color: var(--ts); }
.nd-single-content p { margin-bottom: 1.25rem; }
.nd-single-content h2, .nd-single-content h3 { color: var(--tp); font-weight: 900; margin: 2rem 0 .75rem; letter-spacing: -.01em; }

/* ── BLOG ───────────────────────────────────────────────── */
.nd-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 680px) { .nd-blog-grid { grid-template-columns: 1fr; } }
.nd-post-card { background: var(--card); border: 1px solid var(--brd); border-radius: 20px; overflow: hidden; transition: transform .25s var(--ease), border-color .2s; }
.nd-post-card:hover { transform: translateY(-4px); border-color: var(--brdh); }
.nd-post-card img { width: 100%; height: 200px; object-fit: cover; }
.nd-post-body { padding: 20px; }
.nd-post-body h3 { font-weight: 900; font-size: 1.1rem; margin-bottom: 8px; transition: color .15s; }
.nd-post-card:hover h3 { color: var(--cy); }
.nd-post-body p { color: var(--ts); font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }

/* ── 404 ────────────────────────────────────────────────── */
.nd-404 { text-align: center; padding: 120px 20px; }
.nd-404 h1 { font-family: var(--fn); font-size: 8rem; line-height: 1; background: linear-gradient(135deg, var(--cy), var(--vi)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nd-404 p { color: var(--ts); font-size: 1.1rem; margin: 16px 0 32px; }

/* ── MOBILE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .nd-nav { display: none; }
  .nd-burger { display: flex; }
}
@media (max-width: 600px) {
  .nd-hero { padding: 56px 0 48px; }
  .nd-hero-cta { flex-direction: column; }
  .nd-hero-cta .nd-btn { width: 100%; }
  .nd-section { padding: 56px 0; }
  .nd-section-sm { padding: 0 0 56px; }
  .nd-footer-bottom { flex-direction: column; align-items: flex-start; }
}
