@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #041620;
  --bg-soft: #0c2b3f;
  --panel: #0f3044;
  --panel-alt: #123a53;
  --brand: #00b894;
  --brand-soft: #7de2d1;
  --accent: #ffd166;
  --text: #f2f8fb;
  --text-soft: #c7dde8;
  --danger: #ef476f;
  --max-width: 1220px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 10%, #0f364e, #041620 45%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.top-line {
  background: linear-gradient(90deg, #0d2d41, #124c67);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.top-line .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}

.top-line a {
  color: var(--brand-soft);
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 21, 31, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

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

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  padding: 0.56rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-soft);
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(125, 226, 209, 0.12);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
}

.hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(2, 14, 21, 0.9), rgba(2, 14, 21, 0.42));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 13s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.08) translateY(0px); }
  100% { transform: scale(1.14) translateY(-8px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4rem;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  background: rgba(0, 184, 148, 0.18);
  color: var(--brand-soft);
  border: 1px solid rgba(125, 226, 209, 0.45);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.24rem 0.85rem;
  letter-spacing: 0.03em;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  letter-spacing: 0.02em;
  margin: 0.4rem 0 1rem;
  line-height: 1.05;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p.lead {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: #e6f2f7;
  max-width: 60ch;
}

.btn-group {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--brand), #17c3b2);
  color: #05202c;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

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

.section {
  padding: 4rem 0;
}

.section.alt {
  background: linear-gradient(160deg, rgba(17, 58, 83, 0.75), rgba(5, 27, 38, 0.86));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 0.7rem;
}

.kpi {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.3rem;
  color: var(--accent);
  margin: 0;
}

.timeline {
  border-left: 2px solid rgba(125, 226, 209, 0.4);
  margin-left: 0.35rem;
  padding-left: 1.2rem;
}

.timeline article {
  margin-bottom: 1.2rem;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.split-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 1rem;
}

.split-banner .card {
  min-height: 100%;
}

.news-card time {
  color: var(--brand-soft);
  font-weight: 700;
}

.contact-box {
  background: rgba(7, 25, 36, 0.76);
  border: 1px solid rgba(125, 226, 209, 0.28);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.policy-content {
  max-width: 980px;
}

.policy-content h2,
.policy-content h3 {
  margin-top: 1.8rem;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.94rem;
}

.policy-content th,
.policy-content td {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.62rem;
  vertical-align: top;
}

.policy-content th {
  background: rgba(0, 184, 148, 0.13);
}

footer.site-footer {
  padding: 2.2rem 0;
  background: #02121a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

footer small {
  color: #aac5d3;
}

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

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

.floating-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(125, 226, 209, 0.25);
  border-radius: 50%;
  animation: floatRing 9s ease-in-out infinite;
}

.floating-ring.one {
  right: 10%;
  top: 18%;
}

.floating-ring.two {
  right: 3%;
  top: 42%;
  width: 130px;
  height: 130px;
  animation-duration: 6s;
}

@keyframes floatRing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@media (max-width: 980px) {
  .grid-3,
  .grid-2,
  .split-banner,
  footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    right: 4%;
    top: 72px;
    flex-direction: column;
    width: min(90vw, 330px);
    background: #0b2534;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.8rem;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

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

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 4.2rem;
  }

  .top-line .container {
    font-size: 0.8rem;
  }
}
