:root {
  --ink: #061337;
  --navy: #061b4f;
  --navy-deep: #020a24;
  --blue: #2d68ff;
  --blue-bright: #4d8bff;
  --cyan: #72e8ff;
  --cloud: #f3f6fb;
  --line: #dbe3f0;
  --muted: #60708e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  font-feature-settings: "ss01" on, "cv11" on;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: 88px;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 30%, rgba(42, 109, 255, 0.3), transparent 29%),
    radial-gradient(circle at 17% 86%, rgba(26, 111, 255, 0.15), transparent 31%),
    linear-gradient(135deg, #02081f 0%, #061745 50%, #071f5e 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -14%;
  bottom: -44%;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(126, 229, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(83, 147, 255, 0.025),
    0 0 0 140px rgba(83, 147, 255, 0.02),
    0 0 0 210px rgba(83, 147, 255, 0.015);
  content: "";
  pointer-events: none;
}

.hero-grid,
.contact-grid,
.industry-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(120, 186, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 186, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 73%, transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  pointer-events: none;
}

.hero-glow-one {
  top: 9%;
  right: 8%;
  width: 390px;
  height: 390px;
  background: rgba(40, 111, 255, 0.12);
}

.hero-glow-two {
  bottom: -18%;
  left: -9%;
  width: 420px;
  height: 420px;
  background: rgba(52, 210, 255, 0.09);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  min-height: 98px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.wordmark {
  display: grid;
  width: max-content;
  min-width: 126px;
  line-height: 1;
}

.wordmark-name {
  font-size: 1.62rem;
  font-weight: 570;
  letter-spacing: -0.06em;
}

.wordmark-line {
  width: 100%;
  height: 2px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #70e7ff, #5f8cff 68%, transparent);
  box-shadow: 0 0 12px rgba(83, 198, 255, 0.42);
}

.wordmark-tag {
  margin-top: 7px;
  color: rgba(223, 240, 255, 0.64);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.54rem;
  font-weight: 560;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(236, 245, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 540;
}

.main-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--cyan);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  border-color: rgba(134, 231, 255, 0.5);
  background: rgba(92, 179, 255, 0.12);
  transform: translateY(-1px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
  min-height: 665px;
  padding-block: 74px 105px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.light-eyebrow {
  color: #91e9ff;
}

.dark-eyebrow {
  color: #2561e8;
}

.pulse-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(114, 232, 255, 0.1);
}

.pulse-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(114, 232, 255, 0.5);
  border-radius: 50%;
  content: "";
  animation: ping 2.4s ease-out infinite;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4rem, 6vw, 6.35rem);
  font-weight: 530;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(92deg, #ffffff 0%, #a9edff 53%, #6096ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 650px;
  margin: 31px 0 0;
  color: rgba(225, 237, 255, 0.73);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 37px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 680;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #85ecff 0%, #5f9aff 100%);
  box-shadow: 0 14px 42px rgba(59, 149, 255, 0.24);
  color: #031139;
}

.button-primary:hover {
  box-shadow: 0 17px 48px rgba(59, 149, 255, 0.38);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(242, 248, 255, 0.9);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 26px;
  margin-top: 39px;
  color: rgba(218, 233, 255, 0.58);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.hero-trust span {
  position: relative;
  padding-left: 15px;
}

.hero-trust span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5fd9ff;
  content: "";
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 560px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(148, 199, 255, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(2, 12, 43, 0.42);
  box-shadow:
    0 35px 100px rgba(0, 5, 27, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 194, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 194, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

.visual-topline,
.visual-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(202, 225, 255, 0.52);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visual-topline {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(135, 192, 255, 0.12);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8aeaff;
}

.live-indicator::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #76edff;
  box-shadow: 0 0 9px #76edff;
  content: "";
}

.talent-stage {
  position: relative;
  height: 275px;
}

.network-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(118, 215, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.network-ring-one {
  width: 224px;
  height: 224px;
  border-top-color: rgba(118, 215, 255, 0.55);
  animation: spin 18s linear infinite;
}

.network-ring-two {
  width: 320px;
  height: 182px;
  border-right-color: rgba(74, 123, 255, 0.7);
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: spin-reverse 23s linear infinite;
}

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 116px;
  height: 82px;
  place-content: center;
  border: 1px solid rgba(183, 239, 255, 0.4);
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(47, 130, 255, 0.72), rgba(5, 25, 75, 0.9));
  box-shadow:
    0 0 55px rgba(70, 151, 255, 0.4),
    inset 0 0 24px rgba(117, 224, 255, 0.13);
  text-align: center;
  transform: translate(-50%, -50%);
}

.network-core span {
  font-size: 1rem;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.network-core small {
  margin-top: 5px;
  color: rgba(214, 237, 255, 0.58);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.46rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-node {
  position: absolute;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid rgba(162, 225, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 25, 74, 0.78);
  box-shadow: 0 8px 22px rgba(0, 5, 31, 0.25);
  color: #bdefff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}

.node-software {
  top: 36px;
  left: 41%;
}

.node-cloud {
  top: 47%;
  right: 42px;
}

.node-ai {
  bottom: 40px;
  left: 65px;
}

.node-data {
  top: 37%;
  left: 34px;
}

.signal-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: 0 16px;
}

.signal-row {
  display: grid;
  grid-template-columns: 28px 1fr 25px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 11px 14px;
  border: 1px solid rgba(136, 194, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-number {
  color: #75dfff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.59rem;
}

.signal-row > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.signal-row strong {
  font-size: 0.77rem;
  font-weight: 650;
}

.signal-row small {
  color: rgba(213, 230, 255, 0.5);
  font-size: 0.63rem;
}

.signal-row i {
  position: relative;
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: rgba(112, 225, 255, 0.16);
}

.signal-row i::after {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4b8aff, #7febff);
  box-shadow: 0 0 8px rgba(104, 222, 255, 0.5);
  content: "";
}

.visual-footer {
  margin-top: 13px;
  padding: 15px 22px 18px;
  border-top: 1px solid rgba(135, 192, 255, 0.1);
  font-size: 0.48rem;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(216, 233, 255, 0.43);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue i::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: #77e5ff;
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

.promise-section {
  position: relative;
  padding: 98px 0 92px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.promise-grid {
  display: grid;
  grid-template-columns: 0.65fr 2fr 0.75fr;
  align-items: start;
  gap: clamp(36px, 6vw, 80px);
}

.section-kicker {
  margin: 9px 0 0;
  color: #60708c;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.promise-copy h2,
.section-heading h2,
.industries-intro h2,
.process-intro h2,
.about-heading h2,
.contact-heading h2 {
  margin: 0;
  letter-spacing: -0.055em;
}

.promise-copy h2 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 520;
  line-height: 1.03;
}

.promise-copy h2 span {
  display: block;
  color: #316cf3;
}

.promise-copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.promise-rail {
  display: grid;
  gap: 0;
  padding-top: 4px;
}

.promise-rail span {
  padding: 12px 0;
  border-bottom: 1px solid #d9e2ef;
  color: #4c5f7e;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promise-rail span:first-child {
  border-top: 1px solid #d9e2ef;
}

.services-section {
  padding: 126px 0 136px;
  background:
    radial-gradient(circle at 100% 0%, rgba(70, 127, 255, 0.1), transparent 32%),
    var(--cloud);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2 {
  max-width: 790px;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 530;
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 70px;
}

.service-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 29px 30px 28px;
  border: 1px solid #dbe3ef;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(24, 47, 94, 0.035);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(61, 113, 238, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(61, 113, 238, 0.025),
    0 0 0 48px rgba(61, 113, 238, 0.02);
  content: "";
  transition: transform 300ms ease;
}

.service-card:hover {
  border-color: #b6c8e6;
  box-shadow: 0 24px 60px rgba(24, 47, 94, 0.1);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.12);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #346ce8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-topline span:last-child {
  color: #8a98ae;
  font-size: 0.53rem;
}

.service-card h3 {
  max-width: 480px;
  margin: 64px 0 15px;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 570;
  letter-spacing: -0.045em;
}

.service-card > p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.tag-list {
  position: absolute;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: rgba(247, 249, 252, 0.88);
  color: #687894;
  font-size: 0.62rem;
  font-weight: 550;
}

.industries-section {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 203, 255, 0.12);
  background:
    radial-gradient(circle at 88% 28%, rgba(75, 145, 255, 0.25), transparent 30%),
    linear-gradient(135deg, #07194b, #0a2b78 62%, #103993);
  color: var(--white);
}

.industry-grid-bg {
  mask-image: linear-gradient(90deg, transparent, black 30%, black);
}

.industries-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.85fr);
  align-items: start;
  gap: clamp(80px, 12vw, 170px);
}

.industries-intro h2 {
  max-width: 660px;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 520;
  line-height: 1;
}

.industries-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(219, 234, 255, 0.67);
  font-size: 0.98rem;
  line-height: 1.75;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(169, 214, 255, 0.22);
}

.industry-item {
  display: grid;
  min-height: 98px;
  align-content: center;
  gap: 9px;
  padding: 19px 20px;
  border-right: 1px solid rgba(169, 214, 255, 0.16);
  border-bottom: 1px solid rgba(169, 214, 255, 0.18);
  transition: background 180ms ease;
}

.industry-item:nth-child(even) {
  border-right: 0;
}

.industry-item:hover {
  background: rgba(255, 255, 255, 0.055);
}

.industry-item span {
  color: #79e4ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.53rem;
}

.industry-item strong {
  font-size: 0.91rem;
  font-weight: 590;
}

.process-section {
  position: relative;
  padding: 136px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 82%, rgba(49, 108, 243, 0.18), transparent 30%),
    linear-gradient(135deg, #020b24, #061847 62%, #071f5a);
  color: var(--white);
}

.process-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(113, 184, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 184, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
  content: "";
}

.process-glow {
  position: absolute;
  top: -25%;
  right: -11%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(115, 215, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(85, 146, 255, 0.025),
    0 0 0 160px rgba(85, 146, 255, 0.018),
    0 0 90px rgba(65, 136, 255, 0.08);
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.78fr);
  gap: clamp(70px, 12vw, 180px);
}

.process-intro {
  position: sticky;
  top: 100px;
  align-self: start;
}

.process-intro h2 {
  max-width: 660px;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 520;
  line-height: 1;
}

.process-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(219, 234, 255, 0.65);
  font-size: 0.98rem;
  line-height: 1.75;
}

.text-link {
  display: inline-block;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(112, 228, 255, 0.38);
  color: #8feaff;
  font-size: 0.84rem;
  font-weight: 650;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: #b9f3ff;
  color: #c6f6ff;
}

.steps-list {
  border-top: 1px solid rgba(144, 199, 255, 0.18);
}

.step-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 21px;
  padding: 31px 0 32px;
  border-bottom: 1px solid rgba(144, 199, 255, 0.18);
}

.step-row > span {
  padding-top: 5px;
  color: #77e4ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.62rem;
}

.step-row h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.step-row p {
  max-width: 440px;
  margin: 10px 0 0;
  color: rgba(214, 231, 255, 0.57);
  font-size: 0.87rem;
  line-height: 1.7;
}

.about-section {
  padding: 132px 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(64, 123, 255, 0.08), transparent 30%),
    #ffffff;
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.about-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.about-heading h2 {
  max-width: 800px;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 520;
  line-height: 1;
}

.about-heading > p:not(.eyebrow) {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.73;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 70px;
}

.value-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f8fafd;
}

.value-card > span {
  color: #2f68eb;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.62rem;
}

.value-card h3 {
  margin: 88px 0 13px;
  font-size: 1.65rem;
  font-weight: 570;
  letter-spacing: -0.04em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.location-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-strip > div {
  display: grid;
  gap: 9px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.location-strip > div:first-child {
  padding-left: 0;
}

.location-strip > div:last-child {
  border-right: 0;
}

.location-strip span {
  color: #7b899e;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-strip strong {
  font-size: 0.91rem;
  font-weight: 590;
}

.contact-section {
  position: relative;
  padding: 118px 0 126px;
  overflow: hidden;
  background: linear-gradient(135deg, #071b52, #0b2b78 55%, #123c9d);
  color: var(--white);
}

.contact-grid {
  mask-image: linear-gradient(90deg, black, transparent);
}

.contact-glow {
  position: absolute;
  top: -180px;
  right: -60px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 230, 255, 0.22), rgba(72, 119, 255, 0.08) 46%, transparent 70%);
}

.contact-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  align-items: end;
  gap: 55px;
}

.contact-heading .eyebrow {
  margin-bottom: 11px;
}

.contact-heading h2 {
  max-width: 900px;
  font-size: clamp(3.3rem, 5.8vw, 5.8rem);
  font-weight: 520;
  line-height: 0.98;
}

.contact-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}

.contact-card {
  display: grid;
  min-height: 195px;
  align-content: space-between;
  padding: 27px 29px;
  border: 1px solid rgba(179, 226, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-card:hover {
  border-color: rgba(179, 236, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.contact-card > span {
  color: #88e8ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.59rem;
  font-weight: 640;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card strong {
  align-self: end;
  margin-top: 38px;
  font-size: 1.55rem;
  font-weight: 570;
  letter-spacing: -0.035em;
}

.contact-card small {
  margin-top: 9px;
  color: rgba(224, 239, 255, 0.64);
  font-size: 0.77rem;
}

.site-footer {
  padding: 70px 0 28px;
  background: #02091f;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 62px;
}

.wordmark-footer .wordmark-name {
  font-size: 1.55rem;
}

.footer-main > p {
  max-width: 360px;
  margin: 0 auto;
  color: rgba(213, 230, 255, 0.55);
  font-size: 0.79rem;
  line-height: 1.6;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 21px;
  color: rgba(224, 237, 255, 0.66);
  font-size: 0.7rem;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(194, 214, 241, 0.35);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.53rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes ping {
  0% {
    opacity: 0.75;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(-18deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-378deg);
  }
}

@keyframes scroll-line {
  0% {
    top: -50%;
  }
  60%,
  100% {
    top: 100%;
  }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 28px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-content {
    grid-template-columns: 1fr 410px;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 6.8vw, 5.2rem);
  }

  .promise-grid {
    grid-template-columns: 0.6fr 2fr;
  }

  .promise-rail {
    grid-column: 2;
    grid-template-columns: repeat(4, 1fr);
  }

  .promise-rail span,
  .promise-rail span:first-child {
    border-top: 1px solid #d9e2ef;
  }

  .promise-rail span:not(:last-child) {
    border-right: 1px solid #d9e2ef;
  }

  .promise-rail span {
    text-align: center;
  }

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

  .footer-main > p {
    display: none;
  }
}

@media (max-width: 940px) {
  .page-shell {
    width: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 88px 120px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    max-width: 590px;
    justify-self: center;
  }

  .scroll-cue {
    display: none;
  }

  .promise-section,
  .services-section,
  .industries-section,
  .process-section,
  .about-section,
  .contact-section {
    padding-block: 96px;
  }

  .promise-grid,
  .section-heading,
  .industries-layout,
  .process-layout,
  .about-heading,
  .contact-heading {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    gap: 24px;
  }

  .promise-rail {
    grid-column: auto;
    margin-top: 24px;
  }

  .section-heading,
  .industries-layout,
  .process-layout,
  .about-heading,
  .contact-heading {
    gap: 46px;
  }

  .services-grid {
    margin-top: 50px;
  }

  .industries-intro,
  .process-intro {
    max-width: 690px;
  }

  .process-intro {
    position: static;
  }

  .about-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -18px;
  }

  .values-grid {
    margin-top: 52px;
  }

  .contact-heading .eyebrow {
    margin-bottom: -18px;
  }
}

@media (max-width: 650px) {
  .page-shell {
    width: min(100% - 28px, 580px);
  }

  .site-header {
    min-height: 88px;
  }

  .wordmark {
    min-width: 112px;
  }

  .wordmark-name,
  .wordmark-footer .wordmark-name {
    font-size: 1.42rem;
  }

  .wordmark-tag {
    font-size: 0.47rem;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.66rem;
  }

  .hero-content {
    padding-block: 72px 88px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
    letter-spacing: -0.07em;
  }

  .hero-intro {
    font-size: 0.97rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .hero-visual {
    min-height: 545px;
    border-radius: 24px;
  }

  .talent-stage {
    height: 260px;
  }

  .network-ring-two {
    width: 270px;
  }

  .node-data {
    left: 18px;
  }

  .node-cloud {
    right: 22px;
  }

  .promise-section,
  .services-section,
  .industries-section,
  .process-section,
  .about-section,
  .contact-section {
    padding-block: 78px;
  }

  .promise-copy h2,
  .section-heading h2,
  .industries-intro h2,
  .process-intro h2,
  .about-heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

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

  .promise-rail span:nth-child(2) {
    border-right: 0;
  }

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

  .service-card {
    min-height: 385px;
    padding: 25px 23px;
  }

  .service-card h3 {
    margin-top: 52px;
  }

  .tag-list {
    right: 23px;
    bottom: 24px;
    left: 23px;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }

  .industry-item {
    min-height: 82px;
    border-right: 0;
  }

  .step-row {
    grid-template-columns: 35px 1fr;
  }

  .values-grid,
  .location-strip,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 250px;
  }

  .location-strip > div,
  .location-strip > div:first-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-strip > div:last-child {
    border-bottom: 0;
  }

  .contact-heading h2 {
    font-size: clamp(2.9rem, 13vw, 4.55rem);
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-base {
    flex-direction: column;
    gap: 10px;
  }
}

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

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