/* nine71 charts
   ---------------------------------------------------------------------------
   Same identity as nine71.ai: the tokens, the typeface and the component
   language are lifted from site/styles.css so this reads as the same company
   rather than as a second brand. If a value here disagrees with that file, that
   file is right.

   The things that carry the identity, and that are easy to lose:
     - Outfit, and only Outfit. Numbers are Outfit with tabular figures, not a
       mono. A second family is the fastest way to stop looking like nine71.
     - Light weights. Display type is 300/400 with negative tracking. Nothing
       here is 700 - a bold grotesk headline is not what this brand sounds like.
     - Rounded. 18px on lists and cards, 100px on bars and pills, 6px on buttons.
     - Violet is the crowd, gold is uncertain. Gold carries the same meaning it
       carries on the marketing site's chart, where .tag-tent marks a tentative
       ID. An unidentified track here is the same idea, so it takes the same
       colour rather than a new one. */

:root {
    --bg: #111212;
    --surface: #191919;
    --surface-2: #202020;
    --border: #313131;
    --border-2: #3d3d3d;
    --nav-border: #2a2a2a;
    --brand: #7065f0;
    --brand-light: #9fa3fc;
    --brand-lighter: #caccfd;
    --gold: #d8a13a;
    --gold-soft: rgba(216, 161, 58, 0.14);
    --text: #E8E8E8;
    --text-2: #A0A0A0;
    --text-3: #767676;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1200px;
    --pad: 2rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }

:focus-visible { outline: 2px solid var(--brand-light); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

.vh {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

/* ---------- nav ---------- */
/* The masthead from the marketing site: links left, wordmark centred, one CTA
   right. Centring the mark is what makes it read as a masthead rather than as
   app chrome, and it is the single most recognisable piece of the identity. */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 200ms ease, border-color 200ms ease;
}
.nav.scrolled {
    background: rgba(17, 18, 18, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.4rem var(--pad);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
.nav-links {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    gap: 1.9rem;
    justify-self: start;
}
.nav-links a {
    color: var(--text-2);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 140ms ease;
}
.nav-links a:hover, .nav-links a.on { color: var(--text); }

.nav-logo {
    grid-column: 2;
    justify-self: center;
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    line-height: 0;
    color: #fff;
    user-select: none;
}
.wordmark-img { height: 1.2rem; width: auto; display: block; }
/* The module label beside the mark, the same device the product pages use. */
.nav-mod {
    line-height: 1;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-3);
    letter-spacing: -0.01em;
}

.nav-cta { grid-column: 3; justify-self: end; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font: 500 0.95rem var(--font);
    cursor: pointer;
    transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn-light { background: #E8E8E8; color: #121212; }
.btn-light:hover { background: var(--brand-lighter); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--brand-light); color: var(--brand-lighter); }

/* ---------- page hero ---------- */

.page-hero {
    padding: 11rem var(--pad) 4rem;
    text-align: center;
    background: linear-gradient(180deg, #23252A 0%, #191A1D 42%, var(--bg) 100%);
}
.page-title {
    font-size: clamp(2.3rem, 4.4vw, 3.15rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.22;
    color: var(--text);
}
.page-sub {
    margin: 1.2rem auto 0;
    max-width: 42rem;
    color: var(--text-2);
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.6rem;
    justify-content: center;
    margin-top: 2.6rem;
    color: var(--text-3);
    font-size: 0.85rem;
}
.hero-stats b {
    display: block;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

/* ---------- sections ---------- */

.section { padding: 5rem 0 7.5rem; }
/* .page-hero already carries 4rem of bottom padding, so a section that follows
   it directly does not need its own full top pad on top of that. */
.section-tight { padding-top: 1.5rem; }
.section-head { margin-bottom: 2.2rem; }
/* A head immediately followed by its lede owns the gap once, not twice. */
.section-head:has(+ .chart-lede) { margin-bottom: 0.5rem; }
.section-head h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.chart-lede {
    margin: 0.6rem 0 2rem;
    max-width: 46rem;
    color: var(--text-2);
    font-size: 0.95rem;
}

/* ---------- controls ---------- */

.listing-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}
.controls { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }

#q {
    width: 17rem;
    padding: 0.6rem 0.95rem;
    font: 300 0.95rem var(--font);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
}
#q::placeholder { color: var(--text-3); }
#q:focus { outline: none; border-color: var(--brand); background: rgba(112, 101, 240, 0.06); }

/* Same pill row as .chart-tabs on the marketing site. */
.filter {
    padding: 0.5rem 1rem;
    font: 400 0.85rem var(--font);
    color: var(--text-3);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}
.filter:hover { color: var(--text); border-color: var(--border-2); }
.filter.on { background: var(--text); border-color: var(--text); color: #121212; }

.filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ---------- set cards ---------- */

.cards { display: grid; gap: 1rem; }

.card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 140ms ease, border-color 140ms ease;
}
.card:hover { background: var(--surface-2); border-color: var(--border-2); }
.card[hidden] { display: none; }
.card-link { display: block; padding: 1.5rem 1.6rem 1.2rem; }

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}
.card-artist {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -0.022em;
    line-height: 1.2;
    color: var(--text);
}
.card-event { margin-top: 0.2rem; color: var(--text-2); font-size: 0.95rem; }
.card-date {
    flex: none;
    text-align: right;
    color: var(--text-3);
    font-size: 0.78rem;
    line-height: 1.45;
}
.card-date b {
    display: block;
    color: var(--text-2);
    font-weight: 400;
    font-size: 0.88rem;
    font-variant-numeric: tabular-nums;
}

.card-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.4rem;
    color: var(--text-3);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}
.card-stat b { color: var(--text-2); font-weight: 400; }
.card-genres { margin-left: auto; }

.no-results { margin-top: 3rem; text-align: center; color: var(--text-3); }

/* ---------- the set ruler ---------- */
/* The one thing here the marketing site does not already have. Each cue sits at
   its real elapsed position, so a four-hour set looks like four hours, a fast
   b2b bunches up, and a long unidentified stretch reads as a gap rather than as
   one more row. Violet is identified, gold is not. */

.ruler { position: relative; }
.ruler-track {
    position: relative;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.09) 0 100%) center / 100% 1px no-repeat;
}

.ruler-mini { height: 30px; margin: 1.1rem 0 0.9rem; }
.ruler-mini .tick {
    position: absolute;
    bottom: 50%;
    width: 2px;
    height: 13px;
    border-radius: 100px;
    background: var(--brand-light);
    opacity: 0.85;
}
.ruler-mini .tick-id { background: var(--gold); height: 7px; opacity: 0.8; }
.ruler-mini .hour { height: 16px; }
.ruler-mini .hour i { top: 16px; font-size: 0.6rem; }

.ruler-live { height: 62px; }
.ruler-live .ruler-track { background-position-y: 42px; }
.ruler-live .tick {
    position: absolute;
    bottom: 20px;
    width: 3px;
    height: 22px;
    padding: 0;
    background: var(--brand-light);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 140ms ease, height 140ms ease, background 140ms ease;
}
/* A 3px target is not clickable; this is the hit area, not a visible shape. */
.ruler-live .tick::after { content: ""; position: absolute; inset: -14px -5px -18px; }
.ruler-live .tick:hover,
.ruler-live .tick:focus-visible { opacity: 1; height: 32px; }
.ruler-live .tick-id { background: var(--gold); height: 13px; opacity: 0.75; }
.ruler-live .tick-id:hover,
.ruler-live .tick-id:focus-visible { height: 22px; }
.ruler-live .tick.on { opacity: 1; height: 34px; background: var(--brand-lighter); }

.hour {
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.09);
}
.hour i {
    position: absolute;
    top: 22px;
    left: 0.3rem;
    font-style: normal;
    font-size: 0.68rem;
    color: var(--text-3);
}

.playhead {
    position: absolute;
    bottom: 18px;
    width: 1px;
    height: 26px;
    background: var(--text);
}
.playhead::after {
    content: "";
    position: absolute;
    top: -4px; left: -3px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--text);
}

/* The unlisted tail of a partial tracklist. Hatched rather than filled: it is an
   absence of data, and a solid block would read as a section of the set. */
.ruler-gap {
    position: absolute;
    right: 0;
    bottom: 20px;
    height: 22px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(216, 161, 58, 0.16) 0 4px,
        transparent 4px 8px
    );
    border-left: 1px dashed rgba(216, 161, 58, 0.45);
}
.ruler-mini .ruler-gap { bottom: calc(50% - 6px); height: 13px; }

.flag-partial {
    padding: 0.08rem 0.55rem;
    border: 1px solid rgba(216, 161, 58, 0.4);
    border-radius: 100px;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.set-note-partial { color: var(--gold); font-size: 0.9rem; }

.ruler-key {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.1rem;
    /* The hour labels hang below the ruler's baseline, so the key has to clear
       them. On an eight-hour set there are seven of them and they land straight
       through this row otherwise. */
    padding-top: 1.1rem;
    padding-bottom: 1rem;
    color: var(--text-3);
    font-size: 0.8rem;
}
.key { display: inline-flex; align-items: center; gap: 0.4rem; }
.key::before { content: ""; width: 3px; height: 12px; border-radius: 100px; }
.key-on::before { background: var(--brand-light); }
.key-off::before { background: var(--gold); height: 7px; }
.key-hint { margin-left: auto; color: var(--text-2); }

/* ---------- set page ---------- */

.set { padding: 9.5rem 0 7rem; }

.eyebrow {
    color: var(--text-3);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.set-title {
    margin-top: 0.6rem;
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.032em;
    line-height: 1.1;
    color: #fff;
}
.set-event { margin-top: 0.3rem; color: var(--text-2); font-size: 1.125rem; }

.set-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 1.2rem;
    color: var(--text-3);
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
}
.set-facts b { color: var(--text); font-weight: 400; }
.set-note { margin-top: 1rem; max-width: 44rem; color: var(--text-2); font-size: 0.98rem; }

/* The ruler and the player are one instrument: the ruler is the map, the player
   is the transport. Boxing them together is what makes clicking a mark feel like
   operating the thing directly below it. */
.deck {
    margin-top: 2.4rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}
.deck-top { padding: 1rem 1.4rem 0; }
.player { border-top: 1px solid var(--border); }
.player iframe { display: block; }

.set-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 16rem;
    gap: 3.5rem;
    margin-top: 3rem;
    align-items: start;
}

.list-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.list-head h2 { font-size: 1.15rem; font-weight: 400; letter-spacing: -0.02em; }
.list-meta { color: var(--text-3); font-size: 0.85rem; font-variant-numeric: tabular-nums; }

.rows {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}
.row {
    display: grid;
    grid-template-columns: 2.4rem 5.4rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.4rem;
    border-bottom: 1px solid var(--border);
    transition: background 140ms ease;
}
.row:last-child { border-bottom: none; }
.row:hover { background: rgba(255, 255, 255, 0.03); }
.row.on { background: rgba(112, 101, 240, 0.10); }

.row-n {
    color: var(--text-3);
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.row-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.6rem;
    font: 400 0.85rem var(--font);
    font-variant-numeric: tabular-nums;
    color: var(--brand-lighter);
    background: rgba(112, 101, 240, 0.16);
    border: 1px solid rgba(112, 101, 240, 0.4);
    border-radius: 100px;
    cursor: pointer;
    transition: background 140ms ease;
}
.row-cue:hover { background: rgba(112, 101, 240, 0.3); }
.cue-play {
    width: 0; height: 0;
    border-left: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    opacity: 0.6;
}
.row-cue:hover .cue-play { opacity: 1; }

.row-text { min-width: 0; }
.row-title {
    display: block;
    color: var(--text);
    font-size: 0.98rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.row-artist {
    display: block;
    color: var(--text-3);
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.row.on .row-title { color: var(--brand-lighter); }

.row-id .row-title { color: var(--gold); letter-spacing: 0.06em; font-size: 0.9rem; }
.row-id .row-cue {
    color: var(--gold);
    background: var(--gold-soft);
    border-color: rgba(216, 161, 58, 0.4);
}
.row-id .row-cue:hover { background: rgba(216, 161, 58, 0.28); }

/* Two outlined buttons on every one of forty-nine rows is what makes a tracklist
   site look like a database dump. They stay in the tab order and stay tappable;
   they only take colour when the row is under the cursor. */
.row-links { display: flex; gap: 0.9rem; }
.mini { color: var(--text-3); font-size: 0.8rem; white-space: nowrap; transition: color 140ms ease; }
.row:hover .mini { color: var(--text-2); }
.mini:hover { color: var(--brand-lighter); }
.mini-off { font-style: italic; }
.row:hover .mini-off, .mini-off:hover { color: var(--text-3); }

/* ---------- sidebar ---------- */

.side { position: sticky; top: 6rem; display: grid; gap: 2rem; }
.side-block h3 {
    padding-bottom: 0.5rem;
    margin-bottom: 0.7rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-3);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.side-block dl { display: grid; grid-template-columns: 4.6rem minmax(0, 1fr); gap: 0.4rem 0.8rem; }
.side-block dt { color: var(--text-3); font-size: 0.82rem; }
.side-block dd { color: var(--text); font-size: 0.88rem; }
.side-note { color: var(--text-2); font-size: 0.85rem; line-height: 1.6; }
.side-note + .side-note { margin-top: 0.7rem; }
.side-note a { color: var(--brand-light); }
.side-note a:hover { color: var(--brand-lighter); }

.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
    padding: 0.15rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-2);
    font-size: 0.78rem;
}

/* ---------- charts ---------- */

.crows {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}
.crow {
    display: grid;
    grid-template-columns: 2.6rem minmax(0, 1.4fr) minmax(0, 1fr) 8rem 4.4rem;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.4rem;
    border-bottom: 1px solid var(--border);
    transition: background 140ms ease;
}
.crow:last-child { border-bottom: none; }
.crow:hover { background: rgba(255, 255, 255, 0.03); }
.crow-n {
    color: var(--text-3);
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
    text-align: right;
}
.crow:nth-child(-n+3) .crow-n { color: var(--gold); }
.crow-text { min-width: 0; }
.crow-text b {
    display: block;
    color: var(--text);
    font-weight: 400;
    font-size: 0.98rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.crow-text span { display: block; color: var(--text-3); font-size: 0.85rem; }
.crow-where { color: var(--text-3); font-size: 0.85rem; }

.bar { display: block; height: 5px; border-radius: 100px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.bar span {
    display: block;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(112, 101, 240, 0.55), var(--brand-light));
}
.crow-v { text-align: right; color: var(--text); font-size: 0.9rem; font-variant-numeric: tabular-nums; }

.tag-same {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.08rem 0.5rem;
    border: 1px solid rgba(216, 161, 58, 0.4);
    border-radius: 100px;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ---------- prose ---------- */

.prose { max-width: 44rem; padding-bottom: 7rem; }
.prose h2 { margin-top: 2.6rem; font-size: 1.15rem; font-weight: 400; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 0.7rem; color: var(--text-2); font-size: 1rem; line-height: 1.7; }
.prose a { color: var(--brand-light); }
.prose a:hover { color: var(--brand-lighter); }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--border); }
.foot-in {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2.2rem;
    padding-bottom: 2.8rem;
}
.foot p { max-width: 42rem; color: var(--text-3); font-size: 0.82rem; line-height: 1.65; }
.foot-links { display: flex; gap: 1.4rem; }
.foot-links a { color: var(--text-2); font-size: 0.85rem; }
.foot-links a:hover { color: var(--text); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
    .set-body { grid-template-columns: minmax(0, 1fr); gap: 2.4rem; }
    .side { position: static; }
    .crow { grid-template-columns: 2.2rem minmax(0, 1fr) 4.6rem; }
    .crow-where, .bar { display: none; }
}

@media (max-width: 760px) {
    :root { --pad: 1.25rem; }
    /* Three columns with a centred mark do not fit: the mark goes left and the
       CTA drops, which keeps the links reachable rather than scrolling the
       header sideways. */
    .nav-inner { grid-template-columns: auto 1fr; padding: 1rem var(--pad); }
    .nav-logo { grid-column: 1; grid-row: 1; justify-self: start; }
    .nav-links { grid-column: 2; grid-row: 1; justify-self: end; gap: 1.1rem; }
    .nav-links a { font-size: 0.88rem; }
    .nav-cta { display: none; }

    .page-hero { padding: 7.5rem var(--pad) 3rem; }
    .set { padding-top: 6.5rem; }
    .hero-stats { gap: 1.6rem; }

    .row { grid-template-columns: 2rem 4.8rem minmax(0, 1fr); gap: 0.7rem; padding: 0.75rem 1rem; }
    .row-links { grid-column: 2 / -1; }
    .crow { padding: 0.8rem 1rem; }
    .card-top { flex-direction: column; gap: 0.4rem; }
    .card-date { text-align: left; }
    .card-genres { margin-left: 0; }
    #q { width: 100%; }
    .controls { width: 100%; }
    .key-hint { display: none; }
}

/* At 320px the wordmark, its module label and three links do not fit one row.
   The label goes rather than the links: the page below always names the section,
   whereas a clipped nav scrolls the whole document sideways. */
@media (max-width: 400px) {
    .nav-mod { display: none; }
    .nav-links { gap: 0.9rem; }
    .nav-links a { font-size: 0.82rem; }
    .wordmark-img { height: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* A YouTube set. The SoundCloud embed is a fixed 300px bar; a video needs its
   own aspect or it letterboxes itself inside a short box. */
.player-yt {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}
.player-yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* The caveat under the crossover chart. Gold because it is the same "treat this
   as uncertain" the ID marks mean elsewhere on the site. */
.chart-caveat {
    padding-left: 0.9rem;
    border-left: 2px solid rgba(216, 161, 58, 0.5);
    color: var(--text-3);
}
