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

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #18181b;
    --border: #27272a;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-dim: #52525b;
    --accent: #d4a843;
    --accent-bright: #f5c44a;
    --accent-muted: rgba(212, 168, 67, 0.12);
    --accent-border: rgba(212, 168, 67, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 120px 0; }

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.75;
}

.icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.icon-lg { width: 22px; height: 22px; }
.icon-xl { width: 28px; height: 28px; }

.text-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.text-link:hover { color: var(--accent); }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 11, 0.8);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}
.nav-brand .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

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

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.lang-toggle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.5px;
}
.lang-toggle:hover { color: var(--text-primary); border-color: var(--text-muted); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-muted);
    border: 1px solid var(--accent-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 28px;
}
.hero-eyebrow .live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.hero h1 {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 40px;
}
.hero-text-link {
    display: inline-block;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 64px;
}
.hero-text-link:hover { color: var(--accent); }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-muted); }

/* The Show */
.show-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.show-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 56px;
}
.podcast-mock {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.podcast-mock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
}
.podcast-mock-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.podcast-mock-cover {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    border: 1px solid var(--border);
}
.podcast-mock-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.podcast-mock-info span { font-size: 13px; color: var(--text-muted); }
.episode-list { list-style: none; }
.episode-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.episode-item:last-child { border-bottom: none; }
.episode-num {
    width: 32px;
    height: 32px;
    background: var(--bg-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}
.episode-meta { flex: 1; min-width: 0; }
.episode-meta h5 { font-size: 14px; font-weight: 500; margin-bottom: 2px; line-height: 1.4; }
.episode-meta span { font-size: 12px; color: var(--text-muted); }
.episode-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--accent-muted);
    color: var(--accent);
    border-radius: 100px;
    flex-shrink: 0;
}
.show-cta { margin-top: 48px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Hosts */
.hosts-section { border-bottom: 1px solid var(--border); }
.hosts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.host-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}
.host-card:hover { border-color: var(--accent-border); }
.host-photo {
    width: 100%;
    aspect-ratio: 3 / 2;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 168, 67, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #1a1a1c 0%, #222224 60%, #1a1a1c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.host-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
.initial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #b8893a);
    color: var(--bg-primary);
    font-size: 56px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.25);
}
.silhouette-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2d 0%, #1a1a1c 100%);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15);
}
.silhouette-avatar svg { width: 92%; height: 92%; margin-bottom: -4px; }
.host-info { padding: 32px; }
.host-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.host-name { font-size: 24px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.host-tags { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.host-bio { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.host-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.host-stat-num { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.host-stat-label { font-size: 12px; color: var(--text-muted); }

/* Audience */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: border-color 0.3s, transform 0.3s;
}
.audience-card:hover { border-color: var(--accent-border); transform: translateY(-4px); }
.audience-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}
.audience-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.audience-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* CTA */
.cta-section { text-align: center; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.cta-section .section-label { justify-content: center; }
.cta-section .section-title, .cta-section .section-subtitle { margin-left: auto; margin-right: auto; }
.cta-section .section-subtitle { margin-bottom: 36px; }
.cta-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* Footer */
.footer { padding: 64px 0 24px; border-top: 1px solid var(--border); }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.footer-brand { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.footer-brand-block p { font-size: 13px; color: var(--text-muted); max-width: 320px; }
.footer-links, .footer-platforms { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; gap: 16px; }

/* Subpage layout */
.subpage { padding: 140px 0 80px; min-height: 100vh; }
.subpage .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 32px;
    transition: color 0.2s;
}
.subpage .back-link:hover { color: var(--accent); }
.subpage h1 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.subpage .lead { font-size: 18px; color: var(--text-secondary); line-height: 1.75; max-width: 640px; margin-bottom: 48px; }
.subpage h2 { font-size: 22px; font-weight: 700; margin: 40px 0 16px; letter-spacing: -0.01em; }
.subpage p, .subpage li { color: var(--text-secondary); font-size: 15px; }
.subpage ul { padding-left: 20px; margin-bottom: 16px; }
.subpage li { margin-bottom: 8px; }
.subpage .info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin: 32px 0; }
.subpage .info-card-row { display: flex; gap: 24px; flex-wrap: wrap; }
.subpage .info-card-row > div { flex: 1; min-width: 180px; }
.subpage .info-card-row h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 8px; font-weight: 600; }
.subpage .info-card-row p { font-size: 14px; color: var(--text-primary); }

.app-form { max-width: 560px; display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.app-form input, .app-form select, .app-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}
.app-form input::placeholder, .app-form textarea::placeholder { color: var(--text-muted); }
.app-form input:focus, .app-form select:focus, .app-form textarea:focus { border-color: var(--accent); }
.app-form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.app-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.app-form .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 16px; margin-top: 8px; }

@media (max-width: 900px) {
    .show-grid, .hosts-grid { grid-template-columns: 1fr; gap: 32px; }
    .audience-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .section { padding: 80px 0; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 36px; }
    .nav-cta { display: none; }
    .host-stats { gap: 16px; }
}

/* Manifesto + episode tagline (v3 retained) */
.manifesto { list-style: none; display: flex; flex-direction: column; gap: 28px; padding-left: 0; }
.manifesto li { padding-left: 20px; border-left: 2px solid var(--accent); }
.manifesto p { font-size: clamp(18px, 2vw, 22px); font-weight: 600; line-height: 1.5; color: var(--text-primary); letter-spacing: -0.005em; }
.episode-tagline { font-size: 12px; color: var(--accent); font-style: italic; margin: 4px 0; line-height: 1.5; }
.episode-detail { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   v4 — Premium Editorial Pivot
   ============================================================ */

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #131313;
    --bg-card-elevated: #1a1a1a;
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #eaeaea;
    --text-muted: #8e8e93;
    --text-dim: #58585e;
}

body { background: #050505; color: #ffffff; }

.section-title { font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: #fff; }
.section-subtitle { font-size: 18px; color: rgba(255, 255, 255, 0.72); line-height: 1.75; }

.hero h1 { font-size: clamp(48px, 8vw, 96px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 900; }
.hero-desc { font-size: 19px; color: rgba(255, 255, 255, 0.85); line-height: 1.7; max-width: 640px; }

/* Sleek combined capture bar */
.capture-bar {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 6px;
    padding-left: 22px;
    max-width: 540px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.capture-bar:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.12); }
.capture-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    padding: 16px 0;
    min-width: 0;
    font-family: inherit;
}
.capture-bar input::placeholder { color: var(--text-muted); }
.capture-bar button {
    background: #fff;
    color: #0a0a0a;
    border: none;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.25s, color 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
}
.capture-bar button:hover { background: var(--accent); color: #0a0a0a; }

.wechat-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.wechat-link:hover { color: var(--accent); }
.wechat-link svg { color: var(--accent); flex-shrink: 0; }

.hero-text-link { color: rgba(255, 255, 255, 0.45); margin-bottom: 80px; }
.hero-text-link:hover { color: var(--accent); }

/* Platform row */
.platform-row {
    margin-top: 72px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.platform-row-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.platform-row-logos { display: flex; gap: 40px; align-items: center; color: rgba(255, 255, 255, 0.55); }
.platform-row-logos .platform-logo { transition: color 0.25s, transform 0.2s; }
.platform-row-logos .platform-logo:hover { color: #fff; transform: translateY(-2px); }
.platform-row-logos .platform-logo svg { width: 28px !important; height: 28px !important; }

/* Manifesto Card */
.show-grid > .manifesto { display: none; }
.manifesto-card {
    position: relative;
    background: linear-gradient(180deg, #131313 0%, #0c0c0c 100%);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 64px 52px;
    overflow: hidden;
    isolation: isolate;
}
.manifesto-card::before {
    content: '\201C';
    position: absolute;
    top: -80px;
    left: 8px;
    font-family: 'Noto Serif SC', Georgia, serif;
    font-size: 420px;
    color: var(--accent);
    opacity: 0.07;
    line-height: 1;
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
}
.manifesto-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.manifesto-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
.manifesto-list li p {
    font-family: 'Noto Serif SC', 'Noto Serif', Georgia, serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    line-height: 1.55;
    color: #fff;
    letter-spacing: -0.005em;
}

/* Interlude */
.interlude {
    padding: 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.interlude::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(212, 168, 67, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 168, 67, 0.06) 0%, transparent 55%),
        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.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.18'/></svg>");
    pointer-events: none;
}
.interlude::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.5) 0%, transparent 25%, transparent 75%, rgba(5,5,5,0.5) 100%);
    pointer-events: none;
}
.interlude-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.interlude-lead {
    font-family: 'Noto Serif SC', 'Noto Serif', Georgia, serif;
    font-size: clamp(38px, 6.5vw, 76px);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}
.interlude-body {
    font-size: clamp(17px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    margin: 0 auto 56px;
    max-width: 660px;
}
.interlude .coming-soon-pill { display: none; }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 38px;
    background: linear-gradient(135deg, var(--accent) 0%, #e8b952 50%, var(--accent) 100%);
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.3s, filter 0.2s;
    box-shadow: 0 8px 36px rgba(212, 168, 67, 0.22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(212, 168, 67, 0.38); filter: brightness(1.05); }
.btn-gold[disabled], .btn-gold[aria-disabled="true"] { opacity: 0.92; cursor: not-allowed; }
.btn-gold[disabled]:hover, .btn-gold[aria-disabled="true"]:hover { transform: none; filter: none; box-shadow: 0 8px 36px rgba(212, 168, 67, 0.22); }

/* For Whom — numbered cards */
.audience-card {
    position: relative;
    background: #131313;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 52px 42px 44px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.audience-card:hover { border-color: rgba(212, 168, 67, 0.3); transform: translateY(-4px); }
.audience-card::before {
    content: attr(data-num);
    position: absolute;
    top: -36px;
    right: -16px;
    font-size: 240px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.028);
    font-family: 'Inter', sans-serif;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
}
.audience-card .audience-icon { display: none; }
.audience-card .audience-emoji { display: none; }
.audience-card h4 {
    position: relative;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    color: #fff;
    padding-top: 24px;
}
.audience-card h4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.audience-card p { position: relative; color: rgba(255, 255, 255, 0.7); font-size: 15px; line-height: 1.75; }

.host-card, .podcast-mock { background: #131313; border-color: var(--border-strong); }

/* Footer logos unboxed */
.footer-platforms { flex-direction: row !important; gap: 22px !important; flex-wrap: wrap; }
.footer-platforms a {
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    padding: 6px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    transition: color 0.25s, transform 0.2s;
}
.footer-platforms a:hover { color: #fff !important; transform: translateY(-2px); background: transparent !important; border-color: transparent !important; }
.footer-platforms svg { width: 22px !important; height: 22px !important; }

.cta-section .capture-bar { margin: 36px auto 0; }
.cta-section .wechat-link { display: inline-flex; margin-top: 20px; justify-content: center; }
.cta-section { text-align: center; }

.show-cta { gap: 28px; margin-top: 56px; }

/* QR Modal */
.qr-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 24px;
}
.qr-modal.open { display: flex; animation: qrFadeIn 0.2s ease-out; }
@keyframes qrFadeIn { from { opacity: 0; } to { opacity: 1; } }
.qr-modal-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 48px 40px 36px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.qr-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    line-height: 0;
}
.qr-modal-close:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.qr-modal h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; color: #fff; letter-spacing: -0.01em; }
.qr-modal-sub { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin-bottom: 28px; }
.qr-modal-frame {
    width: 240px;
    height: 240px;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.qr-modal-frame img {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: cover;
    border-radius: 8px;
    z-index: 2;
}
.qr-modal-frame svg.qr-fallback { width: 100%; height: 100%; border-radius: 8px; }
.qr-modal-footnote { font-size: 12px; color: rgba(255, 255, 255, 0.42); line-height: 1.6; }

@media (max-width: 700px) {
    .capture-bar { flex-direction: column; align-items: stretch; padding: 12px; padding-left: 12px; gap: 10px; }
    .capture-bar input { padding: 14px 12px; }
    .capture-bar button { justify-content: center; padding: 16px; }
    .manifesto-card { padding: 40px 28px; }
    .manifesto-card::before { font-size: 260px; top: -50px; }
    .audience-card { padding: 40px 28px 36px; }
    .audience-card::before { font-size: 160px; top: -10px; right: -4px; }
    .interlude { padding: 120px 0; }
    .interlude-lead { font-size: 38px; }
    .platform-row-logos { gap: 26px; }
    .platform-row-logos .platform-logo svg { width: 24px !important; height: 24px !important; }
}
