:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #07091a;
  color: #edf5ff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, #075381 0, transparent 34rem),
    radial-gradient(circle at 84% 16%, #6b163c 0, transparent 32rem),
    linear-gradient(150deg, #07091a, #10142f 48%, #160b24);
}

a {
  color: #8fe8ff;
}

a:focus-visible {
  outline: 3px solid #ffe08a;
  outline-offset: 4px;
}

.shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 36px;
}

.hero {
  padding: 28px 0 38px;
  text-align: center;
}

.brand-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 86px;
  margin-bottom: 20px;
}

.ship {
  display: block;
  width: 38px;
  height: 68px;
  border: 4px solid #f7fbff;
  border-radius: 50% 50% 36% 36%;
  transform: rotate(5deg);
  box-shadow: 0 0 26px currentColor;
}

.ship.red {
  color: #ff667d;
  background: linear-gradient(#fff, #ff5a72 28%, #941e48);
  transform: rotate(-5deg);
}

.ship.blue {
  color: #4ed8ff;
  background: linear-gradient(#fff, #24cfff 28%, #075892);
}

.rift {
  width: 5px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(#eaf8ff, #67d9ff 48%, #ff6f87);
  box-shadow: 0 0 20px #70dfff88;
}

.eyebrow {
  margin: 0 0 10px;
  color: #89ddff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  color: #fff;
  line-height: 1.08;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 10vw, 5rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: 1.25rem;
}

.lede {
  max-width: 620px;
  margin: 0 auto;
  color: #d7e5ff;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.65;
}

.card {
  margin: 16px 0;
  padding: 22px;
  border: 1px solid #bcecff38;
  border-radius: 20px;
  background: linear-gradient(145deg, #18264dd6, #221631d6);
  box-shadow: 0 18px 48px #0008;
}

.card p,
.card li {
  color: #d9e5fa;
  line-height: 1.65;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin: 28px 0;
}

.muted,
.updated,
footer {
  color: #aebdd9;
}

footer {
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.policy {
  padding-top: 36px;
}

.policy > h1 {
  max-width: 680px;
  font-size: clamp(2.1rem, 8vw, 4rem);
}

.back {
  display: inline-block;
  margin-bottom: 38px;
  text-decoration: none;
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 22px, 760px);
    padding-top: 30px;
  }

  .card {
    padding: 18px;
    border-radius: 16px;
  }
}

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