/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-in;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

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

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 25px 60px;
    background-color: #000000;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    border: 3px solid #000000;
    z-index: -1;
}

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

.cta-button:hover::before {
    background-color: #FFFFFF;
}

/* Section Base Styles */
section {
    padding: 120px 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
}

.section-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* About Section */
.about {
    background-color: #FFFFFF;
}

/* Vision Section */
.vision {
    background-color: #FFFFFF;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

.progression {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    gap: 40px;
    flex-wrap: wrap;
}

.progression-item {
    padding: 30px 50px;
    border: 3px solid #000000;
    min-width: 150px;
    text-align: center;
}

.progression-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progression-arrow {
    font-size: 3rem;
    font-weight: 700;
}

/* How It Works Section */
.how-it-works {
    background-color: #FFFFFF;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
}

.icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

/* Community Section */
.community {
    background-color: #FFFFFF;
    border-top: 2px solid #000000;
    text-align: center;
}

.community .cta-button {
    margin-top: 50px;
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 2px solid #000000;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-top: 20px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        width: 200px;
        margin-bottom: 40px;
    }

    .hero-tagline {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subheading {
        font-size: 1.2rem;
    }

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

    .section-text {
        font-size: 1.1rem;
    }

    section {
        padding: 80px 20px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .progression {
        gap: 20px;
    }

    .progression-item {
        padding: 20px 30px;
        min-width: 120px;
    }

    .progression-text {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .progression-arrow {
        font-size: 2rem;
    }

    .features {
        gap: 40px;
    }

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

    .footer-nav {
        gap: 20px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .progression {
        flex-direction: column;
    }

    .progression-arrow {
        transform: rotate(90deg);
    }
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.pdf-modal-content {
    position: relative;
    background-color: #FFFFFF;
    margin: 2% auto;
    padding: 0;
    border: 5px solid #000000;
    width: 90%;
    height: 90vh;
    max-width: 1200px;
}

.pdf-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.pdf-close:hover,
.pdf-close:focus {
    opacity: 0.6;
}

#pdfViewer {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .pdf-modal-content {
        width: 95%;
        height: 85vh;
        margin: 5% auto;
        border: 3px solid #000000;
    }

    .pdf-close {
        font-size: 35px;
        top: -35px;
    }
}
