:root {
  --canvas: #f3f1ec;
  --ink: #1c1b19;
  --muted: #8a8680;
  --brand: #1500ce;
  --radius: 22px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --sans: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --max: 960px;
}

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

body {
  margin: 0;
  min-height: 100svh;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86em;
}

.skip {
  position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.skip:focus-visible {
  left: 12px;
  top: 12px;
  z-index: 30;
  width: auto;
  height: auto;
  clip-path: none;
  overflow: visible;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--canvas);
  border-radius: 999px;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}

.nav-brand img {
  height: 22px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.01em;
  transition: transform 140ms ease-out, opacity 160ms ease;
}

.btn-small {
  height: 30px;
  padding: 0 12px;
  font-size: 13px;
}

.btn:active {
  transform: scale(0.97);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 56px;
  text-align: center;
}

.hero h1 {
  margin: 0 auto;
  max-width: 16ch;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(36px, 5.6vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--brand);
}

.lede {
  margin: 16px auto 0;
  max-width: 38ch;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.meta {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hint {
  margin: 6px auto 32px;
  max-width: 44ch;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.ripple {
  pointer-events: none;
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(680px, 92vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.ripple span {
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
  border-radius: 50%;
  transform: scale(0.35);
  animation: ripple 8s linear infinite;
}

.ripple span:nth-child(2) {
  animation-delay: -2s;
}
.ripple span:nth-child(3) {
  animation-delay: -4s;
}
.ripple span:nth-child(4) {
  animation-delay: -6s;
}

@keyframes ripple {
  from {
    transform: scale(0.28);
    opacity: 0.7;
  }
  to {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero > *:not(.ripple) {
  position: relative;
}

.film {
  margin: 0 auto;
  width: min(var(--max), 100%);
  max-height: min(52svh, 540px);
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #161613;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 40px 90px rgba(21, 0, 206, 0.12);
}

.film-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  pointer-events: none;
}

.film-video::-webkit-media-controls,
.film-video::-webkit-media-controls-enclosure,
.film-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.how {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 28px 48px;
}

.how ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-index {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brand);
}

.how h2 {
  margin: 0;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.how p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.forever {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 28px 72px;
}

.forever h2 {
  margin: 0;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

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

.legal {
  max-width: 36rem;
  margin: 0 auto;
  padding: 12px 28px 72px;
}

.legal h1 {
  margin: 0;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.legal .updated {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.legal h2 {
  margin: 36px 0 8px;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.legal p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
}

.legal a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.legal a:active {
  opacity: 0.7;
}

.footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.footer a:active {
  opacity: 0.7;
}

.cookies {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  max-width: 560px;
  margin-left: auto;
  padding: 14px 16px 14px 18px;
  background: color-mix(in srgb, var(--canvas) 88%, white);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(28, 27, 25, 0.12);
  backdrop-filter: blur(16px);
}

.cookies[hidden] {
  display: none;
}

.cookies p {
  margin: 0;
  flex: 1 1 220px;
  font-size: 13px;
  line-height: 1.4;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
}

.cookies a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.cookies-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.text-btn:active {
  transform: scale(0.97);
}

button.btn {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 0.92;
  }

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

  .footer a:hover,
  .legal a:hover {
    border-bottom-color: var(--ink);
  }
}

@media (max-width: 860px) {
  .how ol,
  .forever {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 28px 20px 48px;
  }

  .nav,
  .how,
  .forever,
  .legal,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ripple span {
    animation: none;
    opacity: 0.25;
    transform: scale(0.7);
  }
}
