:root {
  --navy: #0a1628;
  --navy-2: #12213a;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --ink: #111827;
  --muted: #5b677a;
  --line: #d9e0ea;
  --soft: #f4f7fb;
  --soft-2: #edf2f7;
  --white: #ffffff;
  --warm: #f7f2ea;
  --green: #1f7a5a;
  --header-height: 76px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(10, 22, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(37, 99, 235, 0.18);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 224, 234, 0.88);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft);
}

.nav-menu a.is-active::after,
.nav-menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.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);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 72px 0;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.82) 44%, rgba(10, 22, 40, 0.34) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  max-width: 720px;
  margin-left: max(20px, calc((100% - 1180px) / 2));
}

.hero-kicker,
.hero h1,
.hero-copy,
.button-row {
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 760ms ease forwards;
}

.hero h1 {
  animation-delay: 110ms;
}

.hero-copy {
  animation-delay: 220ms;
}

.button-row {
  animation-delay: 330ms;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit {
  position: absolute;
  right: min(8vw, 120px);
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: orbitPulse 7s ease-in-out infinite;
}

.orbit-one {
  width: min(44vw, 540px);
  height: min(44vw, 540px);
}

.orbit-two {
  width: min(30vw, 360px);
  height: min(30vw, 360px);
  right: min(14vw, 210px);
  animation-delay: -2s;
}

.metric-line {
  position: absolute;
  right: min(12vw, 190px);
  width: min(35vw, 410px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.88), transparent);
  transform-origin: right;
  animation: scanLine 4.8s ease-in-out infinite;
}

.metric-line-one {
  top: 36%;
}

.metric-line-two {
  top: 50%;
  width: min(28vw, 330px);
  animation-delay: -1.3s;
}

.metric-line-three {
  top: 64%;
  width: min(22vw, 260px);
  animation-delay: -2.6s;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: #8bb1ff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10, 22, 40, 0.14);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-2);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-tight {
  padding-top: 88px;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding: 104px max(20px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head h2,
.split-layout h2,
.statement-block h2,
.cta-band h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 700;
}

.section-copy {
  max-width: 560px;
  color: var(--muted);
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.feature-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.service-card,
.statement-block,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card,
.service-card {
  padding: 28px;
}

.feature-card:hover,
.service-card:hover,
.statement-block:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: var(--shadow);
}

.icon-shell {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

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

.feature-card h3,
.service-card h2 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.feature-card p,
.service-card p,
.statement-block p,
.page-hero p {
  color: var(--muted);
}

.feature-card p,
.service-card p {
  margin: 0;
}

.split-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--blue);
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 30px;
  height: 2px;
  margin-left: 12px;
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1.45);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 38px;
}

.flow-line {
  position: absolute;
  top: 15px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}

.flow-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform-origin: left;
  animation: flowGrow 4.6s ease-in-out infinite;
}

.flow-step {
  position: relative;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-step span,
.step-number {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flow-step strong {
  color: var(--navy);
  font-size: 1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 76px;
  background: var(--soft);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: -28vw;
  width: 46vw;
  height: 46vw;
  min-width: 360px;
  min-height: 360px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 930px;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 1.1rem;
}

.compact-hero {
  padding-bottom: 64px;
}

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

.statement-block {
  padding: 34px;
}

.statement-block p:last-child {
  margin-bottom: 0;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed #c9d3e1;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)),
    var(--soft-2);
  color: #748197;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 104px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

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

.cta-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.process-detail {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 108px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.process-section.reverse .process-copy {
  order: 2;
}

.process-copy h2 {
  margin: 12px 0 18px;
  color: var(--navy);
  line-height: 1.05;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 700;
}

.process-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.process-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-2);
  box-shadow: 0 20px 56px rgba(10, 22, 40, 0.12);
}

.process-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.process-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

.process-image {
  min-height: 360px;
}

.contact-section {
  padding-top: 76px;
}

.contact-grid {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form .button {
  margin-top: 8px;
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hidden-form-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 132px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translateY(-50%) scale(1.04);
    opacity: 1;
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: 0.18;
    transform: scaleX(0.45);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes flowGrow {
  0%,
  100% {
    transform: scaleX(0.12);
  }

  50% {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    min-height: auto;
    padding: 96px 0;
  }

  .hero-inner {
    max-width: none;
    margin: 0 auto;
  }

  .orbit,
  .metric-line {
    opacity: 0.45;
  }

  .three-col,
  .services-grid,
  .split-layout,
  .two-column,
  .process-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout {
    gap: 38px;
  }

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

  .flow-line {
    display: none;
  }

  .process-section,
  .process-section.reverse {
    gap: 32px;
  }

  .process-section.reverse .process-copy {
    order: 0;
  }

  .footer-inner {
    padding: 30px 0;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .nav-menu a.is-active::after,
  .nav-menu a[aria-current="page"]::after {
    left: 14px;
    right: auto;
    width: 24px;
  }

  .hero {
    padding: 74px 0 82px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.84) 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 62px);
  }

  .hero h1,
  .page-hero h1 {
    line-height: 1.02;
  }

  .orbit,
  .metric-line {
    display: none;
  }

  .button-row,
  .cta-band {
    align-items: stretch;
  }

  .button-row .button,
  .cta-band .button,
  .contact-form .button {
    width: 100%;
  }

  .section,
  .section-muted,
  .process-detail {
    width: min(100% - 28px, 1180px);
    padding: 74px 0;
  }

  .section-muted {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .three-col,
  .services-grid,
  .split-layout,
  .two-column,
  .process-section,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 70px 0 54px;
  }

  .page-hero-inner,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .feature-card,
  .service-card,
  .statement-block,
  .contact-form {
    padding: 22px;
  }

  .cta-band {
    width: min(100% - 28px, 1180px);
    margin-bottom: 74px;
    padding: 28px;
    flex-direction: column;
  }

  .process-section {
    padding: 34px 0;
  }

  .process-image {
    min-height: 260px;
  }

  .footer-links {
    gap: 12px 16px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .page-hero h1 {
    font-size: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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