:root {
  --bg-deep: #060c18;
  --bg-mid: #0b1730;
  --bg-glow: #173a66;
  --surface: rgba(13, 31, 55, 0.78);
  --surface-border: rgba(127, 182, 255, 0.35);
  --text-main: #e8f3ff;
  --text-soft: #b8cae0;
  --accent: #79b3ff;
  --accent-strong: #4f96ff;
  --warm: #f6bf79;
  --ok: #90e0a8;
  --shadow: 0 18px 50px rgba(2, 8, 20, 0.45);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(1200px 650px at 10% -20%, rgba(121, 179, 255, 0.2), transparent 65%),
    radial-gradient(900px 500px at 90% 0%, rgba(246, 191, 121, 0.15), transparent 70%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 70%);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #a9d0ff;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 2000;
}

.skip-link:focus {
  top: 8px;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(3, 10, 23, 0.74);
  border-bottom: 1px solid rgba(130, 175, 235, 0.22);
}

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 220px;
  height: auto;
}

.brand span {
  display: none;
}

.nav-toggle {
  border: 1px solid rgba(127, 182, 255, 0.45);
  color: var(--text-main);
  background: rgba(29, 59, 95, 0.42);
  padding: 8px 11px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 80px 20px 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(7, 19, 36, 0.6), rgba(6, 12, 24, 0.95));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 18px;
  animation: revealUp 0.9s ease forwards;
}

.kicker {
  color: var(--warm);
  letter-spacing: 0.2em;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 980px;
}

.hero p {
  max-width: 860px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 1px solid transparent;
  padding: 11px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Cinzel", serif;
  font-size: 0.84rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(41, 100, 173, 0.35);
}

.btn-primary {
  background: linear-gradient(130deg, #62a7ff, #2e6dc5);
  color: #eef6ff;
}

.btn-secondary {
  border-color: rgba(130, 180, 255, 0.65);
  color: var(--text-main);
  background: rgba(39, 78, 129, 0.3);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 20px;
}

.section-tight {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--text-soft);
  max-width: 820px;
  margin: 0;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -90px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(121, 179, 255, 0.22), transparent 72%);
}

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

.card p,
.card li {
  color: var(--text-soft);
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.icon-title img {
  width: 42px;
  height: 42px;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid rgba(127, 182, 255, 0.35);
  background: rgba(20, 44, 74, 0.58);
  color: #d3e8ff;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.78rem;
}

.split-list {
  columns: 2;
  column-gap: 24px;
}

.split-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.meta-line {
  font-size: 0.92rem;
  color: #c2d8f0;
}

.timeline {
  position: relative;
  padding-left: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(121, 179, 255, 0.9), rgba(121, 179, 255, 0));
}

.timeline-item {
  position: relative;
  margin-bottom: 18px;
  padding-left: 12px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(121, 179, 255, 0.2);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  text-align: center;
  background: rgba(15, 36, 65, 0.72);
  border: 1px solid rgba(127, 182, 255, 0.27);
  border-radius: 14px;
  padding: 16px;
}

.stat b {
  display: block;
  font-size: 1.8rem;
  font-family: "Cinzel", serif;
  color: var(--ok);
}

.contact-box {
  display: grid;
  gap: 8px;
}

.contact-box strong {
  color: #d9ebff;
}

.notice {
  border-left: 3px solid var(--warm);
  padding-left: 12px;
}

.site-footer {
  border-top: 1px solid rgba(127, 182, 255, 0.18);
  margin-top: 34px;
  background: rgba(5, 12, 22, 0.86);
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  font-size: 0.95rem;
}

.footer-brand small {
  font-size: 0.78rem;
  color: #acc7e6;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.page-banner {
  position: relative;
  min-height: 44vh;
  display: grid;
  align-items: end;
  padding: 90px 20px 30px;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 22, 0.35), rgba(5, 12, 22, 0.94));
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.page-banner .section-head {
  position: relative;
  margin-bottom: 0;
}

.policy {
  max-width: 1040px;
}

.policy h2 {
  margin-top: 26px;
}

.policy h3 {
  margin-top: 16px;
  font-size: 1.2rem;
}

.policy p,
.policy li {
  color: var(--text-soft);
}

.policy-head {
  margin-bottom: 18px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.policy-tile {
  border: 1px solid rgba(127, 182, 255, 0.3);
  border-radius: 12px;
  background: rgba(19, 39, 68, 0.55);
  padding: 12px;
}

.policy-tile b {
  display: block;
  margin-bottom: 6px;
  font-family: "Cinzel", serif;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .grid-3,
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    right: 20px;
    top: 68px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 13, 24, 0.97);
    border: 1px solid rgba(127, 182, 255, 0.3);
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .grid-3,
  .grid-2,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .split-list {
    columns: 1;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 62vh;
  }
}
