/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    opacity: 0; /* Animated via JS */
    transform: translateY(-20px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title span {
    color: #8a2be2; /* Vibrant accent color */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #8c8c8c;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-btn {
    padding: 15px 35px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

/* Hide hero elements initially to let GSAP handle the entrance cleanly */
.hero-title, .hero-subtitle, .cta-btn {
    opacity: 0;
    transform: translateY(40px);
}

/* Features Section (Scroll Triggered) */
.features {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 10%;
    flex-wrap: wrap;
}

.card {
    background: #16161a;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid #24242b;
    opacity: 0;
    transform: translateY(60px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8a2be2;
}

.card p {
    color: #94a3b8;
    line-height: 1.6;
}
