main { padding-top: var(--head-total); }

.hero {
    position: relative;
    min-height: calc(100vh - var(--head-total));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 8vw, 96px) 0 0;
    overflow: hidden;
}

.hero-noise-line {

    --marquee-gap: clamp(160px, 52vw, 1400px);

    position: absolute;
    top: clamp(20px, 4vw, 40px);
    left: 0;
    width: 100%;
    overflow: hidden;
    font-family: var(--f-mono);
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    color: var(--bone-faint);
    text-transform: uppercase;

    opacity: 0.72;

    pointer-events: none;
}

.hero-noise-track {
    display: flex;
    width: max-content;
    animation: marquee 90s linear infinite;
}

.hero-noise-track > span {
    white-space: nowrap;
    padding-right: var(--marquee-gap);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-noise-track { animation: none; }
}

.hero-shell { width: 100%; }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.hero-lead .kicker { margin-bottom: clamp(20px, 3vw, 36px); }

.hero-title {
    font-size: clamp(4.8rem, 17vw, 15rem);
    color: var(--bone);
}
.hero-line { display: block; }
.hero-line--stroke {
    -webkit-text-stroke: 1.5px var(--frost);
    color: transparent;
    padding-left: clamp(20px, 5vw, 90px);
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3vw, 36px);
    border-left: 1px solid var(--ink-line);
    padding-left: clamp(24px, 3vw, 44px);
}

.status-block .status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--f-mono);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bone-dim);
    border: 1px solid var(--ink-line-2);
    padding: 8px 14px;
    margin-bottom: 16px;
}
.status-led {
    width: 7px; height: 7px;
    background: var(--bone-faint);
    border-radius: 50%;
}
.status-tag.is-live .status-led {
    background: var(--frost);
    box-shadow: 0 0 0 4px var(--frost-glow);
}
.status-copy {
    font-family: var(--f-mono);
    font-size: 0.86rem;
    color: var(--bone-dim);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-id {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: clamp(20px, 3vw, 32px);
    border-top: 1px solid var(--ink-line);
}
.hero-id-avatar {
    width: 56px; height: 56px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    border: 1px solid var(--ink-line-2);
    transition: filter var(--t-fast);
}
.hero-id:hover .hero-id-avatar { filter: grayscale(0); }
.hero-id-text { display: flex; flex-direction: column; gap: 3px; }
.hero-id-name {
    font-family: var(--f-mono);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--bone);
    letter-spacing: 0.04em;
}
.hero-id-role {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    color: var(--bone-faint);
}

.hero-baseline {
    display: flex;
    justify-content: space-between;
    padding: clamp(32px, 5vw, 56px) var(--gutter) clamp(20px, 3vw, 32px);
    max-width: var(--shell);
    margin: 0 auto;
    width: 100%;
}

.live-hero {
    padding: clamp(48px, 7vw, 110px) 0;
    border-bottom: 1px solid var(--ink-line);
}
.live-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
}
.live-kicker { color: var(--frost); }
.live-dot {
    width: 8px; height: 8px;
    background: var(--frost);
    border-radius: 50%;
    animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--frost-glow); }
    50%      { opacity: 0.5; box-shadow: 0 0 0 7px transparent; }
}

.live-title {
    font-family: var(--f-kr);
    font-weight: 700;

    font-size: clamp(1.35rem, 0.95rem + 1.55vw, 2.05rem);
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: var(--bone);
    margin: 18px 0 26px;

    word-break: keep-all;
    overflow-wrap: anywhere;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.live-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--ink-line);
    padding-top: 18px;
}
.live-viewers {
    font-family: var(--f-mono);
    font-size: 1.1rem;
    color: var(--frost);
}
.live-thumb {
    position: relative;
    display: block;
    border: 1px solid var(--ink-line-2);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.live-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow), filter var(--t-slow);
}
.live-thumb:hover img { transform: scale(1.04); filter: brightness(0.7); }
.live-thumb-cta {
    position: absolute;
    left: 16px; bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--frost);
    padding: 11px 18px;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--t-fast);
}
.live-thumb:hover .live-thumb-cta { opacity: 1; transform: translateY(0); }
.play-icon { font-size: 0.7rem; }
