/* Landing Page Styles */

.landing-body {
    margin: 0;
    background: #020003;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

.landing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% -20%, #1e1b4b 0%, #020003 60%);
}

/* Hero */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 20px;
}

.landing-nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.btn-primary-glow {
    background: #fff;
    color: #000;
    padding: 10px 24px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s;
}

.btn-primary-glow:hover {
    transform: scale(1.05);
}

.hero-center {
    text-align: center;
    margin-top: 100px;
    max-width: 800px;
}

.hero-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a78bfa;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-hero-main {
    background: #a78bfa;
    color: #000;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-right: 16px;
    transition: all 0.2s;
}

.btn-hero-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

.btn-hero-sec {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
}

.btn-hero-sec:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Vision Section */
.vision-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #020003 0%, #0f172a 100%);
    position: relative;
}

.vision-container {
    max-width: 768px;
    margin: 0 auto;
}

.vision-header {
    text-align: center;
    margin-bottom: 60px;
}

.v-pill {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #10b981;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.vision-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.v-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #a78bfa, #3b82f6);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

.vision-content {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    line-height: 1.9;
    color: #cbd5e1;
    margin-bottom: 60px;
}

.drop-cap {
    float: left;
    font-size: 48px;
    line-height: 0.8;
    font-weight: 700;
    color: #fff;
    margin-right: 12px;
    margin-top: 4px;
}

.vision-quote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #a78bfa;
    padding: 24px;
    margin: 40px 0;
    font-style: italic;
    color: #fff;
    font-size: 22px;
}

.highlight-date {
    color: #10b981;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

/* Founder Card Wrapper - Triangle Grid Layout */
.founder-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 400px));
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* Founder: Top Center */
.founder-card-wrapper>.founder-card:first-child {
    grid-column: 1 / -1;
    justify-self: center;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .founder-card-wrapper {
        grid-template-columns: 1fr;
    }

    .founder-card-wrapper>.founder-card:first-child {
        grid-column: auto;
    }
}

.fc-socials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.fc-socials a {
    color: #94a3b8;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-socials a[title="LinkedIn"] {
    color: #38bdf8;
}

.fc-socials a[title="LinkedIn"]:hover {
    color: #0ea5e9;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
    transform: scale(1.1);
}

.fc-socials a[title="GitHub"]:hover {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

.landing-footer {
    text-align: center;
    padding: 40px;
    color: #475569;
    font-size: 12px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fc-socials {
        justify-content: center;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */

/* =========================================
   ANIMATIONS (Restored)
   ========================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base Override Clean up (Remove Forced Visibility) */
body {
    /* Reverting forced opacity */
    opacity: 1;
    visibility: visible;
}

/* 1. HERO ANIMATIONS (Pure CSS - Runs on Load) */
.landing-nav {
    opacity: 0;
    /* Star hidden */
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.hero-badge {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.hero-actions {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

/* 2. VISION SCROLL ANIMATIONS (Triggered by landing.js) */
.vision-header,
.vision-content,
.founder-card-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.vision-header.visible,
.vision-content.visible,
.founder-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PRIVACY MODAL
   ========================================= */
.privacy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.privacy-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.privacy-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.privacy-modal-overlay.active .privacy-modal {
    transform: scale(1);
}

.privacy-icon {
    font-size: 40px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.privacy-modal h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.privacy-modal p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
}

.text-link {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.text-link:hover {
    color: #fff;
    text-decoration: underline;
}