/* Susan Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Cinzel', serif;
    color: #ffffff;
    background-color: #011126;
    background-image: url('https://devouredaudionovel.com/wp-content/uploads/2026/06/website-background-right-darker-1-scaled.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-attachment: fixed;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(1, 17, 38, 0.7);
    pointer-events: none;
    z-index: 1;
}

.susan-section {
    position: relative;
    z-index: 2;
}


.susan-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    min-height: 100vh;
    color: #85F5FF;
}

.susan-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: flex-start;
}

.susan-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 50vh;
    transform: translateY(-50%);
    animation: susanLogoEmerge 3s ease-out forwards;
}

@keyframes susanLogoEmerge {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(1.15);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.susan-texts {
    margin-top: 0;
}

@media (max-width: 768px) {
    .susan-texts {
        margin-top: 200px;
    }
}

.susan-text {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.susan-text.visible {
    opacity: 1;
    transform: translateY(0);
    color: #85F5FF;
    text-shadow:
        0 0 10px #85F5FF,
        0 0 20px #85F5FF,
        0 0 40px #85F5FF,
        0 0 80px #85F5FF;
}

.susan-svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.susan-text-1 {
    font-size: 1rem;
}

.susan-text-2 {
    font-size: 2rem;
    margin-top: 9rem;
}

.susan-text-3 {
    font-size: 2.5rem;
    margin-top: 9rem;
    animation-delay: 1.9s;
}

/* Play Button */
.susan-player {
    margin-top: 9rem;
    margin-bottom: 100px;
}

.susan-play-img {
    width: 100px;
    height: auto;
    cursor: pointer;
    animation: susanFloat 3s ease-in-out infinite;
}

@keyframes susanFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Bubbles */
.susan-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
}

.susan-bubble {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(133, 245, 255, 0.8), rgba(133, 245, 255, 0.4));
    border: 1px solid rgba(133, 245, 255, 0.5);
    box-shadow: 0 0 6px rgba(133, 245, 255, 0.3);
    will-change: transform, opacity;
}


/* Scroll Dots */
/* Navbar */
.susan-navbar-wrapper {
    position: relative;
    z-index: 500;
}

.susan-navbar {
    text-align: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 500;
    background: transparent;
    backdrop-filter: blur(30px) saturate(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(1.2);
}

.susan-navbar-line {
    width: 80%;
    margin: 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(180, 155, 80, 0.15) 10%, rgba(201, 185, 122, 0.6) 35%, rgba(240, 214, 128, 1) 50%, rgba(201, 185, 122, 0.6) 65%, rgba(180, 155, 80, 0.15) 90%, transparent 100%);
    position: relative;
    border-radius: 50%;
}

.susan-navbar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 240, 200, 0.6);
    box-shadow: 0 0 8px 2px rgba(240, 214, 128, 0.4);
}

.susan-navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0;
    background: transparent;
}

.susan-navbar-link {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.25em;
    color: #85F5FF;
    text-decoration: none;
    padding: 0 2rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 15px rgba(133, 245, 255, 0.5), 0 0 40px rgba(133, 245, 255, 0.25), 0 0 60px rgba(133, 245, 255, 0.1);
}

.susan-navbar-link:hover {
    color: #b8f9ff;
    text-shadow: 0 0 8px rgba(133, 245, 255, 0.4);
}

.susan-navbar-link.active {
    color: #b8f9ff;
    text-shadow: 0 0 10px rgba(133, 245, 255, 0.5);
}

.susan-navbar-link-center {
    font-size: 1.2rem;
    font-weight: 700;
}

.susan-navbar-divider {
    width: 1px;
    height: 18px;
    background: rgba(133, 245, 255, 0.5);
}

/* Navbar reflection - removed to keep bg within golden borders */

/* ============================
   Container 1 - Sky bg + centered text
   ============================ */
.susan-container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
}


.susan-c1-content {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 250px;
}

.susan-c1-spacer {
    width: 100%;
    height: 35vw;
}

/* ============================
   Section 2 - Left column texts (A VOICE FROM THE DEEP)
   ============================ */

.susan-s2-title {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 2.3rem;
    letter-spacing: 0.2em;
    color: #85F5FF;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-shadow:
        0 0 10px #85F5FF,
        0 0 20px #85F5FF,
        0 0 40px #85F5FF,
        0 0 80px #85F5FF;
}

.susan-s2-italic {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.50rem;
    color: #85F5FF;
    margin-top: 50px;
    margin-bottom: 2rem;
    text-shadow:
        0 0 10px #85F5FF,
        0 0 20px #85F5FF,
        0 0 40px #85F5FF,
        0 0 80px #85F5FF;
}

.susan-s2-cta {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: #cbba9b;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow:
        0 0 10px rgba(240, 214, 128, 0.8),
        0 0 25px rgba(240, 214, 128, 0.5),
        0 0 50px rgba(240, 214, 128, 0.3);
    animation: susanCtaFloat 3s ease-in-out infinite;
}

@keyframes susanCtaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.susan-s2-cta:hover {
    color: #fff0c8;
    text-shadow:
        0 0 15px rgba(240, 214, 128, 1),
        0 0 35px rgba(240, 214, 128, 0.7),
        0 0 60px rgba(240, 214, 128, 0.4);
}

/* ============================
   Minimal Timeline (Section 3)
   ============================ */
.tl-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-align: center;
    margin: 0;
    padding: 300px 0 60px;
    background: linear-gradient(180deg, #fff6e0 0%, #f0d68c 15%, #c9a96e 35%, #f5e4b8 50%, #a9936a 70%, #e0cc9a 85%, #fff6e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(240,214,128,.8)) drop-shadow(0 0 50px rgba(201,169,110,.6)) drop-shadow(0 0 100px rgba(201,169,110,.3));
}

.tl-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.tl-slider {
    display: flex;
    gap: 0;
    padding: 0;
    transition: transform .5s ease;
}

.tl-item {
    flex: 0 0 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px 30px;
    position: relative;
    transition: opacity .4s ease;
}

/* Horizontal golden line - left half */
.tl-item::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: calc(50% - 35px);
    height: 1px;
    background: rgba(201,169,110,.3);
    z-index: 0;
}

/* Horizontal golden line - right half */
.tl-item::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    width: calc(50% - 35px);
    height: 1px;
    background: rgba(201,169,110,.3);
    z-index: 0;
}

/* Hide left line on first item */
.tl-item:first-child::before { display: none; }
/* Hide right line on last item */
.tl-item:last-child::after { display: none; }

.tl-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(201,169,110,.4));
}

.tl-lock {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: .5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-line { display: none; }

/* Navigation arrows */
.tl-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.tl-arrow-btn {
    background: none;
    border: 1px solid rgba(201,169,110,.25);
    color: #C9A96E;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.tl-arrow-btn:hover {
    border-color: rgba(201,169,110,.6);
    box-shadow: 0 0 12px rgba(201,169,110,.15);
}

.tl-label {
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff6e0 0%, #f0d68c 25%, #a9936a 50%, #e8d5a3 75%, #8a7550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(240,214,128,.6)) drop-shadow(0 0 30px rgba(201,169,110,.35));
}

.tl-name {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #c8f8ff 20%, #85F5FF 45%, #b8faff 65%, #5ed8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(133,245,255,.6)) drop-shadow(0 0 35px rgba(133,245,255,.3));
}

.tl-desc {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #b9f9ff;
    line-height: 1.4;
    margin-bottom: 12px;
}

.tl-cta {
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    color: #85F5FF;
    text-decoration: none;
    letter-spacing: .12em;
    padding: 6px 16px;
    border: 1px solid rgba(133,245,255,.2);
    border-radius: 16px;
    transition: all .3s ease;
    margin-top: auto;
}

.tl-cta:hover {
    background: rgba(133,245,255,.08);
    border-color: rgba(133,245,255,.4);
}

.tl-soon {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #85F5FF;
}

.tl-locked {
    opacity: .3;
}

/* ===== PART BLOCK (V2 — hero logo + 4 chapters) ===== */
/* ===== PARTS CAROUSEL (lateral slide between parts) ===== */
.parts-carousel {
    padding-top: 300px;
    position: relative;
    overflow: hidden;
}

.parts-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.part-slide {
    flex: 0 0 100%;
    width: 100%;
    transition: opacity .5s ease, filter .5s ease;
}

/* the part not currently centered dims & blurs slightly */
.part-slide.is-inactive {
    opacity: .35;
    filter: blur(1px);
    pointer-events: none;
}

.part-logo {
    display: block;
    max-width: 480px;
    width: 80%;
    margin: 0 auto 70px;
    filter: drop-shadow(0 0 40px rgba(133,245,255,.45)) drop-shadow(0 0 90px rgba(133,245,255,.2));
}

.part-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 40px;
}

/* Text title used as a placeholder logo (Part II) */
.part-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-align: center;
    margin: 0;
    padding: 0 0 70px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #c8f8ff 20%, #85F5FF 45%, #b8faff 65%, #5ed8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(133,245,255,.6)) drop-shadow(0 0 50px rgba(133,245,255,.3));
}

/* ===== carousel navigation ===== */
.parts-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    padding-bottom: 40px;
}

.parts-arrow {
    background: none;
    border: 1px solid rgba(133,245,255,.25);
    color: #85F5FF;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.parts-arrow:hover:not(:disabled) {
    border-color: rgba(133,245,255,.6);
    box-shadow: 0 0 12px rgba(133,245,255,.2);
}
.parts-arrow:disabled {
    opacity: .25;
    cursor: default;
}

.parts-dots {
    display: flex;
    gap: 12px;
}
.parts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(133,245,255,.5);
    background: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
}
.parts-dot.is-active {
    background: #85F5FF;
    box-shadow: 0 0 10px rgba(133,245,255,.6);
}

.ch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 18px;
    position: relative;
}

.ch-item::before,
.ch-item::after {
    content: '';
    position: absolute;
    top: 30px;
    height: 1px;
    background: rgba(201,169,110,.3);
    z-index: 0;
}
.ch-item::before { left: 0; width: calc(50% - 35px); }
.ch-item::after { right: 0; width: calc(50% - 35px); }
.ch-item:first-child::before { display: none; }
.ch-item:last-child::after { display: none; }

.ch-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(201,169,110,.4));
}

.ch-lock {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch-label {
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff6e0 0%, #f0d68c 25%, #a9936a 50%, #e8d5a3 75%, #8a7550 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(240,214,128,.6)) drop-shadow(0 0 30px rgba(201,169,110,.35));
}

.ch-name {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #c8f8ff 20%, #85F5FF 45%, #b8faff 65%, #5ed8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(133,245,255,.6)) drop-shadow(0 0 35px rgba(133,245,255,.3));
}

.ch-desc {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: #b9f9ff;
    line-height: 1.4;
    margin-bottom: 14px;
}

.ch-cta {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    color: #85F5FF;
    text-decoration: none;
    letter-spacing: .12em;
    padding: 6px 14px;
    border: 1px solid rgba(133,245,255,.2);
    border-radius: 16px;
    transition: all .3s ease;
    margin-top: auto;
}
.ch-cta:hover {
    background: rgba(133,245,255,.08);
    border-color: rgba(133,245,255,.4);
}

.ch-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.ch-cta-main {
    font-size: .85rem;
    padding: 12px 32px;
    border-radius: 24px;
    margin-top: 0;
}

.ch-soon {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #85F5FF;
}

.ch-locked { opacity: .35; }

@media (max-width: 768px) {
    .tl-item { flex: 0 0 160px; padding: 16px 18px; }
    .tl-title { font-size: 1.5rem; padding: 60px 0 40px; }
    .tl-wrap { max-width: 100%; }
    .parts-carousel { padding-top: 120px; }
    .part-logo { max-width: 380px; width: 85%; }
    .ch-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 0; }
    .part-wrap { max-width: 100%; }
    .part-logo-text { font-size: 2rem; min-height: 160px; }
}

@media (max-width: 480px) {
    .parts-carousel { padding-top: 80px; }
    .part-logo { width: 90%; }
    .ch-grid { grid-template-columns: 1fr; gap: 40px; }
    .ch-item::before, .ch-item::after { display: none; }
    .part-logo-text { font-size: 1.6rem; letter-spacing: .2em; min-height: 130px; }
}

/* ============================
   About Section (Section 4)
   ============================ */
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 200px 2rem 100px;
    text-align: center;
}

.about-header {
    margin-bottom: 50px;
}

.about-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: .25em;
    margin-bottom: 20px;
    color: #85F5FF;
    text-shadow:
        0 0 8px rgba(133,245,255,.3),
        0 0 20px rgba(133,245,255,.15);
}

.about-divider {
    width: 100px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,.5), transparent);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: 2rem;
    line-height: 1.5;
    color: #85F5FF;
    padding-top: 50px;
    text-shadow:
        0 0 8px rgba(133,245,255,.3),
        0 0 20px rgba(133,245,255,.15);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text-intro {
    font-size: 2.3rem;
    max-width: 845px;
    align-self: center;
}

.about-text-lg {
    font-family: 'Cinzel', serif;
    font-style: normal;
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: 0.2em;
}

.about-text-final {
    font-size: 1.4rem;
    color: #85F5FF;
    text-shadow: 0 0 15px rgba(133,245,255,.4), 0 0 40px rgba(133,245,255,.2);
}

.about-text em {
    color: #cbba9b;
    font-style: italic;
    text-shadow: 0 0 10px rgba(201,169,110,.3);
}

.about-cta-wrap {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease .3s, transform 1s ease .3s;
}

.about-cta-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-cta {
    font-family: 'Cinzel', serif;
    font-size: .85rem;
    letter-spacing: .2em;
    color: #cbba9b;
    text-decoration: none;
    padding: 10px 28px;
    border: 1px solid rgba(201,169,110,.3);
    border-radius: 30px;
    transition: all .4s ease;
    text-shadow: 0 0 10px rgba(201,169,110,.3);
}

.about-cta:hover {
    border-color: rgba(201,169,110,.6);
    box-shadow: 0 0 20px rgba(201,169,110,.2);
    color: #e0cc9a;
}

/* ============================
   Footer
   ============================ */
.susan-footer {
    position: relative;
    z-index: 2;
    padding: 20px 2rem 40px;
}

.susan-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,.3) 10%, rgba(201,169,110,.3) 90%, transparent);
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 350px;
    height: auto;
    opacity: .4;
    transition: opacity .3s ease;
}


.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: .15em;
    color: rgba(133,245,255,.5);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-link:hover {
    color: #85F5FF;
}

.footer-sep {
    color: rgba(201,169,110,.2);
    font-size: 1rem;
}

.footer-copy {
    font-family: 'Cormorant', serif;
    font-size: .8rem;
    color: #ffffff;
    letter-spacing: .05em;
}

@media (max-width: 768px) {
    .about-section { padding: 120px 1.5rem 60px; }
    .about-title { font-size: 1.8rem; }
    .about-text { font-size: 1.1rem; }
    .about-text-lg { font-size: 1.3rem; }
    .footer-logo { width: 160px; }
}

/* ============================
   Cinematic fade-in (Section 1 & 2)
   ============================ */
.susan-cinematic {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.susan-cinematic.visible {
    opacity: 1;
    transform: translateY(0);
}

.susan-s2-cta.susan-cinematic.visible {
    animation: susanCtaFloat 3s ease-in-out infinite;
}

.susan-s2-body-line {
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-size: 2rem;
    font-style: italic;
    line-height: 1.5;
    color: #85F5FF;
    margin-bottom: 0.6rem;
    text-shadow:
        0 0 10px #85F5FF,
        0 0 20px #85F5FF,
        0 0 40px #85F5FF,
        0 0 80px #85F5FF;
}

/* ============================
   Section 3 - Scroll reveal (lightweight)
   ============================ */
.susan-typewriter-container {
    margin: 0 auto;
    position: relative;
    height: 360vh;
    padding: 0 2rem;
}

.susan-tw-sticky {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.susan-tw-line {
    text-align: center;
    font-family: 'Cormorant', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 30px;
    color: #ffffff;
    text-shadow:
        0 0 10px #85F5FF,
        0 0 20px #85F5FF,
        0 0 40px #85F5FF,
        0 0 80px #85F5FF;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease, height 0.5s ease;
}

.susan-tw-line.visible {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.susan-tw-line.cinzel {
    font-family: 'Cinzel', serif;
    font-style: normal;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    letter-spacing: 2px;
}

.susan-tw-line em {
    color: #F0D680;
    text-shadow:
        0 0 10px rgba(240, 214, 128, 0.6),
        0 0 20px rgba(240, 214, 128, 0.4),
        0 0 40px rgba(240, 214, 128, 0.3);
}

.susan-tw-line.strong-glow {
    text-shadow:
        0 0 10px #85F5FF,
        0 0 25px #85F5FF,
        0 0 50px #85F5FF,
        0 0 100px #85F5FF,
        0 0 150px rgba(133, 245, 255, 0.4);
}

/* ============================
   Responsive — Clean
   ============================ */

/* Prevent horizontal overflow */
html { overflow-x: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile: background-attachment fixed kills performance */
@media (max-width: 1024px) {
    html, body {
        background-attachment: scroll;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .susan-s2-title { font-size: 1.8rem; }
    .susan-s2-body-line { font-size: 1.6rem; }
    .susan-s2-cta { font-size: 1.2rem; }
    .susan-c1-content { padding-top: 150px; }
    .tl-title { font-size: 2.2rem; padding: 200px 0 40px; }
    .tl-item { flex: 0 0 240px; height: 300px; padding: 0 20px 20px; }
    .tl-icon { width: 48px; height: 48px; }
    .tl-lock { width: 48px; height: 48px; font-size: 1.6rem; }
    .tl-name { font-size: 1.6rem; }
    .tl-desc { font-size: 1rem; }
    .about-section { padding: 150px 2rem 80px; }
    .about-title { font-size: 2rem; }
    .about-text { font-size: 1.6rem; padding-top: 30px; }
    .about-text-intro { font-size: 1.8rem; }
    .footer-logo { width: 280px; }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
    /* Hero */
    .susan-hero { padding: 2rem 0; overflow: hidden; }
    .susan-logo { max-width: 100%; width: 100%; padding: 0; }
    .susan-texts { margin-top: 150px; }
    .susan-text { font-size: 0.85rem; letter-spacing: 0.2em; }
    .susan-text-2 { font-size: 1.4rem; margin-top: 6rem; }
    .susan-text-3 { font-size: 1.6rem; margin-top: 6rem; }
    .susan-player { margin-top: 5rem; }
    .susan-play-img { width: 70px; }

    /* Navbar */
    .susan-navbar-links { flex-wrap: wrap; gap: 0.5rem; padding: 0.8rem 0; }
    .susan-navbar-link { padding: 0 0.8rem; font-size: 0.75rem; letter-spacing: 0.15em; }
    .susan-navbar-link-center { font-size: 0.85rem; }
    .susan-navbar-divider { display: none; }
    .susan-navbar-line { width: 90%; }

    /* Section 2 */
    .susan-container1 { padding: 2rem 1.5rem; }
    .susan-c1-content { padding-top: 80px; }
    .susan-c1-spacer { height: 20vw; }
    .susan-s2-title { font-size: 1.4rem; letter-spacing: 0.15em; }
    .susan-s2-body-line { font-size: 1.2rem; }
    .susan-s2-italic { font-size: 1.1rem; margin-top: 30px; }
    .susan-s2-cta { font-size: 0.9rem; }

    /* Timeline */
    .tl-title { font-size: 1.8rem; padding: 120px 0 30px; }
    .tl-wrap { max-width: 100%; padding-bottom: 40px; }
    .tl-item { flex: 0 0 200px; height: 280px; padding: 0 16px 16px; }
    .tl-icon { width: 40px; height: 40px; margin-bottom: 14px; }
    .tl-lock { width: 40px; height: 40px; font-size: 1.3rem; margin-bottom: 14px; }
    .tl-item::before { top: 20px; width: calc(50% - 25px); }
    .tl-item::after { top: 20px; width: calc(50% - 25px); }
    .tl-label { font-size: 0.7rem; }
    .tl-name { font-size: 1.4rem; }
    .tl-desc { font-size: 0.9rem; }
    .tl-soon { font-size: 0.95rem; }
    .tl-cta { font-size: 0.65rem; padding: 5px 12px; }
    .tl-arrow-btn { width: 44px; height: 44px; }

    /* About */
    .about-section { padding: 120px 1.5rem 60px; }
    .about-title { font-size: 1.8rem; letter-spacing: 0.15em; }
    .about-text { font-size: 1.2rem; padding-top: 25px; }
    .about-text-intro { font-size: 1.4rem; max-width: 100%; }
    .about-divider { width: 70px; }

    /* Footer */
    .footer-logo { width: 200px; }
    .footer-link { font-size: 0.85rem; }
    .footer-sep { font-size: 0.85rem; }
    .footer-links { gap: 10px; }

    /* Bubbles - reduce on mobile */
    .susan-bubble:nth-child(even) { display: none; }

}

/* Small mobile (320px - 480px) */
@media (max-width: 480px) {
    /* Hero */
    .susan-logo { max-width: 100%; width: 100%; padding: 0; }
    .susan-texts { margin-top: 80px; }
    .susan-text { font-size: 0.7rem; letter-spacing: 0.12em; }
    .susan-text-2 { font-size: 1.1rem; margin-top: 4rem; }
    .susan-text-3 { font-size: 1.3rem; margin-top: 4rem; }
    .susan-player { margin-top: 3rem; margin-bottom: 40px; }
    .susan-play-img { width: 50px; }

    /* Navbar */
    .susan-navbar-links { padding: 0.6rem 0; }
    .susan-navbar-link { padding: 0 0.5rem; font-size: 0.6rem; letter-spacing: 0.1em; }
    .susan-navbar-link-center { font-size: 0.7rem; }
    .susan-navbar-line { width: 95%; }

    /* Section 2 */
    .susan-c1-content { padding-top: 50px; }
    .susan-c1-spacer { height: 15vw; }
    .susan-s2-title { font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
    .susan-s2-body-line { font-size: 1rem; }
    .susan-s2-italic { font-size: 0.9rem; margin-top: 20px; }
    .susan-s2-cta { font-size: 0.8rem; letter-spacing: 0.15em; }

    /* Timeline */
    .tl-title { font-size: 1.4rem; padding: 80px 0 20px; letter-spacing: 0.2em; }
    .tl-item { flex: 0 0 160px; height: 240px; padding: 0 12px 12px; }
    .tl-icon { width: 34px; height: 34px; margin-bottom: 10px; }
    .tl-lock { width: 34px; height: 34px; font-size: 1.1rem; margin-bottom: 10px; }
    .tl-item::before { top: 17px; width: calc(50% - 20px); }
    .tl-item::after { top: 17px; width: calc(50% - 20px); }
    .tl-label { font-size: 0.6rem; letter-spacing: 0.15em; }
    .tl-name { font-size: 1.1rem; }
    .tl-desc { font-size: 0.8rem; }
    .tl-soon { font-size: 0.8rem; }
    .tl-cta { font-size: 0.55rem; padding: 4px 10px; }

    /* About */
    .about-section { padding: 80px 1rem 40px; }
    .about-title { font-size: 1.4rem; letter-spacing: 0.1em; }
    .about-text { font-size: 1rem; padding-top: 20px; }
    .about-text-intro { font-size: 1.15rem; }
    .about-divider { width: 50px; }

    /* Footer */
    .footer-logo { width: 160px; }
    .footer-link { font-size: 0.75rem; }
    .footer-sep { font-size: 0.75rem; }
    .footer-links { gap: 8px; }
    .footer-copy { font-size: 0.7rem; }
}

/* Landscape mobile */
@media (orientation: landscape) and (max-height: 500px) {
    .susan-hero { min-height: auto; padding: 1rem; }
    .susan-container { min-height: auto; }
    .susan-logo { margin-top: 10vh; max-width: 300px; }
    .susan-texts { margin-top: 30px; }
    .susan-text-2 { margin-top: 2rem; }
    .susan-text-3 { margin-top: 2rem; }
    .susan-player { margin-top: 2rem; margin-bottom: 20px; }
}

/* Touch devices - disable hover effects */
@media (hover: none) {
    .susan-navbar-link:hover { color: #85F5FF; text-shadow: 0 0 15px rgba(133,245,255,.5), 0 0 40px rgba(133,245,255,.25), 0 0 60px rgba(133,245,255,.1); }
    .tl-cta:hover { background: none; border-color: rgba(133,245,255,.2); }
    .tl-arrow-btn:hover { border-color: rgba(201,169,110,.25); box-shadow: none; }
    .footer-link:hover { color: rgba(133,245,255,.5); }
}

/* Backdrop-filter fallback */
@supports not (backdrop-filter: blur(1px)) {
    .susan-navbar { background: rgba(1, 17, 38, 0.85); }
}
