:root {
  color: #101828;
  background: #f5f8ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(10, 132, 255, 0.18), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(175, 82, 222, 0.14), transparent 30rem),
    #f6f8ff;
}

a {
  color: #0a84ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.brand {
  color: #101828;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero,
.card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(22px) saturate(145%);
}

.hero {
  border-radius: 34px;
  padding: clamp(28px, 6vw, 58px);
}

.eyebrow {
  margin: 0 0 10px;
  color: #0a84ff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}

p,
li {
  color: #475467;
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  font-size: 1.12rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  border-radius: 26px;
  padding: 22px;
}

.page {
  display: grid;
  gap: 18px;
}

.legal {
  border-radius: 30px;
  padding: clamp(24px, 5vw, 44px);
}

.meta {
  color: #667085;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer {
  margin-top: 36px;
  color: #667085;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .grid {
    grid-template-columns: 1fr;
  }
}
