* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --light-text: #f8fafc;
    --gray-text: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.8);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: 0.3s;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.title-line {
    font-size: 1.5rem;
    color: var(--gray-text);
    animation: fadeInUp 0.8s ease-out;
}

.title-main {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-subtitle {
    font-size: 2rem;
    color: var(--light-text);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s infinite ease-in-out;
}

.card-icon {
    font-size: 3rem;
}

.card-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    left: 0;
    animation-delay: -2s;
}

.card-3 {
    bottom: 100px;
    right: 0;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section Title */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.2);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.featured-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.featured-video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInUp 0.8s ease-out;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-text);
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 30px;
    position: relative;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--card-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-group-full {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-text);
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    user-select: none;
}

.contact-form .btn-primary {
    margin-top: 1rem;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.8);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 20px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 4rem;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        margin-top: 4rem;
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text .section-title {
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.5rem;
    }

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

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

    .floating-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
    }
}


/* ========== V'GER CLOUD VISUAL ========== */
.vger-cloud {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, #060f24 0%, #020810 45%, #000000 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(100, 200, 255, 0.12);
    box-shadow: 0 0 100px rgba(100, 200, 255, 0.06) inset, 0 0 40px rgba(0, 0, 0, 0.8);
}
.vger-scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
    pointer-events: none;
    z-index: 20;
    border-radius: 30px;
}
.vger-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: vger-expand 6s infinite ease-in-out;
}
.vger-ring-1 { width: 90px; height: 90px; border-color: rgba(100,200,255,1); box-shadow: 0 0 15px rgba(100,200,255,0.6), 0 0 30px rgba(100,200,255,0.3); animation-delay: 0s; }
.vger-ring-2 { width: 180px; height: 180px; border-color: rgba(100,200,255,0.5); box-shadow: 0 0 8px rgba(100,200,255,0.2); animation-delay: -1.5s; }
.vger-ring-3 { width: 290px; height: 290px; border-color: rgba(100,200,255,0.22); animation-delay: -3s; }
.vger-ring-4 { width: 430px; height: 430px; border-color: rgba(100,200,255,0.07); animation-delay: -4.5s; }
@keyframes vger-expand {
    0%, 100% { transform: scale(1); opacity: 0.65; }
    50% { transform: scale(1.14); opacity: 1; }
}
.vger-plasma { position: absolute; width: 1px; bottom: 50%; left: 50%; transform-origin: bottom center; pointer-events: none; }
.vger-plasma-1 { height: 130px; background: linear-gradient(to top, rgba(100,200,255,0) 0%, rgba(100,200,255,0.7) 60%, rgba(180,230,255,0.9) 100%); animation: plasma-spin 10s linear infinite; box-shadow: 0 0 6px rgba(100,200,255,0.5); }
.vger-plasma-2 { height: 95px; background: linear-gradient(to top, rgba(100,200,255,0) 0%, rgba(100,200,255,0.5) 70%, rgba(100,200,255,0.7) 100%); animation: plasma-spin 10s linear infinite; animation-delay: -3.33s; opacity: 0.7; }
.vger-plasma-3 { height: 160px; background: linear-gradient(to top, rgba(100,200,255,0) 0%, rgba(100,200,255,0.35) 65%, rgba(100,200,255,0.5) 100%); animation: plasma-spin 10s linear infinite; animation-delay: -6.66s; opacity: 0.5; }
@keyframes plasma-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.vger-core { position: relative; z-index: 10; text-align: center; }
.vger-core-text { font-size: 3rem; font-weight: 900; color: #64c8ff; letter-spacing: 0.65rem; font-family: 'Courier New', monospace; animation: vger-flicker 8s infinite; position: relative; }
.vger-core-text::before, .vger-core-text::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; opacity: 0; }
.vger-core-text::before { color: #ff4060; animation: glitch-before 8s infinite; clip-path: polygon(0 30%, 100% 30%, 100% 55%, 0 55%); }
.vger-core-text::after { color: #00ffcc; animation: glitch-after 8s infinite; clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
@keyframes vger-flicker {
    0%,88%,91%,94%,100% { text-shadow: 0 0 25px rgba(100,200,255,0.9), 0 0 55px rgba(100,200,255,0.5), 0 0 100px rgba(100,200,255,0.25); opacity: 1; }
    89% { opacity: 0.6; text-shadow: none; }
    92% { text-shadow: 0 0 50px rgba(100,200,255,1), 0 0 100px rgba(100,200,255,0.8); opacity: 1; }
    95% { opacity: 0.85; }
}
@keyframes glitch-before { 0%,87%,91%,100% { opacity: 0; transform: translate(0); } 88% { opacity: 0.8; transform: translate(-4px, 1px); } 90% { opacity: 0; } }
@keyframes glitch-after { 0%,87%,91%,100% { opacity: 0; transform: translate(0); } 89% { opacity: 0.8; transform: translate(4px, -1px); } 91% { opacity: 0; } }
.vger-core-sub { font-size: 0.68rem; color: rgba(100,200,255,0.45); letter-spacing: 0.3rem; margin-top: 0.6rem; font-family: 'Courier New', monospace; }
.vger-core-mission { font-size: 0.52rem; color: rgba(100,200,255,0.25); letter-spacing: 0.18rem; margin-top: 0.3rem; font-family: 'Courier New', monospace; }
.vger-star { position: absolute; border-radius: 50%; background: white; pointer-events: none; }
.vger-tagline { color: #64c8ff !important; font-style: italic; letter-spacing: 0.03rem; }
.stat-dollar-display { font-size: 3rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ========== V'GER MISSION LOG ========== */
.vger-log { margin-top: 4rem; border: 1px solid rgba(100,200,255,0.15); border-radius: 16px; overflow: hidden; background: rgba(0,4,12,0.6); position: relative; }
.vger-toggle { width: 100%; background: rgba(6,16,32,0.98); border: none; padding: 1.2rem 2rem; color: #64c8ff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16rem; cursor: pointer; display: flex; align-items: center; gap: 1rem; transition: background 0.3s ease; font-family: 'Courier New', monospace; text-align: left; }
.vger-toggle:hover { background: rgba(100,200,255,0.06); }
.vger-toggle-icon { font-size: 0.6rem; transition: transform 0.35s ease; flex-shrink: 0; color: rgba(100,200,255,0.6); }
.vger-toggle.open .vger-toggle-icon { transform: rotate(90deg); }
.vger-badge { margin-left: auto; font-size: 0.65rem; color: rgba(100,200,255,0.35); letter-spacing: 0.1rem; flex-shrink: 0; }
.vger-cursor::after { content: '_'; animation: cursor-blink 1.1s step-end infinite; color: rgba(100,200,255,0.7); }
@keyframes cursor-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.vger-log-content { max-height: 0; overflow: hidden; transition: max-height 0.7s ease; }
.vger-log-content.open { max-height: 6000px; }
.vger-log-inner { padding: 2.5rem; color: #8090a8; line-height: 1.9; font-size: 0.93rem; border-top: 1px solid rgba(100,200,255,0.08); position: relative; }
.vger-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-35deg); font-size: 5.5rem; font-weight: 900; color: rgba(200,40,40,0.045); font-family: 'Courier New', monospace; letter-spacing: 0.4rem; pointer-events: none; white-space: nowrap; z-index: 0; user-select: none; }
.vger-log-header { font-family: 'Courier New', monospace; color: rgba(100,200,255,0.35); font-size: 0.7rem; letter-spacing: 0.07rem; border-bottom: 1px solid rgba(100,200,255,0.08); padding-bottom: 1.2rem; margin-bottom: 2rem; position: relative; z-index: 1; line-height: 1.7; }
.vger-log-inner h3 { color: #5ab8f0; font-size: 0.76rem; margin: 2.2rem 0 0.7rem; font-family: 'Courier New', monospace; letter-spacing: 0.13rem; position: relative; z-index: 1; }
.vger-log-inner h3:first-of-type { margin-top: 0; }
.vger-log-inner p, .vger-log-inner ul { position: relative; z-index: 1; }
.vger-log-inner p { margin-bottom: 1rem; }
.vger-log-inner ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.vger-log-inner ul li { margin-bottom: 0.4rem; }
.vger-log-inner strong { color: #a8c8e8; }
.vger-log-inner em { color: #8ab8d8; }
.vger-directive { border-left: 2px solid rgba(100,200,255,0.3); padding-left: 1.2rem; color: #7ab0d0 !important; font-style: italic; margin: 1rem 0 !important; }
.vger-log-footnote { margin-top: 2.5rem !important; color: rgba(100,200,255,0.32) !important; font-style: italic; font-size: 0.86rem !important; border-top: 1px solid rgba(100,200,255,0.08); padding-top: 1.5rem; position: relative; z-index: 1; }
