:root {
  color-scheme: light;
  --ink: #102a43;
  --muted: #52677a;
  --line: #d9e2ec;
  --blue: #1565a9;
  --green: #1b7f5a;
  --bg: #f4f8fb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}
.enroll-shell {
  align-items: start;
}
.panel {
  width: min(760px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 18px 48px rgba(16, 42, 67, 0.12);
}
.enroll-panel {
  width: min(1040px, 100%);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.notice {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #b7791f;
  background: #fff8e6;
  color: #4d3b12;
  line-height: 1.45;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}
.primary {
  background: var(--blue);
  color: #fff;
}
.secondary {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
}
.status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.steps {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  padding-left: 22px;
}
.enrollment-flow {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.enrollment-flow li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}
h2 {
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.25;
}
.enrollment-flow p,
.help-grid p,
.help-grid li {
  color: var(--muted);
  line-height: 1.5;
}
.enrollment-flow p {
  margin: 0;
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 28px 0;
}
.help-grid section {
  min-width: 0;
}
.help-grid ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
@media (max-width: 720px) {
  .shell {
    padding: 18px;
  }
  .panel {
    padding: 24px;
  }
  h1 {
    font-size: 28px;
  }
  .actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .help-grid {
    grid-template-columns: 1fr;
  }
}
