:root {
    color-scheme: light;
    font-size: 16px;
    --bg: #0d0d10;
    --text: #f5f5f7;
    --muted: #c2c2c7;
    --accent: #ff6b4a;
    --accent-soft: rgba(255, 107, 74, 0.15);
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.12);
    --pill-bg: rgba(255, 255, 255, 0.1);
    --max-width: 1100px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.4rem;
    padding: 0.1rem 0.4rem;
    font-size: 0.85em;
}

.hero {
    position: relative;
    padding: 2.5rem clamp(1.5rem, 5vw, 3.5rem) 4.5rem;
    overflow: hidden;
}

.hero-secondary {
    padding-bottom: 3rem;
    background: radial-gradient(circle at top, rgba(255, 107, 74, 0.2), transparent 65%), var(--bg);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto 4rem;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    font-weight: 600;
}

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

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

.cta {
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    transition: background 0.3s ease;
}

.cta:hover {
    background: var(--card-border);
}

.hero-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content.narrow {
    max-width: 42rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.subhead {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--accent);
    color: #0d0d10;
    box-shadow: 0 20px 40px rgba(255, 107, 74, 0.25);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-art {
    position: absolute;
    inset: auto clamp(1rem, 8vw, 6rem) -10rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(10rem, 1fr));
    gap: 1rem;
    opacity: 0.8;
    max-width: 32rem;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    padding: 1.8rem;
    border-radius: 1.25rem;
}

.card.book {
    transform: rotate(-2deg);
}

.card.podcast {
    transform: rotate(3deg);
}

.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

main {
    padding: 4rem clamp(1.5rem, 5vw, 3.5rem) 6rem;
}

.section {
    max-width: var(--max-width);
    margin: 0 auto 4.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-heading {
    display: grid;
    gap: 0.6rem;
}

.section-header p {
    color: var(--muted);
}

.section-link {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-link:hover {
    color: #ff8a71;
}

.listing-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem clamp(1.5rem, 5vw, 3.5rem) 6rem;
    display: grid;
    gap: 3rem;
}

.listing-header {
    text-align: center;
    display: grid;
    gap: 1rem;
}

.listing-header p {
    color: var(--muted);
}

.listing-header p {
    color: var(--muted);
}

@media (min-width: 900px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }

    .section-heading {
        justify-items: start;
        text-align: left;
    }

    .listing-header {
        max-width: 32rem;
        margin: 0 auto;
    }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.summary-card,
.podcast-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.2rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 15rem;
}

.card-media {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.04);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-media:hover img {
    transform: scale(1.05);
}

.card-title {
    color: inherit;
}

.card-grid.trio {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.profile-card {
    min-height: auto;
    gap: 0.5rem;
}

.profile-card .muted {
    color: var(--muted);
}

.pill {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--pill-bg);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link {
    color: var(--accent);
    margin-top: auto;
    font-weight: 600;
}

.podcast-card .episode-meta {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.audio-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    margin-top: auto;
    width: fit-content;
}

.play {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #0d0d10;
    font-weight: 700;
    cursor: pointer;
}

.play:hover {
    filter: brightness(1.05);
}

.subscribe {
    display: flex;
    justify-content: center;
}

.subscribe-card {
    background: linear-gradient(130deg, rgba(255, 107, 74, 0.18), transparent), var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.5rem;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 38rem;
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

.subscribe-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
}

.subscribe-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    color: var(--text);
}

.subscribe-form button {
    background: var(--accent);
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
    cursor: pointer;
    color: #0d0d10;
}

.subscribe-message {
    min-height: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    transition: color 0.2s ease;
}

.subscribe-message[data-state="loading"] {
    color: var(--muted);
}

.subscribe-message[data-state="success"] {
    color: #4ade80;
}

.subscribe-message[data-state="error"] {
    color: #f87171;
}

.page-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem clamp(1.5rem, 5vw, 3.5rem) 6rem;
    display: grid;
    gap: 3rem;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.info-card,
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.2rem;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.info-card ul {
    padding-left: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.info-card.highlight {
    border-color: rgba(255, 107, 74, 0.35);
    box-shadow: 0 30px 60px rgba(255, 107, 74, 0.1);
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.team-section {
    display: grid;
    gap: 2rem;
}

.team-intro {
    max-width: 40rem;
}

.contact-layout {
    grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 1fr);
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    color: var(--text);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-methods {
    display: grid;
    gap: 1rem;
}

.contact-methods a {
    color: var(--text);
    font-weight: 600;
}

.method-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--muted);
    display: block;
}

.faq-section {
    display: grid;
    gap: 1.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.faq-grid article {
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.footnote {
    font-size: 0.8rem;
    color: var(--muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem clamp(1.5rem, 5vw, 3.5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.back-link:hover {
    color: var(--accent);
}

.detail-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem clamp(1.5rem, 5vw, 3.5rem) 6rem;
    display: grid;
    gap: 3rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: start;
}

.detail-cover {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.detail-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    display: grid;
    gap: 1.5rem;
}

.detail-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    line-height: 1.05;
}

.detail-description {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.detail-audio {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.2rem;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 1rem;
}

.detail-audio h2 {
    font-size: 1.25rem;
}

.detail-audio-note {
    font-size: 0.85rem;
    color: var(--muted);
}

.detail-audio audio {
    width: 100%;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 900px) {
    .hero-art {
        position: relative;
        inset: unset;
        margin-top: 3rem;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-bottom: 3rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-art {
        grid-template-columns: 1fr;
        justify-items: center;
        transform: none;
    }

    .card.book,
    .card.podcast {
        transform: none;
    }

    .subscribe-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .detail-main {
        padding-top: 3rem;
    }

    .hero-content {
        margin: 0;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

