/* --- LOGO CHANGES START --- */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
}

.logo {
    height: 32px;
    /* This controls the height of the logo image */
    width: auto;
    /* This maintains the aspect ratio */
    display: block;
    object-fit: contain;
}

.logo-box {
    background: white;
    color: black;
    padding: 2px 8px;
    /* Slightly reduced padding for a smaller box */
    border-radius: 6px;
    font-weight: 800;
}

/* --- LOGO CHANGES END --- */
:root {
    --primary: #f8faf7;
    --accent: #3b82f6;
    --bg-dark: #020617;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-muted: #94a3b8;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

/* Custom cursor logic */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease-out;
}

/* Background Video Logic */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 90%);
}

/* Glass Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 15px 0;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .logo { font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; } REMOVED TO FIX CONFLICT */
.logo-box {
    background: white;
    color: black;
    padding: 4px 10px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
}

.gradient-text {
    background: linear-gradient(to right, #fff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Bento Grid */
.bento-section {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-top: 50px;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.bento-item:hover {
    border-color: var(--accent);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.05);
}

.bento-large {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-square h3 {
    font-size: 1.2rem;
}

/* Buttons & Interactions */
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: white;
    color: black;
}

.btn-glass {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Founder Card */
.founder-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    max-width: 900px;
    margin: 2rem auto 0;
}

.founder-img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.founder-info h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.founder-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s var(--transition);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-img {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        border-radius: 0 0 20px 20px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border: 1px solid var(--glass-border);
        border-top: none;
    }

    .nav-links.nav-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-actions {
        display: none;
    }

    /* Hide 'Coming Soon' button on mobile if needed, or adjust */

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

    .container {
        padding: 0 1.5rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}