:root {
  --navy-950: #021426;
  --navy-900: #031a31;
  --navy-850: #06213d;
  --navy-800: #092b4e;
  --blue-500: #3d97ff;
  --blue-450: #53a5ff;
  --blue-300: #97c9ff;
  --ink-950: #0b1726;
  --ink-800: #1b2b3e;
  --ink-650: #47586b;
  --ink-500: #6b7b8c;
  --paper: #f6f8fb;
  --paper-warm: #fbfbfa;
  --white: #ffffff;
  --line: #d9e1e9;
  --line-dark: rgba(159, 196, 229, 0.22);
  --shadow: 0 26px 70px rgba(12, 35, 59, 0.12);
  --shadow-soft: 0 18px 50px rgba(12, 35, 59, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1220px;
  --header-h: 88px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-950);
  background: var(--paper-warm);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--blue-500);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-500);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  background: rgba(2, 20, 38, 0.94);
  border-bottom-color: rgba(130, 181, 226, 0.16);
  box-shadow: 0 12px 36px rgba(0, 12, 25, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 1002;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 50px;
  height: 60px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-words {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--white);
  font-size: 25px;
  font-weight: 450;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 9px;
  color: var(--blue-450);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 14px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta):focus-visible {
  color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, #1f78dc, #3d97ff);
  border: 1px solid rgba(137, 198, 255, 0.24);
  box-shadow: 0 12px 30px rgba(30, 126, 226, .28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(30, 126, 226, .38);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 3px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

/* Reusable */
.section {
  position: relative;
  padding: 112px 0;
}

.kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker-light {
  color: var(--blue-300);
}

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

.section-heading.centered {
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 44px;
}

.section-heading h2,
.about-copy h2,
.method-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--ink-650);
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button span {
  font-size: 20px;
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #1873d3, #3d97ff);
  box-shadow: 0 15px 32px rgba(21, 112, 207, .3);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(21, 112, 207, .42);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .28);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .55);
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 30%, rgba(29, 108, 184, .28), transparent 36%),
    linear-gradient(108deg, #021426 0%, #031a31 43%, #052440 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 20, 38, .98) 0%, rgba(2, 20, 38, .88) 35%, rgba(2, 20, 38, .33) 64%, rgba(2, 20, 38, .08) 100%),
    linear-gradient(0deg, #031a31 0%, transparent 24%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -150px;
  bottom: -270px;
  width: 720px;
  height: 420px;
  border: 1px solid rgba(94, 164, 226, .14);
  transform: rotate(-7deg);
  box-shadow: 0 0 0 40px rgba(55, 133, 203, .025), 0 0 0 80px rgba(55, 133, 203, .02);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(74, 144, 208, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 208, .09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 74%);
  -webkit-mask-image: linear-gradient(to right, black, transparent 74%);
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: 48px;
  right: max(-110px, calc((100vw - var(--container)) / 2 - 150px));
  width: min(69vw, 940px);
  height: 730px;
  opacity: .96;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 17%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 17%, #000 88%, transparent 100%);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--navy-900) 0%, transparent 26%);
}

.hero-art picture,
.hero-art img {
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
  object-position: 48% 52%;
  filter: contrast(1.05) saturate(.92);
}

.hero-inner {
  position: relative;
  z-index: 4;
  min-height: 820px;
  padding-top: calc(var(--header-h) + 112px);
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
}

.hero-copy {
  width: min(590px, 52%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-300);
}

.eyebrow span {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--blue-500);
}

.hero h1 {
  margin: 0;
  font-family: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(54px, 6.8vw, 82px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue-450);
  font-weight: inherit;
}

.hero-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(237, 245, 252, .82);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-foot {
  width: min(860px, 100%);
  margin-top: auto;
  padding-top: 42px;
  display: grid;
  grid-template-columns: .75fr 1.45fr 1fr;
  border-top: 1px solid rgba(151, 201, 255, .2);
}

.hero-foot > div {
  min-height: 70px;
  padding: 0 28px;
  border-left: 1px solid rgba(151, 201, 255, .18);
}

.hero-foot > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stat {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: .02em;
}

.hero-stat-label {
  display: block;
  margin-top: 4px;
  color: rgba(213, 230, 246, .64);
  font-size: 12px;
  letter-spacing: .04em;
}

/* Services */
.services {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)),
    url("../images/paper-noise.png") repeat;
}

.section-blueprint {
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 47.5%, rgba(65, 126, 183, .13) 48%, rgba(65, 126, 183, .13) 48.5%, transparent 49%),
    linear-gradient(150deg, transparent 47.5%, rgba(65, 126, 183, .09) 48%, rgba(65, 126, 183, .09) 48.5%, transparent 49%);
  background-size: 220px 190px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 46px 34px 42px;
  background: rgba(255, 255, 255, .46);
  border-left: 1px solid var(--line);
  overflow: hidden;
  transition: transform 260ms var(--ease), background 260ms ease, box-shadow 260ms ease;
}

.service-card:first-child {
  border-left: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(61, 151, 255, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(61, 151, 255, .025), 0 0 0 48px rgba(61, 151, 255, .02);
  transition: transform 350ms var(--ease);
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: translate(-16px, -16px) scale(1.08);
}

.service-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(75, 161, 255, .2), rgba(75, 161, 255, .08) 52%, transparent 54%),
    repeating-linear-gradient(-42deg, transparent 0 6px, rgba(39, 121, 203, .07) 6px 7px);
}

.service-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--navy-900);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  margin: 0;
  color: rgba(30, 76, 117, .23);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.service-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-card > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-650);
  line-height: 1.7;
}

/* About */
.process-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.blueprint-panel {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 28%, rgba(63, 155, 246, .25), transparent 36%),
    linear-gradient(145deg, #031a31, #082d50);
  border: 1px solid rgba(17, 70, 116, .42);
  box-shadow: var(--shadow);
}

.blueprint-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(80, 155, 222, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 155, 222, .11) 1px, transparent 1px);
  background-size: 28px 28px;
}

.blueprint-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(137, 196, 247, .16);
  pointer-events: none;
}

.blueprint-label {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 44px;
  color: var(--blue-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.blueprint-art {
  position: absolute;
  z-index: 1;
  inset: 56px 22px 18px;
  width: calc(100% - 44px);
  height: calc(100% - 74px);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blueprint-art .grid-lines {
  stroke: rgba(127, 188, 242, .12);
  stroke-width: 1;
}

.blueprint-art .plan-lines {
  stroke: rgba(210, 235, 255, .76);
  stroke-width: 2.4;
}

.blueprint-art .blueprint-notes {
  stroke: rgba(64, 158, 247, .8);
  stroke-width: 2;
}

.measurement-chip {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  color: #cce8ff;
  background: rgba(6, 37, 67, .9);
  border: 1px solid rgba(116, 188, 250, .4);
  font: 700 10px/1.1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .1em;
}

.chip-one {
  right: 38px;
  top: 38px;
}

.chip-two {
  left: 48px;
  bottom: 42px;
}

.about-copy .kicker {
  margin-bottom: 18px;
}

.about-copy h2 {
  max-width: 590px;
}

.about-copy > p {
  margin: 22px 0 0;
  color: var(--ink-650);
  font-size: 17px;
}

.about-copy .lead-copy {
  color: var(--ink-800);
  font-size: 20px;
  font-weight: 520;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.about-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.about-points p {
  margin: 0;
  color: var(--ink-650);
  font-size: 15px;
  line-height: 1.5;
}

.about-points strong {
  color: var(--ink-950);
}

.tick {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue-500);
  background: rgba(61, 151, 255, .1);
  border: 1px solid rgba(61, 151, 255, .25);
  border-radius: 50%;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 34px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(3, 26, 49, .28);
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-500);
  border-color: var(--blue-500);
}

/* Process strip */
.method-strip {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 20, 38, .96), rgba(5, 41, 73, .96)),
    url("../images/paper-noise.png") repeat;
}

.method-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(27deg, transparent 47.5%, rgba(76, 158, 234, .22) 48%, rgba(76, 158, 234, .22) 48.3%, transparent 49%),
    linear-gradient(153deg, transparent 47.5%, rgba(76, 158, 234, .13) 48%, rgba(76, 158, 234, .13) 48.3%, transparent 49%);
  background-size: 150px 130px;
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 72px;
}

.method-intro h2 {
  color: var(--white);
  font-size: clamp(36px, 4vw, 50px);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  min-height: 150px;
  padding: 8px 24px 8px 28px;
  border-left: 1px solid rgba(151, 201, 255, .23);
}

.method-steps span {
  display: block;
  color: var(--blue-450);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.method-steps strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 14px;
}

.method-steps small {
  display: block;
  margin-top: 7px;
  color: rgba(217, 233, 247, .66);
  font-size: 12px;
  line-height: 1.5;
}

/* Confidence */
.confidence-section {
  background: var(--white);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.confidence-item {
  min-height: 280px;
  padding: 44px 34px;
  text-align: center;
  background: var(--white);
  transition: background 220ms ease;
}

.confidence-item:hover {
  background: #f7faff;
}

.confidence-item svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 28px;
  fill: none;
  stroke: var(--navy-900);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confidence-item h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 14px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.confidence-item p {
  margin: 14px 0 0;
  color: var(--ink-650);
  font-size: 14px;
  line-height: 1.65;
}

/* FAQ */
.faq-section {
  background: #f1f5f9;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid #bac8d5;
}

.faq-list details {
  border-bottom: 1px solid #bac8d5;
}

.faq-list summary {
  position: relative;
  padding: 24px 58px 24px 0;
  color: var(--navy-900);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue-500);
  border: 1px solid rgba(61, 151, 255, .36);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 220ms ease, color 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  color: var(--white);
  background: var(--blue-500);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 60px 24px 0;
  color: var(--ink-650);
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 35%, rgba(44, 126, 207, .25), transparent 35%),
    linear-gradient(120deg, #021426, #062847);
}

.contact-blueprint {
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(89, 163, 231, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 163, 231, .11) 1px, transparent 1px),
    linear-gradient(35deg, transparent 48%, rgba(89, 163, 231, .11) 48.5%, transparent 49%);
  background-size: 55px 55px, 55px 55px, 180px 150px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(46px, 6vw, 68px);
}

.contact-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(222, 237, 249, .75);
  font-size: 18px;
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  color: var(--white);
  transition: color 180ms ease, transform 180ms ease;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  color: var(--blue-300);
  transform: translateX(4px);
}

.direct-contact svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--blue-450);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact span {
  display: grid;
  font-size: 18px;
  font-weight: 650;
}

.direct-contact small {
  color: rgba(201, 223, 241, .55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.social-links a {
  color: rgba(225, 239, 251, .74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
}

.contact-form {
  padding: 42px;
  color: var(--ink-950);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .58);
  box-shadow: 0 30px 80px rgba(0, 10, 22, .35);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  color: var(--navy-900);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading span {
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.contact-form label > span {
  color: var(--ink-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink-950);
  background: #f4f7fa;
  border: 1px solid #d2dce6;
  border-radius: 0;
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(61, 151, 255, .12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  margin: 13px 0 0;
  color: var(--ink-500);
  font-size: 11px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  padding: 42px 0;
  color: rgba(217, 233, 247, .62);
  background: #01111f;
  border-top: 1px solid rgba(137, 196, 247, .12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
}

.footer-brand .brand-mark {
  width: 39px;
  height: 46px;
}

.footer-brand .brand-name {
  font-size: 18px;
}

.footer-brand .brand-subtitle {
  margin-top: 6px;
  font-size: 8px;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
}

/* Animation */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

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

.service-grid .reveal:nth-child(2),
.method-steps .reveal:nth-child(2),
.confidence-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.service-grid .reveal:nth-child(3),
.method-steps .reveal:nth-child(3),
.confidence-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.service-grid .reveal:nth-child(4),
.method-steps .reveal:nth-child(4),
.confidence-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

/* Focus */
:focus-visible {
  outline: 3px solid rgba(83, 165, 255, .75);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1120px) {
  .service-card {
    padding-inline: 26px;
  }

  .method-grid {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .method-steps li {
    padding-inline: 18px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 78px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: 108px max(28px, calc((100vw - 600px) / 2)) 48px;
    background: rgba(2, 20, 38, .985);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 300ms var(--ease), visibility 300ms;
  }

  .primary-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 17px 4px;
    font-size: 18px;
    border-bottom: 1px solid rgba(151, 201, 255, .13);
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 24px;
    min-height: 58px;
    font-size: 13px;
  }

  .brand-mark {
    width: 41px;
    height: 49px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .hero {
    min-height: 860px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 20, 38, .98) 0%, rgba(2, 20, 38, .82) 55%, rgba(2, 20, 38, .27) 100%),
      linear-gradient(0deg, #031a31 0%, transparent 28%);
  }

  .hero-art {
    top: 120px;
    right: -180px;
    width: 760px;
    height: 650px;
    opacity: .67;
  }

  .hero-inner {
    min-height: 860px;
    padding-top: calc(var(--header-h) + 104px);
  }

  .hero-copy {
    width: min(610px, 76%);
  }

  .hero-foot {
    width: 100%;
  }

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

  .service-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-panel {
    min-height: 520px;
  }

  .about-copy {
    max-width: 760px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-intro {
    max-width: 520px;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-copy {
    max-width: 680px;
  }

  .contact-form {
    max-width: 760px;
  }

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

  .footer-inner > p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  .section,
  .contact-section {
    padding: 82px 0;
  }

  .section-heading.centered {
    margin-bottom: 40px;
  }

  .hero {
    min-height: 880px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(2, 20, 38, .97) 0%, rgba(2, 20, 38, .82) 55%, #031a31 90%),
      linear-gradient(90deg, rgba(2, 20, 38, .92), rgba(2, 20, 38, .2));
  }

  .hero-art {
    top: 260px;
    right: -170px;
    width: 700px;
    height: 570px;
    opacity: .52;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 80%, transparent 100%);
  }

  .hero-inner {
    min-height: 880px;
    padding-top: calc(var(--header-h) + 70px);
    padding-bottom: 32px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 67px);
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .hero-foot {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 20px;
  }

  .hero-foot > div {
    min-height: auto;
    padding: 13px 0;
    border-top: 1px solid rgba(151, 201, 255, .12);
    border-left: 0;
  }

  .hero-foot > div:first-child {
    border-top: 0;
  }

  .hero-stat,
  .hero-stat-label {
    display: inline;
  }

  .hero-stat-label::before {
    content: " — ";
  }

  .service-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .service-card {
    min-height: 360px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(2) {
    border-top: 0;
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    border-top: 0;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .blueprint-panel {
    min-height: 430px;
  }

  .about-grid {
    gap: 52px;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .method-steps li:nth-child(3) {
    border-left: 0;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .confidence-item {
    min-height: auto;
    padding: 38px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-inner > p:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 450px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 44px;
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: .29em;
  }

  .brand-subtitle {
    font-size: 7px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .eyebrow span {
    width: 28px;
  }

  .blueprint-panel {
    min-height: 360px;
  }

  .blueprint-label {
    top: 30px;
    left: 30px;
  }

  .chip-one {
    top: 26px;
    right: 26px;
  }

  .chip-two {
    left: 30px;
    bottom: 30px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps li,
  .method-steps li:nth-child(3) {
    min-height: auto;
    padding: 18px 0;
    border-top: 1px solid rgba(151, 201, 255, .18);
    border-left: 0;
  }

  .method-steps li:first-child {
    border-top: 0;
  }

  .direct-contact span {
    font-size: 15px;
  }
}

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

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

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