:root {
  --ink: #071b35;
  --navy: #061a36;
  --electric: #50e4ff;
  --line: #c9d8e6;
  --muted: #55708c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  background: #fff;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.topbar {
  background: #06142a;
  color: #d7ecff;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}
.topbar-inner {
  height: 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: var(--electric);
}
.site-header {
  height: 82px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid #e9eff4;
}
.nav {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 138px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 0.84rem;
  font-weight: 700;
}
.nav nav > a:not(.nav-cta) {
  color: #193754;
}
.nav-cta,
.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 13px 17px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--navy);
}
svg {
  width: 18px;
  height: 18px;
}
.hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(115deg, #051426 0%, #062b5f 58%, #0966db 100%);
  display: flex;
  align-items: center;
}
.hero:after {
  content: "";
  position: absolute;
  width: 44vw;
  min-width: 540px;
  aspect-ratio: 1;
  border: 1px solid rgba(99, 225, 255, 0.3);
  border-radius: 50%;
  right: -12vw;
  top: 50%;
  transform: translateY(-48%);
  box-shadow:
    0 0 0 65px rgba(90, 224, 255, 0.05),
    0 0 0 130px rgba(90, 224, 255, 0.045),
    0 0 0 195px rgba(90, 224, 255, 0.025);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(125, 223, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 223, 255, 0.22) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000 0%, #000 50%, transparent 87%);
}
.hero-content {
  padding: 90px 0 110px;
  position: relative;
  z-index: 1;
}
.eyebrow,
.section-kicker {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  font-weight: 500;
}
.eyebrow {
  color: var(--electric);
  display: flex;
  gap: 9px;
  align-items: center;
}
.eyebrow span {
  width: 23px;
  height: 1px;
  background: var(--electric);
}
.hero h1 {
  font-size: clamp(3.35rem, 7vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 24px 0;
  max-width: 780px;
}
.hero h1 em {
  font-style: normal;
  color: var(--electric);
}
.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 550px;
  color: #d8e8f7;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 34px;
}
.button {
  font-size: 0.86rem;
  padding: 15px 20px;
  border: 0;
  cursor: pointer;
}
.button-primary {
  color: var(--navy);
  background: var(--electric);
}
.button-link {
  color: #fff;
}
.hero-badge {
  position: absolute;
  z-index: 1;
  right: max(4vw, 50px);
  bottom: 52px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: "DM Mono", monospace;
}
.badge-orbit {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--electric);
  position: relative;
}
.badge-orbit:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--electric);
  border-radius: 50%;
  top: -3px;
  left: 12px;
}
.hero-badge strong,
.hero-badge span {
  display: block;
}
.hero-badge strong {
  font-size: 0.65rem;
  color: var(--electric);
}
.hero-badge div span {
  font-size: 0.65rem;
  margin-top: 4px;
  color: #d2e8fb;
}
.intro {
  padding: 118px 0;
}
.intro-layout {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 30px;
}
.section-kicker {
  color: #0570d9;
  margin: 5px 0 18px;
}
.intro h2,
.section-heading h2,
.coverage h2,
.contact h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 0;
}
.intro-copy {
  color: var(--muted);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 28px 0;
}
.audience {
  display: flex;
  gap: 38px;
  padding-top: 10px;
}
.audience > div {
  display: flex;
  gap: 11px;
  max-width: 270px;
  color: #0a74d9;
}
.audience span {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
}
.audience strong {
  color: var(--ink);
  display: block;
}
.services {
  padding: 96px 0 118px;
  background: #f2f8fd;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 45px;
}
.section-heading p:not(.section-kicker) {
  color: var(--muted);
  max-width: 330px;
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 285px;
  padding: 27px;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.2s ease;
}
.service-card:hover {
  background: var(--navy);
  color: #fff;
}
.service-card:hover p,
.service-card:hover .service-number {
  color: #b5d8fb;
}
.service-card:hover a {
  color: var(--electric);
}
.service-number {
  font-family: "DM Mono", monospace;
  color: #8398ad;
  font-size: 0.69rem;
}
.service-icon {
  color: #0872dc;
  margin: 38px 0 17px;
  width: 31px;
  height: 31px;
}
.service-card h3 {
  margin: 0 0 7px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.service-card p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
  max-width: 270px;
  margin: 0;
}
.service-card a {
  position: absolute;
  bottom: 22px;
  right: 23px;
  color: #0b6ed5;
}
.coverage {
  background: var(--navy);
  color: #fff;
  padding: 95px 0;
  position: relative;
  overflow: hidden;
}
.coverage:after {
  content: "N";
  position: absolute;
  right: 4%;
  bottom: -86px;
  font-size: 28rem;
  line-height: 1;
  color: rgba(83, 224, 255, 0.05);
  font-weight: 800;
}
.coverage-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.coverage .section-kicker {
  color: var(--electric);
}
.coverage-copy {
  max-width: 410px;
  padding-top: 15px;
}
.coverage-copy p {
  line-height: 1.75;
  color: #c4d9ec;
}
.coverage-copy a {
  margin-top: 22px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--electric);
  font-weight: 800;
  font-size: 0.88rem;
}
.contact {
  padding: 115px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.contact-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 310px;
  margin-top: 27px;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 34px;
}
.contact-direct a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #086fda;
  font-weight: 800;
  font-size: 0.88rem;
}
.contact-form {
  background: #f1f7fc;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.contact-form[hidden] { display: none; }
.contact-form label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #24435f;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 7px;
  width: 100%;
  border: 1px solid #c6d7e5;
  background: #fff;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
}
.contact-form textarea {
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form button {
  align-self: flex-start;
  margin-top: 3px;
}
.contact-form button:disabled { opacity: .65; cursor: wait; }
.form-success { background: #f1f7fc; border: 1px solid #a5d5f3; padding: 52px 33px; text-align: center; }
.form-success[hidden] { display: none; }
.form-success svg { color: #0872dc; width: 48px; height: 48px; margin-bottom: 16px; }
.form-success h3 { font-size: 1.8rem; letter-spacing: -.05em; margin: 0; }
.form-success p { color: var(--muted); font-size: .92rem; line-height: 1.7; margin: 12px auto 0; max-width: 340px; }
footer {
  background: #06142a;
  color: #d3e3f2;
  padding: 35px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 0.75rem;
}
.footer-inner .brand img {
  filter: brightness(0) invert(1);
  width: 112px;
  height: 36px;
}
.footer-inner p {
  margin: 0;
}
.footer-inner div {
  display: flex;
  gap: 20px;
  color: var(--electric);
}
@media (max-width: 720px) {
  .wrap {
    width: min(100% - 36px, 1180px);
  }
  .topbar-inner {
    font-size: 0.62rem;
  }
  .site-header {
    height: 69px;
  }
  .brand img {
    width: 116px;
    height: 42px;
  }
  .menu-toggle {
    display: block;
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px;
    box-shadow: 0 14px 20px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
  }
  .nav nav.open {
    display: flex;
  }
  .nav-cta {
    justify-content: center;
  }
  .hero {
    min-height: 590px;
  }
  .hero:after {
    right: -75vw;
    top: 52%;
    opacity: 0.7;
  }
  .hero-content {
    padding: 76px 0 102px;
  }
  .hero h1 {
    font-size: 3.65rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .hero-badge {
    right: 18px;
    bottom: 25px;
  }
  .intro {
    padding: 76px 0;
  }
  .intro-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .audience {
    flex-direction: column;
    gap: 18px;
  }
  .services {
    padding: 75px 0;
  }
  .section-heading,
  .coverage-content {
    display: block;
  }
  .section-heading p:not(.section-kicker) {
    margin-top: 18px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 250px;
  }
  .coverage {
    padding: 75px 0;
  }
  .contact {
    padding: 75px 0;
  }
  .contact-layout {
    gap: 45px;
  }
  .contact-form {
    padding: 23px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner div {
    flex-direction: column;
    gap: 8px;
  }
}
