/* Clipzy: "Segmentband", built in soft panels.
 *
 * Two things hold the page together. The first is the segment: Clipzy records
 * into a ring of short segments, so the page composes in segments on a band,
 * time running left to right, the newest struck live. The second is meaning in
 * colour: amber is still in the buffer and about to be lost, green is written
 * to disk and permanent. Nothing else is coloured.
 *
 * Surfaces are large soft panels with a visible edge rather than shadowed
 * cards, and rows of related facts sit inside pill rails. Generous block
 * rhythm, warm dark ground, one accent behaving as a light.
 */

@font-face {
  font-family: "Jakarta";
  src: url("/fonts/jakarta.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

@view-transition {
  navigation: auto;
}

:root {
  color-scheme: dark;

  --ground: #14161d;
  --ground-2: #191c25;
  --ground-3: #1f2430;
  --sink: #101219;

  --line: rgb(226 233 247 / 0.11);
  --line-2: rgb(226 233 247 / 0.2);

  --ink: #e9edf6;
  --ink-2: #b4bccd;
  --ink-3: #8d95a6;

  /* Still in the buffer. Gone in fifteen minutes. */
  --live: #ff9a3c;
  --live-ink: #1c1105;
  /* Written to disk. Permanent. */
  --kept: #56d79b;

  --text: "Jakarta", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --r-panel: 26px;
  --r-tile: 15px;
  --pad: clamp(20px, 4.5vw, 56px);
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --seg: 24px;
  --gap: 4px;
}

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

html {
  scrollbar-color: var(--ground-3) var(--ground);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--ground);
}
::-webkit-scrollbar-thumb {
  background: var(--ground-3);
  border: 3px solid var(--ground);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2b3140;
}

::selection {
  background: color-mix(in srgb, var(--live) 32%, transparent);
  color: #fff;
}

/* A fine grain over everything, so the flat dark grounds do not band. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.006em;
  caret-color: var(--live);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: var(--ink);
  text-decoration-color: color-mix(in srgb, var(--live) 55%, transparent);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-color: var(--live);
}

:focus-visible {
  outline: 2px solid var(--live);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 24px;
  top: 14px;
  z-index: 60;
  background: var(--ground-2);
  border: 1.5px solid var(--line-2);
  padding: 10px 18px;
  border-radius: 99px;
}

/* ------------------------------------------------------------- header --- */

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
}

.top .wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
  color: var(--ink-2);
}
.logo svg {
  width: 27px;
  height: 27px;
  display: block;
}
.logo b {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.top nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top nav a:not(.act) {
  font-size: 15px;
  color: var(--ink-2);
  text-decoration: none;
}
.top nav a:not(.act):hover {
  color: var(--ink);
}

/* ------------------------------------------------------------- button --- */

.act {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--live);
  color: var(--live-ink);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.012em;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: 99px;
  text-decoration: none;
  transition:
    background 200ms var(--ease),
    transform 200ms var(--ease);
}
.act:not(.quiet):hover {
  background: #ffae60;
  color: var(--live-ink);
  transform: translateY(-2px);
  text-decoration: none;
}
.act:active {
  transform: translateY(0);
}
.act svg {
  width: 16px;
  height: 16px;
}

.act.quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.act.quiet:hover {
  background: var(--ground-2);
  transform: translateY(-2px);
  text-decoration: none;
}

.act.big {
  font-size: 16px;
  padding: 15px 28px;
}

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

.hero {
  padding-top: clamp(40px, 6vw, 84px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  width: min(1240px, 130vw);
  height: 620px;
  translate: -50% 0;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--live) 10%, transparent),
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}

h1 {
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

h1 .lit {
  color: var(--live);
  position: relative;
  white-space: nowrap;
}
/* The word is struck, the way the live segment is struck on the band. */
h1 .lit::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: -0.08em;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(
    to right,
    transparent,
    var(--live) 14%,
    var(--live) 86%,
    transparent
  );
  opacity: 0.5;
}

.hero-grid > p {
  font-size: clamp(17px, 1.5vw, 19.5px);
  color: var(--ink-2);
  max-width: 46ch;
  padding-bottom: 6px;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: clamp(26px, 3.5vw, 40px);
}

.cta small {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-3);
}

/* One pill rail holding facts that would otherwise become a card grid.
 * It hugs its contents: stretched across the full column the four numbers end
 * up so far apart that they stop reading as one row. */
.strip {
  display: inline-grid;
  grid-auto-flow: column;
  margin-top: clamp(28px, 3.6vw, 44px);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  padding: 10px 6px;
  background: color-mix(in srgb, var(--ground-2) 70%, transparent);
}

.strip div {
  padding: 4px 20px;
}
.strip div + div {
  border-left: 1px solid var(--line);
}

.strip b {
  display: block;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}
.strip span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
}

/* --------------------------------------------------------------- demo --- */
/* The application drawn into the page. Not a screenshot: a schematic that says
 * what the window holds and what the buffer is doing underneath it. */

.demo {
  margin-top: clamp(40px, 6vw, 76px);
}

.frame {
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-panel);
  background: color-mix(in srgb, var(--ground-2) 82%, transparent);
  overflow: hidden;
}

.frame-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--sink);
}
.frame-top i {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: var(--ground-3);
}
.frame-top span {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}

.board {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  min-height: 330px;
}

.rail {
  border-right: 1px solid var(--line);
  padding: 20px 18px;
  background: color-mix(in srgb, var(--sink) 55%, transparent);
}
.rail b {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 400;
}
.rail a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 9px;
  transition: background 160ms var(--ease);
}
.rail a em {
  font-style: normal;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12.5px;
}
.rail a:hover,
.rail a.on {
  background: var(--ground-3);
  color: var(--ink);
}

.stage {
  padding: 18px 20px 20px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.recording {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.recording .dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--live);
  outline: 3px solid color-mix(in srgb, var(--live) 22%, transparent);
}
.recording .sep {
  color: var(--ink-3);
}
.recording code {
  font-size: 13px;
  color: var(--ink-3);
  background: none;
  border: 0;
  padding: 0;
}

.clips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.clip {
  border: 1px solid var(--line);
  border-radius: var(--r-tile);
  background: var(--ground-3);
  overflow: hidden;
}
.clip .still {
  height: 84px;
  display: grid;
  place-items: center;
  background: var(--sink);
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.clip .meta {
  padding: 10px 12px 12px;
}
.clip .meta b {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
}
.clip .meta span {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}
.clip.fresh .still {
  color: var(--kept);
}

/* --------------------------------------------------------------- band --- */

.band-wrap {
  border-top: 1px solid var(--line);
  background: var(--sink);
  padding: 16px 14px 18px;
}

.band {
  position: relative;
  height: 104px;
}

.band-scroll {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 100%);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 100%);
}

.band-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  gap: var(--gap);
  animation: drift 34s linear infinite;
  will-change: transform;
}

@keyframes drift {
  /* One period equals the repeated half of the track, so the loop never
   * appears to restart. */
  to {
    transform: translate(calc(-50% - var(--gap) / 2), -50%);
  }
}

.band-track i {
  display: block;
  flex: none;
  width: var(--seg);
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--ground-3), var(--ground-2));
  border: 1px solid var(--line);
}
.band-track i.tall {
  height: 64px;
}
.band-track i.short {
  height: 26px;
}
.band-track i.kept {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--kept) 30%, var(--ground-3)),
    color-mix(in srgb, var(--kept) 14%, var(--ground-2))
  );
  border-color: color-mix(in srgb, var(--kept) 50%, transparent);
}

.band-now {
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: clamp(18px, 6vw, 78px);
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--live) 16%,
    var(--live) 84%,
    transparent
  );
}

/* The light the marker throws sideways: a falloff, not a halo. */
.band-now::before {
  content: "";
  position: absolute;
  inset: 0 -40px;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--live) 24%, transparent),
    transparent
  );
  pointer-events: none;
}

.band-now::after {
  content: "jetzt";
  position: absolute;
  top: -3px;
  right: 9px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--live);
}

.band-tag {
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.band-tag span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kept);
  border: 1px solid color-mix(in srgb, var(--kept) 42%, transparent);
  background: color-mix(in srgb, var(--kept) 10%, var(--sink));
  padding: 4px 12px;
  border-radius: 999px;
}

/* ------------------------------------------------------------- blocks --- */

.block {
  padding-block: clamp(84px, 11vw, 150px) 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 18ch;
  text-wrap: balance;
}

.lede {
  margin-top: 16px;
  max-width: 64ch;
  font-size: 18px;
  color: var(--ink-2);
}

/* ----------------------------------------------------------- the walk --- */

.walk {
  list-style: none;
  margin: clamp(34px, 5vw, 56px) 0 0;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-panel);
  background: color-mix(in srgb, var(--ground-2) 60%, transparent);
  padding: 30px;
}

@media (max-width: 760px) {
  .walk {
    padding: 18px;
  }
}

.walk li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: clamp(18px, 3vw, 34px);
  padding: 22px 0;
}
.walk li + li {
  border-top: 1px solid var(--line);
}

.walk .when {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--live);
  padding-top: 7px;
}
.walk li:last-child .when {
  color: var(--kept);
}

.walk h3 {
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.028em;
  font-weight: 700;
  margin-bottom: 6px;
}
.walk p {
  color: var(--ink-2);
  max-width: 62ch;
  font-size: 16px;
}

/* ---------------------------------------------------------- annotated --- */

.annotated {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
}

.panel {
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-panel);
  background: color-mix(in srgb, var(--ground-2) 70%, transparent);
  padding: 28px;
}

@media (max-width: 760px) {
  .panel {
    padding: 18px;
  }
}

.notes {
  display: grid;
  gap: 22px;
}
.notes h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 5px;
}
.notes p {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 54ch;
}

/* ------------------------------------------------------------- tracks --- */

.track {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.track + .track {
  border-top: 1px solid var(--line);
}
.track .name {
  font-size: 15px;
  font-weight: 600;
}
.track .name em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 400;
}
.track .lane {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 26px;
}
.track .lane b {
  display: block;
  flex: 1;
  border-radius: 99px;
  background: color-mix(in srgb, var(--live) 62%, transparent);
}
.track .val {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------- status --- */

.status {
  margin-top: clamp(30px, 4vw, 48px);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-panel);
  background: color-mix(in srgb, var(--ground-2) 60%, transparent);
  padding: 24px 30px;
}

@media (max-width: 760px) {
  .status {
    padding: 14px 18px;
  }
}

.row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 15px 0;
  font-size: 16px;
}
.row + .row {
  border-top: 1px solid var(--line);
}

/* Certainty is carried by the weight of the bar as well as by its colour, so
 * the list still reads when colour is lost. */
.row .state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.row .state::before {
  content: "";
  width: 24px;
  height: 5px;
  border-radius: 99px;
  background: currentColor;
}
.row.done .state {
  color: var(--kept);
}
.row.now .state {
  color: var(--live);
}
.row.now .state::before {
  height: 3px;
}
.row.next .state::before {
  height: 5px;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.row.next {
  color: var(--ink-2);
}

/* -------------------------------------------------------------- facts --- */

.facts {
  display: inline-grid;
  grid-auto-flow: column;
  margin-top: clamp(30px, 4vw, 48px);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  padding: 10px 6px;
  background: color-mix(in srgb, var(--ground-2) 60%, transparent);
}
.facts div {
  padding: 4px 22px;
}
.facts div + div {
  border-left: 1px solid var(--line);
}
.facts b {
  display: block;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}
.facts span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
}

.figures {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin-top: clamp(26px, 3.4vw, 40px);
}
.figures th,
.figures td {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
}
.figures th {
  font-weight: 400;
  color: var(--ink-2);
  width: 56%;
}
.figures td {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
}
.figures caption {
  text-align: left;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding-bottom: 14px;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--ground-3);
  border: 1px solid var(--line);
  padding: 1px 7px;
  border-radius: 7px;
  color: var(--ink);
}

.note {
  margin-top: 30px;
  max-width: 66ch;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-tile);
  background: color-mix(in srgb, var(--ground-2) 60%, transparent);
  padding: 18px 22px;
  color: var(--ink-2);
  font-size: 15.5px;
}

/* ---------------------------------------------------------- close cta --- */

.close {
  margin-top: clamp(70px, 9vw, 120px);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-panel);
  background: var(--ground-2);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.close::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    110% 180% at 90% 0%,
    color-mix(in srgb, var(--live) 14%, transparent),
    transparent 62%
  );
  pointer-events: none;
}
.close h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 8px;
}
.close p {
  color: var(--ink-2);
  max-width: 46ch;
}

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

footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(64px, 8vw, 104px);
  padding: 32px 0 56px;
  color: var(--ink-3);
  font-size: 14px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
footer a {
  color: var(--ink-2);
}

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

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .annotated {
    grid-template-columns: 1fr;
  }
  .board {
    grid-template-columns: 1fr;
  }
  .rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    padding: 12px 16px;
  }
  .rail b {
    margin: 0 6px 0 0;
    white-space: nowrap;
  }
  .rail a {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .top nav a:not(.act) {
    display: none;
  }
  .strip,
  .facts {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-panel);
    padding: 14px;
  }
  .strip div:nth-child(3),
  .facts div:nth-child(3) {
    border-left: 0;
  }
  .strip div:nth-child(n + 3),
  .facts div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 6px;
  }
  .clips {
    grid-template-columns: 1fr 1fr;
  }
  .clips .clip:nth-child(3) {
    display: none;
  }
  .walk li {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .walk .when {
    padding-top: 0;
  }
  .track {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .track .val {
    text-align: left;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .close {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .band-track {
    animation: none;
  }
  .act,
  .rail a {
    transition: none;
  }
}
