/*
|--------------------------------------------------------------------------
| Hero Section
|--------------------------------------------------------------------------
*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero--has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* Background Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.06;
    background: white;
}

.hero-shape:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.hero-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 20%;
    opacity: 0.03;
}

/* Content Grid */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px var(--space-2xl) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Text */
.hero-text {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--teal);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: #60a5fa;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(96, 165, 250, 0.3);
}

.hero p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 420px;
}

/* Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Visual / Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-3xl);
    padding: var(--space-xl);
    color: white;
}

.hero-card-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero-card-img {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    overflow: hidden;
}

.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card h3 {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.hero-card p {
    font-size: var(--text-base);
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-card-stats {
    display: flex;
    gap: var(--space-lg);
}

.hero-card-stat span {
    display: block;
}

.hero-card-stat span:first-child {
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
}

.hero-card-stat span:last-child {
    font-size: var(--text-xs);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.hero-card-shadow {
    position: absolute;
    bottom: -12px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-3xl);
    z-index: -1;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
    }

    .hero-visual {
        display: none;
    }
}