:root {
  color-scheme: dark;
  --bg: #000;
  --text: #f1f1f1;
  --muted: #8f8f8f;
  --red: #ff0000;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

button {
  font: inherit;
}

.home,
.home .poster {
  background: #000;
  color: #fff;
}

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

.poster {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 48px;
}

.manifesto {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 96px));
  font-size: 15px;
  line-height: 1.42;
  letter-spacing: 0;
}

.manifesto h1 {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: lowercase;
}

.manifesto p {
  margin: 0;
  color: #fff;
}

.manifesto-copy-mobile {
  display: none;
}

.red {
  color: var(--red);
}

.poster-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-top: 146px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.35;
}

.poster-links a:hover {
  color: #fff;
}

.poster-links span {
  opacity: 0.48;
}

.clock {
  position: absolute;
  z-index: 2;
  top: 52px;
  right: 48px;
  color: var(--red);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.white-orb {
  position: absolute;
  z-index: 1;
  left: 50%;
  --orb-size: min(41.6vw, 656px);
  bottom: calc(var(--orb-size) / -2);
  width: var(--orb-size);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff0000 0%, #990000 100%);
  overflow: hidden;
  transform: translateX(-50%);
  box-shadow: 0 0 180px 96px rgba(153, 0, 0, 0.48);
  -webkit-tap-highlight-color: transparent;
}

.white-orb:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 8px;
}

.legal-page {
  min-height: 100svh;
  padding: 48px;
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 112px;
  color: #a9a9a9;
  font-size: 15px;
  line-height: 1.2;
}

.legal-nav > a {
  color: var(--red);
  font-weight: 400;
}

.legal-nav div {
  display: flex;
  gap: 18px;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--text);
}

.legal-content {
  width: min(720px, 100%);
}

.legal-content h1 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: lowercase;
}

.legal-content .updated {
  margin: 42px 0 0;
  color: var(--muted);
}

.legal-content .legal-subtitle {
  margin: 0 0 42px;
  color: var(--muted);
}

.legal-content h2 {
  margin: 34px 0 4px;
  color: var(--text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.legal-content a {
  color: var(--muted);
}

.legal-content a:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .poster,
  .legal-page {
    padding: 26px 22px;
  }

  .manifesto {
    width: min(100%, 520px);
    padding-right: 0;
    font-size: 15px;
  }

  .manifesto-copy-desktop {
    display: none;
  }

  .manifesto-copy-mobile {
    display: block;
  }

  .manifesto h1,
  .poster-links,
  .clock,
  .legal-nav,
  .legal-content h1,
  .legal-content h2,
  .legal-content p {
    font-size: 15px;
  }

  .clock {
    display: none;
  }

  .poster-links {
    margin-top: 118px;
  }

  .white-orb {
    --orb-size: 78vw;
  }

  .legal-nav {
    margin-bottom: 86px;
  }
}
