:root {
  --ink: #10253f;
  --muted: #53677c;
  --panel: #ffffff;
  --panel-2: #f3f7fb;
  --line: rgba(16, 72, 126, .16);
  --cyan: #13a8e2;
  --blue: #0b63ce;
  --navy: #071b36;
  --green: #11a87d;
  --coral: #ee5f4d;
  --gold: #f2b84b;
  --steel: #75889a;
  --shadow: 0 22px 60px rgba(8, 35, 70, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  line-height: 1.55;
}

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

img {
  max-width: 100%;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #dbe8f3;
  box-shadow: var(--shadow);
}

.photo-frame img,
.service-photo img,
.market-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-frame::after,
.service-photo::after,
.market-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 54, 0), rgba(7, 27, 54, .34));
  content: "";
  pointer-events: none;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(242, 247, 252, .58), #ffffff 700px),
    url("assets/cyber-grid.svg") center top / 100% auto no-repeat;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 72, 126, .14);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy);
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #d5e8f7;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar a {
  color: #ffffff;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 520px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 520px;
  height: auto;
  max-height: 136px;
  object-fit: contain;
}

.brand small {
  display: block;
  color: #66798c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand span {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #f2f7fb;
  color: var(--navy);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #1e3b5c;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(19, 168, 226, .12);
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(11, 99, 206, .45);
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(11, 99, 206, .18);
}

.button.secondary {
  color: var(--blue);
  background: #ffffff;
  box-shadow: none;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 109px);
  padding: 86px 22px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(45px, 8vw, 86px);
}

h2 {
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
}

.hero p {
  max-width: 660px;
  font-size: 20px;
}

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.signal-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-visual .signal-panel {
  padding: 22px;
}

.news-ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f3f8fc;
}

.news-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.news-label {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.news-inner strong {
  color: var(--ink);
}

.news-inner span {
  color: var(--muted);
}

.shield-large {
  width: min(100%, 360px);
  display: block;
  margin: 8px auto 26px;
  filter: drop-shadow(0 24px 45px rgba(72, 228, 255, .18));
}

.hero-photo {
  min-height: 330px;
}

.metrics {
  display: grid;
  gap: 12px;
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.metric strong {
  color: var(--navy);
}

.metric span {
  color: var(--muted);
  text-align: right;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 22px;
}

.section.alt {
  max-width: none;
  background: #f3f7fb;
}

.section.alt > .section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 470px;
}

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

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

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

.service-photo {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  margin: -24px -24px 20px;
  background: #dbe8f3;
}

.market-photo {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: #dbe8f3;
  box-shadow: var(--shadow);
}

.mt-18 {
  margin-top: 18px;
}

.feature-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.feature-tile {
  min-height: 250px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .98)),
    radial-gradient(circle at 70% 15%, rgba(19, 168, 226, .22), transparent 34%);
  border-right: 1px solid var(--line);
}

.feature-tile:last-child {
  border-right: 0;
}

.feature-tile h3 {
  margin-top: 82px;
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(8, 35, 70, .08);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-item {
  padding: 22px;
  background: #ffffff;
}

.proof-item strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

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

.sector {
  min-height: 116px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .98)),
    repeating-linear-gradient(135deg, rgba(19, 168, 226, .12), rgba(19, 168, 226, .12) 1px, transparent 1px, transparent 14px);
  color: var(--navy);
  font-weight: 850;
}

.mission-card {
  min-height: 260px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mission-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.mission-card div {
  padding: 18px;
}

.mission-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 6px;
}

.mission-card span {
  color: var(--muted);
  font-size: 14px;
}

.vehicle-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
  gap: 26px;
  align-items: stretch;
}

.vehicle-band .card {
  background: linear-gradient(135deg, #ffffff, #eef7fd);
}

.quote {
  padding: 28px;
  border-left: 4px solid var(--coral);
  background: #ffffff;
  color: var(--ink);
  font-size: 20px;
}

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

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(8, 35, 70, .06);
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}

.faq p {
  margin-bottom: 0;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-copy ul {
  color: var(--muted);
}

.partner {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid rgba(19, 168, 226, .28);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(19, 168, 226, .08);
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.list li {
  position: relative;
  padding: 9px 0 9px 22px;
  color: #39546e;
  border-top: 1px solid var(--line);
}

.list li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "/";
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px 54px;
}

.page-hero p {
  max-width: 730px;
  font-size: 19px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  border-left: 2px solid rgba(102, 230, 255, .42);
  padding: 5px 0 20px 22px;
}

.timeline-item strong {
  color: var(--ink);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 22px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #dbeaf4;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbfd;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

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

.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--navy);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 22px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--steel);
  font-size: 14px;
}

.footer a {
  color: #ffffff;
}

@media (max-width: 860px) {
  .brand {
    min-width: 320px;
  }

  .brand img {
    width: 320px;
    max-height: 84px;
  }

  .topbar-inner,
  .news-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .hero,
  .split,
  .contact-grid,
  .contact-band,
  .vehicle-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .section-head {
    display: block;
  }

  .grid,
  .grid.two,
  .visual-grid,
  .feature-tiles,
  .proof-strip,
  .sector-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 250px;
  }

  .brand img {
    width: 250px;
    max-height: 70px;
  }

  .brand span {
    display: none;
  }

  .brand small {
    display: none;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .page-hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
