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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baskerville', 'Garamond', 'Georgia', 'Times New Roman', serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.8;
    padding: 60px 20px;
}

.manifesto {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.manifesto-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 0 60px 0;
    border-bottom: 3px solid #5B21B6;
}

.manifesto-label {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #666;
    font-weight: 500;
}

.manifesto-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.manifesto-subtitle {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #333;
    font-weight: 300;
}

.manifesto-author {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Table of Contents */
.table-of-contents {
    background-color: #fafafa;
    padding: 50px 60px;
    margin-bottom: 100px;
    border-left: 4px solid #5B21B6;
}

.toc-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: 0.03em;
}

.toc-list {
    list-style: none;
    counter-reset: toc-counter;
}

.toc-list > li {
    counter-increment: toc-counter;
    margin-bottom: 25px;
}

.toc-list > li::before {
    content: counter(toc-counter, upper-roman) ". ";
    font-weight: 600;
    margin-right: 12px;
    color: #333;
    font-size: 1.1rem;
}

.toc-list > li > a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc-list > li > a:hover {
    color: #5B21B6;
}

.toc-subsections {
    list-style: none;
    margin-top: 15px;
    margin-left: 35px;
    padding-left: 20px;
    border-left: 2px solid #e0e0e0;
}

.toc-subsections li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
}

/* Content */
.manifesto-content {
    font-size: 1.25rem;
    line-height: 1.9;
}

.manifesto-section {
    margin-bottom: 100px;
}

.part-section {
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.part-section:first-child {
    border-top: none;
    padding-top: 0;
}

.part-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding-left: 20px;
    border-left: 4px solid #5B21B6;
}

.subsection {
    margin-bottom: 50px;
}

.subsection-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 40px;
}

.chapter {
    margin-bottom: 60px;
}

.chapter-number {
    font-size: 3rem;
    font-weight: 300;
    color: #ddd;
    margin-bottom: 10px;
}

.chapter-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.manifesto-content p {
    margin-bottom: 1.5em;
}

.lead {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2em !important;
    font-weight: 400;
}

.emphasis {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2.5em 0 !important;
    line-height: 1.6;
    color: #5B21B6;
}

em {
    font-style: italic;
}

/* Key Points */
.key-points {
    margin: 35px 0;
    padding-left: 30px;
    border-left: 3px solid #000000;
}

.point {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.point strong {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

/* Image */
.manifesto-image {
    margin: 100px 0;
    text-align: center;
}

.manifesto-image img {
    width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
}

figcaption {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 18px;
}

/* Footer */
.manifesto-footer {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 3px solid #000000;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-family: 'Baskerville', 'Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    border: 2px solid #000000;
}

.cta-button.primary {
    background-color: #000000;
    color: #ffffff;
}

.cta-button.primary:hover {
    background-color: #333;
    border-color: #333;
}

.cta-button.secondary {
    background-color: transparent;
    color: #000000;
}

.cta-button.secondary:hover {
    background-color: #000000;
    color: #ffffff;
}

.footer-nav {
    text-align: center;
    margin-top: 50px;
}

.footer-link {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Baskerville', 'Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    border: 2px solid #ccc;
    background-color: transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.footer-link:hover {
    border-color: #000;
    color: #000;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }

    .manifesto-title {
        font-size: 3rem;
    }

    .manifesto-subtitle {
        font-size: 1.3rem;
    }

    .manifesto-header {
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .table-of-contents {
        padding: 35px 30px;
        margin-bottom: 70px;
    }

    .toc-title {
        font-size: 1.5rem;
    }

    .toc-list > li > a {
        font-size: 1.1rem;
    }

    .toc-subsections {
        margin-left: 25px;
        font-size: 0.95rem;
    }

    .manifesto-content {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .subsection-title {
        font-size: 1.4rem;
    }

    .chapter-number {
        font-size: 2.5rem;
    }

    .chapter-title {
        font-size: 1.7rem;
    }

    .lead {
        font-size: 1.4rem;
    }

    .emphasis {
        font-size: 1.3rem;
    }

    .key-points {
        padding-left: 20px;
    }

    .point {
        font-size: 1.05rem;
    }

    .point strong {
        font-size: 1.1rem;
    }

    .manifesto-image {
        margin: 70px 0;
    }

    .footer-cta-title {
        font-size: 1.8rem;
    }

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

    .cta-button {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 30px 15px;
    }

    .manifesto-title {
        font-size: 2.2rem;
    }

    .manifesto-subtitle {
        font-size: 1.1rem;
    }

    .table-of-contents {
        padding: 25px 20px;
    }

    .toc-subsections {
        margin-left: 15px;
        padding-left: 15px;
    }

    .manifesto-content {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .chapter-title {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .emphasis {
        font-size: 1.2rem;
    }

    .footer-cta-title {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
}

/* New styles for updated manifesto */

/* Blockquotes - for Sean Parker, Ramsay Brown, C.S. Lewis quotes */
blockquote {
    margin: 2.5em 0;
    padding: 1.5em 2em;
    background-color: #f5f5f5;
    border-left: 4px solid #999;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: #ccc;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Lists */
.manifesto-content ul,
.manifesto-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.manifesto-content li {
    margin-bottom: 0.75em;
}

/* C.S. Lewis quote card */
.lewis-quote {
    margin: 3em 0;
    padding: 3em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    border-radius: 12px;
}

.lewis-photo {
    width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1.5em;
    filter: grayscale(100%);
    border: 4px solid #5B21B6;
}

.lewis-blockquote {
    background: none;
    border-left: none;
    padding: 0 1em;
    max-width: 600px;
    font-size: 1.25rem;
    color: #4C1D95;
    margin: 0;
}

.lewis-blockquote::before {
    display: none;
}

.lewis-attribution {
    margin-top: 1em;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    color: #5B21B6;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .lewis-photo {
        width: 140px;
    }

    .lewis-blockquote {
        font-size: 1.1rem;
    }
}

/* Brian Clark quote - purple background without image */
.brian-clark-quote {
    margin: 2em 0;
    padding: 2em;
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    border-radius: 12px;
    border-left: none;
    font-size: 1.15rem;
    font-style: italic;
    color: #4C1D95;
    text-align: center;
}

.brian-clark-quote::before {
    display: none;
}

/* Bridge coda */
.bridge-coda {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 40px;
    color: #444;
}

.bridge-image {
    margin: 50px auto;
    text-align: center;
}

.bridge-image img {
    max-width: 100%;
    height: auto;
    border: none;
}

/* Manifesto illustrations */
.manifesto-illustration {
    margin: 3em 0;
    text-align: center;
}

.manifesto-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.worldview-illustration {
    max-width: 700px;
}

.lightbulbs-illustration {
    max-width: 800px;
}

@media (max-width: 768px) {
    .manifesto-illustration {
        margin: 2em 0;
    }

    .worldview-illustration,
    .lightbulbs-illustration {
        max-width: 100%;
    }
}

/* Lightbulbs list */
.lightbulbs-list {
    margin: 2em 0 1em 0;
    padding-left: 2em;
    list-style-type: decimal;
}

.lightbulbs-list li {
    margin-bottom: 1em;
    padding-left: 0.5em;
}

/* Reduce gap between lightbulbs and illustration */
.lightbulbs-list + .manifesto-illustration {
    margin-top: 1.5em;
}

/* Section spacing consistency */
.manifesto-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2.5em;
    margin-bottom: 1em;
    color: #1a1a1a;
}

/* About the Author */
.about-author {
    margin-top: 80px;
    padding: 40px;
    background-color: #fafafa;
    border-left: 4px solid #5B21B6;
}

.about-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-author p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.about-author a {
    color: #5B21B6;
    text-decoration: none;
}

.about-author a:hover {
    text-decoration: underline;
}

/* Updated footer - subtle purple accent */
.manifesto-footer {
    margin-top: 100px;
    padding: 60px 40px;
    border-top: 3px solid #5B21B6;
    text-align: center;
}

.footer-tagline {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #5B21B6;
}

.footer-privacy {
    color: #888;
    font-size: 0.85em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-note {
    color: #aaa;
    font-size: 0.8em;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-date {
    color: #aaa;
    font-size: 0.7em;
    margin-bottom: 40px;
}

.footer-nav {
    margin-top: 30px;
}

.footer-nav .footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    border: none;
    padding: 0;
    transition: color 0.3s ease;
}

.footer-nav .footer-link:hover {
    color: #5B21B6;
}

/* Highlight phrase - purple emphasis for key phrases */
.highlight-phrase {
    color: #5B21B6;
    font-weight: 600;
    font-size: 1.35rem;
    display: block;
    margin: 1.5em 0;
}

/* CTA section */
.manifesto-cta {
    margin: 80px 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.9;
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 2em;
    color: #1a1a1a;
}

.manifesto-cta p {
    margin-bottom: 1.2em;
}

.manifesto-cta p:last-child {
    margin-bottom: 0;
}

.manifesto-cta a {
    color: #1a1a1a;
    text-decoration: underline;
}

.manifesto-cta a:hover {
    color: #5B21B6;
}

/* Section dividers */
.section-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 60px 0;
}

/* Mid-page tagline */
.footer-tagline-mid {
    text-align: center;
    font-size: 1.3rem;
    color: #5B21B6;
    margin: 0;
}
