:root {
  --navy-950: #031024;
  --navy-900: #061832;
  --navy-800: #082247;
  --blue-600: #1269ff;
  --blue-500: #2d84ff;
  --blue-300: #73c7ff;
  --ink: #07142d;
  --text: #23324a;
  --muted: #66758c;
  --line: #d7e0ee;
  --paper: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(3, 16, 36, 0.16);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(18, 105, 255, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 6px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(3, 16, 36, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-elevated {
  background: rgba(3, 16, 36, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-transform: uppercase;
}

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

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.76);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 13px;
  font-weight: 760;
}

nav a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--white);
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.header-action,
.button.primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 14px 32px rgba(18, 105, 255, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  min-height: 740px;
  padding: 154px clamp(18px, 5vw, 72px) 82px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, #031024 0%, #061832 46%, #082247 100%);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.15) contrast(1.04);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 16, 36, 0.98), rgba(3, 16, 36, 0.86) 46%, rgba(3, 16, 36, 0.48)),
    linear-gradient(180deg, rgba(3, 16, 36, 0.18), rgba(3, 16, 36, 0.86)),
    repeating-linear-gradient(
      90deg,
      rgba(115, 199, 255, 0.06) 0,
      rgba(115, 199, 255, 0.06) 1px,
      transparent 1px,
      transparent 72px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(115, 199, 255, 0.05) 0,
      rgba(115, 199, 255, 0.05) 1px,
      transparent 1px,
      transparent 72px
    );
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-live-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  pointer-events: none;
}

.hero-live-bg::selection {
  background: transparent;
}

.hero-content,
.hero-panel {
  isolation: isolate;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 820px;
  padding: clamp(10px, 1.6vw, 18px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--blue-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-subhead {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  display: grid;
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(115, 199, 255, 0.32), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.hero-panel div {
  position: relative;
  padding: 22px;
  background: rgba(5, 20, 43, 0.82);
}

.hero-panel div::after {
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(115, 199, 255, 0.54), transparent);
}

.hero-panel span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.trust-bar {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -48px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item {
  position: relative;
  min-height: 94px;
  padding: 25px 22px 22px 52px;
  color: #2e3f59;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item::before {
  position: absolute;
  left: 22px;
  top: 26px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--blue-600);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.82);
}

.section {
  padding: 96px clamp(18px, 5vw, 72px);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-bottom: 42px;
  text-align: center;
}

.rich-copy p,
.founder-copy p,
.government-copy p,
.feature-card p,
.service-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.rich-copy p {
  font-size: 17px;
}

.about {
  background: var(--paper);
}

.founder-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 105, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.founder-card {
  display: block;
  padding: clamp(18px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.founder-image {
  max-width: 116px;
  flex: 0 0 116px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.founder-image img {
  width: 100%;
  height: auto;
  max-height: 125px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  padding: clamp(10px, 2vw, 24px);
}

.founder-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.founder-title-row h2 {
  margin-bottom: 0;
}

.founder-copy h2,
.founder-copy h3 {
  color: var(--white);
}

.founder-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.highlights,
.services {
  background: var(--white);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.highlight-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.highlight-card,
.service-card,
.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(3, 16, 36, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.highlight-card:hover,
.service-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 105, 255, 0.34);
  box-shadow: 0 26px 60px rgba(3, 16, 36, 0.12);
}

.highlight-card {
  min-height: 132px;
  justify-content: flex-end;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  background:
    linear-gradient(180deg, rgba(18, 105, 255, 0.06), transparent),
    var(--white);
}

.service-card {
  min-height: 270px;
}

.icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: rgba(18, 105, 255, 0.09);
  border: 1px solid rgba(18, 105, 255, 0.22);
  border-radius: 50%;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.data-icon::before {
  inset: 12px 15px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
  box-shadow:
    0 7px 0 -1px rgba(18, 105, 255, 0.85),
    0 14px 0 -1px rgba(18, 105, 255, 0.55);
}

.cloud-icon::before {
  left: 11px;
  top: 20px;
  width: 26px;
  height: 13px;
  border: 2px solid var(--blue-600);
  border-radius: 16px;
}

.shield-icon::before {
  left: 15px;
  top: 10px;
  width: 18px;
  height: 24px;
  border: 2px solid var(--blue-600);
  border-radius: 10px 10px 14px 14px;
}

.chart-icon::before {
  left: 14px;
  bottom: 12px;
  width: 4px;
  height: 18px;
  background: var(--blue-600);
  box-shadow: 9px -7px 0 var(--blue-600), 18px -13px 0 var(--blue-600);
}

.ai-icon::before {
  inset: 13px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
}

.ai-icon::after {
  left: 22px;
  top: 7px;
  width: 2px;
  height: 34px;
  background: var(--blue-600);
  transform: rotate(45deg);
}

.roadmap-icon::before {
  left: 12px;
  top: 14px;
  width: 24px;
  height: 20px;
  border: 2px solid var(--blue-600);
  border-radius: 4px;
}

.advisory-icon::before {
  left: 13px;
  top: 11px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
}

.industries {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 248, 252, 0.96)),
    var(--paper);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.industry-list span,
.logo-cloud span,
.solution-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  color: #2d3e58;
  font-size: 14px;
  font-weight: 820;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.government-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 0;
  align-items: stretch;
  color: var(--white);
  background: var(--navy-950);
}

.government-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.government-copy {
  padding: clamp(48px, 6vw, 92px);
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 105, 255, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
}

.government-copy h2 {
  max-width: 760px;
  color: var(--white);
}

.government-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.solution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.solution-list span {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.feature-card {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(18, 105, 255, 0.07), transparent 55%),
    var(--white);
}

.tech-stack {
  padding: 86px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.tech-stack > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-cloud span {
  min-width: 120px;
  justify-content: center;
  border-radius: var(--radius);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(18, 105, 255, 0.28), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.contact > * {
  max-width: none;
}

.contact h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

address strong {
  color: var(--white);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

label {
  display: grid;
  gap: 8px;
  color: #31415a;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #40516a;
  font-size: 14px;
  font-weight: 720;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 34px;
  padding: 52px clamp(18px, 5vw, 72px) 34px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

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

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-live-bg {
    opacity: 0.42;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
  }

  nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
  }

  body.nav-open nav {
    position: fixed;
    inset: 74px 18px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(3, 16, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
    min-height: 720px;
  }

  .hero-panel {
    max-width: 680px;
  }

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

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .split,
  .government-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .founder-image {
    width: min(116px, 100%);
  }

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

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

  .government-image img {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .hero {
    min-height: auto;
    padding: 126px 18px 76px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.12;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .button,
  .header-action {
    width: 100%;
  }

  .trust-bar,
  .highlight-grid,
  .service-grid,
  .feature-grid,
  .lead-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section,
  .contact,
  .tech-stack {
    padding: 72px 18px;
  }

  .founder-card {
    padding: 16px;
  }

  .founder-title-row {
    align-items: flex-start;
    gap: 14px;
  }

  .founder-image img {
    max-height: 125px;
  }

  .government-copy {
    padding: 56px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }
}
