* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--gi-ink);
  background:
    radial-gradient(circle at top left, rgba(36,182,238,.18), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, var(--gi-bg) 52%, #edf8ff 100%);
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
input, select, textarea {
  color: var(--gi-ink);
  background: #fff;
  border: 1px solid var(--gi-line);
  border-radius: 12px;
  padding: .76rem .85rem;
  outline: none;
  transition: border-color var(--speed), box-shadow var(--speed), background var(--speed);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gi-sky-500);
  box-shadow: 0 0 0 4px rgba(36, 182, 238, .16);
}
textarea { resize: vertical; }
label { font-weight: 650; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(1.55rem, 2vw, 2.35rem); line-height: 1.05; margin-bottom: 0; color: var(--gi-blue-950); }
h2 { font-size: clamp(1.25rem, 1.8vw, 1.8rem); margin-bottom: 0; color: var(--gi-blue-950); }
h3 { font-size: 1.02rem; margin-bottom: .7rem; color: var(--gi-blue-900); }
a { color: var(--gi-blue-700); }
small, .hint { color: var(--gi-muted); }
.skip-link {
  position: absolute;
  left: 1rem;
  top: .5rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--gi-blue-900);
  color: white;
  padding: .6rem .85rem;
  border-radius: 10px;
  transition: transform var(--speed);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.is-hidden { display: none !important; }
.full { width: 100%; }
.span-2 { grid-column: span 2; }
.eyebrow {
  color: var(--gi-blue-700);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
::selection { background: rgba(36,182,238,.24); }
