:root {
  color-scheme: light;
  --ink: #07143a;
  --muted: #64748b;
  --line: rgba(16, 40, 82, 0.12);
  --blue: #0d83e8;
  --blue-deep: #075cc4;
  --mist: #edf7ff;
  --card: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-rounded, "Avenir Next", "Nunito Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(59, 166, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 86% 22%, rgba(38, 108, 230, 0.2), transparent 28rem),
    linear-gradient(180deg, #f7fcff 0%, #e8f5ff 52%, #dfefff 100%);
}

a {
  color: var(--blue-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.drop {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #35a9ff, #086bd8);
  border-radius: 56% 56% 62% 38% / 60% 60% 42% 42%;
  transform: rotate(45deg);
  box-shadow: 0 18px 32px rgba(13, 131, 232, 0.28);
}

.drop span {
  transform: rotate(-45deg);
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  gap: 28px;
  padding: 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(34, 82, 136, 0.16);
  backdrop-filter: blur(24px);
}

.eyebrow {
  margin: 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  font-weight: 850;
  background: linear-gradient(135deg, #1598ff, #086bd8);
  box-shadow: 0 18px 34px rgba(13, 131, 232, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: white;
  box-shadow: none;
  border: 1px solid var(--line);
}

.legal-card {
  margin-top: 22px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(34, 82, 136, 0.12);
}

.legal-card h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 56px);
}

.updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

h2 {
  margin: 34px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

p,
li {
  color: #334155;
  font-size: 16px;
  line-height: 1.72;
}

ul {
  padding-left: 22px;
}

.footer {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 980px);
    padding-top: 22px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  .hero,
  .legal-card {
    padding: 26px;
    border-radius: 24px;
  }
}
