.teaser-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1rem;
    align-items: start;
}

.teaser-stage,
.tracker-card {
    border: 1px solid rgba(217, 169, 75, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 20% 0, rgba(47, 143, 216, 0.16), transparent 22rem),
        linear-gradient(180deg, rgba(16, 22, 33, 0.94), rgba(8, 11, 18, 0.96));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.teaser-stage {
    min-height: 680px;
    padding: clamp(1.1rem, 3vw, 2rem);
}

.teaser-kicker {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.teaser-stage h1 {
    margin: 0.5rem 0;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 0.96;
}

.teaser-tagline {
    margin: 0 0 1.5rem;
    color: #d8ccaa;
    font-size: 1.05rem;
}

.teaser-panel {
    min-height: 430px;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(47, 143, 216, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(8, 11, 18, 0.58), rgba(8, 11, 18, 0.82)),
        repeating-linear-gradient(0deg, rgba(244, 236, 214, 0.025) 0 1px, transparent 1px 9px);
    transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.teaser-panel.is-fading {
    opacity: 0;
    transform: translateY(8px);
}

.teaser-panel.is-watcher {
    border-color: rgba(157, 48, 44, 0.42);
}

.teaser-panel h2 {
    margin: 0 0 1rem;
    color: #f7e6b8;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.story-copy {
    color: #e3d7b8;
    font-size: 1.08rem;
    line-height: 1.72;
}

.story-copy p {
    margin: 0 0 1rem;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.choice-button {
    min-height: 58px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(217, 169, 75, 0.32);
    border-radius: 7px;
    color: #fff4d8;
    background: rgba(14, 10, 7, 0.72);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.choice-button:hover,
.choice-button:focus-visible {
    border-color: rgba(217, 169, 75, 0.78);
    box-shadow: 0 0 22px rgba(47, 143, 216, 0.22);
    outline: none;
}

.choice-button[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
}

.teaser-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 96px;
}

.tracker-card {
    padding: 1rem;
}

.tracker-card h2 {
    margin: 0 0 0.8rem;
    font-size: 1.1rem;
}

.clue-list {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.clue-list li {
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(217, 169, 75, 0.18);
    border-radius: 6px;
    color: #ead9ac;
    background: rgba(244, 236, 214, 0.04);
}

.control-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.control-stack .btn {
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

.tracker-note,
.node-debug {
    color: #b9ac8b;
    font-size: 0.88rem;
    line-height: 1.5;
}

.node-debug {
    margin-bottom: 0.75rem;
}

@media (max-width: 920px) {
    .teaser-shell {
        grid-template-columns: 1fr;
    }

    .teaser-sidebar {
        position: static;
    }
}

@media (max-width: 620px) {
    .teaser-stage {
        min-height: 0;
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }
}

