:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f7fb;
  color: #172033;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgb(30 102 245 / 12%), transparent 38rem),
    #f4f7fb;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.panel {
  width: min(100%, 38rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid #dce4f0;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1.25rem 4rem rgb(23 32 51 / 10%);
}

.brand {
  margin-bottom: 1.25rem;
  color: #1857c9;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 5vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

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

.lead {
  margin-bottom: 1.75rem;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid #dce4f0;
  border-radius: 0.85rem;
  background: #f8fafc;
  opacity: 0.72;
}

.step.active {
  background: #fff;
  opacity: 1;
}

.step-number {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: #dfe9fb;
  color: #1857c9;
  font-weight: 800;
}

.step-content h2 {
  margin: 0.25rem 0 0.5rem;
  color: #172033;
  font-size: 1.08rem;
}

.step-content p {
  margin: 0 0 1rem;
}

ol {
  margin: 1.5rem 0;
  padding-left: 1.35rem;
}

li + li {
  margin-top: 0.45rem;
}

button,
.button-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 0;
  border-radius: 0.65rem;
  background: #1857c9;
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

button:hover,
.button-link:hover {
  background: #12479f;
}

button:focus-visible,
.button-link:focus-visible {
  outline: 3px solid rgb(24 87 201 / 35%);
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  font-size: 0.93rem;
}

.privacy {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid #e5eaf2;
  font-size: 0.85rem;
}

.result.success {
  border-top: 0.35rem solid #17834f;
}

.result.error {
  border-top: 0.35rem solid #bd2c2c;
}

.error,
.result.error p {
  color: #982323;
}

[hidden] {
  display: none !important;
}
