:root {
    --bg-base: #050505;
    --bg-surface: rgba(20, 20, 25, 0.7);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0AB;
    --accent-electric: #4F46E5;
    --accent-glow: rgba(79, 70, 229, 0.5);
    --accent-cyan: #06B6D4;
    
    --font-primary: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    height: 110px;
    width: auto;
    border-radius: 12px;
}

.brand-text {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.accent {
    color: var(--accent-electric);
}

/* Buttons */
.btn-primary {
    background: var(--accent-electric);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent-electric);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--text-secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(90deg, var(--accent-electric), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.4;
}

.orb-1 {
    top: -10%;
    left: -10%;
    background: var(--accent-electric);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    background: var(--accent-cyan);
}

/* Layout & Cards */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.card {
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-icon {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(79, 70, 229, 0.3);
}

/* Audit Section */
.audit-section {
    border-top: 1px solid rgba(255,255,255,0.05);
    background: radial-gradient(circle at center bottom, rgba(6, 182, 212, 0.08) 0%, var(--bg-base) 70%);
}

.audit-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 700px;
    margin: -2rem auto 3rem;
    font-weight: 300;
    line-height: 1.7;
}

.audit-cta {
    text-align: center;
    margin-top: 3rem;
}

.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 6rem 5%;
    text-align: center;
    background: radial-gradient(circle at center top, rgba(79, 70, 229, 0.1) 0%, var(--bg-base) 70%);
}

.footer h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.copyright {
    margin-top: 4rem;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Animations Utilities */
.fadeIn {
    animation: fadeIn 1s ease forwards;
}

.slideUp {
    animation: slideUp 1s ease forwards;
}

.fade-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.2rem 5%;
    }

    .brand-mark {
        height: 60px;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-group {
        flex-direction: column;
        padding: 0 2rem;
    }

    .container {
        padding: 4rem 5%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .footer h2 {
        font-size: 2rem;
    }
}
