:root {
  color-scheme: light;
  --ink: #211e25;
  --muted: #655f6b;
  --soft: #827b88;
  --accent: #7157d9;
  --accent-dark: #563bbf;
  --accent-soft: #eeeafd;
  --surface: rgba(255, 255, 255, 0.88);
  --line: #e7e2eb;
  --background: #f8f6fb;
  --success: #18845b;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(55, 42, 78, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 225, 204, 0.82) 0 5%, transparent 14%),
    radial-gradient(circle at 93% 25%, rgba(184, 167, 249, 0.48) 0 7%, transparent 18%),
    linear-gradient(145deg, #fffdf9 0%, var(--background) 52%, #f1edfb 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(113, 87, 217, 0.35); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-shell { min-height: 100vh; overflow: hidden; position: relative; }
.site-shell::before,
.site-shell::after {
  position: fixed;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  opacity: 0.48;
}
.site-shell::before { top: 34%; left: -190px; background: linear-gradient(145deg, #f4cfc2, #fff2e9); }
.site-shell::after { right: -170px; bottom: 4%; background: linear-gradient(145deg, #a891ef, #eee9ff); }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(231, 226, 235, 0.82);
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: -0.02em; }
.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 24px rgba(113, 87, 217, 0.28);
}
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.nav-links a { padding: 9px 13px; border-radius: 999px; color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--accent-soft); color: var(--accent-dark); }

main { width: min(940px, calc(100% - 40px)); margin: 0 auto; }
.hero { padding: 92px 0 52px; text-align: center; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 14px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.035em; }
h1 { max-width: 820px; margin: 0 auto; font-size: clamp(44px, 8vw, 76px); }
.hero-copy { max-width: 690px; margin: 24px auto 0; color: var(--muted); font-size: clamp(18px, 2.8vw, 22px); }
.hero-actions { margin-top: 32px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.button { min-height: 48px; padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--surface); color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 800; }
.button-primary { border-color: var(--accent); background: var(--accent); color: white; box-shadow: 0 12px 28px rgba(113, 87, 217, 0.26); }
.button-primary:hover { background: var(--accent-dark); color: white; }

.cards { margin: 28px 0 90px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { padding: 26px; border: 1px solid rgba(231, 226, 235, 0.94); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.card-icon { width: 46px; height: 46px; margin-bottom: 20px; border-radius: 15px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-weight: 900; }
.card h2 { margin: 0 0 9px; font-size: 22px; }
.card p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.card a { font-weight: 800; }

.document-header { padding: 76px 0 30px; }
.document-header h1 { margin: 0; max-width: 780px; font-size: clamp(40px, 7vw, 64px); }
.document-summary { max-width: 720px; margin: 19px 0 0; color: var(--muted); font-size: 19px; }
.meta { margin-top: 19px; display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--soft); font-size: 14px; font-weight: 700; }

.document { margin: 22px 0 84px; padding: clamp(24px, 6vw, 64px); border: 1px solid var(--line); border-radius: 30px; background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow); }
.document section + section { margin-top: 44px; padding-top: 38px; border-top: 1px solid var(--line); }
.document h2 { margin: 0 0 14px; font-size: 27px; }
.document h3 { margin: 28px 0 8px; font-size: 19px; letter-spacing: -0.015em; }
.document p, .document li { color: #4f4954; }
.document p { margin: 0 0 14px; }
.document ul { margin: 12px 0 0; padding-left: 23px; }
.document li + li { margin-top: 9px; }
.callout { margin: 24px 0; padding: 20px 22px; border-left: 4px solid var(--accent); border-radius: 4px 16px 16px 4px; background: var(--accent-soft); }
.callout strong { color: var(--accent-dark); }
.contact-panel { padding: 25px; border-radius: 20px; background: linear-gradient(145deg, #f1edff, #fbf9ff); }
.contact-panel p:last-child { margin-bottom: 0; }
.status { display: inline-flex; align-items: center; gap: 8px; color: var(--success); font-weight: 800; }
.status::before { width: 9px; height: 9px; border-radius: 50%; background: currentColor; content: ""; box-shadow: 0 0 0 5px rgba(24, 132, 91, 0.12); }

.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.faq summary { cursor: pointer; padding: 18px 20px; font-weight: 800; }
.faq details p { padding: 0 20px 18px; margin: 0; }

.footer { border-top: 1px solid var(--line); background: rgba(255, 255, 255, 0.62); }
.footer-inner { width: min(1120px, calc(100% - 40px)); min-height: 112px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--soft); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 760px) {
  .nav { padding: 13px 0; align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav-links { width: 100%; }
  .nav-links a { flex: 1; padding: 8px 7px; text-align: center; }
  .hero { padding-top: 64px; }
  .cards { grid-template-columns: 1fr; }
  .document-header { padding-top: 58px; }
  .document { border-radius: 24px; }
  .footer-inner { padding: 25px 0; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print {
  .nav-wrap, .footer { display: none; }
  body { background: white; }
  main { width: 100%; }
  .document { margin: 0; padding: 0; border: 0; box-shadow: none; }
}
