
:root {
    --blue: #17213B;
    --blue-depth: #223158;
    --cream: #f7f8fa;
    --cream-deep: #eceef2;
    --sky: #6a91f0;
    --sky-soft: #cfd9f1;
    --white: #ffffff;
    --muted: #3d4e70;
    --faded40: #9ca2b4;
    --faded20: #c9cdd8;
    --sans: 'DM Sans', Helvetica, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --serif: 'Clash Display', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--mono);
    background: var(--cream);
    color: var(--blue);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 60px;
    background: rgba(247, 248, 250, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--faded20);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nlm {
    width: 30px;
    height: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
}

.nav-cta {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
    background: var(--blue);
    padding: 10px 16px;
    border-radius: 9999px;
    text-decoration: none;
    height: 37px;
    display: flex;
    align-items: center;
    transition: filter .2s;
}

.nav-cta:hover {
    filter: brightness(1.15);
}

.mob-btn svg {
    stroke: var(--blue);
}

/* ── EPISODE HERO — dark green with thumbnail ── */
.ep-hero {
    background: var(--blue);
    padding: 100px 32px 56px;
    overflow: hidden;
}

.ep-hero-in {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .04em;
    margin-bottom: 32px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--sky);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255, 255, 255, .25);
    fill: none;
    stroke-width: 1.5;
}

/* Hero grid */
.ep-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 56px;
}

.ep-hero-left {
    padding-bottom: 0;
    width: 100%;
    max-width: 760px;
}

.ep-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ep-badge {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    background: var(--sky);
    padding: 4px 10px;
    border-radius: 9999px;
}

.ep-badge-outline {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 4px 10px;
    border-radius: 9999px;
}

.ep-date {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .38);
}

.ep-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ep-h1 {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 0;
    text-align: center;
}

.ep-h1 em {
    font-style: normal;
    font-weight: 600;
    color: var(--sky);
}
.ep-hero-text h1 em, .ep-hero-text h1 span {
    font-style: normal;
    font-weight: 600;
    color: var(--sky);
}

.ep-intro {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin-bottom: 32px;
    letter-spacing: -.01em;
    max-width: 520px;
}

.ep-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-lime {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--blue);
    background: var(--sky);
    padding: 0 28px;
    border-radius: 9999px;
    text-decoration: none;
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: filter .2s ease-out;
}

.btn-lime:hover {
    filter: brightness(.92);
}

.btn-lime svg {
    width: 14px;
    height: 14px;
}

.btn-ghost-sm {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 0 20px;
    border-radius: 9999px;
    text-decoration: none;
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: all .2s ease-out;
}

.btn-ghost-sm:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.btn-ghost-sm svg {
    width: 14px;
    height: 14px;
}

/* Thumbnail — sits at bottom of hero, slightly cropped */
.ep-hero-thumb {
    position: relative;
    width: 100%;
    max-width: 640px;
}

.ep-thumb-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-bottom: none;
    box-shadow: 0 -8px 48px rgba(0, 0, 0, .3);
}

.ep-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ep-thumb-img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(106, 145, 240, .12), rgba(23, 33, 59, .4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ep-thumb-img-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, .3);
    fill: none;
    stroke-width: 1;
}

/* Play badge overlay */
.play-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(23, 33, 59, .85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9999px;
    padding: 10px 18px 10px 12px;
}

.play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-btn svg {
    width: 14px;
    height: 14px;
    fill: var(--blue);
    margin-left: 2px;
}

.play-label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

.play-sub {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
}

/* ── LISTEN STRIP ── */
.listen-strip {
    background: var(--blue);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 32px;
}

.listen-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.listen-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .58);
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.listen-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.listen-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .58);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9999px;
    padding: 8px 14px;
    text-decoration: none;
    transition: all .2s var(--ease);
}

.listen-btn:hover {
    border-color: rgba(106, 145, 240, .35);
    color: var(--sky);
}

.listen-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── BODY LAYOUT ── */
.ep-body-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 32px 100px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    align-items: start;
}

/* Main content */
.ep-content {}

.lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

/* Section intro */
.ep-yt-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: var(--blue);
    margin-bottom: 48px;
}

.ep-yt-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
}

.ep-intro-h2 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--blue);
    margin-bottom: 20px;
}

.ep-lead {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.78;
    color: var(--muted);
    margin-bottom: 14px;
    letter-spacing: -.01em;
}

/* Sections */
.ep-section {
    margin-bottom: 48px;
}

.ep-section h2 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--blue);
    margin-bottom: 20px;
}

.ep-section p,
.ep-content>p,
.ep-section ul li {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 14px;
    letter-spacing: -.01em;
}

.ep-section p strong,
.ep-section ul li strong {
    font-weight: 400;
    color: var(--blue);
}
.ep-section ul {
    padding-left: 20px;
    margin-bottom: 18px
}
.ep-section ul li {
    margin-bottom: 4px;
}
.ep-section ul li:last-child {
    margin-bottom: 0px;
}

/* Pull image */
.ep-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 28px 0;
    border: 1px solid var(--faded20);
}

.ep-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ep-img-cap {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--faded40);
    margin-top: 8px;
    letter-spacing: .02em;
}

/* Key takeaways */
.takeaways {
    background: var(--blue);
    border-radius: 16px;
    padding: 36px;
    margin: 40px 0;
}

.takeaways-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 22px;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.takeaway-item:last-child {
    border-bottom: none;
}

.takeaway-num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--sky);
    opacity: .7;
    background: rgba(106, 145, 240, .1);
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.takeaway-title {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 5px;
}

.takeaway-desc {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
}

/* Tags */
.ep-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    padding-bottom: 28px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--faded20);
}

.ep-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    background: rgba(23, 33, 59, .06);
    border: 1px solid var(--faded20);
    padding: 5px 12px;
    border-radius: 9999px;
    transition: all .2s;
}

.ep-tag:hover {
    background: rgba(23, 33, 59, .12);
    color: var(--blue);
}

/* ── SIDEBAR ── */
.ep-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Hosts card */
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--faded20);
    border-radius: 16px;
    padding: 28px;
}

.sc-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.sc-host {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--faded20);
}

.sc-host:last-of-type {
    border-bottom: none;
}

.sc-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--sky-soft), rgba(106, 145, 240, .4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 16px;
    color: var(--blue);
}

.sc-name {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
}

.sc-role {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
    margin-top: 1px;
}

/* CTA card */
.cta-card {
    background: var(--blue);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 145, 240, .12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 14px;
}

.cta-card-h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-card-p {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: -.01em;
}

.cta-input {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    margin-bottom: 8px;
    transition: border-color .2s;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.cta-input:focus {
    border-color: rgba(106, 145, 240, .4);
}

.cta-btn {
    width: 100%;
    height: 44px;
    background: var(--sky);
    color: var(--blue);
    border: none;
    border-radius: 9999px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: filter .2s;
}

.cta-btn:hover {
    filter: brightness(.92);
}

/* More episodes */
.more-ep-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--faded20);
    text-decoration: none;
    color: var(--blue);
    transition: opacity .2s;
}

.more-ep-item:first-child {
    border-top: 1px solid var(--faded20);
}

.more-ep-item:hover {
    opacity: .7;
}

.more-thumb {
    width: 72px;
    height: 52px;
    border-radius: 8px;
    background: var(--cream-deep);
    overflow: hidden;
    flex-shrink: 0;
}

.more-thumb img {
    width: 72px;
    height: 52px;
    object-fit: cover;
}

.more-date {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 4px;
}

.more-title {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.35;
}

/* ── RELATED SECTION ── */
.related {
    background: var(--cream-deep);
    border-top: 1px solid var(--faded20);
    padding: 72px 32px;
}

.related-in {
    max-width: 1200px;
    margin: 0 auto;
}

.related-h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 500;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rel-card {
    background: var(--white);
    border: 1px solid var(--faded20);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--blue);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.rel-card:hover {
    box-shadow: 0 8px 32px rgba(23, 33, 59, .08);
    transform: translateY(-2px);
}

.rel-img {
    width: 100%;
    height: 150px;
    background: var(--cream-deep);
    overflow: hidden;
}

.rel-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.rel-body {
    padding: 18px;
}

.rel-date {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 7px;
}

.rel-title {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -.2px;
}

/* FOOTER */
footer {
    background: var(--cream);
    border-top: 1px solid var(--faded20);
    padding: 48px 32px;
}

.ft-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}

.ft-lm {
    width: 28px;
    height: 28px;
}

.ft-tag {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    max-width: 280px;
}

.ft-cols {
    display: flex;
    gap: 64px;
}

.ft-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 14px;
}

.ft-col a {
    display: block;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .2s;
}

.ft-col a:hover {
    color: var(--blue);
}

.ft-btm {
    max-width: 1200px;
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--faded20);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-copy {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
}

.ft-disc {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--faded40);
    max-width: 560px;
    line-height: 1.5;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease-out, transform .4s ease-out;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: 80ms;
}

.rd2 {
    transition-delay: 160ms;
}

.rd3 {
    transition-delay: 240ms;
}

/* Real logo image */
.nlm-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    background: var(--cream-deep);
    padding: 2px;
}

.ft-lm-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    background: var(--cream-deep);
    padding: 2px;
}

/* Footer platform icons */
.ft-col a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-col a svg {
    opacity: .75;
    transition: opacity .2s;
}

.ft-col a:hover svg {
    opacity: 1;
}

.ft-col-a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.brand-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity .2s;
}

.ft-col a:hover .brand-icon {
    opacity: 1;
}

/* ── MOBILE MENU OVERLAY ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(23, 33, 59, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.mob-overlay-links a {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    letter-spacing: -.03em;
    line-height: 1.2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    transition: color .2s, transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay-links a:last-child {
    border-bottom: none;
}

.mob-overlay.open .mob-overlay-links a {
    transform: translateY(0);
    opacity: 1;
}

.mob-overlay.open .mob-overlay-links a:nth-child(1) {
    transition-delay: .08s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(2) {
    transition-delay: .14s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(3) {
    transition-delay: .20s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(4) {
    transition-delay: .26s;
}

.mob-overlay-links a:hover {
    color: #fff;
}

.mob-overlay-links a.active {
    color: var(--sky);
}

.mob-link-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, .15);
    transition: color .2s, transform .2s;
}

.mob-overlay-links a:hover .mob-link-arrow,
.mob-overlay-links a.active .mob-link-arrow {
    color: var(--sky);
    transform: translateX(4px);
}

.mob-overlay-cta {
    margin-top: 40px;
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: filter .2s, transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .32s;
}

.mob-overlay-cta:hover {
    filter: brightness(.92);
}

.mob-overlay-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-bottom {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .38s;
}

.mob-overlay-bottom-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .06em;
}

.mob-overlay-socials {
    display: flex;
    gap: 16px;
}

.mob-overlay-socials a {
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    transition: color .2s;
}

.mob-overlay-socials a:hover {
    color: var(--sky);
}

/* hamburger spans */
.mob-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: rgba(255, 255, 255, .8);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s, background .4s;
}

nav.scrolled .mob-btn span {
    background: var(--blue);
}

.mob-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mob-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mob-btn.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mob-btn.open span {
    background: var(--blue) !important;
}

nav .nav-cta.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ── MOBILE MENU ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(23, 33, 59, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mob-overlay-links a {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(30px, 8vw, 50px);
    font-weight: 500;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    letter-spacing: -.03em;
    line-height: 1.2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    transition: color .2s, transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay-links a:last-child {
    border-bottom: none;
}

.mob-overlay.open .mob-overlay-links a {
    transform: translateY(0);
    opacity: 1;
}

.mob-overlay.open .mob-overlay-links a:nth-child(1) {
    transition-delay: .07s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(2) {
    transition-delay: .13s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(3) {
    transition-delay: .19s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(4) {
    transition-delay: .25s;
}

.mob-overlay-links a:hover {
    color: #fff;
}

.mob-overlay-links a.active {
    color: var(--sky);
}

.mob-link-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, .12);
    transition: color .2s, transform .2s;
}

.mob-overlay-links a:hover .mob-link-arrow,
.mob-overlay-links a.active .mob-link-arrow {
    color: var(--sky);
    transform: translateX(5px);
}

.mob-overlay-cta {
    margin-top: 36px;
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: filter .2s, transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .31s;
}

.mob-overlay-cta:hover {
    filter: brightness(.92);
}

.mob-overlay-bottom {
    position: absolute;
    bottom: 36px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-bottom {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .37s;
}

.mob-overlay-bottom-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .06em;
}

.mob-overlay-socials {
    display: flex;
    gap: 16px;
}

.mob-overlay-socials a {
    color: rgba(255, 255, 255, .28);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    transition: color .2s;
}

.mob-overlay-socials a:hover {
    color: var(--sky);
}

/* hamburger → X morph */
.mob-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s, background .4s;
}

.mob-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mob-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mob-btn.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mob-btn span {
    background: var(--blue);
}

/* Real headshot avatars */
.h-av img,
.hc-av img,
.sc-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    display: block;
}

.h-av,
.hc-av,
.sc-av {
    background: none !important;
    font-size: 0 !important;
    overflow: hidden;
}

/* MOBILE */
.mob-btn {
    display: none;
    position: relative;
    z-index: 210;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5.5px;
}

@media(max-width:768px) {
    .ep-hero-grid {
        gap: 32px;
    }

    .ep-hero-thumb {
        display: block;
    }

    .ep-hero-left {
        padding-bottom: 0;
    }

    .ep-body-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ep-sidebar {
        position: static;
    }

    .mob-btn {
        display: flex;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .ep-hero {
        padding: 100px 20px 0;
    }

    .listen-strip {
        padding: 18px 20px;
    }

    .ep-body-wrap {
        padding: 40px 20px;
    }

    .related {
        padding: 40px 20px;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    footer {
        padding: 40px 20px;
    }

    .ft-in {
        grid-template-columns: 1fr;
    }

    .ft-cols {
        flex-wrap: wrap;
        gap: 32px;
    }

    .ft-btm {
        flex-direction: column;
    }

    .breadcrumb {
        margin-bottom: 20px;
    }

    .ep-section {
        margin-bottom: 30px;
    }

    .ep-section:last-child {
        margin-bottom: 0px;
    }

    .ep-tags {
        gap: 5px;
    }

    .ep-tag {
        letter-spacing: .03em;
    }

    .ep-intro-h2 {
        margin-bottom: 15px;
    }

    .ep-section p,
    .ep-content>p {
        font-size: 14px;
        line-height: 1.68;
        margin-bottom: 10px;
    }

    .ep-content>p+.ep-yt-wrap {
        margin-top: 25px;
    }

    .ep-yt-wrap {
        margin-bottom: 30px;
    }

    .ep-section:last-child .ep-img {
        margin-bottom: 0;
    }
}

@media(max-width:767px) {
    .ft-col a.hide-ft-menu-mob {
        display: none;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .ft-in {
        gap: 25px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .ep-hero-grid {
        gap: 20px;
    }

    .listen-links {
        gap: 10px 5px;
    }

    .listen-btn {
        gap: 5px;
        font-size: 11px;
        padding: 8px 12px;
    }

    .listen-in {
        gap: 12px;
    }

    .listen-strip {
        padding: 25px 20px 40px;
    }

    .ep-body-wrap {
        gap: 30px;
    }

    .cta-card {
        padding: 28px 16px;
    }

    .cta-card-lbl {
        margin-bottom: 10px;
    }

    .sidebar-card {
        padding: 28px 20px;
    }
}
