/* ══════════════════════════════════════════════════════════════════
   HERO.CSS — Landing Page Hero Section
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero Wrapper ────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}

/* ── Hero Content ────────────────────────────────────────────── */
.hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-12) var(--sp-8);
    max-width: var(--page-max);
    margin: 0 auto;
    width: 100%;
}

/* ── Archive Badge ───────────────────────────────────────────── */
.hero-badge {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--artichoke);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
    animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--artichoke);
    animation: bboxPulse 2s ease infinite;
}

/* ── Hero Title ──────────────────────────────────────────────── */
.hero-title {
    font-family: var(--font-serif);
    /* Scaled down: was clamp(2.5rem,7vw,var(--fs-3xl)) */
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--msu-green);
    max-width: 900px;
    animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero-title em {
    font-style: italic;
    color: var(--asparagus);
}

/* Divider slash */
.hero-title .slash {
    font-style: normal;
    color: var(--artichoke);
    font-weight: 300;
    margin: 0 0.15em;
}

/* ── Hero Subtitle ───────────────────────────────────────────── */
.hero-subtitle {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--asparagus);
    letter-spacing: 0.12em;
    margin-top: var(--sp-4);
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    animation: fadeUp 1s var(--ease-out) 0.6s both;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--artichoke);
    flex-shrink: 0;
}

/* ── Hero Meta Row ───────────────────────────────────────────── */
.hero-meta {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    margin-top: var(--sp-8);
    padding-top: var(--sp-6);
    border-top: var(--border-thin);
    animation: fadeUp 1s var(--ease-out) 0.8s both;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-meta-label {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--artichoke);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-meta-value {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--msu-green);
}

/* ── Scroll Hint ─────────────────────────────────────────────── */
.hero-scroll-hint {
    position: absolute;
    right: var(--sp-8);
    bottom: var(--sp-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    animation: fadeUp 1.5s var(--ease-out) 1.2s both;
}

.hero-scroll-hint span {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--artichoke);
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--artichoke), transparent);
    animation: scanline 2s ease infinite;
}

/* ── Corner Decorations ──────────────────────────────────────── */
.hero-corner {
    position: absolute;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--artichoke);
    opacity: 0.6;
    letter-spacing: 0.05em;
    animation: fadeIn 1.5s var(--ease-out) 1s both;
}

.hero-corner--tl {
    top: var(--sp-8);
    right: var(--sp-8);
    text-align: right;
}

.hero-corner--br {
    bottom: var(--sp-8);
    left: var(--sp-8);
}

@media (max-width: 768px) {
    .hero-inner {
        padding: var(--sp-12) var(--sp-4) var(--sp-8);
        justify-content: center;
    }

    .hero-meta {
        flex-wrap: wrap;
        gap: var(--sp-4);
    }

    .hero-corner--tl {
        display: none;
    }

    .hero-scroll-hint {
        display: none;
    }
}