@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --bg-dark: #0a0c10;
    --gb-green: #005c29;
    --neon-green: #00ea65;
    --silver: #c4cdd5;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background elements */
.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 234, 101, 0.15) 0%, rgba(10, 12, 16, 0) 70%);
    top: -20%;
    left: -10%;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--neon-green);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

.btn-primary {
    background-color: var(--neon-green);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 234, 101, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 234, 101, 0.6);
    background-color: #00ff73;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--silver);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 100px);
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeUp 1s ease-out forwards;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    display: block;
    background: linear-gradient(to right, var(--neon-green), #00a145);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Image Showcase */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out forwards;
}

.main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    border-radius: 50%;
}

/* Glassmorphism Card */
.floating-card {
    position: absolute;
    bottom: 10%;
    left: -10%;
    background: rgba(10, 12, 16, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 234, 101, 0.3);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 10;
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 234, 101, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-green);
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.card-text {
    color: var(--silver);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.card-link {
    display: inline-block;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    text-decoration: underline;
}

/* Decorative lines */
.dec-line {
    position: absolute;
    border: 1px solid rgba(0, 234, 101, 0.2);
    border-radius: 50%;
}

.line-1 {
    width: 800px;
    height: 800px;
    top: -20%;
    right: -10%;
    z-index: 0;
}

.line-2 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -5%;
    z-index: 0;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding-top: 4rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 4rem;
    }

    .floating-card {
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%) !important;
        width: 90%;
        animation: none;
    }
    
    .nav-links a {
        display: none; /* simple mobile nav */
    }
}
