/* ===== 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-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 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;
}

.telegram-cta {
    margin-top: 20px;
    text-align: center;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 8px 18px;
    transition: color 0.2s, border-color 0.2s;
}

.telegram-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ===== 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-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.photo-strip-track {
    display: flex;
    width: fit-content;
    animation: photoMarquee 34s linear infinite;
}

.photo-strip-track:hover {
    animation-play-state: paused;
}

.photo-strip-set {
    display: flex;
    gap: 10px;
    padding-right: 10px;
    align-items: flex-end;
    flex-shrink: 0;
}

@keyframes photoMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.photo-strip-item {
    position: relative;
    flex-shrink: 0;
    width: 230px;
    border-radius: 16px;
    overflow: hidden;
    height: 310px;
    cursor: pointer;
}

.photo-strip-item--tall {
    height: 390px;
    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-item {
        width: 170px;
        height: 210px;
        border-radius: 10px;
    }
    .photo-strip-item--tall {
        height: 265px;
    }
}

/* ===== 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;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

.resources-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.resource-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: border-color 0.2s ease;
}

.resource-card:hover {
    border-color: var(--accent-border);
}

.resource-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.resource-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.resources-note {
    font-size: 11px;
    color: var(--text-dim);
    font-style: italic;
}

/* ===== GUIDES / PRODUCTS SECTION ===== */
.guides-section {
    padding: 96px 0 80px;
    border-top: 1px solid var(--border);
}

.guides-eyebrow {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.guides-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 56px;
    font-weight: 300;
}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 32px;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.3);
}

.guide-card--featured {
    border-color: var(--accent-border);
    background: var(--bg-card-alt);
    box-shadow: 0 0 48px var(--accent-glow);
}

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

.guide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.guide-icon {
    color: var(--accent);
}

.guide-price {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--text);
    line-height: 1;
}

.guide-title {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.guide-tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.5;
}

.guide-includes {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guide-includes li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.guide-includes li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    opacity: 0.7;
}

.guide-cta {
    margin-top: auto;
    text-align: center;
}

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

/* ===== BUNDLE CARD ===== */
.bundle-card {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(196, 133, 106, 0.06);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.bundle-left {
    flex: 1;
}

.bundle-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.bundle-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.bundle-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.bundle-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.bundle-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.bundle-was {
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.bundle-price {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--text);
    line-height: 1;
}

.bundle-savings {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 700px) {
    .guides-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    .bundle-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .bundle-right {
        align-items: flex-start;
        width: 100%;
    }

    .bundle-right .btn-primary {
        width: 100%;
    }
}

/* ===== ASK JANE — SITUATION READER ===== */
.ask-jane-section {
    padding: 96px 0 80px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.ask-jane-eyebrow {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.ask-jane-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 400;
    text-align: center;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.15;
}

.ask-jane-sub {
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 auto 48px;
    font-weight: 300;
    max-width: 500px;
}

.ask-jane-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ajf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ajf-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.1px;
}

.ajf-hint {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

.ajf-textarea,
.ajf-email {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm, 8px);
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.ajf-textarea {
    resize: vertical;
}

.ajf-textarea::placeholder,
.ajf-email::placeholder {
    color: var(--text-dim);
}

.ajf-textarea:focus,
.ajf-email:focus {
    border-color: var(--accent-border);
    background: rgba(255, 255, 255, 0.07);
}

.ajf-submit-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
}

.ajf-submit-btn {
    padding: 15px 32px;
    font-size: 15px;
    width: 100%;
    max-width: 360px;
}

.ajf-submit-btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

.ajf-price-note {
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
    margin: 0;
}

.ajf-error {
    text-align: center;
    font-size: 14px;
    color: #e07070;
    min-height: 20px;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .ask-jane-section {
        padding: 64px 0 56px;
    }

    .ask-jane-sub {
        margin-bottom: 36px;
    }

    .ask-jane-form {
        gap: 22px;
    }

    .ajf-submit-btn {
        max-width: 100%;
    }
}

/* ===== PHOTO STRIP — BLURRED ITEMS ===== */
.photo-strip-item--blurred::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(26, 22, 20, 0.38);
    border-radius: inherit;
    z-index: 1;
}

.photo-strip-overlay--lock {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.photo-strip-lock {
    font-size: 20px;
    opacity: 0.65;
    z-index: 2;
}

/* ===== LOCKED STACK — TYPING INDICATOR ===== */
.ln-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 0 6px;
}

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

.ln-typing-bubble {
    display: flex;
    gap: 3px;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 6px 10px;
    flex-shrink: 0;
}

.ln-typing-bubble span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    animation: typingDot 1.3s ease-in-out infinite;
}

.ln-typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.ln-typing-bubble span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
    30%           { transform: translateY(-3px); opacity: 1; }
}

.ln-typing-text {
    font-size: 12px;
    color: var(--text-dim);
    font-style: italic;
}

/* Unread note — most recent, slightly highlighted */
.locked-note--unread {
    background: rgba(196, 133, 106, 0.07);
    border-color: rgba(196, 133, 106, 0.18);
}

.ln-unread-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: unreadPulse 2.5s ease-in-out infinite;
}

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

/* ===== ASK JANE — SAMPLE READING PREVIEW ===== */
.aj-sample {
    margin-bottom: 40px;
}

.aj-sample-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.aj-sample-from {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

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

.aj-sample-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.2px;
}

.aj-sample-line {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 12px;
}

.aj-sample-blurred {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    margin-bottom: 0;
    position: relative;
}

.aj-sample-blurred::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-card) 80%);
}

.aj-sample-lock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 16px;
}
