/* ============================================================
   v5 — Premium Media Property (Luxury Studio + Spotify tracklist)
   ============================================================ */

:root {
    --gold: #d4a843;
    --gold-soft: #c5a059;
    --bg-base: #0A0B0E;
    --bg-soft: #111315;
    --bg-card: #16181C;
    --bg-card-deep: #14161A;
    --border-soft: rgba(255, 255, 255, 0.05);
    --border-medium: rgba(255, 255, 255, 0.10);
    --text-body: #A1A1AA;
    --text-muted-soft: #71717A;
}

body { background: var(--bg-base); color: var(--text-body); }

.section-label svg { display: none !important; }
.section-label { gap: 0 !important; color: var(--gold); }

/* ===== HERO — cinematic, 5/7 split ===== */
.hero {
    padding: 120px 0 80px;
    min-height: 88vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-base);
    display: flex;
    align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
    content: ''; position: absolute;
    top: 10%; left: -15%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(120, 135, 165, 0.05) 0%, transparent 65%);
    filter: blur(40px); pointer-events: none;
}
.hero-bg::after {
    content: ''; position: absolute;
    top: -10%; right: -15%; width: 1100px; height: 1100px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    filter: blur(50px); pointer-events: none; border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
    align-items: stretch;
}
.hero-left { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-left .hero-desc { max-width: 100%; color: var(--text-body); }
.hero h1 {
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: #fff;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #e8c378 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Hero eyebrow — unboxed label ===== */
.hero-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: var(--gold) !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    font-weight: 600 !important;
    margin-bottom: 28px !important;
}
.hero-eyebrow .live-dot {
    background: var(--gold) !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
    animation: hero-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(212,168,67,0.4); }
    50% { opacity: 0.55; box-shadow: 0 0 14px rgba(212,168,67,0.7); }
}

/* Hero right column */
.hero-right { display: flex; flex-direction: column; gap: 24px; }
.hero-right .platform-row {
    margin-top: 0; padding-top: 0; border-top: none;
    opacity: 0.65; gap: 18px; justify-content: center;
    transition: opacity 0.25s;
    color: var(--text-muted-soft);
}
.hero-right .platform-row:hover { opacity: 1; }
.hero-right .platform-row-label { font-size: 10px; letter-spacing: 2.5px; color: var(--text-muted-soft); }
.hero-right .platform-row-logos { gap: 22px; }
.hero-right .platform-row-logos .platform-logo svg { width: 22px !important; height: 22px !important; }

.hero-visual {
    position: relative;
    aspect-ratio: 16 / 11;
    max-height: 680px;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-medium);
    background: var(--bg-card);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 60px rgba(212,168,67,0.05);
}
.hero-visual-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.hero-visual-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(30%) contrast(1.05) brightness(0.92);
    transition: filter 0.5s ease;
}
.hero-visual:hover .hero-visual-img { filter: grayscale(5%) contrast(1.05) brightness(1); }
.hero-visual::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, transparent 40%, rgba(10,11,14,0.92) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(212,168,67,0.14) 0%, transparent 60%);
    pointer-events: none; z-index: 1;
}

/* Glassmorphic media player */
.media-player {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}
.media-play-btn {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 50%; background: var(--gold); color: #14161A;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer;
    box-shadow: 0 0 28px rgba(212,168,67,0.5);
    transition: transform .2s, box-shadow .2s;
}
.media-play-btn:hover { transform: scale(1.08); box-shadow: 0 0 36px rgba(212,168,67,0.7); }
.media-play-btn svg { margin-left: 2px; }
.media-info { flex: 1; min-width: 0; }
.media-title { font-size: 13px; color: #fff; font-weight: 600; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-meta { font-size: 10.5px; color: rgba(255,255,255,0.5); letter-spacing: 1.8px; text-transform: uppercase; font-family: 'Inter', monospace; }
.media-waveform { display: flex; gap: 3px; align-items: center; height: 28px; flex-shrink: 0; }
.media-waveform span {
    width: 2.5px; background: rgba(255,255,255,0.4); border-radius: 2px;
    animation: szwave 1.4s ease-in-out infinite; transform-origin: center;
}
.media-waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.media-waveform span:nth-child(2) { height: 65%; animation-delay: 0.1s; }
.media-waveform span:nth-child(3) { height: 95%; animation-delay: 0.2s; background: var(--gold); }
.media-waveform span:nth-child(4) { height: 75%; animation-delay: 0.3s; }
.media-waveform span:nth-child(5) { height: 50%; animation-delay: 0.4s; background: var(--gold); opacity: 0.8; }
.media-waveform span:nth-child(6) { height: 35%; animation-delay: 0.5s; }
.media-waveform span:nth-child(7) { height: 60%; animation-delay: 0.6s; }
@keyframes szwave { 0%,100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

/* Capture bar */
.capture-bar { background: var(--bg-card); border: 1px solid var(--border-medium); border-radius: 14px; }
.capture-bar input { color: #fff; background: transparent; }
.capture-bar input::placeholder { color: var(--text-muted-soft); }
.capture-bar button { background: var(--gold); color: #14161A; font-weight: 700; }
.capture-bar button:hover { background: #e0b65a; color: #14161A; }

.wechat-link { color: var(--text-muted-soft); }
.wechat-link:hover { color: var(--gold); }
.wechat-link svg { color: var(--gold); }

/* ===== Sections ===== */
.section-title { color: #fff; }
.section-subtitle { color: var(--text-body); }

.show-section { background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

/* ===== Episodes — Spotify-style tracklist ===== */
.episode-tagline { display: none !important; }
.episode-list { padding: 4px 0; }
.episode-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 12px 12px !important;
    border-radius: 8px;
    border-bottom: 1px solid var(--border-soft) !important;
    transition: background 0.2s;
    cursor: default;
}
.episode-item:last-child { border-bottom: none !important; }
.episode-item:hover { background: rgba(255,255,255,0.04); }
.episode-play {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center; justify-content: center;
    color: var(--text-muted-soft);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.episode-item:hover .episode-play {
    background: var(--gold);
    color: #14161A;
    border-color: var(--gold);
    transform: scale(1.08);
}
.episode-play svg { width: 11px; height: 11px; margin-left: 1px; }
.episode-num {
    width: auto !important; height: auto !important;
    background: transparent !important; border: none !important;
    color: var(--text-muted-soft) !important;
    font-weight: 600 !important; font-size: 13px !important;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    min-width: 22px;
    text-align: center;
}
.episode-title {
    flex: 1; min-width: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.episode-duration {
    color: var(--text-muted-soft);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.episode-badge {
    background: transparent !important;
    border: 1px solid rgba(212,168,67,0.55);
    color: var(--gold);
    padding: 4px 10px;
    text-transform: uppercase;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    border-radius: 100px;
    flex-shrink: 0;
}
/* Hide legacy episode-meta detail line (we have duration on the right now) */
.episode-meta .episode-detail { display: none; }
.episode-meta h5 { font-size: 15px; font-weight: 500; color: #fff; margin: 0; line-height: 1.4; }

.podcast-mock { background: var(--bg-card); border: 1px solid var(--border-medium); }
.podcast-mock-info h4 { color: #fff; }
.podcast-mock-info span { color: var(--text-muted-soft); }
.podcast-mock-cover { background: linear-gradient(135deg, #1c1d20, #2c2d30); border-color: var(--border-medium); }

/* ===== Manifesto card — breathing room ===== */
.manifesto-card {
    background: var(--bg-card);
    padding: 56px 48px;
    border: 1px solid var(--border-medium);
    border-radius: 20px;
}
.manifesto-card::before { display: none; }
.manifesto-card-quote-icon { color: var(--gold); width: 34px; height: 34px; margin-bottom: 22px; opacity: 0.85; }
.manifesto-eyebrow { margin-bottom: 26px; font-size: 11px; letter-spacing: 3px; color: var(--gold); }
.manifesto-list { gap: 0; }
.manifesto-list li { padding: 22px 8px; border-bottom: 1px solid var(--border-soft); }
.manifesto-list li:first-child { padding-top: 4px; }
.manifesto-list li:last-child { border-bottom: none; padding-bottom: 4px; }
.manifesto-list li p {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.7;
    font-weight: 500;
    color: #e4e4e7;
}

.show-grid { gap: 56px; margin-top: 56px; }
.show-cta { gap: 20px; margin-top: 48px; }

/* ===== Hosts ===== */
.hosts-section { background: var(--bg-base); border-bottom: 1px solid var(--border-soft); }
.host-card { background: var(--bg-card); border: 1px solid var(--border-medium); border-radius: 18px; overflow: hidden; }
.host-photo {
    aspect-ratio: 4 / 5;
    max-height: 480px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(212,168,67,0.08) 0%, transparent 60%),
        linear-gradient(135deg, #1a1b1f 0%, #222428 60%, #1a1b1f 100%);
}
.host-img { filter: grayscale(45%) contrast(1.08) brightness(0.96); }
.host-name { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.host-name-mic { display: none !important; }
.host-role { color: var(--gold); }
.host-tags { color: var(--text-muted-soft); }
.host-bio { color: var(--text-body); }
.host-stat-num { color: #fff; }
.host-stat-label { color: var(--text-muted-soft); }
.host-stats { border-top-color: var(--border-soft); }

/* ===== Interlude — vignette ===== */
.interlude { position: relative; background-color: var(--bg-base); padding: 200px 0; overflow: hidden; }
.interlude-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: brightness(1) contrast(1.05); }
.interlude::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 45%, rgba(10,11,14,0.35) 0%, rgba(10,11,14,0.7) 60%, rgba(10,11,14,0.92) 100%);
    z-index: 1; pointer-events: none;
}
.interlude::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,11,14,0.4) 0%, transparent 18%, transparent 82%, rgba(10,11,14,0.4) 100%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.05'/></svg>");
    pointer-events: none; z-index: 2;
}
.interlude-inner { position: relative; z-index: 3; }
.interlude-lead {
    font-family: 'Noto Serif SC','Noto Serif',Georgia,serif;
    color: var(--gold);
    font-size: clamp(40px, 6.5vw, 80px);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
    margin-bottom: 32px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}
.interlude-body { color: #e4e4e7; text-shadow: 0 1px 12px rgba(0,0,0,0.75); }

.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 12px;
    background: transparent; border: 1px solid var(--gold); color: var(--gold);
    padding: 16px 36px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 3px;
    font-size: 12px; font-weight: 700; cursor: pointer;
    font-family: inherit;
    transition: background .3s, color .3s, transform .2s, box-shadow .3s;
}
.btn-outline-gold svg { transition: transform .3s; }
.btn-outline-gold:hover { background: var(--gold); color: #14161A; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(212,168,67,0.3); }
.btn-outline-gold:hover svg { transform: translateX(4px); }
.btn-outline-gold[aria-disabled="true"] { opacity: 0.92; cursor: not-allowed; }
.btn-outline-gold[aria-disabled="true"]:hover { background: transparent; color: var(--gold); transform: none; box-shadow: none; }
.btn-outline-gold[aria-disabled="true"]:hover svg { transform: none; }
.btn-gold { display: none; }

.btn-primary { background: #fff; color: #14161A; }
.btn-primary:hover { background: var(--gold); color: #14161A; }

/* For Whom */
section#who { background: var(--bg-base); }
.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 16px 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 -2px 24px rgba(212,168,67,0.05), 0 8px 32px rgba(0,0,0,0.3);
}
.audience-card::before { display: none; }
.audience-card h4 { padding-top: 0; font-size: 19px; color: #fff; }
.audience-card h4::before { display: none; }
.audience-card p { color: var(--text-body); }

/* CTA section */
.cta-section { background: var(--bg-soft); border-top: 1px solid var(--border-soft); }
.cta-note { color: var(--text-muted-soft) !important; }

/* QR Modal */
.qr-modal-frame { width: 192px; height: 192px; padding: 12px; background: #fff; }
.qr-modal-frame img { width: 128px; height: 128px; max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; inset: auto; position: relative; }
.qr-modal-frame svg.qr-fallback { width: 128px; height: 128px; max-width: 100%; max-height: 100%; border-radius: 8px; }
.qr-modal-card { background: linear-gradient(180deg, #1d1f23 0%, #14161a 100%); border-color: var(--border-medium); }
.qr-modal h3 { color: #fff; }
.qr-modal-sub { color: var(--text-body); }
.qr-modal-footnote { color: var(--text-muted-soft); }

/* Nav */
.nav { background: rgba(10,11,14,0.85); }
.nav.scrolled { border-bottom-color: var(--border-soft); }
.nav-brand { color: #fff; }
.nav-brand .dot { background: var(--gold); }
.nav-links a { color: var(--text-body); }
.nav-links a:hover { color: #fff; }
.nav-cta { background: #fff; color: #14161A; }
.nav-cta:hover { background: var(--gold); color: #14161A; }
.lang-toggle { color: var(--text-muted-soft); border-color: var(--border-medium); }
.lang-toggle:hover { color: #fff; border-color: var(--text-body); }

/* ===== FOOTER ===== */
.footer { padding: 40px 0 32px; border-top: 1px solid var(--border-soft); background: var(--bg-base); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-col-left { display: flex; flex-direction: column; gap: 4px; }
.footer-col-right { display: flex; align-items: center; gap: 24px; }
.footer-brand { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.footer-copy { font-size: 12px; color: var(--text-muted-soft); }
.footer-nav { display: flex; flex-direction: row !important; gap: 28px !important; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.footer-nav a { color: var(--text-body) !important; text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.footer-nav a:hover { color: #fff !important; }
.footer-platforms { display: flex !important; flex-direction: row !important; gap: 16px !important; flex-wrap: nowrap !important; list-style: none; padding: 0; margin: 0; align-items: center; }
.footer-platforms li { display: flex; }
.footer-platforms a {
    background: transparent !important; border: none !important;
    width: auto !important; height: auto !important; padding: 4px !important;
    color: var(--text-muted-soft) !important;
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    transition: color .25s, transform .2s;
}
.footer-platforms a:hover { color: #fff !important; transform: translateY(-2px); background: transparent !important; border-color: transparent !important; }
.footer-platforms svg { width: 18px !important; height: 18px !important; }
.footer .lang-toggle { padding: 6px 10px; font-size: 11px; }

.cta-section .capture-bar { margin-left: auto; margin-right: auto; }
.cta-section .wechat-link { display: inline-flex; margin-left: auto; margin-right: auto; }

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; }
}
@media (max-width: 1000px) {
    .hero { min-height: auto; padding: 110px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-visual { aspect-ratio: 16 / 11; min-height: auto; max-height: 520px; }
    .hero-right .platform-row { justify-content: flex-start; }
}
@media (max-width: 800px) {
    .footer-row { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-col-right { flex-wrap: wrap; }
}
@media (max-width: 700px) {
    .hero h1 { font-size: 36px; }
    .hero-visual { aspect-ratio: 4 / 3; }
    .media-player { padding: 14px 16px; gap: 12px; }
    .media-waveform { display: none; }
    .manifesto-card { padding: 36px 24px; }
    .manifesto-list li p { font-size: 15px; }
    .interlude { padding: 120px 0; }
    .interlude-lead { font-size: 40px; }
    .audience-card { padding: 28px 22px; }
    .btn-outline-gold { padding: 14px 28px; letter-spacing: 2px; }
    .episode-title { white-space: normal; font-size: 14px; }
    .episode-duration { display: none; }
}
