/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #04101e;
    --surface: #0b2030;
    --text: #e3e0dd;
    --muted: #b9b5b2;
    --indigo: #6c5ff5;
    --cyan: #1ab5e0;
    --lav: #dca2e9;
    --divider: #123047;
    --backdrop: rgba(4,16,30,0.6);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--backdrop);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--divider);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 40px;
    transition: transform 0.3s ease;
    border-radius: 8px;
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.1);
}

.nav-logo h2 {
    color: var(--indigo);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--indigo) 0%, var(--lav) 50%, var(--cyan) 100%);
    color: var(--text);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 100px;
    width: auto;
    max-width: 100px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    border-radius: 15px;
    object-fit: contain;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--indigo);
    color: var(--text);
}

.btn-primary:hover {
    background: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 181, 224, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--surface);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-intro,
.about-mission {
    margin-bottom: 1rem;
}

.about-intro h3,
.about-mission h3,
.about-values h3 {
    color: var(--indigo);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
}

.values-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.value-item {
    flex: 1;
    min-width: 180px;
    background: var(--bg);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--divider);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--indigo);
    box-shadow: 0 5px 20px rgba(108, 95, 245, 0.2);
}

.value-item i {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Apps Section */
.main-app {
    margin-bottom: 4rem;
}

.app-showcase {
    background: var(--surface);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--divider);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.app-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(108, 95, 245, 0.05) 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--divider);
    position: relative;
    overflow: hidden;
}

.app-logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 95, 245, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.app-logo {
    height: 140px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.app-logo:hover {
    transform: scale(1.05);
}

.app-showcase h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 0.5rem;
}

.app-tagline {
    font-size: 1.3rem;
    color: var(--lav);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.app-description {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.app-features {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.app-features li {
    padding: 0.8rem 0;
    color: var(--muted);
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

.app-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(108, 95, 245, 0.05) 100%);
    border-radius: 20px;
    border: 2px dashed var(--divider);
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-section h3 {
    font-size: 2rem;
    color: var(--lav);
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon-section p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.coming-soon-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border-radius: 25px;
    border: 1px solid var(--divider);
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--indigo);
    font-size: 1.1rem;
}


/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--indigo);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--indigo);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--muted);
    line-height: 1.6;
}

.contact-item a {
    color: var(--cyan);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--divider);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--divider);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--indigo);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg);
    color: var(--text);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--divider);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-social a {
    color: var(--text);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--divider);
    color: var(--muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--surface);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid var(--divider);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .values-grid {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .value-item {
        min-width: 150px;
        flex: 1;
    }

    .app-showcase {
        padding: 2rem;
    }
    
    .app-logo-container {
        padding: 1.5rem;
    }
    
    .app-logo {
        height: 120px;
        max-width: 200px;
    }
    
    .app-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }


    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .values-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .value-item {
        width: 100%;
        max-width: 300px;
    }
    
    .app-logo-container {
        padding: 1rem;
    }
    
    .app-logo {
        height: 100px;
        max-width: 180px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-card,
.stat,
.founder-content > div {
    animation: fadeInUp 0.6s ease-out;
}
