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

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top right, #153c5e 0, #07111f 46rem);
}

.container {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto;
  padding: 5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 .65rem;
  color: #7dd3fc;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
}

h1, h2 { line-height: 1.15; }

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.4rem, 9vw, 4.75rem);
  letter-spacing: -.055em;
}

h2 { margin-top: 0; font-size: 1.15rem; }

p, li { line-height: 1.65; }

.lede {
  max-width: 42rem;
  color: #c7d7e9;
  font-size: 1.17rem;
}

.card {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border: 1px solid #2d4d6d;
  border-radius: 1rem;
  background: rgb(8 24 42 / .72);
}

.links { display: grid; padding: 0; overflow: hidden; }

.links a {
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid #2d4d6d;
  text-decoration: none;
}

.links a:last-child { border-bottom: 0; }
.links a:hover { background: #123452; }

a { color: #7dd3fc; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid #fbbf24; outline-offset: 3px; }

.support { color: #c7d7e9; font-size: .94rem; }

.back { display: inline-block; margin-bottom: 2.75rem; font-weight: 700; }
.prose { max-width: 44rem; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; }

label { display: block; margin: 1rem 0 .4rem; font-weight: 700; }

input[type="text"], input[type="tel"] {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid #557898;
  border-radius: .55rem;
  background: #06111f;
  color: #eaf2ff;
  font: inherit;
}

.check { display: flex; gap: .7rem; align-items: flex-start; margin: 1.4rem 0; font-weight: 400; }
.check input { width: 1.15rem; height: 1.15rem; margin-top: .25rem; }

button {
  cursor: pointer;
  padding: .8rem 1rem;
  border: 0;
  border-radius: .55rem;
  background: #7dd3fc;
  color: #06111f;
  font: inherit;
  font-weight: 800;
}

button:hover { background: #bae6fd; }

.notice { color: #c7d7e9; font-size: .92rem; }
.error { min-height: 1.5rem; color: #fca5a5; font-weight: 700; }

@media (max-width: 40rem) { .container { padding-top: 3rem; } .card { padding: 1.15rem; } }
