/* Hero Section */
.story-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.story-hero h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-hero p {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary-text);
    letter-spacing: -0.01em;
}

/* Story Content */
.story-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px 120px;
}

.story-content h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-top: 80px;
    margin-bottom: 32px;
    color: var(--primary-text);
}

.story-content h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-text);
}

.story-content p {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 28px;
    color: var(--primary-text);
    font-weight: 400;
}

.story-content ul {
    margin: 32px 0;
    padding-left: 0;
    list-style: none;
}

.story-content li {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    color: var(--primary-text);
}

.story-content li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--accent);
    font-weight: 700;
    font-size: 24px;
}

/* Author Signature */
.author-signature {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 19px;
    line-height: 1.75;
    color: var(--secondary-text);
    text-align: right;
    font-style: italic;
    font-weight: 400;
}

/* Pull Quote Style for Emphasis */
.story-content p:first-of-type::first-letter {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 4px 12px 0 0;
    color: var(--accent);
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    background: var(--background-alt);
    padding: 48px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--secondary-text);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: var(--transition);
}

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

.separator {
    color: var(--secondary-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bubble {
        filter: blur(40px);
    }

    .bubble-1 {
        width: 300px;
        height: 300px;
        top: -80px;
        left: -80px;
    }

    .bubble-2 {
        width: 250px;
        height: 250px;
        bottom: -60px;
        right: -60px;
    }

    .bubble-3 {
        width: 200px;
        height: 200px;
        top: 60%;
        left: 60%;
    }

    .story-hero {
        padding: 80px 24px 60px;
    }

    .story-hero h1 {
        font-size: 40px;
    }

    .story-hero p {
        font-size: 20px;
    }

    .story-content {
        padding: 0 24px 80px;
    }

    .story-content h2 {
        font-size: 32px;
        margin-top: 60px;
        margin-bottom: 24px;
    }

    .story-content h3 {
        font-size: 24px;
        margin-top: 40px;
    }

    .story-content p,
    .story-content li {
        font-size: 17px;
    }

    .story-content p:first-of-type::first-letter {
        font-size: 48px;
        margin: 2px 8px 0 0;
    }

    .author-signature {
        margin-top: 60px;
        padding-top: 32px;
        font-size: 17px;
    }

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

@media (max-width: 480px) {
    .nav-content {
        padding: 12px 16px;
    }

    .logo {
        font-size: 18px;
    }

    .download-btn {
        font-size: 13px;
        padding: 7px 16px;
    }

    .story-hero h1 {
        font-size: 32px;
    }

    .story-hero p {
        font-size: 18px;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .story-content h3 {
        font-size: 21px;
    }
}
