@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FF6B00;
    /* Vibrant Orange */
    --primary-rgb: 255, 107, 0;
    --secondary: #111111;
    /* Deep Black */
    --secondary-rgb: 17, 17, 17;
    --bg-main: #FFFFFF;
    --bg-subtle: #F8F9FA;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --border-color: #EEEEEE;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 50px rgba(255, 107, 0, 0.15);
}

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

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

/* Light Pattern Background */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#FF6B00 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    z-index: -2;
    opacity: 0.1;
}

/* Modern Header */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.5px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

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

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12rem 2rem 6rem;
}

.hero-badge {
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-card:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

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

/* Stats Section */
.stats-section {
    background: var(--secondary);
    color: #fff;
    padding: 6rem 2rem;
    border-radius: var(--radius-xl);
    margin: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 6rem;
    background: #fff;
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.contact-info-panel h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.contact-feature i {
    font-size: 1.25rem;
    color: var(--primary);
}

.form-prism-wrapper {
    background: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.btn-uplink {
    width: 100%;
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 1.1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-uplink:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-soft);
}

.legal-section h3 {
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-list li::before {
    color: var(--primary) !important;
}

.btn-close-protocol {
    background: var(--secondary);
    border-radius: 12px !important;
    padding: 1.25rem !important;
    font-weight: 700 !important;
}

.btn-close-protocol:hover {
    background: var(--primary) !important;
}

/* Footer */
footer {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-logo span {
    color: var(--primary);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--secondary);
    border: none;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 90%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-strong);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}

.mobile-nav-link:hover {
    background: rgba(255, 107, 0, 0.05);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 0.6rem 1rem;
        top: 1rem;
    }

    .nav-brand {
        font-size: 1.25rem;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
        /* Hide main CTA on mobile, use one inside mobile nav or visible button */
    }

    /* Small adjustment to nav layout on mobile */
    .navbar .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 10rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

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

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

    .stat-value {
        font-size: 3.5rem;
    }

    .container {
        padding: 4rem 1.5rem;
    }

    .legal-card {
        padding: 2.5rem 1.5rem;
    }

    .legal-container {
        padding: 8rem 1rem 4rem;
    }
}

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

    .navbar {
        padding: 0.5rem 0.75rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .contact-layout {
        padding: 1.5rem;
    }

    .contact-info-panel h2 {
        font-size: 2.25rem;
    }
}