@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f5f7fb;
  --text: #0f172a;
  --muted: #475569;
  --brand: #0f4c81;
  --brand-2: #0582ca;
  --brand-3: #00a6a6;
  --accent: #ff6b35;
  --surface: #ffffff;
  --line: #dbe5f0;
  --ok: #166534;
  --ok-bg: #effcf4;
  --shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(circle at 12% 0%, #dff5ff 0%, var(--bg) 40%) no-repeat;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(245, 247, 251, 0.85);
  border-bottom: 1px solid rgba(219, 229, 240, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand .title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand .subtitle {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #164e63;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: #9fd5f0;
  background: #e6f5ff;
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 32px 0 22px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #0f4c81 0%, #0582ca 48%, #00a6a6 100%);
  color: #f8fafc;
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
}

.hero::before {
  width: 300px;
  height: 300px;
  right: -90px;
  top: -110px;
  background: #fef3c7;
}

.hero::after {
  width: 210px;
  height: 210px;
  left: -80px;
  bottom: -90px;
  background: #fda4af;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.06;
  margin: 0;
}

.hero p {
  margin: 16px 0 0;
  color: rgba(248, 250, 252, 0.95);
  max-width: 62ch;
  font-size: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(15, 23, 42, 0.22);
  font-weight: 600;
  font-size: 13px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #ffffff;
  color: #0f4c81;
  box-shadow: 0 9px 24px rgba(3, 105, 161, 0.35);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.36);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 18px;
  border-radius: 14px;
}

.hero-card .metric {
  font-size: 31px;
  font-weight: 800;
  margin: 0;
}

.hero-card .label {
  margin: 4px 0 12px;
  color: rgba(248, 250, 252, 0.9);
  font-weight: 600;
}

.section-title {
  margin: 34px 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(25px, 4vw, 36px);
}

.section-sub {
  margin-top: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 6px 20px rgba(2, 32, 71, 0.04);
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 8px;
  width: 2px;
  background: #c4d8e8;
}

.timeline a {
  position: relative;
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  color: #0c4a6e;
  padding: 10px 12px 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.timeline a::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0ea5e9;
}

.timeline a:hover {
  border-color: #b2d8ef;
  background: #f0f9ff;
}

.reg-card {
  background: var(--ok-bg);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 14px;
  margin: 16px 0 10px;
}

.reg-card p {
  margin: 5px 0;
  color: var(--ok);
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 16px;
}

.policy-hero {
  border-radius: var(--radius-lg);
  padding: 22px;
  color: #eff6ff;
  background: linear-gradient(120deg, #1d4ed8, #0f766e);
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-family: 'Space Grotesk', sans-serif;
}

.policy-hero p {
  margin: 10px 0 0;
  color: rgba(239, 246, 255, 0.95);
}

.notice {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9e8f6;
  background: #ffffff;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.policy-section {
  margin-top: 14px;
}

.policy-section h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.policy-section ul {
  margin: 0;
  padding-left: 18px;
}

.policy-section li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #334155;
}

.meta-box {
  background: #eef4ff;
  border: 1px solid #c9d8ff;
  border-radius: 12px;
  padding: 12px;
}

.meta-box p {
  margin: 6px 0;
}

.side-panel {
  position: sticky;
  top: 90px;
  align-self: start;
}

.side-panel .card {
  margin-bottom: 12px;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.contact-list a {
  display: block;
  border: 1px solid #dce9f5;
  border-radius: 10px;
  padding: 10px;
  background: #fcfeff;
  color: #0f4c81;
  font-weight: 600;
}

.footer {
  margin-top: 36px;
  border-top: 1px solid #dbe5f0;
  padding: 18px 0 26px;
  color: #475569;
}

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}

.fade-up:nth-child(2) {
  animation-delay: 0.08s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .policy-layout,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .hero {
    padding: 30px 20px;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
