:root {
  --navy: #071224;
  --navy-2: #0b1932;
  --navy-3: #102442;
  --blue: #0060a8;
  --blue-light: #0b9bd8;
  --green: #76b82a;
  --green-soft: #a7e45c;
  --white: #f8fbff;
  --text: #eef5ff;
  --muted: #aebbd0;
  --line: rgba(255,255,255,.14);
  --card: rgba(255,255,255,.065);
  --card-strong: rgba(255,255,255,.10);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 3%, rgba(11,155,216,.28), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(118,184,42,.20), transparent 28%),
    linear-gradient(180deg, #061020 0%, #081226 42%, #050914 100%);
  color: var(--text);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 42px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(7,18,36,.78);
  backdrop-filter: blur(18px);
}

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

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-symbol {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 950;
  letter-spacing: .04em;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 15px 36px rgba(0,96,168,.30);
}
.brand-text strong {
  display: block;
  font-size: .98rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand-text small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .08em;
  white-space: nowrap;
}
.menu { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 680; }
.menu a { transition: color .18s ease; }
.menu a:hover { color: var(--white); }
.menu-button { display: none; }

.section-dark { position: relative; overflow: hidden; }
.hero { padding: 88px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 48px; }
.eyebrow, .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dff4ff;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow {
  border: 1px solid rgba(11,155,216,.34);
  background: rgba(11,155,216,.10);
  padding: 9px 13px;
  border-radius: 999px;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-soft);
  box-shadow: 0 0 18px var(--green-soft);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 24px 0 24px;
  max-width: 860px;
  font-size: clamp(2.55rem, 5.8vw, 5.15rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 850;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 830;
}
h3 { font-size: 1.17rem; line-height: 1.25; letter-spacing: -.015em; }
.lead { max-width: 720px; color: #c7d4e8; font-size: clamp(1.05rem, 1.35vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 820;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--green));
  color: #06101e;
  border: none;
  box-shadow: 0 18px 46px rgba(11,155,216,.20);
}
.button-secondary { background: rgba(255,255,255,.055); color: var(--white); }

.hero-media {
  position: relative;
  min-height: 570px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-media img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; }
.media-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,36,.82) 0%, rgba(7,18,36,.18) 50%, rgba(7,18,36,.38) 100%),
    linear-gradient(0deg, rgba(7,18,36,.86) 0%, transparent 58%);
  z-index: 1;
}
.floating-badge, .floating-panel {
  position: absolute; z-index: 2;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,18,36,.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.floating-badge {
  top: 24px; right: 24px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  color: #e7ffdf;
}
.floating-panel {
  left: 24px; right: 24px; bottom: 24px;
  border-radius: 24px;
  padding: 20px;
}
.floating-panel span { display: block; color: var(--muted); font-size: .86rem; text-transform: uppercase; letter-spacing: .10em; font-weight: 800; }
.floating-panel strong { display: block; margin-top: 4px; font-size: 1.22rem; line-height: 1.28; }

.logo-band { padding: 34px 0 20px; }
.logo-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 20px 70px rgba(0,0,0,.20);
}
.logo-card {
  background: white;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
}
.logo-card img { border-radius: 18px; width: 100%; height: auto; }
.logo-copy h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: 14px; }
.logo-copy p:not(.label) { color: var(--muted); max-width: 780px; }
.label { color: #9adfff; }

.section { padding: 76px 0; }
.section-heading { max-width: 880px; margin-bottom: 34px; }
.section-heading p:not(.label) { color: var(--muted); font-size: 1.07rem; }
.section-heading.compact { max-width: 760px; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards.six { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px;
  min-height: 210px;
  box-shadow: 0 16px 50px rgba(0,0,0,.14);
}
.card:hover { background: var(--card-strong); border-color: rgba(118,184,42,.34); }
.card p { color: var(--muted); margin-bottom: 0; }
.card-number {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: rgba(11,155,216,.11);
  border: 1px solid rgba(11,155,216,.22);
  color: #b9ecff;
  font-weight: 900;
}
.icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0,96,168,.35), rgba(118,184,42,.24));
  border: 1px solid rgba(255,255,255,.15);
  font-weight: 930;
  color: white;
}

.image-section { padding-top: 44px; }
.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; }
.image-stack { position: relative; min-height: 530px; }
.image-main, .image-small {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
}
.image-main {
  width: 82%; height: 420px;
  left: 0; top: 0;
  border-radius: 32px;
}
.image-small {
  width: 50%; height: 290px;
  right: 0; bottom: 0;
  border-radius: 28px;
}
.split-copy p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: #dce7f8;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 18px; height: 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue-light), var(--green));
}

.highlight {
  background:
    radial-gradient(circle at 86% 10%, rgba(118,184,42,.16), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(11,155,216,.14), transparent 28%);
}
.highlight-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: start;
}
.highlight p { color: var(--muted); }
.application-list { display: grid; gap: 14px; }
.application-list div {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
}
.application-list strong { display: block; margin-bottom: 4px; }
.application-list span { color: var(--muted); }

.image-banner {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 0;
}
.image-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,18,36,.93), rgba(7,18,36,.40), rgba(7,18,36,.70)), linear-gradient(0deg, rgba(7,18,36,.92), transparent 70%);
}
.banner-content { position: relative; z-index: 1; padding: 92px 0; }
.banner-content h2 { max-width: 880px; }

.contact { padding: 78px 0; }
.contact-box {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(0,96,168,.19), rgba(118,184,42,.12)), rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}
.contact-box p:not(.label) { color: var(--muted); max-width: 780px; }
.contact-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(7,18,36,.62);
  padding: 24px;
}
.contact-card span { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .10em; font-weight: 800; font-size: .80rem; }
.contact-card a { display: block; margin-top: 8px; font-size: clamp(1.26rem, 2vw, 1.65rem); font-weight: 900; color: #ecfff1; }

.site-footer { border-top: 1px solid rgba(255,255,255,.09); padding: 26px 0; color: var(--muted); font-size: .92rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .hero-grid, .logo-grid, .split, .highlight-grid, .contact-box { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-media, .hero-media img { min-height: 460px; }
  .cards.three, .cards.six { grid-template-columns: 1fr 1fr; }
  .logo-grid { padding: 20px; }
  .logo-card { max-width: 360px; }
  .image-stack { min-height: 470px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 30px, var(--max)); }
  .nav { height: auto; min-height: 74px; flex-wrap: wrap; padding: 10px 0; }
  .brand-text strong { white-space: normal; line-height: 1.1; }
  .brand-text small { display: none; }
  .menu-button {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: var(--white);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 800;
  }
  .menu {
    display: none;
    width: 100%;
    padding: 10px 0 8px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .menu.is-open { display: flex; }
  h1 { letter-spacing: -0.035em; }
  .cards.three, .cards.six { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 410px; }
  .floating-badge { top: 16px; right: 16px; }
  .floating-panel { left: 16px; right: 16px; bottom: 16px; }
  .image-stack { min-height: unset; display: grid; gap: 16px; }
  .image-main, .image-small { position: static; width: 100%; height: 280px; }
  .section { padding: 58px 0; }
  .contact-box { padding: 24px; }
}
