﻿:root {
    /* Palette */
    --c-slate-50: #f8fafc;
    --c-slate-100: #f1f5f9;
    --c-slate-200: #e2e8f0;
    --c-slate-300: #cbd5e1;
    --c-slate-400: #94a3b8;
    --c-slate-500: #64748b;
    --c-slate-600: #475569;
    --c-slate-700: #334155;
    --c-slate-800: #1e293b;
    --c-slate-900: #0f172a;
    --c-white: #ffffff;
    --c-red: #ef4444;
    /* Brand Colors (Lime) */
    --c-accent: #84cc16;
    --c-accent-hover: #65a30d;
    --c-accent-light: #ecfccb;
    --c-accent-dim: #d9f99d;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lift: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(132, 204, 22, 0.25);
    /* Fonts */
}



/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #050505;
}

/* HERO CONTENT CONTAINER */
.hero-content-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    z-index: 10;
    padding: 1em 1rem;
}


.hero-split-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media(min-width: 1024px) {
    .hero-section {
        padding: 6rem 0;
    }

    .hero-text-content {
        max-width: 38rem;
    }

    .hero-split-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        object-fit: cover;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: var(--c-accent-light);
    border: 1px solid var(--c-accent-dim);
    color: var(--c-accent-hover);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--c-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--c-white);
    margin: 1.5rem 0;
}

@media(min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media(min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.underline-accent {
    position: relative;
    display: inline-block;
}

.underline-svg {
    position: absolute;
    bottom: -0.15rem;
    left: 0;
    width: 100%;
    height: 0.35rem;
    color: var(--c-accent);
}

.hero-desc {
    font-size: 1rem;
    color: var(--c-slate-300);
    max-width: 36rem;
    margin-bottom: 2rem;
}

@media(min-width: 768px) {
    .hero-desc {
        font-size: 1.125rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    /* Dark Mode Specific Button Override */
    .hero-buttons .btn-outline,
    .cta-buttons .btn-outline {
        background-color: transparent;
        color: var(--c-white);
        border-color: rgba(255, 255, 255, 0.2);
    }

        .hero-buttons .btn-outline:hover,
        .cta-buttons .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--c-white);
        }

@media(min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media(max-width: 640px) {
    .hero-text-content .badge {
        display: none;
    }
}

