:root {
    --bg: #05070b;
    --bg-2: #080b11;
    --surface: #0d1117;
    --surface-2: #111721;
    --line: rgba(255, 255, 255, 0.08);
    --line-hi: rgba(255, 255, 255, 0.16);
    --ink: #e9eef4;
    --dim: #9aa5b3;
    --mute: #6b7684;
    --acc: #14e0c0;
    --acc-deep: #0aa88f;
    --acc-soft: rgba(20, 224, 192, 0.1);
    --acc-line: rgba(20, 224, 192, 0.32);
    --live: #ff3f6b;

    --fs-label: 0.72rem;
    --fs-small: 0.85rem;
    --fs-body: 0.97rem;
    --fs-lead: 1.08rem;
    --fs-h3: 1.05rem;
    --fs-h2: clamp(1.5rem, 2.6vw, 2.05rem);
    --fs-h1: clamp(1.9rem, 4vw, 3rem);
    --fs-stat: clamp(1.45rem, 2.6vw, 2rem);

    --gap: clamp(1rem, 2vw, 1.6rem);
    --section: clamp(3.5rem, 7vw, 5.5rem);
    --pad: clamp(1.1rem, 4vw, 2.5rem);
    --wrap: 1180px;
    --radius: 14px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --display: "Sora", "Segoe UI", system-ui, sans-serif;
    --body: "Inter", "Segoe UI", system-ui, sans-serif;
    --mono: ui-monospace, "SFMono-Regular", "Cascadia Code", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--acc-deep) var(--bg);
    scrollbar-width: thin;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.is-held {
    overflow: hidden;
}

::selection {
    background: var(--acc);
    color: #02120f;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--acc-deep);
    border-radius: 20px;
    border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--acc);
}

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin: 0;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--pad);
}

.skip {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 200;
    background: var(--acc);
    color: #02120f;
    padding: 0.7rem 1.2rem;
}

.skip:focus {
    left: 0;
}

.eyebrow {
    font-family: var(--mono);
    font-size: var(--fs-label);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--acc);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.9rem 0;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.is-pinned {
    padding: 0.55rem 0;
    background: rgba(5, 7, 11, 0.86);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom-color: var(--line);
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.02em;
    flex: none;
}

.logo img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    transition: transform 0.5s var(--ease);
}

.logo:hover img {
    transform: rotate(-6deg) scale(1.06);
}

.logo em {
    font-style: normal;
    color: var(--acc);
}

.nav__links {
    margin-inline: auto;
    display: flex;
    gap: 1.7rem;
    font-size: var(--fs-small);
    color: var(--dim);
}

.nav__links a {
    position: relative;
    padding-block: 0.3rem;
    transition: color 0.3s var(--ease);
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--acc);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav__links a:hover {
    color: var(--ink);
}

.nav__links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__side {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: none;
}

.live {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    transition: color 0.3s var(--ease);
}

.live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mute);
}

.live:hover {
    color: var(--ink);
}

.live.is-live {
    color: var(--ink);
}

.live.is-live i {
    background: var(--live);
    animation: beat 1.9s infinite;
}

@keyframes beat {
    0% { box-shadow: 0 0 0 0 rgba(255, 63, 107, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(255, 63, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 63, 107, 0); }
}

.burger {
    display: none;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: none;
}

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.4s var(--ease);
}

.burger span + span {
    margin-top: 5px;
}

.burger[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1.5rem;
    border-radius: 100px;
    border: 1px solid transparent;
    font-family: var(--display);
    font-size: var(--fs-small);
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--primary {
    background: linear-gradient(135deg, var(--acc), var(--acc-deep));
    color: #02120f;
    box-shadow: 0 8px 24px -12px rgba(20, 224, 192, 0.8);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -12px rgba(20, 224, 192, 0.9), 0 0 22px rgba(20, 224, 192, 0.25);
}

.btn--ghost {
    border-color: var(--line-hi);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
    border-color: var(--acc-line);
    color: var(--acc);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}

.btn--lg {
    padding: 0.9rem 2rem;
    font-size: var(--fs-body);
}

.hero {
    position: relative;
    min-height: min(88svh, 760px);
    display: flex;
    align-items: center;
    padding: clamp(6rem, 14vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
    overflow: hidden;
    text-align: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(20, 224, 192, 0.12), transparent 70%),
        linear-gradient(180deg, #070d14, var(--bg));
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.hero__tint {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 50% 45%, rgba(5, 7, 11, 0.2), rgba(5, 7, 11, 0.82) 75%),
        linear-gradient(180deg, rgba(5, 7, 11, 0.72), rgba(5, 7, 11, 0.55) 45%, rgba(5, 7, 11, 0.95));
}

.hero__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, var(--bg));
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.hero__title em {
    font-style: normal;
    color: var(--acc);
}

.hero__lead {
    font-family: var(--display);
    font-size: var(--fs-lead);
    font-weight: 600;
    color: var(--ink);
    max-width: 32ch;
}

.hero__text {
    color: var(--dim);
    max-width: 56ch;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 0.6rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem var(--gap);
    width: 100%;
    max-width: 720px;
    margin-top: clamp(1.8rem, 4vw, 3rem);
    padding-top: clamp(1.2rem, 3vw, 1.8rem);
    border-top: 1px solid var(--line);
}

.stat strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: var(--fs-stat);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.stat span {
    display: block;
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 0.35rem;
}

.hero__cue {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    width: 1px;
    height: 44px;
    background: var(--line-hi);
    overflow: hidden;
    z-index: 1;
}

.hero__cue::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--acc);
    animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
    0% { transform: translateY(-100%); }
    60%, 100% { transform: translateY(100%); }
}

.band {
    padding: var(--section) 0;
    position: relative;
}

.band--alt {
    background: linear-gradient(180deg, transparent, var(--bg-2) 18%, var(--bg-2) 82%, transparent);
}

.band__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.band__sub {
    color: var(--dim);
    font-size: var(--fs-small);
    max-width: 54ch;
}

.band__foot {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.clips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 340px));
    justify-content: center;
    gap: var(--gap);
}

.clip {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}

.clip:hover {
    transform: translateY(-4px);
    border-color: var(--acc-line);
    box-shadow: 0 20px 40px -30px rgba(20, 224, 192, 0.9);
}

.clip--lead {
    border-color: var(--acc-line);
}

.clip__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0e14;
}

.clip__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.clip__thumb iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.clip:hover .clip__thumb img {
    transform: scale(1.05);
}

.clip__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--acc-line);
    background: rgba(5, 7, 11, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: grid;
    place-items: center;
    transition: transform 0.45s var(--ease), background 0.4s var(--ease), box-shadow 0.5s var(--ease);
}

.clip__play::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid var(--acc);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

.clip:hover .clip__play,
.stream__player--vod:hover .clip__play {
    transform: scale(1.12);
    background: rgba(20, 224, 192, 0.16);
    box-shadow: 0 0 28px rgba(20, 224, 192, 0.4);
}

.clip__time,
.clip__flag {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    padding: 0.18rem 0.5rem;
    border-radius: 6px;
    background: rgba(5, 7, 11, 0.85);
    font-family: var(--mono);
    font-size: 0.66rem;
    color: var(--dim);
}

.clip__flag {
    top: 0.6rem;
    left: 0.6rem;
    right: auto;
    bottom: auto;
    background: var(--acc);
    color: #02120f;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.clip__body {
    padding: 0.95rem 1.05rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.clip__body h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.clip__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: auto;
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute);
}

.clip__meta span {
    position: relative;
}

.clip__meta span + span::before {
    content: "";
    position: absolute;
    left: -0.5rem;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--acc);
    transform: translateY(-50%);
}

.stream {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: var(--gap);
    align-items: stretch;
}

.stream__player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0a0e14;
    display: block;
}

.stream__player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.stream__player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.stream__player--vod:hover img {
    transform: scale(1.04);
}

.stream__player--vod:hover {
    border-color: var(--acc-line);
}

.stream__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.stream__info h3 {
    font-size: 1.1rem;
    line-height: 1.3;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.24rem 0.65rem;
    border-radius: 100px;
    border: 1px solid var(--line-hi);
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dim);
    white-space: nowrap;
}

.pill--accent {
    color: var(--acc);
    border-color: var(--acc-line);
    background: var(--acc-soft);
}

.pill--live {
    color: #ffdfe6;
    border-color: rgba(255, 63, 107, 0.4);
    background: rgba(255, 63, 107, 0.12);
}

.pill--live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--live);
    animation: beat 1.9s infinite;
}

.facts {
    display: grid;
    gap: 0.55rem;
    width: 100%;
    margin-top: auto;
    padding-top: 0.4rem;
}

.facts li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--line);
}

.facts span {
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
}

.facts strong {
    font-family: var(--display);
    font-weight: 600;
    font-size: var(--fs-small);
    font-variant-numeric: tabular-nums;
}

.facts--row {
    display: flex;
    gap: 1.6rem;
    margin: 0.8rem 0 0;
    padding: 0;
}

.facts--row li {
    display: block;
    border: 0;
    padding: 0;
}

.facts--row span {
    display: block;
    margin-bottom: 0.2rem;
}

.offline {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.offline > img {
    width: 52px;
    height: 52px;
    opacity: 0.6;
    flex: none;
}

.offline div {
    flex: 1;
    min-width: 220px;
}

.offline p {
    color: var(--dim);
    font-size: var(--fs-small);
    margin-top: 0.3rem;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.tabs__btn {
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    border: 1px solid transparent;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
    transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.tabs__btn:hover {
    color: var(--ink);
}

.tabs__btn.is-active {
    color: var(--acc);
    border-color: var(--acc-line);
    background: var(--acc-soft);
}

.line {
    position: relative;
    display: grid;
    gap: 0.9rem;
    max-width: 820px;
    margin-inline: auto;
    padding-left: 0;
}

.line::before {
    content: "";
    position: absolute;
    left: 78px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line-hi) 10%, var(--line-hi) 90%, transparent);
}

.step {
    display: grid;
    grid-template-columns: 64px 28px minmax(0, 1fr);
    align-items: start;
    gap: 0;
    position: relative;
}

.step__date {
    text-align: right;
    padding-top: 0.85rem;
}

.step__date strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.step__date span {
    display: block;
    font-family: var(--mono);
    font-size: 0.64rem;
    color: var(--mute);
}

.step__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--line-hi);
    justify-self: center;
    margin-top: 1.05rem;
    z-index: 1;
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step.is-next .step__dot {
    background: var(--acc);
    border-color: var(--acc);
    box-shadow: 0 0 0 4px var(--acc-soft);
}

.step__card {
    padding: 1rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.step:hover .step__card {
    transform: translateX(4px);
    border-color: var(--acc-line);
}

.step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.step__card p {
    color: var(--dim);
    font-size: var(--fs-small);
}

.step__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mute);
}

.step__foot a {
    color: var(--acc);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 340px));
    justify-content: center;
    gap: var(--gap);
}

.card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--acc-line);
    box-shadow: 0 20px 40px -30px rgba(20, 224, 192, 0.9);
}

.card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
}

.card__tag {
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
}

.card__sub {
    font-family: var(--display);
    font-size: var(--fs-small);
    color: var(--acc);
}

.card__text {
    color: var(--dim);
    font-size: var(--fs-small);
}

.card__go {
    margin-top: auto;
    padding-top: 0.8rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: var(--fs-small);
    color: var(--acc);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: gap 0.4s var(--ease);
}

.card__go::after {
    content: "";
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease);
}

.card:hover .card__go::after {
    width: 26px;
}

.note {
    padding: clamp(2rem, 5vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    text-align: center;
    color: var(--dim);
}

.cut {
    position: relative;
    padding: clamp(4rem, 9vw, 6.5rem) 0;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--line);
}

.cut__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(20, 224, 192, 0.1), transparent 70%);
}

.cut__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.cut__tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg), rgba(5, 7, 11, 0.82) 40%, var(--bg));
}

.cut__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.cut__text {
    color: var(--dim);
    max-width: 58ch;
}

.cut__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 0.8rem;
}

.foot {
    border-top: 1px solid var(--line);
    padding: 2rem 0;
}

.foot__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.foot__links {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    font-size: var(--fs-small);
    color: var(--dim);
}

.foot__links a {
    transition: color 0.3s var(--ease);
}

.foot__links a:hover {
    color: var(--acc);
}

.foot__copy {
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-in {
    opacity: 1;
    transform: none;
}

.js .reveal[data-delay="1"] { transition-delay: 0.07s; }
.js .reveal[data-delay="2"] { transition-delay: 0.14s; }
.js .reveal[data-delay="3"] { transition-delay: 0.21s; }
.js .reveal[data-delay="4"] { transition-delay: 0.28s; }
.js .reveal[data-delay="5"] { transition-delay: 0.35s; }

.js .step.is-off {
    display: none;
}

@media (max-width: 900px) {
    .stream {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav__links {
        position: fixed;
        inset: 0 0 auto;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 5rem var(--pad) 2rem;
        background: rgba(5, 7, 11, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateY(-101%);
        transition: transform 0.5s var(--ease);
        border-bottom: 1px solid var(--line);
        z-index: -1;
    }

    .nav__links.is-open {
        transform: translateY(0);
    }

    .nav__links a {
        font-family: var(--display);
        font-size: 1.05rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--line);
    }

    .nav__inner {
        gap: 0.8rem;
    }

    .nav__side {
        margin-left: auto;
        gap: 0.6rem;
    }

    .nav__side .btn {
        display: none;
    }

    .burger {
        display: grid;
    }

    .clips,
    .cards {
        grid-template-columns: 1fr;
    }

    .line::before {
        left: 4px;
    }

    .step {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 0.5rem;
    }

    .step__date {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding: 0 0 0.4rem;
        display: flex;
        align-items: baseline;
        gap: 0.4rem;
    }

    .step__dot {
        grid-column: 1;
        grid-row: 1;
        margin-top: 0.5rem;
    }

    .step__card {
        grid-column: 2;
        grid-row: 2;
    }

    .foot__inner {
        justify-content: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__cue::after,
    .live.is-live i,
    .pill--live i {
        animation: none;
    }
}
