:root {
  color-scheme: dark;
  --background: #010f27;
  --surface: #0c1e3a;
  --surface-raised: #12294a;
  --text: #eaf2fc;
  --muted: #b6c2d4;
  --purple: #8b5cf6;
  --purple-light: #c7b3ff;
  --purple-soft: rgba(139, 92, 246, 0.16);
  --purple-line: rgba(139, 92, 246, 0.44);
  --line: rgba(182, 194, 212, 0.2);
  --content-width: 920px;
}

* { box-sizing: border-box; }

html { background: var(--background); }

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% -10%, rgba(139, 92, 246, 0.17), transparent 32rem),
    var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
}

a {
  color: var(--purple-light);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover { color: #e4dcff; }

a:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  background: var(--purple);
  color: #fff;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(1, 15, 39, 0.86);
}

.header-inner,
.site-main,
.site-footer-inner {
  width: min(100% - 2rem, var(--content-width));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.brand::before {
  display: inline-block;
  width: 0.58rem;
  height: 0.58rem;
  margin: 0 0.55rem 0.05rem 0;
  border-radius: 50%;
  background: var(--purple);
  content: "";
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 0.9rem;
}

.site-nav a {
  padding: 0.2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--purple-light); }

.site-main { padding: clamp(2rem, 5vw, 4.4rem) 0 3.5rem; }

.hero {
  max-width: 760px;
  padding: clamp(1.45rem, 4.8vw, 2.6rem);
  border: 1px solid var(--purple-line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(18, 41, 74, 0.98), rgba(12, 30, 58, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(2.2rem, 7vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 0.72rem;
  color: var(--text);
  font-size: clamp(1.22rem, 3vw, 1.52rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.13rem);
}

.status-note,
.contact-panel,
.action-panel {
  border: 1px solid var(--purple-line);
  border-radius: 18px;
  background: var(--purple-soft);
}

.status-note {
  display: grid;
  gap: 0.32rem;
  margin-top: 1.35rem;
  padding: 1rem 1.05rem;
}

.status-note strong { color: #d7caff; }
.status-note span { color: var(--muted); font-size: 0.94rem; }

.document {
  max-width: 850px;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.document-intro,
.doc-section { margin-bottom: clamp(1.8rem, 4vw, 2.75rem); }

.document-intro { color: var(--muted); font-size: 1.04rem; }

.doc-section p,
.doc-section li { color: var(--muted); }

.doc-section p:last-child,
.doc-section ul:last-child { margin-bottom: 0; }

.doc-section ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.doc-section li + li { margin-top: 0.35rem; }

.contact-panel,
.action-panel { padding: clamp(1.1rem, 3.5vw, 1.45rem); }
.contact-panel p,
.action-panel p { margin-bottom: 0; color: var(--muted); }
.contact-panel address { color: var(--muted); font-style: normal; }

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--purple-line);
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple-light);
  font-weight: 750;
  text-decoration: none;
}

.button-link:hover { background: rgba(139, 92, 246, 0.28); color: #fff; }

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer-inner {
  display: grid;
  gap: 0.5rem;
  padding: 1.5rem 0 2rem;
}

.site-footer p { margin: 0; }

@media (min-width: 700px) {
  .header-inner,
  .site-main,
  .site-footer-inner { width: min(100% - 4rem, var(--content-width)); }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 0;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav { justify-content: flex-start; gap: 0.28rem 0.8rem; }
  .hero { border-radius: 21px; }
}
