/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --bg:           #1a1614;
    --bg-card:      #231f1c;
    --bg-card-alt:  #2a2420;
    --accent:       #c4856a;
    --accent-dim:   rgba(196, 133, 106, 0.12);
    --accent-glow:  rgba(196, 133, 106, 0.22);
    --accent-border:rgba(196, 133, 106, 0.28);
    --text:         #f5efe8;
    --text-muted:   #9a8a7e;
    --text-dim:     #6a5e57;
    --border:       rgba(255, 255, 255, 0.07);
    --radius:       14px;
    --radius-sm:    8px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ===== CONTAINERS ===== */
.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    background: linear-gradient(to bottom, rgba(26,22,20,0.9) 0%, rgba(26,22,20,0) 100%);
}

.nav-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.nav-member {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
    letter-spacing: 0.2px;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 72px;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(26,22,20,0.96) 0%,
            rgba(26,22,20,0.90) 38%,
            rgba(26,22,20,0.48) 68%,
            rgba(26,22,20,0.14) 100%),
        linear-gradient(to bottom,
            rgba(26,22,20,0) 30%,
            rgba(26,22,20,0.82) 80%,
            var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 560px;
    padding: 0 24px;
}

.hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.hero-headline em {
    font-style: italic;
}

.hero-headline-em {
    background: linear-gradient(90deg, #c4856a 0%, #d4a574 60%, #c4856a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    font-weight: 300;
}

/* ===== HERO GIFT BLOCK ===== */
.hero-gift {
    background: rgba(196, 133, 106, 0.08);
    border: 1px solid rgba(196, 133, 106, 0.3);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-gift-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--accent);
    margin-bottom: 2px;
}

.hero-gift-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(17px, 2.5vw, 20px);
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.hero-gift-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--text-dim);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===== FORM ===== */
.form-wrapper {
    width: 100%;
}

.capture-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--accent-border);
    border-radius: 50px;
    padding: 13px 20px;
    font-size: 15px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.email-input::placeholder {
    color: var(--text-dim);
}

.email-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.10);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #d4957a;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 15px 22px;
    font-size: 15px;
    margin-top: 8px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--accent-border);
    color: var(--accent);
    border-radius: var(--radius-sm);
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, background 0.2s ease;
    margin-top: 8px;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 12px;
}

/* ===== BEEHIIV EMBED ===== */
.beehiiv-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.form-success {
    text-align: center;
    padding: 16px;
    font-size: 15px;
    color: var(--accent);
    font-style: italic;
    font-family: 'DM Serif Display', serif;
}

/* ===== AUDIO SECTION ===== */
.audio-section {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.audio-label {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 0.2px;
}

.audio-player-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
}

.audio-play-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
}

.audio-play-btn:hover {
    background: #d4957a;
    transform: scale(1.05);
}

.audio-play-btn:active {
    transform: scale(0.97);
}

.audio-track {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.audio-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.audio-time {
    font-size: 12px;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    min-width: 32px;
    text-align: right;
}

.audio-unavailable {
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
    font-style: italic;
    padding: 14px 0;
}

/* ===== SECTIONS SHARED ===== */
.inside-section,
.about-section,
.faq-section {
    padding: 96px 0;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text);
}

/* ===== FEATURE CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.card:hover {
    background: var(--bg-card-alt);
    transform: translateY(-3px);
}

.card-icon {
    color: var(--accent);
    margin-bottom: 18px;
}

.card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius);
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.about-text-col h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    margin-bottom: 24px;
}

.about-text-col p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text-col p:last-of-type {
    margin-bottom: 28px;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 34px;
}

.pricing-paid {
    border-color: var(--accent-border);
    background: var(--bg-card-alt);
    box-shadow: 0 0 40px var(--accent-glow);
    position: relative;
}

.pricing-tier {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.pricing-paid .pricing-tier {
    color: var(--accent);
}

.pricing-price {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    color: var(--text);
    line-height: 1;
    margin-bottom: 28px;
}

.pricing-period {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-list {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-list li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.pricing-note {
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 14px;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 0;
    text-align: left;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    font-weight: 500;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-arrow {
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    padding-bottom: 22px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.2s ease;
}

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

/* ===== SCROLL FADE-IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        max-height: 380px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .nav {
        padding: 18px 20px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .capture-form {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .inside-section,
    .about-section,
    .faq-section {
        padding: 64px 0;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .about-quote-float {
        display: none;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .proof-strip {
        flex-wrap: wrap;
        gap: 6px 12px;
        justify-content: center;
    }

    .proof-dot {
        display: none;
    }

    .mid-cta-section,
    .final-cta {
        padding: 64px 0;
    }
}

/* ===== AMBIENT BLOBS ===== */
.blob-rose {
    position: fixed;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(196, 133, 106, 0.07);
    border-radius: 50%;
    filter: blur(180px);
    pointer-events: none;
    z-index: 0;
}

.blob-amber {
    position: fixed;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(196, 133, 106, 0.04);
    border-radius: 50%;
    filter: blur(160px);
    pointer-events: none;
    z-index: 0;
}

/* ===== PHOTO TEASER STRIP ===== */
.photo-strip {
    padding: 48px 0 32px;
}

.photo-strip-inner {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: flex-end;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.photo-strip-item {
    position: relative;
    flex: 1;
    max-width: 260px;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.photo-strip-item--tall {
    height: 400px;
    margin-bottom: 0;
}

.photo-strip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}

.photo-strip-item:hover .photo-strip-img {
    transform: scale(1.04);
}

.photo-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(26,22,20,0) 40%,
        rgba(26,22,20,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: background 0.3s ease;
}

.photo-strip-item:hover .photo-strip-overlay {
    background: linear-gradient(to bottom,
        rgba(26,22,20,0) 20%,
        rgba(196,133,106,0.3) 60%,
        rgba(26,22,20,0.9) 100%);
}

.photo-strip-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245,239,232,0.85);
}

.photo-strip-cta {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
}

.photo-strip-cta a,
.photo-strip-cta {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

@media (max-width: 600px) {
    .photo-strip-inner {
        gap: 8px;
    }
    .photo-strip-item {
        height: 220px;
        border-radius: 10px;
    }
    .photo-strip-item--tall {
        height: 280px;
    }
}

/* ===== PROOF STRIP ===== */
.proof-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.proof-dot {
    color: var(--accent);
    opacity: 0.5;
}

/* ===== VOICE MEMO PLAYER ===== */
.voice-memo {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 18px;
    max-width: 480px;
    margin: 0 auto;
}

.vm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'DM Serif Display', serif;
}

.vm-waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 28px;
}

.vm-waveform span {
    width: 3px;
    border-radius: 3px;
    background: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
    transform-origin: center;
    transition: opacity 0.2s ease;
}

.vm-waveform.playing span {
    animation: waveAnim 0.8s ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * 0.05s);
    opacity: 0.85;
}

@keyframes waveAnim {
    from { transform: scaleY(0.4); }
    to   { transform: scaleY(1.0); }
}

.vm-time {
    font-size: 12px;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    min-width: 32px;
    text-align: right;
    flex-shrink: 0;
}

.vm-play {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
    padding-left: 2px; /* optical center for play icon */
}

.vm-play:hover {
    background: #d4957a;
    transform: scale(1.06);
}

.vm-play:active {
    transform: scale(0.96);
}

/* ===== LOCKED NOTE STACK ===== */
.locked-stack {
    max-width: 480px;
    margin: 28px auto 0;
}

.locked-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 14px 20px;
    margin-bottom: 8px;
    gap: 12px;
}

.ln-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ln-title {
    font-size: 14px;
    color: var(--text-muted);
    filter: blur(4px);
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ln-date {
    font-size: 11px;
    color: var(--text-dim);
}

.ln-lock {
    font-size: 14px;
    opacity: 0.45;
    flex-shrink: 0;
}

.locked-cta {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.locked-cta:hover {
    opacity: 0.8;
}

/* ===== TEASER CARDS ===== */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.teaser-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.teaser-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(196, 133, 106, 0.12);
}

.teaser-card-icon {
    color: var(--accent);
    margin-bottom: 14px;
}

.teaser-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: 50px;
    padding: 3px 10px;
    margin-bottom: 12px;
}

.teaser-badge-gold {
    color: #c4a86a;
    background: rgba(196, 168, 106, 0.1);
    border-color: rgba(196, 168, 106, 0.28);
}

.teaser-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.3;
}

.teaser-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.teaser-preview {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}

.teaser-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    filter: blur(2px);
}

.teaser-imessage {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    position: relative;
}

.tim-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'DM Serif Display', serif;
}

.tim-bubble-wrap {
    flex: 1;
    min-width: 0;
}

.tim-bubble {
    background: rgba(196, 133, 106, 0.15);
    border-radius: 12px 12px 12px 2px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tim-lock {
    font-size: 13px;
    opacity: 0.45;
    flex-shrink: 0;
    align-self: center;
}

.teaser-pdf-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 168, 106, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.tpp-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.tpp-title {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.tpp-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== ABOUT FLOATING QUOTE ===== */
.about-image-col {
    position: relative;
}

.about-quote-float {
    position: absolute;
    bottom: -16px;
    left: -20px;
    max-width: 260px;
    background: var(--bg-card);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.about-quote-float p {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 6px;
}

.about-quote-float span {
    font-size: 12px;
    color: var(--accent);
}

/* ===== MID-PAGE CTA ===== */
.mid-cta-section {
    padding: 96px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mid-cta-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}

.mid-cta-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 96px 0;
    background: var(--bg);
}

.final-cta-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}

.final-cta-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ===== FAQ OPEN STATE ===== */
.faq-item.open {
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    margin-left: -17px;
    transition: border-left 0.2s ease, padding-left 0.2s ease;
}
