:root {
    --primary-indigo: #4F46E5;
    --primary-purple: #7C3AED;
    --accent-cyan: #22D3EE;
    --accent-gold: #F59E0B;
    
    --bg-deep: #0B0F1A;
    --bg-section: #111827;
    
    --text-main: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-subtle: #6B7280;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --gradient-brand: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
    --gradient-hover: linear-gradient(135deg, #4F46E5 0%, #22D3EE 100%);
    
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Navbar */
.navbar {
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-cta {
    background: var(--glass-bg);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: radial-gradient(circle at 50% -20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #a78bfa;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.hero-highlight i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: var(--gradient-hover);
    box-shadow: 0 15px 35px rgba(34, 211, 238, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    padding: 2.5rem;
    background: var(--bg-section);
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.startup-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.2));
}

/* Rocket Animation */
.rocket-group {
    animation: rocketFloat 4s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(1deg); }
    75% { transform: translateY(6px) rotate(-1deg); }
}

/* Flame Animation */
.flame {
    transform-origin: center top;
    animation: flicker 0.2s ease-in-out infinite alternate;
}

@keyframes flicker {
    from { transform: scaleY(1) translateY(0); opacity: 0.8; }
    to { transform: scaleY(1.4) translateY(6px); opacity: 1; }
}

/* Growth Path Animation */
.growth-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 6s ease-out forwards infinite;
}

@keyframes drawPath {
    0% { stroke-dashoffset: 1000; opacity: 0; }
    30% { opacity: 1; }
    70% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.growth-point {
    animation: pulsePoint 2s ease-in-out infinite;
}

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

/* Floating Nodes */
.float-node {
    animation: floatNode 7s ease-in-out infinite;
}

.float-node:nth-child(2) { animation-delay: 1.5s; }
.float-node:nth-child(3) { animation-delay: 3s; }

@keyframes floatNode {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(12px, -18px); }
    66% { transform: translate(-12px, 12px); }
}

/* Grid Animation */
.network-bg line {
    animation: dimGrid 5s ease-in-out infinite alternate;
}

@keyframes dimGrid {
    from { opacity: 0.15; }
    to { opacity: 0.4; }
}

.status-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    padding: 1.75rem;
    border-radius: 20px;
    background: var(--bg-deep);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    max-width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.status-msg {
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sub-msg {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 10rem 0;
    background: var(--bg-section);
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
    border-radius: 40px;
    text-align: center;
    background: var(--bg-deep);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.cta-card p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-bottom: 4rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link i {
    color: var(--accent-cyan);
}

.contact-link:hover {
    color: var(--accent-gold);
}

.footer-note {
    font-size: 0.95rem;
    color: var(--text-subtle);
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
}

/* Responsive Overrides */
@media (max-width: 968px) {
    .hero-title { font-size: 3.5rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 5rem; text-align: center; }
    .hero-content { align-items: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .contact-link { font-size: 1.6rem; }
}
