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

:root {
    --gold: #D4A017;
    --gold-light: #F0C040;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --white: #ffffff;
    --gray: #aaaaaa;
    --gray-light: #cccccc;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,10,10,0.95);
    border-bottom: 1px solid rgba(212,160,23,0.2);
    backdrop-filter: blur(8px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo .logo-img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-right a, .nav-search {
    color: var(--white);
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    line-height: 1;
}

.nav-right a:hover, .nav-search:hover { color: var(--gold); }

/* ── DIVIDER ── */
.divider-strip {
    width: 100%;
    height: auto;
    line-height: 0;
}

.divider-strip img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: center;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.75) 45%,
        rgba(10,10,10,0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
}

.hero-text {
    max-width: 580px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 9vw, 110px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.hero-title .gold { color: var(--gold); }

.hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212,160,23,0.4);
}

.hero-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: border-color 0.2s, color 0.2s;
}

.platform-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ── SHARED SECTION STYLES ── */
.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,160,23,0.3);
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.btn-gold {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ── EPISODES ── */
.episodes {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.episodes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ep-thumb-large {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ep-thumb-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.ep-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.5;
}

.ep-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ep-info p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.ep-platforms {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ep-platforms a {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.ep-platforms a:hover { color: var(--gold-light); }

.ep-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ep-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ep-thumb-sm {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.ep-thumb-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.ep-thumb-placeholder-sm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    opacity: 0.5;
}

.ep-item-info {
    flex: 1;
    min-width: 0;
}

.ep-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ep-item-info p {
    font-size: 12px;
    color: var(--gray);
}

.ep-listen-btn {
    flex-shrink: 0;
    padding: 6px 16px;
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 3px;
    transition: background 0.2s;
}

.ep-listen-btn:hover { background: var(--gold-light); }

/* ── WHY SECTION ── */
.why-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.why-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.why-right p {
    color: var(--gray-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(212,160,23,0.2);
    padding-top: 48px;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.cat-icon {
    width: 64px;
    height: 64px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    transition: background 0.2s;
}

.cat-item:hover .cat-icon {
    background: rgba(212,160,23,0.25);
}

.cat-item span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-light);
    line-height: 1.4;
}

/* ── HOST SECTION ── */
.host-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.host-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.host-photo {
    position: relative;
}

.host-photo img {
    width: 100%;
    border-radius: 4px;
}

.host-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.host-text p {
    color: var(--gray-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

/* ── FIGURING SECTION ── */
.figuring-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.figuring-grid {
    display: flex;
    justify-content: flex-end;
}

.figuring-text {
    max-width: 560px;
}

.figuring-text p {
    color: var(--gray-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.figuring-links {
    display: flex;
    gap: 20px;
    margin-top: 28px;
}

.figuring-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(212,160,23,0.4);
    transition: color 0.2s, border-color 0.2s;
}

.figuring-link:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

/* ── JOIN SECTION ── */
.join-section {
    background: #0d0d0d;
    border-top: 1px solid rgba(212,160,23,0.25);
    border-bottom: 1px solid rgba(212,160,23,0.25);
    padding: 80px 32px;
    text-align: center;
}

.join-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 60px);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.join-sub {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.join-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
}

.join-form input {
    flex: 1;
    padding: 14px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 3px 0 0 3px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.join-form input:focus { border-color: var(--gold); }
.join-form input::placeholder { color: var(--gray); }

.join-form .btn-gold {
    border-radius: 0 3px 3px 0;
    padding: 14px 28px;
    font-size: 13px;
}

/* ── FOOTER ── */
.footer {
    background-size: cover;
    background-position: center;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.88);
    pointer-events: none;
}

.footer .container { position: relative; }

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 18px;
    color: var(--gray);
    transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--gray);
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .episodes-grid,
    .why-top,
    .host-grid { grid-template-columns: 1fr; gap: 40px; }

    .categories { grid-template-columns: repeat(3, 1fr); }

    .figuring-grid { justify-content: flex-start; }
    .figuring-text { max-width: 100%; }

    .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .hero-title { font-size: 64px; }
    .categories { grid-template-columns: repeat(2, 1fr); }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .join-form { flex-direction: column; }
    .join-form input { border-right: 1px solid rgba(255,255,255,0.15); border-radius: 3px 3px 0 0; }
    .join-form .btn-gold { border-radius: 0 0 3px 3px; }
}
