/* Typography System from Davio */
        :root {
            --font-primary: 'Space Grotesk', sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
            --font-tertiary: 'Nunito', sans-serif; 
            --font-accent: 'Raleway', sans-serif;
            --font-body: 'Source Sans 3', sans-serif;
            
            /* Colors from Sapphire with Davio's yellow accent */
            --color-primary: #fff025;
            --color-primary-dark: #e6d820;
            --color-secondary: #f9ef8a;
            --color-dark: #0f172a;
            --color-darker: #0a0a0a;
            --color-light: #f8fafc;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            background-color: var(--color-dark);
            color: var(--color-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Header */
        header {
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            background-color: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(8px);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            width: 50px;
            height: 50px;
            margin-right: 1rem;
        }
        
        .logo h1 {
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: 2rem;
            color: var(--color-light);
        }
        
        .logo h1 span {
            font-weight: 800;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--color-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-family: var(--font-secondary);
        }
        
        .nav-links a:hover {
            color: var(--color-primary);
        }

        .nav-links .btn {
            color: #000;
        }

        .nav-links .btn:hover {
            color: #000;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .dropdown-arrow {
            font-size: 10px;
            margin-left: 5px;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--color-darker);
            border-radius: 0.5rem;
            padding: 0.75rem;
            min-width: 180px;
            display: none;
            flex-direction: column;
            gap: 0.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }
        
        .dropdown-menu a {
            padding: 0.5rem;
            border-radius: 0.25rem;
        }
        
        .dropdown-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .dropdown:hover .dropdown-menu {
            display: flex;
        }
        
        .btn {
            background-color: var(--color-primary);
            color: var(--color-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: var(--font-tertiary);
            display: inline-block;
        }
        
        .btn:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 240, 37, 0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--color-primary);
            color: var(--color-light);
        }
        
        .btn-secondary:hover {
            background-color: var(--color-primary);
            color: var(--color-dark);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-light);
            cursor: pointer;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            position: relative;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--color-light);
            transition: all 0.3s ease-in-out;
            position: absolute;
        }

        .hamburger span:first-child {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger span:last-child {
            bottom: 0;
        }

        /* X Animation Styles */
        .hamburger.active span:first-child {
            transform: rotate(45deg);
            top: 50%;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:last-child {
            transform: rotate(-45deg);
            bottom: 50%;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 8rem 0 4rem;
            background-color: var(--color-darker);
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 240, 37, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .hexagon {
            position: absolute;
            background-color: var(--color-primary);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            opacity: 0.2;
            z-index: 1;
        }
        
        .hex1 {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 10%;
            animation: float 10s ease-in-out infinite;
        }
        
        .hex2 {
            width: 150px;
            height: 150px;
            bottom: 15%;
            right: 20%;
            animation: float 14s ease-in-out infinite;
        }
        
        .hex3 {
            width: 80px;
            height: 80px;
            top: 30%;
            left: 15%;
            animation: float 12s ease-in-out infinite;
        }
        
        .hex4 {
            width: 120px;
            height: 120px;
            bottom: 25%;
            left: 10%;
            animation: float 16s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .hero-text {
            flex: 1;
            max-width: 600px;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .hero-title {
            font-family: var(--font-primary);
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-light);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        
        .hero-title span {
            font-family: var(--font-accent);
            font-weight: 700;
        }
        
        .hero-description {
            font-family: var(--font-body);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        /* Features Section */
        .features {
            padding: 6rem 0;
            position: relative;
            background-color: var(--color-darker);
        }
        
        .section-title {
            font-family: var(--font-primary);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--color-primary);
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: rgba(30, 41, 59, 0.5);
            border-radius: 1rem;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255, 240, 37, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 240, 37, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }
        
        .feature-title {
            font-family: var(--font-tertiary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .feature-description {
            font-family: var(--font-body);
        }
        
        /* Commands Section */
        .commands {
            padding: 6rem 0;
            background-color: var(--color-dark);
        }
        
        .commands-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .command-card {
            background-color: rgba(30, 41, 59, 0.5);
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: transform 0.3s;
            border: 1px solid rgba(255, 240, 37, 0.1);
        }
        
        .command-card:hover {
            transform: translateY(-3px);
        }
        
        .command-name {
            font-family: var(--font-accent);
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }
        
        .command-description {
            font-family: var(--font-body);
        }
        
        /* Stats Section */
        .stats {
            padding: 6rem 0;
            background-color: var(--color-darker);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .stat-number {
            font-family: var(--font-primary);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }
        
        .stat-label {
            font-family: var(--font-secondary);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            opacity: 0.8;
        }
        
        /* CTA Section */
        .cta {
            padding: 6rem 0;
            background-color: var(--color-dark);
            text-align: center;
        }
        
        .cta-title {
            font-family: var(--font-tertiary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }
        
        .cta-description {
            font-family: var(--font-body);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .cta-description strong {
            font-family: var(--font-secondary);
            font-weight: 700;
        }
        
        /* Footer */
        footer {
            background-color: var(--color-darker);
            padding: 3rem 0;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            font-family: var(--font-primary);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-links a {
            color: var(--color-light);
            text-decoration: none;
            transition: color 0.3s;
            font-family: var(--font-tertiary);
        }
        
        .footer-links a:hover {
            color: var(--color-primary);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 1rem;
            font-family: var(--font-body);
            font-size: 0.9rem;
        }
        
        .footer-link-astro {
            font-family: var(--font-accent);
            font-weight: 600;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                margin-bottom: 2rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: var(--color-darker);
                padding: 1rem;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                padding: 0.5rem 0;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 90;
            display: none;
        }
        
        .menu-overlay.active {
            display: block;
        }