:root {
  --bg: #061a2b;
  --bg-soft: #0c2b44;
  --bg-card: #0f2238;
  --ink: #eff6fb;
  --ink-muted: #b6c9da;
  --line: rgba(182, 201, 218, 0.22);
  --brand: #00aeef;
  --brand-2: #3fd5ff;
  --accent: #ff8a00;
  --success: #1bb55c;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 15% 15%, #14385a 0%, transparent 35%),
    radial-gradient(circle at 85% 25%, #0b4870 0%, transparent 30%),
    linear-gradient(150deg, var(--bg) 0%, #071f34 45%, #041322 100%);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

a:hover,
a:focus-visible {
  color: #8fe7ff;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(8px);
  background: rgba(4, 16, 29, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(0, 174, 239, 0.15);
  color: #b7efff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 8px;
  padding: 6px 10px;
}

main {
  min-height: 65vh;
}

.section {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  padding: 70px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(var(--max-width), 92vw);
  margin: 26px auto 0;
  min-height: 76vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(143, 211, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 14, 24, 0.85) 18%, rgba(4, 14, 24, 0.35) 62%, rgba(0, 174, 239, 0.12) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: zoomReveal 8s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  padding: clamp(36px, 7vw, 90px) clamp(24px, 4vw, 55px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(143, 211, 255, 0.55);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #cbf3ff;
  background: rgba(6, 30, 49, 0.6);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.lead {
  color: #d8e7f4;
  max-width: 64ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #032437;
  background: linear-gradient(120deg, var(--brand-2), var(--brand));
}

.btn-ghost {
  color: #ddf5ff;
  border-color: rgba(143, 211, 255, 0.5);
  background: rgba(8, 30, 47, 0.42);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 174, 239, 0.25);
}

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

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

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

.card {
  background: linear-gradient(160deg, rgba(16, 42, 67, 0.84), rgba(9, 27, 46, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -35px;
  top: -40px;
  background: radial-gradient(circle, rgba(63, 213, 255, 0.18), transparent 68%);
}

.icon-chip {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 174, 239, 0.09);
  border: 1px solid rgba(143, 211, 255, 0.34);
  margin-bottom: 16px;
}

.kpi {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 6px;
}

.banner {
  position: relative;
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.banner-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(3, 14, 24, 0.88) 8%, rgba(3, 14, 24, 0.5) 45%, rgba(3, 14, 24, 0.12) 100%);
}

.banner-content {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  max-width: min(560px, 82%);
}

.banner-content h3 {
  margin-bottom: 10px;
}

.banner-content p {
  margin: 0;
  color: #d6e8f7;
}

.timeline {
  position: relative;
  margin-top: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(#8fe7ff, transparent);
}

.timeline-item {
  position: relative;
  padding-left: 42px;
  margin-bottom: 26px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 4px;
  top: 7px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 6px rgba(63, 213, 255, 0.16);
}

.news-item {
  border-bottom: 1px dashed rgba(182, 201, 218, 0.35);
  padding: 16px 0;
}

.news-item:last-child {
  border-bottom: 0;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.17);
  color: #ffd2a0;
  font-size: 12px;
  margin-right: 8px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: rgba(63, 213, 255, 0.08);
}

.small {
  font-size: 0.93rem;
  color: var(--ink-muted);
}

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

.data-list li {
  margin: 7px 0;
  color: #d7e8f6;
}

.site-footer {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  background: rgba(3, 13, 22, 0.88);
}

.footer-shell {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.footer-compact {
  font-size: 0.9rem;
}

.footer-company,
.footer-contact {
  min-width: 240px;
}

.footer-title {
  font-weight: 700;
  color: #e8f5ff;
  margin: 0 0 4px;
}

.footer-company p,
.footer-contact p {
  margin: 3px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 3px;
}

.footer-links a {
  padding: 4px 8px;
  border: 1px solid rgba(143, 211, 255, 0.25);
  border-radius: 999px;
  font-size: 0.84rem;
}

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
}

.stagger.is-visible > * {
  animation: staggerIn 0.55s ease forwards;
}

.stagger.is-visible > *:nth-child(2) { animation-delay: 0.08s; }
.stagger.is-visible > *:nth-child(3) { animation-delay: 0.16s; }
.stagger.is-visible > *:nth-child(4) { animation-delay: 0.24s; }
.stagger.is-visible > *:nth-child(5) { animation-delay: 0.32s; }
.stagger.is-visible > *:nth-child(6) { animation-delay: 0.40s; }

@keyframes zoomReveal {
  from { transform: scale(1.14); }
  to { transform: scale(1.03); }
}

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

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

  .nav-links {
    position: fixed;
    right: 16px;
    top: 84px;
    width: min(320px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 18, 31, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

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

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

  .hero {
    min-height: 66vh;
  }

  .banner img {
    height: 260px;
  }

  .banner-content {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .footer-shell {
    gap: 8px;
  }

  .footer-links {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
