:root {
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #0b1425;
  background: #edf3f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(circle at 15% 10%, #dff8ef 0, transparent 32rem),
    radial-gradient(circle at 90% 90%, #e5eeff 0, transparent 34rem), #edf3f4;
}

.shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
}

.card {
  width: min(100%, 700px);
  padding: clamp(28px, 7vw, 64px);
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: clamp(24px, 5vw, 38px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(11, 20, 37, 0.12);
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #0b1425;
  font-size: clamp(30px, 7vw, 47px);
  font-weight: 900;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.eyebrow {
  margin: 30px 0 10px;
  color: #3563e9;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 7vw, 55px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.lede {
  max-width: 560px;
  margin: 22px auto 0;
  color: #526177;
  font-size: clamp(17px, 3.5vw, 20px);
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #e2f7ef;
  color: #076b4d;
  font-weight: 750;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #07865f;
}

.contact {
  margin: 25px 0 0;
  font-weight: 650;
}

a {
  color: #2857db;
  text-underline-offset: 3px;
}

.disclaimer {
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid #e5eaf1;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 20px;
  font-size: 13px;
}

.legal {
  text-align: left;
}

.legal .brand {
  font-size: 30px;
}

.legal h1 {
  margin-top: 28px;
  font-size: clamp(28px, 6vw, 40px);
}

.legal h2 {
  margin: 26px 0 8px;
  font-size: 19px;
}

.legal p,
.legal li {
  color: #526177;
  line-height: 1.65;
}

.legal nav {
  justify-content: flex-start;
}

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