:root {
  --hero-bg: #010826;
  --sticky-bg: var(--hero-bg);
  --color-navy-950: #020817;
  --color-navy-900: #06142e;
  --color-navy-850: #081a38;
  --color-blue-600: #0568ff;
  --color-blue-500: #1683ff;
  --color-cyan-400: #20d7ff;
  --color-white: #ffffff;
  --color-surface: #f7f9fd;
  --color-border: #dce5f2;
  --color-text: #081733;
  --color-text-muted: #52627a;
  --color-text-on-dark: #f5f9ff;
  --color-text-muted-on-dark: #b3c1d5;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 14px 40px rgba(5, 28, 67, 0.09);
  --shadow-glow: 0 0 48px rgba(22, 131, 255, 0.38);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(72px, 9vw, 128px);
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.75rem, 3vw, 2.5rem);
  --text-hero: clamp(2.35rem, 4.55vw, 4rem);
  --text-copy: .96rem;
  --text-copy-line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-surface);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: var(--text-copy-line-height);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.contact-panel-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  padding: .75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.header__inner,
.hero__grid {
  width: min(100% - (var(--gutter) * 2), 1260px);
}

.dark-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-text-on-dark);
  background:
    radial-gradient(circle at 16% 16%, rgba(32, 215, 255, .14), transparent 26rem),
    radial-gradient(circle at 88% 42%, rgba(5, 104, 255, .18), transparent 30rem),
    linear-gradient(145deg, #020817 0%, #06142e 54%, #020817 100%);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled,
.site-header:has(.site-nav.is-open),
.site-header:has(.header-search.is-open),
.site-header:has(.nav-services.is-open) {
  border-bottom-color: rgba(32, 215, 255, .14);
  background: var(--sticky-bg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height .2s ease;
}

.brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.75vw, 2.5rem);
  color: rgba(245, 249, 255, .86);
  font-size: var(--text-sm);
  font-weight: 500;
}

.site-nav a:not(.button) {
  padding-block: .6rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-white);
  border-color: var(--color-blue-500);
}

.nav-services {
  min-width: 0;
}

.nav-services__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
}

.nav-services__toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-services__toggle:hover,
.nav-services.is-open .nav-services__toggle {
  color: var(--color-white);
  background: rgba(255, 255, 255, .07);
}

.nav-services__toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .18s ease;
}

.nav-services.is-open .nav-services__toggle svg {
  transform: rotate(180deg);
}

.nav-services__panel {
  display: none;
  padding: .55rem 0 .35rem .7rem;
  border-left: 1px solid rgba(32, 215, 255, .25);
}

.nav-services.is-open .nav-services__panel {
  display: block;
}

.nav-services__eyebrow {
  display: block;
  margin: 0 0 .45rem .55rem;
  color: var(--color-cyan-400);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-services__grid {
  display: grid;
  gap: .25rem;
}

.site-nav .nav-services__link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  padding: .35rem .5rem;
  border: 0;
  border-radius: 6px;
  color: rgba(235, 243, 255, .86);
  font-size: .79rem;
  line-height: 1.25;
}

.site-nav .nav-services__link:hover,
.site-nav .nav-services__link[aria-current="page"] {
  border: 0;
  background: rgba(5, 104, 255, .14);
  color: var(--color-white);
}

.nav-services__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(32, 215, 255, .18);
  border-radius: 6px;
  background: rgba(5, 104, 255, .1);
  color: var(--color-cyan-400);
}

.nav-services__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nav-toggle {
  display: none;
}

.header-search {
  min-width: 0;
}

.header-search__toggle {
  display: none;
}

.header-search__panel {
  width: 100%;
  margin: .35rem 0 .15rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.header-search__form > label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header-search__control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 48px;
  padding: 3px;
  border: 1px solid rgba(139, 184, 244, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.header-search__control > svg {
  width: 19px;
  height: 19px;
  margin-left: .7rem;
  fill: none;
  stroke: var(--color-cyan-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-search__control input {
  min-width: 0;
  min-height: 40px;
  padding: .55rem .65rem;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  outline: 0;
}

.header-search__control input::placeholder {
  color: rgba(210, 222, 239, .68);
}

.header-search__control input::-webkit-search-cancel-button {
  display: none;
  appearance: none;
}

.header-search__control:focus-within {
  border-color: var(--color-cyan-400);
  box-shadow: 0 0 0 3px rgba(32, 215, 255, .11);
}

.header-search__control button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--color-blue-600);
  color: var(--color-white);
  cursor: pointer;
}

.header-search__control button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: .9rem 1.25rem;
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--color-blue-600), #137dff);
  box-shadow: 0 16px 34px rgba(5, 104, 255, .28);
}

.button--secondary {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .03);
}

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

.button--small {
  min-height: 42px;
  padding: .68rem 1.1rem;
  text-transform: none;
  font-size: var(--text-sm);
  font-weight: 600;
}

.button--small::after {
  display: none;
}

.hero {
  min-height: 0;
  padding: 6.55rem 0 3rem;
  overflow: visible;
  background: var(--hero-bg);
}

.stats__field,
.contact__field {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, transparent 0 50%, rgba(32, 215, 255, .08) 50.2%, transparent 50.6%),
    repeating-linear-gradient(170deg, transparent 0 24px, rgba(32, 215, 255, .035) 25px 26px, transparent 28px 62px);
  opacity: .55;
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 0;
}

.hero__content,
.hero-orb {
  min-width: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--color-cyan-400);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1,
.section-heading h2,
.experience h2,
.method h2,
.contact h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 19.6ch;
  font-size: var(--text-hero);
}

.hero .eyebrow {
  margin-bottom: .55rem;
}

.hero h1 span {
  display: block;
  color: #0867ef;
}

.hero__lead {
  width: 100%;
  max-width: none;
  margin: 1.35rem 0 0;
  color: rgba(226, 234, 247, .84);
  font-size: clamp(.96rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.hero__actions {
  display: grid;
  gap: .75rem;
  margin-top: 1.25rem;
}

.hero .button {
  min-height: 48px;
  padding: .72rem 1.35rem;
  font-size: .76rem;
  font-weight: 600;
}

.hero-orb {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  left: auto;
  width: clamp(196px, 52.5vw, 224px);
  min-height: 0;
  margin: 1.6rem auto 0;
  overflow: visible;
  pointer-events: none;
}

.hero-orb__picture {
  display: block;
  width: 100%;
  margin: 0;
}

.hero-orb__picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.wave {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(78px, 7.3vw, 105px);
  pointer-events: none;
}

.wave--light path {
  fill: var(--color-surface);
}

.section {
  padding: var(--section-space) 0;
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.experience h2,
.method h2,
.contact h2 {
  color: var(--color-text);
  font-size: var(--text-2xl);
}

.services {
  padding: clamp(42px, 4vw, 58px) 0 clamp(46px, 4.6vw, 66px);
  background: #fbfcff;
}

.services__grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(1.75rem, 3vw, 2.4rem);
}

.services .section-heading h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.service-card,
.experience-card {
  position: relative;
  border: 1px solid rgba(214, 225, 241, .92);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(5, 28, 67, .075);
}

.service-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  min-height: 198px;
  align-items: stretch;
  padding: 22px 20px 18px;
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.service-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.icon-box,
.stat-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 9px;
  background: linear-gradient(145deg, #03112b, #0b2d67);
  color: var(--color-cyan-400);
  box-shadow: 0 10px 24px rgba(5, 104, 255, .22);
}

.icon-box svg,
.stat-icon svg,
.method__steps svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.experience-card h3 {
  margin: 0;
  color: #06163a;
  font-size: 1rem;
  line-height: 1.3;
}

.service-card p,
.experience-card p,
.experience__intro p,
.contact__copy p {
  margin: .65rem 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-copy);
  line-height: var(--text-copy-line-height);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--color-blue-600);
  font-size: .7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.service-card a::after {
  content: "→";
}

.stats {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  background:
    radial-gradient(circle at 8% 105%, rgba(5, 104, 255, .24), transparent 28rem),
    radial-gradient(ellipse at 102% 100%, rgba(5, 104, 255, .4), transparent 34%),
    linear-gradient(112deg, #010714 0%, #021027 52%, #01091b 100%);
}

.stats::after,
.method::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -9%;
  bottom: -145px;
  width: 540px;
  height: 230px;
  border: 1px solid rgba(22, 131, 255, .4);
  border-radius: 50%;
  box-shadow:
    0 -8px 32px rgba(5, 104, 255, .2),
    0 -28px 80px rgba(32, 215, 255, .11);
  transform: rotate(-10deg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 0;
}

.stats article {
  padding: .35rem clamp(.8rem, 2.2vw, 2rem);
  text-align: center;
}

.stats article:nth-child(odd) {
  border-right: 1px solid rgba(32, 215, 255, .18);
}

.stat-icon {
  margin: 0 auto .55rem;
  width: 44px;
  height: 44px;
  background: transparent;
  box-shadow: none;
}

.stat-provider {
  padding-inline: clamp(.45rem, 1.6vw, 1.5rem) !important;
}

.stat-provider__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 10.75rem);
  height: 44px;
  margin: 0 auto .55rem;
  padding: .38rem .55rem;
  border-radius: 4px;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.stat-provider__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.stat-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.4;
}

.stats h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.12;
}

.stats p,
.method p,
.site-footer p,
.site-footer a {
  color: var(--color-text-muted-on-dark);
}

.stats p {
  margin: .3rem auto 0;
  max-width: 15rem;
  font-size: .78rem;
  line-height: 1.4;
}

.experience {
  padding: clamp(56px, 6vw, 84px) 0;
  background: var(--color-white);
}

.experience__grid {
  display: grid;
  gap: clamp(2rem, 3.4vw, 3.2rem);
}

.experience__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.experience .eyebrow {
  color: #155ca8;
}

.experience__intro .button {
  margin-top: 1.8rem;
  border-color: #0f65df;
  border-radius: 9px;
  background: #116cf1;
  box-shadow: 0 12px 27px rgba(5, 104, 255, .22);
  font-weight: 650;
}

.experience__cards {
  display: grid;
  gap: 14px;
}

.experience-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: stretch;
  transition: transform .24s ease, box-shadow .24s ease;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-navy-900);
}

.experience-card div {
  position: relative;
  padding: 1.05rem 1.15rem 1.2rem;
}

.experience-card .icon-box {
  display: none;
}

.method {
  padding: clamp(3.2rem, 4.8vw, 4.5rem) 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(5, 104, 255, .3), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(32, 215, 255, .18), transparent 26rem),
    repeating-linear-gradient(174deg, transparent 0 34px, rgba(32, 215, 255, .025) 35px 36px, transparent 37px 76px),
    linear-gradient(120deg, #010817 0%, #031a3c 55%, #010817 100%);
}

.method::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .5;
  background-image: radial-gradient(circle, rgba(54, 196, 255, .5) 0 1px, transparent 1.4px);
  background-size: 72px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.method .section-heading h2 {
  color: var(--color-white);
  font-size: clamp(1.65rem, 2.5vw, 2rem);
}

.method__steps {
  position: relative;
  display: grid;
  gap: 1.3rem;
  margin-top: 2rem;
}

.method__steps::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 28px;
  width: 1px;
  border-left: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(32, 215, 255, .82) 0 3px,
    transparent 3px 10px
  );
}

.method__steps article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
}

.method__steps span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(32, 215, 255, .6);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 215, 255, .28), transparent 38%),
    radial-gradient(circle, rgba(22, 131, 255, .4), rgba(3, 15, 38, .96) 70%);
  color: var(--color-white);
  box-shadow:
    0 0 0 6px rgba(5, 104, 255, .08),
    0 0 28px rgba(22, 131, 255, .55);
}

.method__steps span svg {
  width: 31px;
  height: 31px;
}

.method__steps h3 {
  grid-column: 2;
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--color-white);
  font-size: 1rem;
}

.method__steps h3 b {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: .35rem;
  place-items: center;
  border-radius: 999px;
  background: var(--color-blue-600);
  box-shadow: 0 0 12px rgba(22, 131, 255, .62);
  font-size: .63rem;
  line-height: 1;
}

.method__steps p {
  grid-column: 2;
  margin: .2rem 0 0;
  font-size: var(--text-copy);
  line-height: var(--text-copy-line-height);
}

.tech {
  padding: 1.15rem 0 1.45rem;
  background: var(--color-white);
  border-block: 1px solid var(--color-border);
  text-align: center;
}

.tech .eyebrow {
  margin-bottom: 0;
  color: #164c83;
  font-size: .68rem;
}

.tech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem 1rem;
  margin-top: .9rem;
}

.tech-item {
  min-width: 0;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: #182645;
  font-size: .73rem;
  font-weight: 600;
  white-space: nowrap;
}

.tech-item img {
  width: auto;
  height: 27px;
  flex: 0 0 auto;
  object-fit: contain;
}

.home-insights {
  padding: clamp(3.8rem, 7vw, 6.2rem) 0;
  border-bottom: 1px solid var(--color-border);
  background: #f5f8fd;
}

.home-insights__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.home-insights__heading .eyebrow {
  margin-bottom: .65rem;
}

.home-insights__heading h2 {
  margin: 0;
  color: var(--color-navy-900);
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  line-height: 1.1;
}

.home-insights__all,
.home-article__link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--color-blue-600);
  font-size: .78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.home-insights__all {
  margin-bottom: .25rem;
}

.home-insights__all svg,
.home-article__link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.home-insights__all:hover svg,
.home-article__link:hover svg {
  transform: translateX(3px);
}

.home-article {
  display: grid;
  overflow: hidden;
  border: 1px solid #d3e0f0;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(4, 27, 64, .08);
}

.home-article__visual {
  position: relative;
  min-height: 230px;
  display: grid;
  align-items: end;
  padding: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(5, 104, 255, .22), transparent 16rem),
    linear-gradient(145deg, #061c43, #031434 58%, #02102a);
  color: var(--color-white);
}

.home-article__visual::before,
.home-article__visual::after {
  position: absolute;
  border: 1px solid rgba(32, 215, 255, .18);
  border-radius: 50%;
  content: "";
}

.home-article__visual::before {
  width: 380px;
  height: 180px;
  right: -120px;
  bottom: -85px;
}

.home-article__visual::after {
  width: 260px;
  height: 260px;
  top: -175px;
  left: 34%;
}

.home-article__visual--image {
  min-height: 0;
  align-items: stretch;
  padding: 0;
  background: #061c43;
}

.home-article__visual--image::before,
.home-article__visual--image::after {
  display: none;
}

.home-article__visual--image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
}

.home-article__visual-label {
  position: absolute;
  z-index: 1;
  top: 1.15rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #b9c9e1;
  font-size: .72rem;
  font-weight: 650;
}

.home-article__visual-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-cyan-400);
  box-shadow: 0 0 14px rgba(32, 215, 255, .9);
}

.home-article__diagram {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .3rem;
  padding-top: 2rem;
}

.home-article__diagram::before {
  position: absolute;
  z-index: -1;
  top: calc(2rem + 18px);
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cyan-400), transparent);
  content: "";
}

.home-article__diagram > span {
  display: grid;
  justify-items: center;
  gap: .5rem;
  color: var(--color-cyan-400);
}

.home-article__diagram svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(32, 215, 255, .5);
  border-radius: 50%;
  background: #031434;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-article__diagram small {
  color: #dce8f8;
  font-size: .66rem;
  font-weight: 650;
}

.home-article__content {
  padding: clamp(1.45rem, 4vw, 2.5rem);
}

.home-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .8rem;
  color: #607391;
  font-size: .7rem;
}

.home-article__meta span:first-child {
  color: var(--color-blue-600);
  font-weight: 750;
}

.home-article__label {
  margin: 1.05rem 0 .5rem;
  color: #607391;
  font-size: .68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.home-article h3 {
  max-width: 24ch;
  margin: 0;
  color: var(--color-navy-900);
  font-size: clamp(1.55rem, 3.1vw, 2.3rem);
  line-height: 1.12;
}

.home-article h3 a {
  color: inherit;
}

.home-article h3 a:hover {
  color: var(--color-blue-600);
}

.home-article__content > p:not(.home-article__label) {
  max-width: 42rem;
  margin: 1rem 0 1.25rem;
  color: #435777;
  font-size: var(--text-copy);
  line-height: var(--text-copy-line-height);
}

.home-articles-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.home-article-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d3e0f0;
  border-radius: 8px;
  background: var(--color-white);
}

.home-article-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #061c43;
}

.home-article-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.home-article-card h3 {
  margin: .85rem 0 .65rem;
  color: var(--color-navy-900);
  font-size: 1.1rem;
  line-height: 1.25;
}

.home-article-card h3 a {
  color: inherit;
}

.home-article-card h3 a:hover {
  color: var(--color-blue-600);
}

.home-article-card p {
  margin: 0 0 1.1rem;
  color: #526785;
  font-size: .9rem;
  line-height: 1.65;
}

.home-article-card__body > .home-article__link {
  margin-top: auto;
}

.home-article-card__status {
  margin-top: auto;
  color: #72839d;
  font-size: .66rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact {
  padding: clamp(3.2rem, 4.5vw, 4.2rem) 0;
  background:
    radial-gradient(circle at 3% 64%, rgba(5, 104, 255, .28), transparent 22rem),
    radial-gradient(circle at 92% 60%, rgba(32, 215, 255, .1), transparent 26rem),
    linear-gradient(118deg, #020a1c, #031733 52%, #020b20);
}

.contact__grid {
  display: grid;
  gap: 2rem;
}

.contact h2 {
  color: var(--color-white);
  max-width: 12ch;
}

.contact__copy p {
  max-width: 26rem;
  color: var(--color-text-muted-on-dark);
}

.contact-form {
  display: grid;
  gap: .8rem;
}

.contact-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-row {
  display: grid;
  gap: .8rem;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(179, 193, 213, .38);
  border-radius: 8px;
  background: rgba(2, 8, 23, .35);
  color: var(--color-white);
  padding: .72rem .9rem;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(179, 193, 213, .82);
}

.contact-form label:nth-of-type(1) input,
.contact-form label:nth-of-type(2) input,
.contact-form label:nth-of-type(3) input,
.contact-form label:nth-of-type(4) input,
.contact-form textarea {
  min-height: 48px;
}

.contact-form button {
  width: 100%;
}

.contact-form__privacy {
  margin: .1rem 0 .15rem;
  color: rgba(210, 222, 239, .72);
  font-size: .76rem;
  line-height: 1.5;
}

.contact-form__privacy a {
  color: #d8f8ff;
  text-decoration: underline;
  text-decoration-color: rgba(32, 215, 255, .55);
  text-underline-offset: 3px;
}

.contact-form__privacy a:hover {
  color: var(--color-white);
  text-decoration-color: var(--color-cyan-400);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .92;
}

.contact-submit__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}

.contact-submit__mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  animation: contact-mark-pulse .9s ease-in-out infinite;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--color-cyan-400);
  font-size: var(--text-sm);
}

.form-status.is-success {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(32, 215, 255, .35);
  border-radius: 8px;
  background: rgba(32, 215, 255, .08);
  color: #c9f8ff;
  line-height: 1.45;
}

.form-status.is-success svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--color-cyan-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-status.is-error {
  color: #ffb8c2;
}

@keyframes contact-mark-pulse {
  0%,
  100% {
    opacity: .72;
    transform: scale(.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.contact-info {
  display: grid;
  gap: .85rem;
  align-content: center;
  font-style: normal;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--color-text-on-dark);
  font-weight: 500;
}

.contact-info__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: var(--color-blue-600);
  color: var(--color-white);
}

.contact-info__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-socials {
  display: flex;
  gap: .65rem;
  margin-top: .25rem;
}

.contact-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(179, 193, 213, .48);
  border-radius: 999px;
  color: var(--color-white);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.contact-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-socials a:hover {
  transform: translateY(-2px);
  border-color: var(--color-cyan-400);
  background: rgba(5, 104, 255, .2);
}

.contact-panel {
  position: fixed;
  z-index: 70;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.contact-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-panel__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(1, 8, 38, .72);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.contact-panel__dialog {
  position: relative;
  width: min(100%, 520px);
  height: 100%;
  margin-left: auto;
  overflow-y: auto;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) 2rem;
  border-left: 1px solid rgba(32, 215, 255, .2);
  background:
    linear-gradient(150deg, rgba(5, 104, 255, .11), transparent 34%),
    var(--hero-bg);
  color: var(--color-text-on-dark);
  box-shadow: -24px 0 70px rgba(0, 0, 0, .34);
  transform: translateX(100%);
  transition: transform .24s ease;
}

.contact-panel.is-open .contact-panel__dialog {
  transform: translateX(0);
}

.contact-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(179, 193, 213, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--color-white);
  cursor: pointer;
}

.contact-panel__close:hover {
  border-color: var(--color-cyan-400);
  background: rgba(5, 104, 255, .2);
}

.contact-panel__close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.contact-panel__header {
  margin-bottom: 1.6rem;
}

.contact-panel__header .eyebrow {
  color: var(--color-cyan-400);
}

.contact-panel__header h2 {
  width: 100%;
  max-width: none;
  margin: .65rem 0 0;
  color: var(--color-white);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  line-height: 1.08;
  text-wrap: balance;
}

.contact-panel__header > p:last-child {
  margin: 1rem 0 0;
  color: var(--color-text-muted-on-dark);
  font-size: var(--text-copy);
  line-height: var(--text-copy-line-height);
}

.contact-panel__form {
  gap: .75rem;
}

.contact-panel__form input,
.contact-panel__form textarea {
  background: rgba(255, 255, 255, .055);
}

.contact-panel__form textarea {
  min-height: 132px;
}

.site-footer {
  border-top: 1px solid rgba(32, 215, 255, .18);
  padding: 2rem 0 1.1rem;
  background: #020a1d;
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

.footer__brand img {
  width: 180px;
  height: auto;
}

.footer__brand p {
  max-width: 19rem;
  margin-top: .7rem;
}

.footer__brand .copyright {
  margin-top: 1rem;
  color: rgba(179, 193, 213, .76);
}

.site-footer h2 {
  margin: 0 0 .75rem;
  color: var(--color-white);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: .2rem;
  align-content: start;
}

.site-footer a,
.site-footer p,
.footer__consent-button {
  margin: 0;
  color: var(--color-text-muted-on-dark);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.45;
}

.site-footer a[aria-current="page"] {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-blue-500);
  text-underline-offset: 3px;
}

.copyright {
  margin: 0;
  width: auto;
  padding: 0;
  text-align: left;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(22, 131, 255, .36);
    box-shadow:
      0 16px 34px rgba(5, 28, 67, .11),
      0 0 0 1px rgba(32, 215, 255, .06);
  }

  .experience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(5, 28, 67, .12);
  }
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 63.98rem) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    color: var(--color-white);
  }

  .nav-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 82px var(--gutter) auto;
    display: grid;
    gap: .35rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    background: rgba(2, 8, 23, .96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .36);
    max-height: calc(100dvh - 102px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

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

  .site-nav a {
    padding: .8rem;
  }

  .nav-services__overview {
    padding: .8rem;
  }

  .site-nav .button {
    margin-top: .5rem;
  }
}

@media (min-width: 40rem) {
  .hero__actions,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card {
    grid-template-columns: auto 1fr;
  }

  .service-card::after {
    display: none;
  }

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

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

@media (min-width: 48rem) {
  .home-articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand img {
    width: 180px;
  }

  .hero {
    min-height: 0;
    padding: 8.5rem 0 4rem;
  }

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

  .hero__content {
    grid-column: 1;
    grid-row: auto;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    width: auto;
  }

  .home-article {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .home-article__visual {
    min-height: 330px;
  }

  .hero .eyebrow {
    margin-bottom: .8rem;
  }

  .hero__lead {
    max-width: 38.5rem;
    line-height: 1.62;
  }

  .hero__actions {
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .hero .button {
    min-height: 50px;
    padding: .82rem 1.5rem;
  }

  .hero-orb {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(58vw, 460px);
    min-height: 0;
    margin: 2rem auto 0;
    z-index: 1;
  }

  .hero-orb__picture {
    width: 100%;
    margin-inline: 0;
  }

  .hero__actions {
    width: max-content;
  }

  .service-card {
    min-height: 214px;
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats article {
    border-right: 1px solid rgba(32, 215, 255, .18);
  }

  .stats article:last-child {
    border-right: 0;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .experience-card {
    grid-template-columns: 1fr;
    min-height: 100%;
  }

  .experience-card img {
    aspect-ratio: 16 / 10;
  }

  .experience-card .icon-box {
    display: grid;
    margin-top: -2.7rem;
    margin-bottom: .75rem;
    position: relative;
  }

  .method__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .method {
    padding: 2rem 0;
  }

  .method__steps {
    margin-top: 1.25rem;
  }

  .method__steps::before {
    top: 29px;
    bottom: auto;
    left: 10%;
    right: 10%;
    width: auto;
    height: 1px;
    border-left: 0;
    border-top: 0;
    background: repeating-linear-gradient(
      to right,
      rgba(32, 215, 255, .84) 0 3px,
      transparent 3px 11px
    );
  }

  .method__steps article {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .method__steps article:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 26px;
    right: -11px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-cyan-400);
    box-shadow: 0 0 13px rgba(32, 215, 255, .9);
  }

  .method__steps h3,
  .method__steps p {
    grid-column: auto;
  }

  .method__steps h3 {
    justify-content: center;
  }

  .tech__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .contact__grid {
    grid-template-columns: .82fr 1.48fr .72fr;
    align-items: start;
  }

  .contact-info {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(32, 215, 255, .3);
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr .7fr .8fr;
  }
}

@media (min-width: 64rem) {
  .header__inner {
    min-height: 145px;
  }

  .site-header.is-scrolled .header__inner {
    min-height: 92px;
  }

  .brand img {
    width: 212px;
  }

  .site-nav {
    display: flex;
  }

  .nav-services {
    position: relative;
    margin-right: -12px;
  }

  .nav-services__summary {
    display: flex;
    align-items: center;
  }

  .site-nav .nav-services__overview {
    padding: .6rem 0;
  }

  .nav-services.is-current .nav-services__overview,
  .nav-services__overview:hover {
    color: var(--color-white);
    border-color: var(--color-blue-500);
  }

  .nav-services__toggle {
    width: 28px;
    height: 28px;
    justify-content: start;
    margin-left: 0;
    padding-left: 2px;
  }

  .nav-services__toggle svg {
    width: 14px;
    height: 14px;
  }

  .nav-services__panel {
    position: absolute;
    top: calc(100% + .7rem);
    left: 50%;
    width: 500px;
    padding: .9rem;
    border: 1px solid rgba(32, 215, 255, .18);
    border-radius: 9px;
    background: var(--sticky-bg);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .34);
    transform: translate(-50%, -8px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity .18s ease,
      visibility .18s ease,
      transform .18s ease;
  }

  .nav-services__panel::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: .75rem;
  }

  .nav-services.is-open .nav-services__panel {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .nav-services__eyebrow {
    margin: 0 0 .65rem .35rem;
  }

  .nav-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .3rem;
  }

  .site-nav .nav-services__link {
    min-height: 50px;
    padding: .4rem;
    font-size: .77rem;
  }

  .header-search {
    position: relative;
  }

  .header-search__toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(139, 184, 244, .28);
    border-radius: 9px;
    background: rgba(255, 255, 255, .045);
    color: var(--color-white);
    cursor: pointer;
  }

  .header-search__toggle:hover,
  .header-search.is-open .header-search__toggle {
    border-color: var(--color-cyan-400);
    background: rgba(5, 104, 255, .18);
  }

  .header-search__toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .header-search__panel {
    position: absolute;
    top: calc(100% + .8rem);
    right: 0;
    width: 350px;
    margin: 0;
    padding: .75rem;
    border: 1px solid rgba(32, 215, 255, .18);
    border-radius: 9px;
    background: var(--sticky-bg);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity .2s ease,
      visibility .2s ease,
      transform .2s ease;
  }

  .header-search.is-open .header-search__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero h1 {
    max-width: 19.6ch;
  }

  .hero__lead {
    max-width: 38.5rem;
  }

  .hero__actions {
    margin-top: 2rem;
  }

  .hero-orb {
    position: relative;
    top: auto;
    right: auto;
    width: min(46vw, 480px);
    margin-top: 2.25rem;
  }

  .services__grid {
    grid-template-columns: repeat(12, 1fr);
    margin-top: 1.5rem;
  }

  .services {
    padding: 1.25rem 0 2.2rem;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card:nth-child(5) {
    grid-column: 3 / span 3;
  }

  .service-card:nth-child(6),
  .service-card:nth-child(7) {
    grid-column: span 3;
  }

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

  .experience__grid {
    grid-template-columns: minmax(260px, .78fr) 2.25fr;
    align-items: center;
  }

  .experience {
    padding: 3.5rem 0;
  }

  .contact {
    padding: 2rem 0;
  }

  .contact__grid {
    grid-template-columns: 1.05fr 1.5fr .72fr;
  }

  .contact h2 {
    max-width: 18ch;
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .contact-form {
    gap: .55rem;
  }

  .form-row {
    gap: .55rem;
  }

  .contact-form textarea {
    height: 88px;
    min-height: 88px;
  }

  .tech__grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 80rem) {
  .brand img {
    width: 225px;
  }

  .hero {
    min-height: 780px;
    padding: 12.35rem 0 5.6rem;
  }

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

  .hero__content {
    grid-column: 1 / 8;
    grid-row: 1;
    transform: none;
  }

  .hero-orb {
    position: absolute;
    top: 4.5rem;
    right: clamp(5rem, 10vw, 10rem);
    left: auto;
    width: clamp(600px, 45.8vw, 660px);
    margin: 0;
    transform: none;
  }
}

@media (max-width: 25rem) {
  .container {
    width: min(100% - 40px, var(--container));
  }

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

  .service-card {
    padding: 1rem;
  }

  .experience-card {
    grid-template-columns: 96px 1fr;
  }
}

@media (max-width: 39.98rem) {
  .footer__brand {
    order: 1;
  }

  .contact h2 {
    width: 100%;
    max-width: none;
  }

  .tech {
    padding: 2.8rem 0 3.2rem;
    border-block-color: var(--color-border);
    background: var(--color-white);
  }

  .tech__grid {
    gap: 4px;
    margin-top: 1.4rem;
  }

  .tech-item {
    min-height: 58px;
    padding: .45rem .6rem;
    color: #182645;
  }

  .tech .eyebrow {
    color: #164c83;
  }

  .tech-item--invert-mobile img {
    filter: none;
  }

  .method__steps {
    gap: 1.15rem;
  }

  .method__steps::before {
    left: 25px;
  }

  .method__steps article {
    grid-template-columns: 52px 1fr;
  }

  .method__steps span {
    width: 52px;
    height: 52px;
  }

  .method__steps span svg {
    width: 27px;
    height: 27px;
  }

  .contact-panel__dialog {
    width: 100%;
    border-left: 0;
  }
}

.footer__consent-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.footer__consent-button:hover {
  color: var(--color-cyan-400);
}

.consent-banner {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(83, 166, 255, .36);
  background: rgba(1, 8, 38, .98);
  box-shadow: 0 -16px 40px rgba(0, 5, 25, .28);
  color: var(--color-white);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__inner,
.consent-banner__copy {
  display: grid;
  align-items: center;
}

.consent-banner__inner {
  gap: 1rem;
}

.consent-banner__copy {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: .85rem;
}

.consent-banner__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(32, 215, 255, .42);
  border-radius: 50%;
  background: rgba(12, 102, 255, .12);
}

.consent-banner__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--color-cyan-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.consent-banner h2 {
  margin: 0 0 .22rem;
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.25;
}

.consent-banner p {
  max-width: 66rem;
  margin: 0;
  color: rgba(235, 244, 255, .76);
  font-size: .875rem;
  line-height: 1.5;
}

.consent-banner a {
  color: var(--color-cyan-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner__actions {
  display: grid;
  gap: .55rem;
}

.consent-banner .button {
  min-height: 42px;
  padding: .65rem 1rem;
  font-size: .75rem;
  white-space: nowrap;
}

.consent-dialog {
  width: min(100% - 32px, 680px);
  max-height: min(90vh, 760px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(85, 151, 238, .36);
  border-radius: 8px;
  background: transparent;
  color: var(--color-white);
}

.consent-dialog::backdrop {
  background: rgba(0, 5, 24, .78);
  backdrop-filter: blur(4px);
}

.consent-dialog__surface {
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--hero-bg);
}

.consent-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.consent-dialog__header .eyebrow {
  margin: 0 0 .45rem;
  color: var(--color-cyan-400);
}

.consent-dialog__header h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1.08;
}

.consent-dialog__close {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(139, 184, 244, .38);
  border-radius: 6px;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.consent-dialog__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.consent-dialog__intro {
  margin: 1rem 0 1.25rem;
  color: rgba(235, 244, 255, .78);
  font-size: .95rem;
  line-height: 1.55;
}

.consent-options {
  display: grid;
  border-top: 1px solid rgba(139, 184, 244, .22);
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 184, 244, .22);
}

.consent-option > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.consent-option h3,
.consent-option strong {
  display: block;
  margin: 0 0 .28rem;
  color: var(--color-white);
  font-size: .95rem;
}

.consent-option p,
.consent-option small {
  display: block;
  margin: 0;
  color: rgba(235, 244, 255, .7);
  font-size: .82rem;
  line-height: 1.45;
}

.consent-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-blue-500);
}

.consent-dialog__actions {
  display: grid;
  gap: .6rem;
  margin-top: 1.35rem;
}

.consent-dialog__actions .button {
  min-height: 44px;
  padding: .7rem 1rem;
  font-size: .75rem;
}

@media (min-width: 48rem) {
  .consent-banner__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .consent-banner__actions,
  .consent-dialog__actions {
    display: flex;
    justify-content: flex-end;
  }
}

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