/* ========================================== */
/* HERO.CSS                                   */
/* ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

/* Background effects - radial glow */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Diagonal lines background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.055) 40px,
            rgba(255,255,255,0.055) 41px
        );
    pointer-events: none;
    z-index: 0;
}

/* Animated diagonal lines (second layer, moving) */
.hero-grid-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.03) 80px,
            rgba(255,255,255,0.03) 81px
        );
    pointer-events: none;
    z-index: 0;
    animation: diagMove 14s linear infinite;
}

@keyframes diagMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(57px, 57px); }
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Pills */
.hero-pills { margin-bottom: 20px; }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.pill-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero Title - TIGHT spacing */
.hero-title {
    margin-bottom: 20px;
    line-height: 0.9;
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 14vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

/* Animated stroke text - WEBSITE - CONTINUOUS running border */
.title-line.animated-stroke {
    position: relative;
    display: block;
    margin-top: -4px;
}

.title-line.animated-stroke svg {
    width: 100%;
    height: auto;
    overflow: visible;
    display: block;
}

.title-line.animated-stroke text {
    font-family: var(--font-heading);
    font-size: 100px;
    font-weight: 700;
    letter-spacing: -0.03em;
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 1.5;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: strokeRun 3s linear infinite;
}

@keyframes strokeRun {
    0% { stroke-dashoffset: 600; }
    100% { stroke-dashoffset: 0; }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .title-line { font-size: clamp(3rem, 16vw, 5rem); }
    .title-line.animated-stroke text { font-size: 50px; }
    .hero { padding: 90px 16px 40px; }
    .hero-title { line-height: 0.9; }
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
