/* Hero Section - Enhanced Design */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 160px 0 80px;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(var(--accent-primary-rgb), 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(var(--accent-secondary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 40%, rgba(var(--accent-secondary-rgb), 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 60%, rgba(var(--accent-primary-rgb), 0.1) 0%, transparent 30%),
        linear-gradient(180deg, transparent 0%, transparent 80%, rgba(var(--accent-primary-rgb), 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

.hero-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(12rem, 40vw, 35rem);
    font-weight: 700;
    color: var(--background-dark);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 0.93;
}

.hero-background-text span {
    display: block;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero h2 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.4;
}

.hero h2::after {
    content: none;
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text-primary);
    animation: fadeOutStroke 0.5s ease-out 1s forwards;
}

.hero h1 .highlight::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--highlight-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInFill 2s ease-out 1s forwards;
}

@keyframes fadeOutStroke {
    to {
        -webkit-text-stroke-color: transparent;
        text-stroke-color: transparent;
    }
}

@keyframes fadeInFill {
    to {
        opacity: 1;
    }
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-gradient-soft);
    border-radius: 2px;
    opacity: 0.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    color: var(--background-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translate(2px, -2px);
}

/* --- Hero Responsive --- */
@media (max-width: 768px) {
    .hero {
        padding-top: 180px;
        text-align: center;
        min-height: 70vh;
        min-height: 70svh;
    }

    .hero .container {
        align-items: center;
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero h2 {
        font-size: 1.3em;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-background-text {
        font-size: clamp(12rem, 50vw, 35rem);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero-background-text {
        font-size: clamp(12rem, 60vw, 35rem);
    }
}