/* Hero Section */
.hero {
    min-height: calc(100dvh - var(--nav-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0;
}

.hero::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.06) 0%, transparent 70%);
    top: -300px;
    right: -250px;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.04) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}

.hero-inner {
    max-width: 860px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: var(--font-size-hero);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient {
    display: block;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (prefers-color-scheme: dark) {
    .gradient {
        background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.subtitle {
    margin-top: var(--space-lg);
    font-size: var(--font-size-xl);
    line-height: 1.8;
    color: var(--color-muted);
    max-width: 680px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Content Section */
.section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
}

.section-header {
    margin-bottom: 64px;
    max-width: 600px;
}

.section-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
