:root {
  color-scheme: light;
  --ink: #10233f;
  --muted: #5d6c7f;
  --canvas: #f3f6f8;
  --surface: #fff;
  --brand: #0b7a68;
  --brand-soft: #e1f4ef;
  --navy: #0a1b33;
  --line: #d9e1e7;
  font-family:
    ui-rounded,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
}
a {
  color: var(--brand);
}
.shell {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 850;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: clamp(28px, 7vw, 64px);
  margin: 18px 0 28px;
}
.eyebrow {
  color: #63d9c4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.hero p {
  color: #c3cfdd;
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.button {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 14px;
  background: var(--brand);
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.button.secondary {
  background: #ffffff18;
  border: 1px solid #ffffff38;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 32px #10233f0b;
}
.card h2,
.card h3 {
  margin-top: 0;
}
.card p {
  color: var(--muted);
  line-height: 1.6;
}
.legal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 6vw, 48px);
  margin: 18px 0 34px;
}
.legal h1 {
  font-size: clamp(2rem, 7vw, 3.4rem);
}
.legal h2 {
  margin-top: 32px;
  font-size: 1.3rem;
}
.legal p,
.legal li {
  color: #3f5066;
  line-height: 1.72;
}
.notice {
  background: var(--brand-soft);
  color: #075e52;
  border-radius: 16px;
  padding: 16px;
  line-height: 1.55;
}
.support-list {
  display: grid;
  gap: 12px;
}
.support-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.support-item h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.support-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
footer {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 12px 0 34px;
}
@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
  }
  .nav-links {
    gap: 10px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
