:root {
  --bg: #071626;
  --bg-soft: #0e2338;
  --panel: rgba(12, 33, 54, 0.85);
  --panel-solid: #122c47;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f3f7fb;
  --muted: #b9c8d8;
  --accent: #0fb6ff;
  --accent-2: #17d6a3;
  --warning: #ffb347;
  --danger: #ff6b6b;
  --max: 1240px;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(15, 182, 255, 0.14), transparent 42%),
    radial-gradient(circle at 90% 20%, rgba(23, 214, 163, 0.12), transparent 36%),
    linear-gradient(160deg, #04111f 0%, #0a1f34 40%, #061423 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

main {
  overflow: clip;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 12, 22, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  position: relative;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(15, 182, 255, 0.12);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 60px 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(3, 10, 19, 0.82) 0%, rgba(3, 10, 19, 0.2) 50%, rgba(3, 10, 19, 0.85) 100%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.11) translateY(-8px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d7e7f7;
  background: rgba(0, 0, 0, 0.28);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  margin-top: 18px;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.45rem);
}

h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.hero p,
.section-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #22e4c8);
  color: #032033;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: saturate(115%);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ecf6ff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(56px, 9vw, 112px) 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  max-width: 840px;
}

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

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

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

.card {
  background: linear-gradient(160deg, rgba(16, 39, 61, 0.9), rgba(9, 25, 41, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 20, 34, 0.78);
  padding: 20px;
}

.stat strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  display: block;
  color: #c8f4ff;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(23, 214, 163, 0.18);
}

.media-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: #d8ebff;
  background: rgba(255, 255, 255, 0.06);
}

.page-banner {
  min-height: 48vh;
  display: grid;
  place-items: end start;
  position: relative;
  padding: 70px 0 56px;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 12, 22, 0.85), rgba(3, 12, 22, 0.25) 52%, rgba(3, 12, 22, 0.78));
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.policy-wrap {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 24px;
}

.policy-nav {
  position: sticky;
  top: 88px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 21, 35, 0.85);
  padding: 14px;
}

.policy-nav a {
  display: block;
  color: var(--muted);
  padding: 8px 8px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.policy-nav a:hover {
  background: rgba(15, 182, 255, 0.12);
  color: var(--text);
}

.policy-content section {
  margin-bottom: 28px;
  scroll-margin-top: 90px;
}

.policy-content h2 {
  margin-bottom: 10px;
}

.policy-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 7px;
  color: #dbe9f7;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: rgba(3, 12, 22, 0.92);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 20px;
}

.footer-brand {
  max-width: 370px;
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #aac0d6;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.float-ornament {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(15, 182, 255, 0.25), transparent 65%);
  filter: blur(6px);
  animation: drift 12s ease-in-out infinite alternate;
}

.float-ornament.alt {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 60% 40%, rgba(23, 214, 163, 0.25), transparent 65%);
  animation-duration: 15s;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(20px, -24px, 0); }
}

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

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

  .policy-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 72px;
    display: grid;
    background: rgba(3, 12, 22, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: 0.25s ease;
  }

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

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

  .hero {
    min-height: 66vh;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
