@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@500;600&display=swap');

:root {
  --bg: #02070d;
  --bg-soft: #07111c;
  --panel: #0a1521;
  --panel-2: #0c1a29;
  --text: #f5f8fb;
  --muted: #95a9ba;
  --line: rgba(120, 177, 218, 0.18);
  --blue: #0f8ee8;
  --blue-2: #54bfff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 65% 10%, rgba(15,142,232,.11), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0; left: 0; right: 0;
  background: linear-gradient(to bottom, rgba(0,5,10,.8), transparent);
}
.nav-wrap {
  max-width: var(--max);
  margin: auto;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.wordmark-main {
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 600;
  letter-spacing: .12em;
  font-size: 17px;
}
.wordmark-main span,
footer strong span { color: var(--blue-2); }
.wordmark-sub {
  font-size: 8px;
  letter-spacing: .5em;
  margin-top: 7px;
  color: #cdd6df;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav > a:not(.nav-cta) { color: #c7d2dc; }
.site-nav > a:hover { color: #fff; }
.nav-cta {
  border: 1px solid rgba(84,191,255,.45);
  padding: 11px 16px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-cta:hover { background: rgba(15,142,232,.14); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  background: #01050a;
  min-height: 600px;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: auto;
  min-height: 600px;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,4,8,.05) 0%, rgba(0,4,8,.02) 58%, rgba(2,7,13,.92) 100%);
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #b9cad7;
}
.chevron {
  font-size: 24px;
  line-height: 1;
  margin-top: -2px;
  color: var(--blue-2);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 28px;
}
.section-kicker {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 22px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: start;
}
h1,h2,h3,p { margin-top: 0; }
h1,h2 {
  font-family: Orbitron, Inter, sans-serif;
  line-height: 1.13;
}
h1 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -.03em;
}
h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
p { color: var(--muted); }
.lead {
  color: #dfe8ef;
  font-size: 21px;
  line-height: 1.55;
}

.services {
  max-width: none;
  padding-left: max(28px, calc((100% - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100% - var(--max)) / 2 + 28px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(10,21,33,.88), rgba(2,7,13,.95)),
    radial-gradient(circle at 80% 30%, rgba(15,142,232,.18), transparent 25%);
}
.section-heading {
  max-width: calc(var(--max) - 56px);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
}
.section-heading h2 { margin: 0; max-width: 760px; }
.section-heading p { margin-bottom: 8px; }

.service-grid {
  max-width: calc(var(--max) - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 280px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.015);
  transition: transform .2s ease, background .2s ease;
}
.service-card:hover {
  background: rgba(15,142,232,.05);
  transform: translateY(-2px);
}
.feature-card {
  background:
    linear-gradient(135deg, rgba(15,142,232,.19), rgba(15,142,232,.025));
}
.card-number {
  font-family: Orbitron, Inter, sans-serif;
  color: var(--blue-2);
  font-size: 12px;
  letter-spacing: .16em;
}
.service-card p { max-width: 520px; margin-bottom: 0; }

.process {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 95px;
}
.process-copy {
  position: sticky;
  top: 60px;
  align-self: start;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.process-steps li {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.process-steps li > span {
  font-family: Orbitron, Inter, sans-serif;
  color: var(--blue-2);
  font-size: 12px;
  padding-top: 6px;
}
.process-steps h3 { margin-bottom: 6px; }
.process-steps p { margin-bottom: 0; }

.contact { padding-top: 30px; }
.contact-panel {
  padding: 68px;
  border: 1px solid rgba(84,191,255,.25);
  background:
    linear-gradient(135deg, rgba(15,142,232,.15), rgba(6,14,23,.94) 48%),
    var(--panel);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.contact-panel p { max-width: 710px; margin-bottom: 0; }
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.primary-button,
.secondary-button {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.primary-button {
  background: var(--blue);
  color: white;
}
.primary-button:hover { background: #1c9cf4; }
.secondary-button {
  border: 1px solid var(--line);
  color: #dbe6ed;
}
.secondary-button:hover { border-color: rgba(84,191,255,.5); }

footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.footer-wrap {
  max-width: var(--max);
  margin: auto;
  padding: 38px 28px 48px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}
footer strong {
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: .12em;
  font-size: 14px;
}
footer p {
  margin: 8px 0 0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 78px;
    right: 22px;
    left: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: rgba(4,10,17,.97);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .site-nav.open { display: flex; }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.22);
  }
  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: white;
  }
  .hero, .hero-image { min-height: 460px; }
  .hero-image { height: 62vw; }
  .intro-grid,
  .section-heading,
  .process,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .intro-grid { gap: 34px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .process-copy { position: static; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .nav-wrap { padding: 20px; }
  .wordmark-main { font-size: 13px; }
  .wordmark-sub { font-size: 6px; }
  .hero { min-height: 410px; }
  .hero-image {
    height: 430px;
    width: 100%;
    object-fit: cover;
    object-position: 60% center;
  }
  .hero-scroll { bottom: 14px; }
  .section { padding: 68px 20px; }
  .section-heading { margin-bottom: 32px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; padding: 28px; }
  .contact-panel { padding: 34px 26px; }
  .primary-button, .secondary-button {
    width: 100%;
    text-align: center;
  }
  .footer-wrap {
    padding-left: 20px; padding-right: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

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