:root {
  --req-ink: #14233b;
  --req-muted: #5d6b7f;
  --req-blue: #087fdb;
  --req-blue-dark: #075aa4;
  --req-navy: #0e2a4d;
  --req-sky: #eaf6ff;
  --req-cyan: #23c2df;
  --req-green: #14865c;
  --req-green-bg: #eaf8f2;
  --req-amber: #9b5b00;
  --req-amber-bg: #fff6df;
  --req-red: #b13b3b;
  --req-red-bg: #fff0f0;
  --req-line: #dce5ef;
  --req-soft: #f5f8fc;
  --req-white: #ffffff;
  --req-shadow: 0 16px 45px rgba(18, 49, 82, 0.12);
  --req-radius: 18px;
}

.req-page,
.req-page * {
  box-sizing: border-box;
}

.req-page {
  color: var(--req-ink);
  background: var(--req-white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  /* Sticky descendants must remain relative to the viewport, not this wrapper. */
  overflow: visible;
}

.req-page h1,
.req-page h2,
.req-page h3,
.req-page h4,
.req-page p,
.req-page li,
.req-page label,
.req-page input,
.req-page select,
.req-page button,
.req-page summary,
.req-page span {
  font-family: "Segoe UI", Arial, sans-serif;
}

.req-page h1,
.req-page h2,
.req-page h3,
.req-page h4 {
  color: var(--req-ink);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.req-page h1 {
  color: var(--req-white);
  font-size: clamp(38px, 6vw, 68px);
  margin: 18px 0 22px;
  max-width: 900px;
}

.req-page h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 18px;
}

.req-page h3 {
  font-size: clamp(22px, 2.6vw, 29px);
  margin: 0 0 12px;
}

.req-page h4 {
  font-size: 20px;
  margin: 0 0 8px;
}

.req-page p {
  color: var(--req-muted);
  font-size: 17px;
  line-height: 1.68;
  margin: 0 0 16px;
}

.req-page a {
  color: var(--req-blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.req-page a:hover,
.req-page a:focus {
  color: var(--req-blue);
}

.req-page a:focus-visible,
.req-page button:focus-visible,
.req-page input:focus-visible,
.req-page select:focus-visible,
.req-page summary:focus-visible {
  outline: 3px solid #f3bd28;
  outline-offset: 3px;
}

.req-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.req-container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.req-container--narrow {
  width: min(860px, calc(100% - 36px));
}

.req-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--req-blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.req-kicker::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--req-cyan);
  border-radius: 999px;
}

.req-hero {
  position: relative;
  padding: 58px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(35, 194, 223, 0.36), transparent 27%),
    linear-gradient(125deg, #082647 0%, #075b9f 58%, #087fdb 100%);
}

.req-hero::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  content: "";
  border: 54px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.req-breadcrumbs {
  position: relative;
  z-index: 1;
  color: #d8ecff;
  font-size: 14px;
}

.req-page .req-breadcrumbs a {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  color: #ffffff !important;
  background: rgba(3, 27, 52, 0.28);
  text-decoration: none;
}

.req-page .req-breadcrumbs a:hover,
.req-page .req-breadcrumbs a:focus {
  color: #082647 !important;
  background: #ffffff;
}

.req-breadcrumbs span {
  padding: 0 7px;
}

.req-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(285px, 0.72fr);
  gap: 36px;
  align-items: center;
  margin-top: 28px;
}

.req-hero .req-kicker {
  color: #bceeff;
}

.req-hero__lede {
  max-width: 800px;
  color: #e8f4ff !important;
  font-size: clamp(19px, 2.4vw, 24px) !important;
  line-height: 1.52 !important;
}

.req-hero__actions,
.req-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.req-button,
.req-page a.req-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.req-button:hover,
.req-button:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

.req-button--primary {
  color: #07335c !important;
  background: #f7c948;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.19);
}

.req-button--secondary {
  color: var(--req-white) !important;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.req-button--blue {
  color: var(--req-white) !important;
  background: var(--req-blue-dark);
  box-shadow: 0 9px 22px rgba(7, 90, 164, 0.2);
}

.req-button--outline {
  color: var(--req-blue-dark) !important;
  border-color: var(--req-blue-dark);
  background: var(--req-white);
}

.req-verified-card {
  position: relative;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--req-radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  color: var(--req-white);
  backdrop-filter: blur(10px);
}

.req-verified-card__eyebrow {
  display: block;
  color: #bfeeff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.req-verified-card strong {
  display: block;
  margin: 8px 0 7px;
  font-size: 22px;
}

.req-verified-card p {
  color: #e7f4ff;
  font-size: 14px;
  line-height: 1.5;
}

.req-page .req-verified-card a.req-verified-card__link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 8px 13px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  color: #082647 !important;
  background: #ffffff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.req-page .req-verified-card a.req-verified-card__link:hover,
.req-page .req-verified-card a.req-verified-card__link:focus {
  border-color: #f7c948;
  color: #082647 !important;
  background: #f7c948;
}

.req-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.req-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #dff5ff;
  background: rgba(3, 27, 52, 0.36);
  font-size: 12px;
  font-weight: 750;
}

.req-page .req-jump {
  position: -webkit-sticky !important;
  position: sticky !important;
  z-index: 60;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--req-line);
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(18, 49, 82, 0.08);
}

.req-jump__inner {
  display: flex;
  gap: 5px;
  align-items: center;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
}

.req-jump a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 8px;
  color: #344861;
  font-size: 13px;
  text-decoration: none;
}

.req-jump a:hover,
.req-jump a:focus,
.req-jump a.is-active {
  color: var(--req-blue-dark);
  background: var(--req-sky);
}

.req-jump__label {
  flex: 0 0 auto;
  margin-right: 5px;
  color: var(--req-ink);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.req-section {
  padding: 76px 0;
  scroll-margin-top: 70px;
}

.req-section--soft {
  background: var(--req-soft);
}

.req-page section.req-section.req-section--navy {
  color: var(--req-white);
  background-color: #0e2a4d !important;
  background-image:
    radial-gradient(circle at 88% 12%, rgba(35, 194, 223, 0.24), transparent 28%),
    linear-gradient(125deg, #071f3a 0%, #0e2a4d 54%, #075a91 100%) !important;
}

.req-page .req-section--navy > .req-container > .req-section__head h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.req-page .req-section--navy > .req-container > .req-section__head > p {
  color: #dceeff !important;
}

.req-page .req-section--navy > .req-container > .req-section__head > .req-kicker {
  color: #7ee5f7 !important;
}

.req-page .req-section--navy .req-card h3,
.req-page .req-section--navy .req-card h4 {
  color: var(--req-ink) !important;
  text-shadow: none;
}

.req-page .req-section--navy .req-card p {
  color: var(--req-muted) !important;
}

.req-page .req-section--navy a:not(.req-button) {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 7px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.req-page .req-section--navy a:not(.req-button):hover,
.req-page .req-section--navy a:not(.req-button):focus {
  color: #082647 !important;
  background: #ffffff;
}

.req-page .req-section--navy .req-card a:not(.req-button) {
  border-color: #a9d1ef;
  color: var(--req-blue-dark) !important;
  background: var(--req-sky);
}

.req-page .req-section--navy .req-card a:not(.req-button):hover,
.req-page .req-section--navy .req-card a:not(.req-button):focus {
  border-color: var(--req-blue-dark);
  color: #ffffff !important;
  background: var(--req-blue-dark);
}

.req-section__head {
  max-width: 800px;
  margin-bottom: 32px;
}

.req-section__head > p {
  font-size: 19px;
}

.req-trust-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 34px;
  padding: 17px 20px;
  border: 1px solid #f3d892;
  border-radius: 13px;
  color: #6f4809;
  background: var(--req-amber-bg);
}

.req-trust-note__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--req-white);
  background: var(--req-amber);
  font-size: 17px;
  font-weight: 900;
  line-height: 28px;
  text-align: center;
}

.req-trust-note p {
  color: #6f4809;
  font-size: 15px;
  line-height: 1.5;
}

.req-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.req-fact {
  min-height: 154px;
  padding: 21px;
  border: 1px solid var(--req-line);
  border-radius: 14px;
  background: var(--req-white);
  box-shadow: 0 8px 25px rgba(20, 55, 91, 0.06);
}

.req-fact__value {
  display: block;
  color: var(--req-blue-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}

.req-fact__label {
  display: block;
  margin-top: 8px;
  color: var(--req-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.req-fact__note {
  display: block;
  margin-top: 5px;
  color: var(--req-muted);
  font-size: 12px;
  line-height: 1.4;
}

.req-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.req-card {
  padding: 27px;
  border: 1px solid var(--req-line);
  border-radius: var(--req-radius);
  background: var(--req-white);
  box-shadow: 0 10px 35px rgba(20, 55, 91, 0.07);
}

.req-pathway-block {
  margin-top: 30px;
}

.req-pathway-block > h3 {
  margin-bottom: 8px;
}

.req-pathway-block > p {
  max-width: 760px;
  color: var(--req-muted);
}

.req-pathway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.req-pathway-card {
  border-top: 4px solid var(--req-green);
}

.req-pathway-card h3 {
  margin-bottom: 10px;
}

.req-pathway-card .req-smallprint {
  margin-bottom: 0;
}

.req-card--accent {
  border-top: 5px solid var(--req-blue);
}

.req-card--green {
  border-top: 5px solid var(--req-green);
}

.req-card__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--req-blue-dark);
  background: var(--req-sky);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.req-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.req-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 30px;
  color: #344861;
  font-size: 16px;
  line-height: 1.5;
}

.req-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 21px;
  height: 21px;
  content: "✓";
  border-radius: 50%;
  color: var(--req-white);
  background: var(--req-green);
  font-size: 13px;
  font-weight: 900;
  line-height: 21px;
  text-align: center;
}

.req-list--caution li::before {
  content: "!";
  background: var(--req-amber);
}

.req-rule-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--req-line);
  border-radius: 14px;
  background: var(--req-white);
}

.req-rule-table th,
.req-rule-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--req-line);
  color: #344861;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
  vertical-align: top;
}

.req-rule-table th {
  color: var(--req-ink);
  background: var(--req-sky);
  font-weight: 850;
}

.req-rule-table tr:last-child td {
  border-bottom: 0;
}

.req-tool {
  border: 1px solid #c8daec;
  border-radius: 22px;
  overflow: hidden;
  background: var(--req-white);
  box-shadow: var(--req-shadow);
}

.req-tool__head {
  padding: 26px 28px 21px;
  color: var(--req-white);
  background: linear-gradient(120deg, var(--req-navy), var(--req-blue-dark));
}

.req-tool__head h3 {
  color: var(--req-white);
}

.req-tool__head p {
  max-width: 780px;
  color: #d8eafa;
  font-size: 15px;
}

.req-tool__body {
  padding: 28px;
}

.req-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.req-field {
  min-width: 0;
}

.req-field--wide {
  grid-column: 1 / -1;
}

.req-field label,
.req-field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--req-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.req-field input[type="number"],
.req-field input[type="date"],
.req-field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #b8c8d8;
  border-radius: 9px;
  color: var(--req-ink);
  background: var(--req-white);
  font-size: 16px;
}

.req-field input:focus,
.req-field select:focus {
  border-color: var(--req-blue);
  box-shadow: 0 0 0 3px rgba(8, 127, 219, 0.12);
}

.req-field__hint {
  display: block;
  margin-top: 5px;
  color: var(--req-muted);
  font-size: 12px;
  line-height: 1.4;
}

.req-segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.req-segmented label {
  position: relative;
  margin: 0;
}

.req-segmented input {
  position: absolute;
  opacity: 0;
}

.req-segmented span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border: 1px solid #b8c8d8;
  border-radius: 9px;
  color: #344861;
  background: var(--req-white);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
}

.req-segmented input:checked + span {
  border-color: var(--req-blue-dark);
  color: var(--req-blue-dark);
  background: var(--req-sky);
  box-shadow: inset 0 0 0 1px var(--req-blue-dark);
}

.req-tool__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 23px;
}

.req-result {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--req-line);
  border-left: 6px solid var(--req-blue);
  border-radius: 12px;
  background: var(--req-sky);
}

.req-result[hidden] {
  display: none;
}

.req-result--success {
  border-color: #a9ddc8;
  border-left-color: var(--req-green);
  background: var(--req-green-bg);
}

.req-result--warning {
  border-color: #f0d18b;
  border-left-color: var(--req-amber);
  background: var(--req-amber-bg);
}

.req-result--danger {
  border-color: #edb9b9;
  border-left-color: var(--req-red);
  background: var(--req-red-bg);
}

.req-result h4 {
  margin-bottom: 8px;
}

.req-result p,
.req-result li {
  color: #344861;
  font-size: 15px;
}

.req-result ul {
  margin: 9px 0 0;
  padding-left: 22px;
}

.req-disclaimer {
  margin-top: 18px !important;
  color: var(--req-muted) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.req-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.req-tool-grid .req-tool__head {
  min-height: 155px;
}

.req-cost-total {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--req-line);
}

.req-cost-total span {
  color: var(--req-muted);
  font-size: 14px;
  font-weight: 750;
}

.req-cost-total strong {
  color: var(--req-blue-dark);
  font-size: 36px;
  line-height: 1;
}

.req-pro-tip {
  position: relative;
  margin-top: 24px;
  padding: 20px 20px 18px;
  border: 1px solid #f0c96c;
  border-left: 6px solid var(--req-amber);
  border-radius: 13px;
  background: linear-gradient(135deg, #fffaf0, var(--req-amber-bg));
}

.req-pro-tip__label {
  display: inline-block;
  margin-bottom: 8px;
  color: #754c00;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.req-pro-tip p {
  margin: 0 !important;
  color: #493b21 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.req-timeline {
  position: relative;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: req-step;
}

.req-timeline::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 18px;
  width: 3px;
  content: "";
  background: #bfddf5;
}

.req-timeline li {
  position: relative;
  min-height: 55px;
  margin-bottom: 22px;
  padding-left: 58px;
  counter-increment: req-step;
}

.req-timeline li::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  content: counter(req-step);
  border: 3px solid #bfe2fb;
  border-radius: 50%;
  color: var(--req-white);
  background: var(--req-blue-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 32px;
  text-align: center;
}

.req-timeline strong {
  display: block;
  color: var(--req-ink);
  font-size: 17px;
}

.req-timeline span {
  display: block;
  color: var(--req-muted);
  font-size: 14px;
  line-height: 1.45;
}

.req-checklist {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.req-checkitem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--req-line);
  border-radius: 10px;
  background: var(--req-white);
  cursor: pointer;
}

.req-checkitem input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--req-green);
}

.req-checkitem span {
  color: #344861;
  font-size: 15px;
  line-height: 1.45;
}

.req-checkitem.is-complete {
  border-color: #b6decf;
  background: var(--req-green-bg);
}

.req-checkitem.is-complete span {
  text-decoration: line-through;
  text-decoration-color: #7a9b8d;
}

.req-progress {
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ebf2;
}

.req-progress__bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--req-green), #24be86);
  transition: width 0.25s ease;
}

.req-progress__text {
  display: block;
  margin-top: 7px;
  color: var(--req-muted);
  font-size: 13px;
  font-weight: 750;
}

.req-page [data-req-tool="checklist"].is-checklist-complete {
  border-color: #74c9ab;
  box-shadow: 0 18px 45px rgba(20, 134, 92, 0.16);
}

.req-checklist-celebration[hidden] {
  display: none;
}

.req-checklist-celebration {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 23px;
  padding: 26px;
  overflow: hidden;
  border: 2px solid #65d2b0;
  border-radius: 17px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 15%, rgba(247, 201, 72, 0.23), transparent 26%),
    linear-gradient(125deg, #0d3c43 0%, #0b6957 48%, #087f91 100%);
  box-shadow: 0 16px 36px rgba(10, 76, 67, 0.22);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

.req-checklist-celebration::before,
.req-checklist-celebration::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.req-checklist-celebration::before {
  top: 17px;
  right: 31px;
  width: 9px;
  height: 9px;
  background: #f7c948;
  box-shadow:
    -38px 19px 0 #75e5f4,
    26px 31px 0 #ffffff,
    -13px 54px 0 #f7c948,
    48px 67px 0 #75e5f4;
}

.req-checklist-celebration::after {
  right: -54px;
  bottom: -73px;
  width: 185px;
  height: 185px;
  border: 30px solid rgba(255, 255, 255, 0.08);
}

.req-checklist-celebration.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: req-celebrate-in 0.52s cubic-bezier(0.2, 0.75, 0.28, 1.2) both;
}

.req-checklist-celebration__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #0d4e45;
  background: #f7c948;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
}

.req-checklist-celebration__content {
  position: relative;
  z-index: 1;
}

.req-checklist-celebration__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #a9f1e3;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.req-page .req-checklist-celebration h4 {
  margin-bottom: 9px;
  color: #ffffff !important;
  font-size: 25px;
}

.req-page .req-checklist-celebration p {
  max-width: 760px;
  color: #e2f8f3 !important;
  font-size: 15px;
}

.req-checklist-celebration .req-tool__actions {
  margin-top: 17px;
}

@keyframes req-celebrate-in {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  72% {
    opacity: 1;
    transform: translateY(-3px) scale(1.006);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.req-cta {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border-radius: 22px;
  color: var(--req-white);
  background: linear-gradient(125deg, #092c52, #087fdb);
  box-shadow: var(--req-shadow);
}

.req-cta::after {
  position: absolute;
  right: -45px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  content: "";
  border: 38px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.req-cta > * {
  position: relative;
  z-index: 1;
}

.req-cta h2,
.req-cta h3 {
  color: var(--req-white);
}

.req-cta p {
  max-width: 760px;
  color: #e1f0fc;
}

.req-cta--light {
  color: var(--req-ink);
  border: 1px solid #bfd9ee;
  background: linear-gradient(125deg, #eef8ff, #ffffff);
}

.req-cta--light h2,
.req-cta--light h3 {
  color: var(--req-ink);
}

.req-cta--light p {
  color: var(--req-muted);
}

.req-section--arcade {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 22%, rgba(95, 232, 194, 0.16), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(105, 124, 255, 0.2), transparent 34%),
    #071526;
}

.req-arcade-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 42px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(108, 237, 201, 0.3);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 40, 67, 0.96), rgba(22, 21, 59, 0.96));
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
}

.req-page .req-arcade-cta h2 {
  max-width: 780px;
  color: #ffffff;
}

.req-page .req-arcade-cta p {
  max-width: 790px;
  color: #dcecf7;
}

.req-page .req-arcade-cta .req-kicker {
  color: #80f5d4;
}

.req-arcade-route {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 22px 0;
}

.req-arcade-route span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.req-arcade-route b {
  color: #80f5d4;
}

.req-page .req-button--arcade {
  color: #071526;
  border-color: #80f5d4;
  background: #80f5d4;
  box-shadow: 0 9px 24px rgba(74, 224, 181, 0.22);
}

.req-page .req-button--arcade:hover,
.req-page .req-button--arcade:focus {
  color: #071526;
  border-color: #b5ffe9;
  background: #b5ffe9;
}

.req-page .req-arcade-cta__note {
  margin: 15px 0 0;
  color: #aebfd0;
  font-size: 14px;
}

.req-arcade-screen {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 30px 22px;
  border: 2px solid #80f5d4;
  border-radius: 18px;
  color: #ffffff;
  text-align: center;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 4px),
    #09101e;
  box-shadow: inset 0 0 36px rgba(70, 236, 191, 0.08), 9px 11px 0 rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.req-page .req-arcade-screen:hover,
.req-page .req-arcade-screen:focus {
  border-color: #b5ffe9;
  outline: 3px solid rgba(128, 245, 212, 0.24);
  outline-offset: 4px;
  box-shadow: inset 0 0 42px rgba(70, 236, 191, 0.14), 13px 15px 0 rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transform: translateY(-3px);
}

.req-arcade-screen__eyebrow {
  color: #80f5d4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.req-arcade-screen strong {
  margin: 4px 0 10px;
  color: #ffffff;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-shadow: 3px 3px 0 #6b3cff;
}

.req-arcade-screen > span:not(.req-arcade-screen__eyebrow) {
  width: 100%;
  padding: 6px 8px;
  border-left: 3px solid #80f5d4;
  color: #d9e9f4;
  background: rgba(255, 255, 255, 0.06);
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.req-arcade-screen em {
  margin-top: 14px;
  color: #ffd56a;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  animation: req-arcade-pulse 1.2s steps(2, end) infinite;
}

@keyframes req-arcade-pulse {
  50% {
    opacity: 0.45;
  }
}

.req-faq {
  display: grid;
  gap: 12px;
}

.req-faq details {
  border: 1px solid var(--req-line);
  border-radius: 12px;
  background: var(--req-white);
  box-shadow: 0 5px 18px rgba(20, 55, 91, 0.04);
}

.req-faq summary {
  position: relative;
  padding: 18px 52px 18px 19px;
  color: var(--req-ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.req-faq summary::-webkit-details-marker {
  display: none;
}

.req-faq summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  content: "+";
  color: var(--req-blue-dark);
  font-size: 26px;
  transform: translateY(-50%);
}

.req-faq details[open] summary::after {
  content: "−";
}

.req-faq__answer {
  padding: 0 19px 18px;
}

.req-faq__answer p {
  font-size: 15px;
}

.req-source-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: req-source;
}

.req-source-list li {
  position: relative;
  min-height: 46px;
  padding: 12px 14px 12px 50px;
  border: 1px solid var(--req-line);
  border-radius: 10px;
  background: var(--req-white);
  counter-increment: req-source;
}

.req-source-list li::before {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 27px;
  height: 27px;
  content: counter(req-source);
  border-radius: 50%;
  color: var(--req-white);
  background: var(--req-blue-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 27px;
  text-align: center;
}

.req-source-list a {
  display: block;
  font-size: 15px;
}

.req-source-list span {
  display: block;
  color: var(--req-muted);
  font-size: 12px;
  line-height: 1.4;
}

.req-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.req-link-card {
  display: block;
  min-height: 150px;
  padding: 21px;
  border: 1px solid var(--req-line);
  border-radius: 14px;
  background: var(--req-white);
  box-shadow: 0 7px 22px rgba(20, 55, 91, 0.05);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.req-link-card:hover,
.req-link-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(20, 55, 91, 0.11);
}

.req-link-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--req-ink);
  font-size: 18px;
}

.req-link-card span {
  color: var(--req-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.req-link-card em {
  display: block;
  margin-top: 12px;
  color: var(--req-blue-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.req-author {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--req-line);
  border-radius: 16px;
  background: var(--req-white);
}

.req-author img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.req-author p {
  font-size: 14px;
}

.req-smallprint {
  margin-top: 18px;
  color: var(--req-muted);
  font-size: 12px;
  line-height: 1.55;
}

.req-noscript {
  padding: 12px 16px;
  color: #6f4809;
  background: var(--req-amber-bg);
  border: 1px solid #f3d892;
  border-radius: 9px;
}

@media (max-width: 960px) {
  .req-hero__grid,
  .req-split,
  .req-tool-grid,
  .req-arcade-cta {
    grid-template-columns: 1fr;
  }

  .req-arcade-screen {
    width: min(100%, 480px);
  }

  .req-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .req-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .req-tool-grid .req-tool__head {
    min-height: 0;
  }
}

@media (min-width: 651px) and (max-width: 820px) {
  .req-rule-table th,
  .req-rule-table td {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 650px) {
  .req-page {
    font-size: 16px;
  }

  .req-container,
  .req-container--narrow {
    width: min(100% - 24px, 1160px);
  }

  .req-hero {
    padding: 38px 0 30px;
  }

  .req-page h1 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .req-page h2 {
    font-size: clamp(27px, 8.5vw, 34px);
  }

  .req-section {
    padding: 54px 0;
  }

  .req-jump__label {
    display: none;
  }

  .req-fact-grid,
  .req-form-grid,
  .req-link-grid {
    grid-template-columns: 1fr;
  }

  .req-fact {
    min-height: 0;
  }

  .req-card,
  .req-tool__body,
  .req-tool__head,
  .req-cta {
    padding: 21px;
  }

  .req-checklist-celebration {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .req-checklist-celebration__icon {
    width: 58px;
    height: 58px;
    font-size: 29px;
  }

  .req-hero__actions .req-button,
  .req-cta__actions .req-button,
  .req-tool__actions .req-button {
    width: 100%;
  }

  .req-rule-table--responsive {
    display: block;
    width: 100%;
    max-width: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .req-rule-table--responsive thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .req-rule-table--responsive tbody {
    display: grid;
    width: 100%;
    gap: 14px;
  }

  .req-rule-table--responsive tr {
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--req-line);
    border-radius: 14px;
    background: var(--req-white);
    box-shadow: 0 7px 22px rgba(20, 55, 91, 0.06);
  }

  .req-rule-table--responsive td,
  .req-rule-table--responsive tr:last-child td {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--req-line);
    font-size: 14px;
  }

  .req-rule-table--responsive td::before {
    content: attr(data-label);
    color: var(--req-blue-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.055em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .req-rule-table--responsive td:last-child,
  .req-rule-table--responsive tr:last-child td:last-child {
    border-bottom: 0;
  }

  .req-cost-total {
    flex-direction: column;
    align-items: flex-start;
  }

  .req-cost-total strong {
    font-size: 32px;
  }

  .req-author {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .req-author img {
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .req-rule-table--responsive td,
  .req-rule-table--responsive tr:last-child td {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .req-trust-note {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .req-page * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .req-checklist-celebration.is-visible {
    animation: none !important;
  }

  .req-arcade-screen em {
    animation: none !important;
  }
}

@media print {
  .req-jump,
  .req-hero__actions,
  .req-cta,
  .req-tool__actions,
  .req-button {
    display: none !important;
  }

  .req-hero {
    color: #000;
    background: #fff;
  }

  .req-hero h1,
  .req-hero p,
  .req-breadcrumbs,
  .req-breadcrumbs a {
    color: #000 !important;
  }

  .req-section {
    padding: 28px 0;
  }

  .req-card,
  .req-tool,
  .req-fact {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* Requirements hub ------------------------------------------------------- */
.req-hub .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.req-hub [hidden] {
  display: none !important;
}

.req-hub-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.req-hub-path {
  display: flex;
  min-height: 238px;
  padding: 24px;
  flex-direction: column;
  border: 1px solid var(--req-line);
  border-radius: 18px;
  color: var(--req-ink) !important;
  background: var(--req-white);
  box-shadow: 0 10px 30px rgba(20, 55, 91, 0.07);
  text-decoration: none !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.req-hub-path:hover,
.req-hub-path:focus {
  border-color: #87bee8;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(20, 55, 91, 0.13);
}

.req-hub-path > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 11px;
  color: var(--req-white);
  background: linear-gradient(135deg, var(--req-blue-dark), var(--req-cyan));
  font-size: 13px;
  font-weight: 900;
}

.req-hub-path strong {
  display: block;
  color: var(--req-ink);
  font-size: 20px;
  line-height: 1.28;
}

.req-hub-path p {
  margin: 10px 0 16px;
  color: var(--req-muted);
  font-size: 14px;
  line-height: 1.5;
}

.req-hub-path em {
  margin-top: auto;
  color: var(--req-blue-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.req-hub-filters {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) minmax(230px, 1fr) minmax(170px, 0.7fr) auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  border: 1px solid var(--req-line);
  border-radius: 18px;
  background: var(--req-white);
  box-shadow: 0 10px 30px rgba(20, 55, 91, 0.07);
}

.req-hub-filter {
  display: grid;
  gap: 7px;
}

.req-hub-filter > span {
  color: var(--req-ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.req-hub-filter input,
.req-hub-filter select {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid #b9c9d9;
  border-radius: 9px;
  color: var(--req-ink);
  background: var(--req-white);
  font-size: 15px;
}

.req-hub-filter input:focus,
.req-hub-filter select:focus {
  border-color: var(--req-blue);
  outline: 3px solid rgba(8, 127, 219, 0.16);
}

.req-hub-reset {
  min-height: 48px;
  margin: 0;
  padding-right: 20px;
  padding-left: 20px;
}

.req-hub-directory-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 14px;
}

.req-hub-directory-meta p {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.req-hub-directory-meta a,
.req-hub-directory-meta button {
  padding: 0;
  border: 0;
  color: var(--req-blue-dark);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.req-hub-directory-meta button:disabled {
  color: #7c8998;
  cursor: default;
}

.req-hub-state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.req-hub-state {
  display: flex;
  min-width: 0;
  min-height: 238px;
  padding: 21px;
  flex-direction: column;
  border: 1px solid var(--req-line);
  border-radius: 15px;
  background: var(--req-white);
  box-shadow: 0 7px 22px rgba(20, 55, 91, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.req-hub-state:hover,
.req-hub-state:focus-within {
  border-color: #9fcbe9;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(20, 55, 91, 0.1);
}

.req-hub-state.is-selected {
  border-color: var(--req-blue);
  box-shadow: 0 0 0 3px rgba(8, 127, 219, 0.13), 0 13px 28px rgba(20, 55, 91, 0.1);
}

.req-hub-state[hidden] {
  display: none !important;
}

.req-hub-state--closed {
  border-color: #e3b2b2;
  background: var(--req-red-bg);
}

.req-hub-state__head {
  display: flex;
  gap: 11px;
  align-items: center;
}

.req-hub-state__head h3 {
  min-width: 0;
  margin: 0;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.req-hub-state__code {
  display: inline-grid;
  min-width: 39px;
  height: 30px;
  padding: 0 7px;
  place-items: center;
  border-radius: 8px;
  color: var(--req-blue-dark);
  background: var(--req-sky);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.req-hub-state--closed .req-hub-state__code {
  color: var(--req-red);
  background: #ffe2e2;
}

.req-hub-state > p {
  margin: 14px 0;
  color: var(--req-muted);
  font-size: 13px;
  line-height: 1.48;
}

.req-hub-state__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.req-hub-state__badges span {
  padding: 4px 8px;
  border: 1px solid #d4e4f1;
  border-radius: 999px;
  color: #335a79;
  background: #f4f9fd;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.req-hub-state--closed .req-hub-state__badges span {
  border-color: #efc4c4;
  color: #873333;
  background: #fff7f7;
}

.req-hub-state__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--req-line);
}

.req-hub-state__actions a {
  font-size: 13px;
  font-weight: 850;
}

.req-hub-state__actions label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  color: var(--req-ink);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.req-hub-state__actions input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--req-blue);
}

.req-hub-empty {
  margin-top: 18px;
  padding: 22px;
  border: 1px dashed #aabed0;
  border-radius: 13px;
  text-align: center;
  background: var(--req-white);
}

.req-hub-comparison {
  padding: 26px;
}

.req-hub-comparison__status {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.req-hub-comparison__status p {
  margin: 0;
  color: var(--req-ink);
  font-weight: 750;
}

.req-hub-comparison__status .req-button {
  margin: 0;
}

.req-hub-compare-placeholder {
  padding: 28px;
  border: 1px dashed #aabed0;
  border-radius: 13px;
  text-align: center;
  background: var(--req-soft);
}

.req-hub-compare-placeholder strong {
  display: block;
  margin-bottom: 5px;
  color: var(--req-ink);
  font-size: 19px;
}

.req-hub-compare-placeholder p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
}

.req-hub-compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--req-line);
  border-radius: 13px;
  background: var(--req-white);
  -webkit-overflow-scrolling: touch;
}

.req-hub-compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.req-hub-compare-table th,
.req-hub-compare-table td {
  padding: 14px 16px;
  border-right: 1px solid var(--req-line);
  border-bottom: 1px solid var(--req-line);
  color: var(--req-ink);
  font-size: 13px;
  line-height: 1.42;
  text-align: left;
  vertical-align: top;
}

.req-hub-compare-table th:last-child,
.req-hub-compare-table td:last-child {
  border-right: 0;
}

.req-hub-compare-table tr:last-child th,
.req-hub-compare-table tr:last-child td {
  border-bottom: 0;
}

.req-hub-compare-table thead th {
  color: var(--req-white);
  background: var(--req-navy);
  font-size: 14px;
}

.req-hub-compare-table tbody th {
  width: 170px;
  background: var(--req-soft);
  font-weight: 850;
}

.req-hub-compare-table a {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
}

.req-hub-credit-card {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.req-hub-credit-card > div {
  max-width: 760px;
}

.req-hub-credit-card .req-button {
  flex: 0 0 auto;
}

.req-hub-roadmap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.req-hub-roadmap li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  padding: 21px;
  border: 1px solid var(--req-line);
  border-radius: 14px;
  background: var(--req-white);
  box-shadow: 0 7px 22px rgba(20, 55, 91, 0.05);
}

.req-hub-roadmap li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--req-white);
  background: linear-gradient(135deg, var(--req-blue-dark), var(--req-cyan));
  font-size: 17px;
  font-weight: 900;
}

.req-hub-roadmap strong {
  color: var(--req-ink);
  font-size: 17px;
}

.req-hub-roadmap p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.req-hub .req-faq details > div {
  padding: 0 19px 18px;
}

.req-hub .req-faq details > div p {
  margin: 0;
  font-size: 15px;
}

.req-hub-compare-dock {
  position: fixed;
  z-index: 997;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--req-white);
  background: rgba(8, 38, 70, 0.96);
  box-shadow: 0 15px 40px rgba(5, 29, 53, 0.3);
}

.req-hub-compare-dock span {
  color: var(--req-white);
  font-size: 13px;
  font-weight: 800;
}

.req-hub-compare-dock button {
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  color: #06243f;
  background: #8beaff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.req-hub-compare-dock button:disabled {
  opacity: 0.55;
  cursor: default;
}

@media (max-width: 1020px) {
  .req-hub-paths,
  .req-hub-state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .req-hub-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .req-hub-paths,
  .req-hub-state-grid,
  .req-hub-filters,
  .req-hub-roadmap {
    grid-template-columns: 1fr;
  }

  .req-hub-path,
  .req-hub-state {
    min-height: 0;
  }

  .req-hub-directory-meta,
  .req-hub-comparison__status,
  .req-hub-credit-card {
    align-items: stretch;
    flex-direction: column;
  }

  .req-hub-directory-meta a,
  .req-hub-directory-meta button {
    align-self: flex-start;
  }

  .req-hub-state__actions {
    align-items: flex-start;
  }

  .req-hub-comparison {
    padding: 18px;
  }

  .req-hub-comparison__status .req-button,
  .req-hub-credit-card .req-button {
    width: 100%;
  }

  .req-hub-compare-dock {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
    border-radius: 14px;
  }
}

@media print {
  .req-hub-filters,
  .req-hub-state__actions label,
  .req-hub-compare-dock,
  .req-hub-comparison__status button {
    display: none !important;
  }

  .req-hub-state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
