:root {
  --bg: #071016;
  --bg-deep: #03080d;
  --panel: rgba(12, 24, 33, 0.86);
  --panel-strong: rgba(16, 31, 43, 0.94);
  --panel-soft: rgba(18, 40, 50, 0.62);
  --text: #eef7ff;
  --muted: #9fb3c7;
  --line: rgba(142, 183, 214, 0.18);
  --line-strong: rgba(142, 183, 214, 0.32);
  --green: #1ee38f;
  --green-strong: #00ba6f;
  --blue: #2c9cff;
  --blue-soft: rgba(44, 156, 255, 0.16);
  --red: #f13a42;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  --anchor-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 4%, rgba(30, 227, 143, 0.18), transparent 31rem),
    radial-gradient(circle at 6% 18%, rgba(44, 156, 255, 0.19), transparent 28rem),
    linear-gradient(180deg, rgba(7, 16, 22, 0.84), rgba(3, 8, 13, 0.98)),
    url("/IMAGES/bgi.png");
  background-color: var(--bg-deep);
  background-size: auto, auto, auto, 420px auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 72%);
  pointer-events: none;
}

a {
  color: #7cc4ff;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #b9e2ff;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(22px, calc((100vw - 980px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 13, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 198px;
  max-width: 48vw;
  height: auto;
  display: block;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.page-nav a {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(124, 196, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 16, 22, 0.56);
  color: #bfd0df;
  font-size: 12px;
  font-weight: 850;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  border-color: rgba(30, 227, 143, 0.38);
  background: rgba(30, 227, 143, 0.1);
  color: var(--text);
  text-decoration: none;
}

main {
  width: min(980px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 26px 0 60px;
}

.hero,
.section {
  scroll-margin-top: var(--anchor-offset);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(8, 18, 26, 0.88));
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  margin-bottom: 14px;
  border-color: rgba(142, 183, 214, 0.24);
  background:
    linear-gradient(135deg, rgba(17, 36, 49, 0.95), rgba(7, 16, 22, 0.9) 58%, rgba(9, 29, 28, 0.88)),
    linear-gradient(90deg, rgba(30, 227, 143, 0.08), transparent 44%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, var(--red), var(--green) 28%, var(--blue) 72%, transparent);
  opacity: 0.9;
  pointer-events: none;
}

.section {
  padding: clamp(21px, 3.3vw, 30px);
  margin-top: 14px;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--green);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.08;
  font-weight: 950;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  font-weight: 930;
}

p {
  margin: 0;
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 14px;
  color: #c6d7e7;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.45;
  font-weight: 720;
}

.status-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 830;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(30, 227, 143, 0.4);
  border-radius: 999px;
  background: rgba(30, 227, 143, 0.13);
  color: var(--green);
  box-shadow: 0 0 28px rgba(30, 227, 143, 0.15);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.data-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(5, 12, 18, 0.36);
}

.data-list div {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 23, 32, 0.58);
}

.data-list div:nth-child(odd) {
  background: rgba(19, 42, 53, 0.55);
}

.data-list div:last-child {
  border-bottom: 0;
}

.data-list dt {
  margin: 0;
  color: #8ea6bc;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.data-list dd {
  margin: 0;
  min-width: 0;
  color: #f2f8ff;
  font-weight: 820;
  overflow-wrap: anywhere;
}

.data-list.compact div {
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #cad8e5;
  font-weight: 720;
}

.notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(44, 156, 255, 0.26);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(44, 156, 255, 0.13), rgba(44, 156, 255, 0.07));
  color: #d6ebff;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 13px;
  border: 1px solid rgba(30, 227, 143, 0.26);
  border-radius: 999px;
  background: rgba(30, 227, 143, 0.08);
  color: #d9fff0;
  font-size: 13px;
  font-weight: 920;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(30, 227, 143, 0.48);
  background: rgba(30, 227, 143, 0.14);
  color: #ffffff;
  text-decoration: none;
}

.contact-section {
  border-color: rgba(241, 58, 66, 0.32);
}

.contact-section p {
  max-width: 760px;
  margin-bottom: 16px;
  color: #c6d7e7;
  font-weight: 720;
}

.site-footer {
  width: min(980px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.site-footer a {
  color: #9fb3c7;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px;
  }

  .brand img {
    max-width: min(78vw, 260px);
  }

  .page-nav {
    justify-content: flex-start;
  }

  main {
    width: min(100vw - 20px, 980px);
    padding-top: 16px;
  }

  html {
    scroll-padding-top: var(--anchor-offset);
  }

  .data-list div,
  .data-list.compact div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media print {
  body {
    background: #fff;
    color: #111827;
  }

  body::before,
  .hero::after {
    display: none;
  }

  .site-header,
  .site-footer {
    position: static;
  }

  .hero,
  .section {
    color: #111827;
    background: #fff;
    box-shadow: none;
    break-inside: avoid;
  }

  h1,
  h2,
  .data-list dd {
    color: #111827;
  }
}
