/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 85%, #0a0a0a 100%);
}

.logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.1));
    animation: fadeInDown 1s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.investor-message {
    font-size: 1.1rem;
    font-weight: 400;
    color: #b0b0b0;
    max-width: 700px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #666;
    animation: bounce 2s infinite;
}

/* Image Sections */
.image-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    position: relative;
}

.image-section .container {
    text-align: center;
}

/* Gradient transitions for each section */
.image-section:nth-child(2) {
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 15%, #121212 85%, #0a0a0a 100%);
}

.image-section:nth-child(3) {
    background: linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 15%, #0a0a0a 85%, #121212 100%);
}

.image-section:nth-child(4) {
    background: linear-gradient(180deg, #121212 0%, #121212 15%, #121212 85%, #0a0a0a 100%);
}

.image-section:nth-child(5) {
    background: linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 15%, #0a0a0a 85%, #121212 100%);
}

.image-section:nth-child(6) {
    background: linear-gradient(180deg, #121212 0%, #121212 15%, #121212 85%, #0a0a0a 100%);
}

.screenshot {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 2rem auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.screenshot:hover {
    transform: translateY(-10px);
}

/* Individual colored glows for each screenshot */
.image-section:nth-child(2) .screenshot {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4), 0 0 40px rgba(118, 75, 162, 0.3);
}

.image-section:nth-child(2) .screenshot:hover {
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.6), 0 0 60px rgba(118, 75, 162, 0.5);
}

.image-section:nth-child(3) .screenshot {
    box-shadow: 0 20px 60px rgba(240, 147, 251, 0.4), 0 0 40px rgba(245, 87, 108, 0.3);
}

.image-section:nth-child(3) .screenshot:hover {
    box-shadow: 0 30px 80px rgba(240, 147, 251, 0.6), 0 0 60px rgba(245, 87, 108, 0.5);
}

.image-section:nth-child(4) .screenshot {
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.4), 0 0 40px rgba(0, 242, 254, 0.3);
}

.image-section:nth-child(4) .screenshot:hover {
    box-shadow: 0 30px 80px rgba(79, 172, 254, 0.6), 0 0 60px rgba(0, 242, 254, 0.5);
}

.image-section:nth-child(5) .screenshot {
    box-shadow: 0 20px 60px rgba(67, 233, 123, 0.4), 0 0 40px rgba(56, 249, 215, 0.3);
}

.image-section:nth-child(5) .screenshot:hover {
    box-shadow: 0 30px 80px rgba(67, 233, 123, 0.6), 0 0 60px rgba(56, 249, 215, 0.5);
}

.image-section:nth-child(6) .screenshot {
    box-shadow: 0 20px 60px rgba(250, 112, 154, 0.4), 0 0 40px rgba(254, 225, 64, 0.3);
}

.image-section:nth-child(6) .screenshot:hover {
    box-shadow: 0 30px 80px rgba(250, 112, 154, 0.6), 0 0 60px rgba(254, 225, 64, 0.5);
}

.screenshot {
    cursor: pointer;
}

/* Legacy placeholder styles - can be removed if no longer needed */
.image-placeholder {
    width: 100%;
    max-width: 1100px;
    height: 620px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.placeholder-text {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.caption {
    font-size: 1.3rem;
    color: #d0d0d0;
    text-align: center;
    max-width: 900px;
    line-height: 1.8;
    font-weight: 300;
}

.section-header {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 0.8rem auto;
    font-weight: 400;
}

.section-subheader {
    font-size: 1.2rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 20%, #1a1a1a 100%);
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 300;
}

.cta-section .investor-message {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 300;
    max-width: 900px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Contact Page */
.contact-page {
    min-height: 100vh;
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.logo-contact {
    max-width: 300px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 3rem;
    filter: drop-shadow(0 5px 20px rgba(255, 255, 255, 0.1));
}

.logo-link {
    display: block;
    text-align: center;
}

.contact-page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #d0d0d0;
    font-weight: 500;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    background-color: #0a0a0a;
    border: 2px solid #333;
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    padding: 4rem 0;
}

.logo-thankyou {
    max-width: 350px;
    width: 90%;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.1));
    animation: fadeInDown 0.8s ease-out;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.back-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.back-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 95%;
    max-height: 95vh;
    border-radius: 8px;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.1);
    animation: modalZoomIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 300;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #667eea;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .investor-message {
        font-size: 1rem;
    }

    .screenshot {
        max-width: 100%;
    }

    .image-placeholder {
        height: 250px;
    }

    .caption {
        font-size: 1.1rem;
    }

    .section-header {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .section-subheader {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .contact-page h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

