/* --- HERO --- */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Geeky status badge */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 100px;
    padding: 0.35rem 1rem 0.35rem 0.6rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-primary);
    letter-spacing: 0.05em;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(74, 222, 128, 0);
    }
}

.hero-identity {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    min-height: 1.5em;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background-color: var(--accent-primary);
    vertical-align: middle;
    margin-left: 3px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7.5vw, 5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.15em;
    padding-top: 0.5em;
    text-transform: uppercase;
    overflow: visible;
}

.accent-text {
    background: linear-gradient(
        135deg,
        var(--accent-primary) 0%,
        var(--accent-warm) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 0.2em;
    margin-bottom: 0.05em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    overflow: visible;
}

.sub-headline {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.sub-headline .highlight {
    font-weight: 500;
}

/* Hero metadata row */
.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-meta-item span:first-child {
    color: var(--accent-primary);
}

.hero-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link-arrow {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.link-arrow:hover {
    background: var(--text-primary);
    color: var(--bg-body);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.link-arrow:hover .arrow {
    transform: translateX(4px);
}
.arrow {
    transition: transform 0.3s ease;
}

.link-arrow-secondary {
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.25);
    color: var(--accent-primary);
}

.link-arrow-secondary:hover {
    background: var(--accent-primary);
    color: #1a1816;
    border-color: var(--accent-primary);
}
