.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.75;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, transparent, var(--bg) 88%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-inner {
    max-width: 760px;
}

.hero-kicker {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.03em;
    margin-bottom: 1.1rem;
    display: block;
}

.hero h1 {
    font-size: clamp(2.3rem, 5.4vw, 3.9rem);
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-role {
    margin-top: 1.1rem;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-role strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-summary {
    margin-top: 1.4rem;
    font-size: 1.04rem;
    color: var(--text-secondary);
    max-width: 58ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.2rem;
}

.status-strip {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 620px;
}

.status-cell {
    background: color-mix(in srgb, var(--bg-elevated) 92%, transparent);
    padding: 0.95rem 1.15rem;
}

.status-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.status-label .pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 var(--accent-soft);
    animation: pulse 2.4s ease-out infinite;
}

.status-cell.rnd .status-label .pulse {
    background: var(--rnd);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent);
    }
    70% {
        box-shadow: 0 0 0 8px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    .status-label .pulse {
        animation: none;
    }
}

.status-value {
    margin-top: 0.4rem;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.status-value span {
    color: var(--text-secondary);
}

.scroll-cue {
    position: fixed;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 1;
    visibility: visible;
    transition: opacity var(--dur-md) var(--ease), color var(--dur-sm) var(--ease);
}

.scroll-cue:hover {
    color: var(--accent);
}

.scroll-cue.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll-cue::after {
    content: "";
    width: 1px;
    height: 28px;
    background: linear-gradient(var(--text-tertiary), transparent);
    animation: scrollcue 1.8s ease-in-out infinite;
}

@keyframes scrollcue {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-cue::after {
        animation: none;
    }
}

@media (max-width: 640px) {
    .status-strip {
        grid-template-columns: 1fr;
    }
    .scroll-cue {
        display: none;
    }
}
