/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: var(--sp-20) 0 var(--sp-16);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--slate-950) 0%, var(--slate-900) 40%, #1a2744 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 120%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-12);
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--blue-400);
    margin-bottom: var(--sp-8);
}

.hero-badge svg {
    stroke: var(--blue-400);
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: var(--sp-6);
}

.hero-title .text-gradient {
    display: block;
    background: linear-gradient(135deg, var(--blue-400) 0%, #818CF8 50%, var(--blue-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-300);
    margin-bottom: var(--sp-8);
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-10);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    padding-top: var(--sp-8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        var(--shadow-2xl);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.6s var(--ease-out);
}

.hero-image-wrapper:hover .hero-image {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.01);
}

.hero-image-glow {
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.2), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}
