:root {
  --navy: #0b1c2c;
  --navy-mid: #123047;
  --ink: #142433;
  --muted: #5b6b78;
  --line: #d7dee4;
  --paper: #f4f6f8;
  --white: #ffffff;
  --gold: #c9a227;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Calibri, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.logo {
  display: block;
  width: 92px;
  height: 64px;
  object-fit: contain;
  background: #000;
}

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

.nav a {
  text-decoration: none;
  color: #eef3f7;
  font-size: 15px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 12px;
}

.hero {
  min-height: 92vh;
  background: #0b1c2c;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 20px 120px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #0b1c2c;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 18, 28, 0.38);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero {
  min-height: 70vh;
  padding-bottom: 80px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.kicker {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 560px;
  color: #e8eef3;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  border-radius: 999px;
  padding: 12px 34px;
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-dark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-solid {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.feature-band {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  padding: 28px 22px;
  min-height: 240px;
  text-align: center;
}

.glass-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
}

.glass-card p {
  margin: 0;
  color: #334155;
  font-size: 14px;
}

.section {
  padding: 72px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.lede {
  max-width: 720px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.muted-panel {
  background: var(--paper);
  padding: 28px;
}

.card-list {
  display: grid;
  gap: 28px;
}

.solution {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.solution img {
  width: 160px;
  height: 120px;
  object-fit: cover;
}

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

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

blockquote {
  margin: 0;
  background: var(--paper);
  padding: 24px;
  font-size: 15px;
}

blockquote footer {
  margin-top: 16px;
  font-weight: 600;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
}

.cta-band a {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

label {
  display: block;
  font-size: 14px;
  margin: 0 0 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  margin-bottom: 16px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.details dt {
  font-weight: 600;
  margin-top: 16px;
}

.details dd {
  margin: 4px 0 0;
}

.site-footer {
  background: #07131e;
  color: #c5d0d8;
  padding: 36px 0 24px;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.social {
  display: flex;
  gap: 16px;
}

.social a {
  color: #fff;
}

.note {
  background: #eef6ef;
  border: 1px solid #cfe3d2;
  padding: 14px 16px;
  margin-bottom: 24px;
}

@media (max-width: 860px) {
  .grid-3,
  .split,
  .quote-grid,
  .contact-grid,
  .solution {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 88px;
    right: 16px;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 12px;
  }

  .nav.open {
    display: flex;
  }

  .site-header {
    padding: 14px 16px;
  }
}
