*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #21263d;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16) 0%, transparent 30%), linear-gradient(180deg, #a8a3c5 0%, #89a0d6 100%);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  line-height: 1.05;
}

h2 {
  line-height: 1.2;
}

a {
  color: #3147ba;
}

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

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

.wrapper {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.panel {
  background: linear-gradient(180deg, rgba(165, 179, 230, 0.88) 0%, rgba(133, 151, 192, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  padding: 2rem;
}

.hero {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 33, 75, 0.72);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
  color: #1a214b;
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.18);
}

.intro {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(26, 33, 75, 0.78);
}

.panel h2 {
  margin-top: 0;
  color: #1a214b;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.link-list a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #3147ba 0%, #24389a 100%);
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  width: 100%;
}

.link-list a:hover,
.link-list a:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, #95a2df 0%, #7f8fd0 100%);
  color: #20347f;
  border-color: rgba(0, 0, 0, 0.18);
}

.link-list li::marker {
  font-weight: 700;
  color: #1a214b;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
  color: #1a214b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.footer-links a,
.site-footer a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #3147ba 0%, #24389a 100%);
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-radius: 999px;
}

.footer-links a:hover,
.footer-links a:focus,
.site-footer a:hover,
.site-footer a:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, #95a2df 0%, #7f8fd0 100%);
  color: #20347f;
  border-color: rgba(0, 0, 0, 0.18);
}

@media screen and (min-width: 800px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 700px) {
  body {
    padding: 1rem;
  }
  .panel {
    padding: 1.25rem;
  }
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .link-list a,
  .footer-links a,
  .site-footer a {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  body {
    padding: 0.75rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
.rd-wrapper {
  width: min(92%, 1050px);
  margin: 2rem auto;
}

.rd-header {
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.rd-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.rd-header .intro {
  margin: 0;
  max-width: 45rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.rd-main {
  display: grid;
  gap: 1.5rem;
}

.rd-footer {
  margin-top: 1.5rem;
  background: #ffffff;
  border: 1px solid #d7e0ec;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.rd-footer p {
  margin: 0;
  font-weight: 700;
  color: #1d4ed8;
}

.rd-card {
  background: #ffffff;
  border: 1px solid #d7e0ec;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-left: 8px solid #7c3aed;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.rd-card h2 {
  margin-top: 0;
  color: #1d4ed8;
}

.rd-card p:last-child,
.rd-card ul:last-child,
.rd-card pre:last-child {
  margin-bottom: 0;
}

.rd-card ul {
  padding-left: 1.25rem;
}

.rd-card li + li {
  margin-top: 0.35rem;
}

.rd-card a {
  color: #5b21b6;
  font-weight: 700;
  text-decoration: none;
}

.rd-card a:hover,
.rd-card a:focus-visible {
  text-decoration: underline;
}

.rd-card.full-width {
  grid-column: 1/-1;
}

.back-button {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid #d7e0ec;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.back-button:hover,
.back-button:focus-visible {
  background: #f8fbff;
}

.rd-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rd-footer .footer-links a {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  color: #ffffff;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.rd-footer .footer-links a:hover,
.rd-footer .footer-links a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (min-width: 800px) {
  .rd-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .rd-wrapper {
    width: min(94%, 1050px);
    margin: 1rem auto;
  }
  .rd-header,
  .rd-card,
  .rd-footer {
    padding: 1rem;
  }
  .rd-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .rd-footer .footer-links {
    flex-direction: column;
  }
  .rd-footer .footer-links a {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */