@font-face {
  font-family: "Outfit";
  src: url("fonts/outfit.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ink: #11152a;
  --ink-soft: #424861;
  --night: #0b1026;
  --purple: #281050;
  --violet: #6841d8;
  --violet-light: #a991ff;
  --blue: #3157e8;
  --blue-light: #8fa7ff;
  --red: #e44850;
  --coral: #e44850;
  --pearl: #f4efe9;
  --paper: #ffffff;
  --wash: #f5f1ec;
  --line: #dedde7;
  --shell: 76rem;
  --radius: 1.75rem;
  --shadow: 0 1.5rem 4rem rgba(17, 21, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--blue);
  color: #fff;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 13vw, 5.25rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
}

h3 {
  font-size: clamp(1.55rem, 6vw, 2.15rem);
  line-height: 1.05;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: #5334bb;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 3px rgba(17, 21, 42, 0.13);
  content: "";
}

.eyebrow--light {
  color: #d9cef9;
}

.section {
  padding-block: 5.5rem;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading > p,
.services__intro > p,
.method__heading > p,
.contact__panel > div > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.masthead {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(222, 221, 231, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.masthead__inner {
  position: relative;
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  width: 10.5rem;
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: grid;
  width: 3rem;
  min-height: 48px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  place-content: center;
  gap: 0.25rem;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.navigation {
  grid-column: 1 / -1;
  display: flex;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.4rem 1.15rem;
}

.navigation a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.js .navigation {
  display: none;
}

.js .navigation[data-open] {
  display: flex;
}

.masthead__action {
  display: none;
}

.action {
  display: inline-flex;
  min-height: 52px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    box-shadow 180ms ease;
}

.action b {
  font-size: 1.15rem;
  font-weight: 700;
}

.action--primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 0.75rem 1.75rem rgba(113, 73, 233, 0.24);
}

.action--primary:hover {
  transform: translateY(-2px);
  background: #5d38d2;
}

.action--secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.action--secondary:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.action--pending {
  background: #77788a;
  box-shadow: none;
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  isolation: isolate;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 66% center;
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 10, 24, 0.08) 0%,
      rgba(7, 10, 24, 0.2) 34%,
      rgba(7, 10, 24, 0.82) 63%,
      rgba(7, 10, 24, 0.98) 100%
    ),
    linear-gradient(90deg, rgba(11, 16, 38, 0.72), rgba(11, 16, 38, 0.04) 88%);
}

.hero__inner {
  display: grid;
  min-height: 44rem;
  padding-block: 15rem 3.5rem;
  align-items: end;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 39rem;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 0.12em 0.8em rgba(4, 6, 18, 0.28);
}

.hero__lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: #fff;
  font-size: clamp(1.22rem, 5vw, 1.6rem);
  font-weight: 650;
  line-height: 1.3;
}

.hero__promise {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: #d7d5e2;
  font-size: 1.04rem;
}

.hero__actions,
.contact__actions {
  display: flex;
  margin-top: 1.75rem;
  flex-direction: column;
  gap: 0.75rem;
}

.action-status {
  max-width: 28rem;
  margin: 0.8rem 0 0;
  color: #cbc8d8;
  font-size: 0.78rem;
}

.hero .action--secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(11, 16, 38, 0.26);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero .action--secondary:hover {
  border-color: #fff;
  background: rgba(11, 16, 38, 0.5);
}

.services {
  padding-block: 5.5rem 6.5rem;
  overflow: hidden;
  background: var(--wash);
}

.services__heading {
  display: grid;
  margin-bottom: 2.4rem;
  gap: 1.2rem;
}

.services__heading h2 {
  max-width: 13ch;
}

.services__intro {
  align-self: end;
}

.carousel-controls {
  display: none;
  margin-top: 1.25rem;
  gap: 0.6rem;
}

.js .carousel-controls {
  display: flex;
}

.carousel-button {
  display: grid;
  width: 3.25rem;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.35rem;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.carousel-button:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.carousel-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.service-viewport {
  overflow-x: auto;
  padding: 0.6rem max(1rem, calc((100vw - var(--shell)) / 2)) 2.2rem;
  scroll-padding-inline: max(1rem, calc((100vw - var(--shell)) / 2));
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.service-viewport::-webkit-scrollbar {
  display: none;
}

.service-track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.service-slide {
  width: min(86vw, 23.5rem);
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  aspect-ratio: 4 / 5.45;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 22%, rgba(49, 87, 232, 0.36), transparent 28%),
    linear-gradient(145deg, var(--purple), var(--night));
  box-shadow: 0 1.5rem 3.5rem rgba(21, 16, 51, 0.16);
  color: #fff;
  isolation: isolate;
}

.service-slide:nth-child(2) .service-card {
  background:
    radial-gradient(circle at 28% 18%, rgba(228, 72, 80, 0.34), transparent 27%),
    linear-gradient(150deg, #151c50, #110a2d);
}

.service-slide:nth-child(3) .service-card {
  background:
    radial-gradient(circle at 75% 18%, rgba(169, 145, 255, 0.42), transparent 27%),
    linear-gradient(145deg, #21104a, #0c1639);
}

.service-slide:nth-child(4) .service-card {
  background:
    radial-gradient(circle at 30% 22%, rgba(49, 87, 232, 0.45), transparent 29%),
    linear-gradient(145deg, #151b4d, #281050);
}

.service-slide:nth-child(5) .service-card {
  background:
    radial-gradient(circle at 72% 20%, rgba(228, 72, 80, 0.3), transparent 26%),
    linear-gradient(145deg, #32124e, #101630);
}

.service-slide:nth-child(6) .service-card {
  background:
    radial-gradient(circle at 26% 22%, rgba(143, 167, 255, 0.36), transparent 28%),
    linear-gradient(145deg, #171343, #0a1738);
}

.service-card::after {
  position: absolute;
  z-index: 1;
  inset: -40% auto auto -45%;
  width: 75%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg) translateX(-130%);
  transition: transform 760ms ease;
}

.service-card__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-card__visual::before,
.service-card__visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.service-card__visual::before {
  top: 8%;
  right: -8%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 0 0 2.2rem rgba(104, 65, 216, 0.08),
    0 0 4rem rgba(49, 87, 232, 0.22);
  transition: transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card__visual::after {
  top: 20%;
  right: 22%;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--red);
  box-shadow:
    -5rem 5rem 0 rgba(143, 167, 255, 0.8),
    2rem 8rem 0 rgba(255, 255, 255, 0.65);
}

.service-card__orbit {
  position: absolute;
  top: 16%;
  left: 10%;
  width: 67%;
  aspect-ratio: 1;
  border: 1px solid rgba(143, 167, 255, 0.42);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(0.58);
}

.service-card__monogram {
  position: absolute;
  top: 11%;
  left: 50%;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(8rem, 35vw, 12rem);
  line-height: 0.8;
  transform: translate(-50%, -50%);
}

.service-card__wash {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 28, 0.02) 22%, rgba(7, 8, 29, 0.72) 56%, #09091f 81%),
    linear-gradient(115deg, rgba(79, 44, 159, 0.08), rgba(8, 10, 37, 0.22));
}

.service-card__topline {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card__category {
  display: inline-flex;
  min-height: 2.2rem;
  padding: 0.46rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  align-items: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

.service-card__number {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card__copy {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
}

.service-card__status,
.service-card__label,
.service-card__benefits > strong {
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__status {
  margin-bottom: 0.55rem;
  color: var(--blue-light);
}

.service-card h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 9vw, 2.75rem);
}

.service-card__label {
  margin-top: 0.85rem;
  color: #bbb1da;
}

.service-card__copy > p {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: 0.91rem;
  line-height: 1.3;
}

.service-card__benefits {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card__benefits > strong {
  color: #bbb1da;
}

.service-card__benefits ul {
  display: grid;
  margin: 0.3rem 0 0;
  padding: 0;
  gap: 0.12rem;
  list-style: none;
}

.service-card__benefits li {
  display: flex;
  align-items: start;
  gap: 0.45rem;
  color: #f5f3fb;
  font-size: 0.82rem;
  line-height: 1.25;
}

.service-card__benefits li::before {
  color: var(--red);
  content: "↗";
}

.technology {
  padding-block: 5.5rem 6rem;
  overflow: hidden;
  background: var(--paper);
}

.technology__heading {
  display: grid;
  margin-bottom: 2.5rem;
  gap: 1.4rem;
}

.technology__heading h2 {
  max-width: 15ch;
}

.technology__intro {
  max-width: 36rem;
  align-self: end;
}

.technology__intro strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.35;
}

.technology__intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.technology-marquee {
  overflow-x: auto;
  padding: 0.4rem max(1rem, calc((100vw - var(--shell)) / 2)) 1.2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
  overscroll-behavior-inline: contain;
}

.technology-track {
  display: flex;
  width: max-content;
}

.technology-group {
  display: flex;
  flex: none;
  width: max-content;
  margin: 0;
  padding: 0 1rem 0 0;
  gap: 1rem;
  list-style: none;
}

.js .technology-marquee[data-animated] {
  overflow: hidden;
  scrollbar-width: none;
}

.js .technology-track[data-ready] {
  animation: technology-loop 34s linear infinite;
  will-change: transform;
}

.js .technology-marquee[data-animated]:hover .technology-track {
  animation-play-state: paused;
}

.technology-card {
  position: relative;
  display: grid;
  width: min(72vw, 16rem);
  min-height: 10rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 86% 16%, rgba(143, 167, 255, 0.32), transparent 45%),
    linear-gradient(145deg, var(--purple), var(--night));
  box-shadow: 0 1rem 2.6rem rgba(17, 21, 42, 0.12);
  color: #fff;
  place-items: center;
}

.technology-card:nth-child(4n + 2) {
  background:
    radial-gradient(circle at 82% 18%, rgba(228, 72, 80, 0.32), transparent 42%),
    linear-gradient(145deg, #17245d, #0b1026);
}

.technology-card:nth-child(4n + 3) {
  background:
    radial-gradient(circle at 84% 18%, rgba(169, 145, 255, 0.35), transparent 42%),
    linear-gradient(145deg, #4b208f, #1b0d3c);
}

.technology-card:nth-child(4n + 4) {
  background:
    radial-gradient(circle at 84% 18%, rgba(49, 87, 232, 0.38), transparent 44%),
    linear-gradient(145deg, #131b4c, #281050);
}

.technology-card::after {
  position: absolute;
  right: -2.4rem;
  bottom: -3.6rem;
  width: 9rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5rem rgba(255, 255, 255, 0.035);
  content: "";
}

.technology-card > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 6.25rem;
  max-width: 72%;
  height: 6.25rem;
  max-height: 72%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.technology-card__logo--wide {
  width: 7.5rem;
  height: 7.5rem;
}

.technology-card__name {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  color: #fff;
  font-size: clamp(1.55rem, 5.5vw, 2.15rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.technology__disclaimer {
  max-width: 72rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.section-dark {
  padding-block: 6rem;
  background:
    radial-gradient(circle at 92% 4%, rgba(113, 73, 233, 0.32), transparent 32rem),
    var(--night);
  color: #fff;
}

.section-dark .section-heading > p {
  color: #c9c7d7;
}

.problem-grid {
  display: grid;
  margin: 2.8rem 0 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.problem-card {
  position: relative;
  display: grid;
  min-height: 10rem;
  padding: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  align-content: end;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.problem-card::after {
  position: absolute;
  top: -1rem;
  right: -0.4rem;
  color: rgba(143, 167, 255, 0.12);
  content: "?";
  font-family: "Outfit", Arial, sans-serif;
  font-size: 9rem;
  line-height: 1;
}

.problem-card > span {
  position: absolute;
  top: 1.2rem;
  left: 1.3rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-card h3 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
}

.problem-card p {
  margin: 0.6rem 0 0;
  color: #c9c7d7;
}

.samples {
  padding-block: 6.5rem;
}

.sample-grid {
  display: grid;
  gap: 1rem;
}

.sample-card {
  min-height: 22rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--paper);
  box-shadow: 0 0.8rem 2.6rem rgba(17, 21, 42, 0.06);
}

.sample-card:nth-child(2) {
  background: #f1effa;
}

.sample-card:nth-child(3) {
  background: #f1f4ff;
}

.sample-card__head {
  display: flex;
  margin-bottom: 2.4rem;
  justify-content: space-between;
  color: #6041bd;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-card h3 {
  max-width: 12ch;
}

.sample-flow {
  display: grid;
  margin: 2.2rem 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.sample-flow li {
  display: grid;
  min-height: 3.5rem;
  padding-block: 0.85rem;
  border-top: 1px solid rgba(17, 21, 42, 0.18);
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  gap: 0.75rem;
}

.sample-flow span {
  color: #6343c3;
  font-size: 0.68rem;
  font-weight: 800;
}

.sample-flow strong {
  line-height: 1.2;
}

.method {
  padding-block: 6rem;
  background: var(--pearl);
  color: var(--ink);
}

.method__inner {
  display: grid;
  gap: 3rem;
}

.method__heading > p {
  color: #353b4c;
}

.method .eyebrow {
  color: var(--ink);
}

.method .eyebrow::before {
  background: var(--coral);
}

.method-track {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-track > li {
  display: grid;
  min-height: 5rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(17, 21, 42, 0.28);
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 0.85rem;
}

.method-track > li:first-child {
  border-top: 1px solid rgba(17, 21, 42, 0.28);
}

.method-track > li > span {
  font-size: 0.7rem;
  font-weight: 800;
}

.method-track h3 {
  font-size: 2rem;
}

.method-track p {
  margin: 0.3rem 0 0;
}

.first-improvement {
  padding-block: 6.5rem 4rem;
}

.scope-grid {
  display: grid;
  gap: 1rem;
}

.scope-card {
  min-height: 18rem;
  padding: 1.5rem;
  border-radius: 1.4rem;
}

.scope-card > span {
  display: inline-flex;
  min-height: 2.1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scope-card h3 {
  max-width: 10ch;
  margin-top: 2rem;
  font-size: 2.6rem;
}

.scope-card ul {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.scope-card li {
  padding-top: 0.75rem;
  border-top: 1px solid currentColor;
  font-weight: 650;
}

.scope-card--include {
  background: var(--purple);
  color: #fff;
}

.scope-card--include > span {
  background: var(--blue);
  color: #fff;
}

.scope-card--exclude {
  border: 1px solid var(--line);
  background: var(--wash);
  color: var(--ink);
}

.scope-card--exclude > span {
  background: var(--coral);
  color: #fff;
}

.limits {
  display: grid;
  padding-block: 3rem 6rem;
  gap: 2rem;
}

.limits h2 {
  max-width: 12ch;
  font-size: 2.8rem;
}

.limits > ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.limits > ul li {
  padding: 1rem 0 1rem 1.7rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(var(--violet), var(--violet)) 0 1.35rem / 0.7rem 0.7rem no-repeat;
}

.contact {
  padding-bottom: 1rem;
}

.contact__panel {
  display: grid;
  padding: 2rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(113, 73, 233, 0.45), transparent 23rem),
    var(--night);
  color: #fff;
  gap: 2.5rem;
}

.contact__panel h2 {
  max-width: 10ch;
}

.contact__panel > div > p:not(.eyebrow) {
  margin-top: 1.2rem;
  color: #cfccdf;
}

.contact__side {
  align-self: end;
}

.contact .action--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
}

.contact__address {
  margin: 1.25rem 0 0;
}

.contact__address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-light);
  font-weight: 800;
}

.contact__notice {
  max-width: 33rem;
  margin: 0.6rem 0 0;
  color: #a9a6bc;
  font-size: 0.8rem;
}

.footer {
  margin-top: 4rem;
  padding-block: 3rem;
  background: #070a18;
  color: #bdbbc8;
}

.footer__inner {
  display: grid;
  gap: 0.65rem;
}

.footer img {
  width: 10.5rem;
  margin-bottom: 1.1rem;
}

.footer p {
  margin-bottom: 0;
}

.review-note {
  color: var(--blue-light);
  font-size: 0.75rem;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .service-slide:nth-child(2),
.motion-ready .problem-card:nth-child(2),
.motion-ready .sample-card:nth-child(2) {
  transition-delay: 80ms;
}

.motion-ready .service-slide:nth-child(3),
.motion-ready .problem-card:nth-child(3),
.motion-ready .sample-card:nth-child(3) {
  transition-delay: 160ms;
}

@media (hover: hover) and (pointer: fine) {
  .service-slide:hover {
    transform: translateY(-0.55rem);
  }

  .service-card:hover .service-card__visual::before {
    transform: scale(1.045);
  }

  .service-card:hover::after {
    transform: rotate(18deg) translateX(270%);
  }

  .problem-card:hover {
    border-color: rgba(143, 167, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-0.25rem);
  }
}

@media (min-width: 48rem) {
  .shell {
    width: min(calc(100% - 4rem), var(--shell));
  }

  .section,
  .samples {
    padding-block: 7.5rem;
  }

  .hero {
    min-height: 44rem;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__veil {
    background:
      linear-gradient(
        90deg,
        rgba(7, 10, 24, 0.98) 0%,
        rgba(7, 10, 24, 0.9) 28%,
        rgba(7, 10, 24, 0.56) 48%,
        rgba(7, 10, 24, 0.14) 70%,
        rgba(7, 10, 24, 0) 88%
      ),
      linear-gradient(0deg, rgba(7, 10, 24, 0.5), rgba(7, 10, 24, 0) 42%);
  }

  .hero__inner {
    min-height: 44rem;
    padding-block: 5.5rem 6rem;
    align-items: center;
  }

  .hero__copy {
    max-width: 35rem;
  }

  .hero__actions,
  .contact__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services {
    padding-block: 7.5rem 8rem;
  }

  .services__heading,
  .technology__heading,
  .section-heading--split {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: end;
    gap: 3rem;
  }

  .service-track {
    gap: 1.35rem;
  }

  .service-slide {
    width: min(45vw, 25rem);
  }

  .technology {
    padding-block: 7rem;
  }

  .technology-card {
    width: 17rem;
    min-height: 10.5rem;
    padding: 1.4rem;
  }

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

  .problem-card {
    min-height: 18rem;
    padding: 1.6rem;
  }

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

  .scope-card {
    min-height: 22rem;
    padding: 2rem;
  }

  .limits {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 4rem;
  }

  .contact__panel {
    padding: 3.5rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: 4rem;
  }
}

@media (min-width: 64rem) {
  .masthead__inner {
    min-height: 5.5rem;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 11.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .navigation,
  .js .navigation {
    grid-column: auto;
    display: flex;
    padding: 0;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.6rem;
  }

  .navigation a {
    position: relative;
    font-size: 0.91rem;
  }

  .navigation a::after {
    position: absolute;
    right: 0;
    bottom: 0.35rem;
    left: 0;
    height: 2px;
    background: var(--violet);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
  }

  .navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .masthead__action {
    display: block;
  }

  .masthead__action .action {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.86rem;
  }

  .hero {
    min-height: calc(100svh - 5.5rem);
  }

  .hero__inner {
    min-height: max(44rem, calc(100svh - 5.5rem));
  }

  .hero h1 {
    font-size: clamp(4.5rem, 6.3vw, 6.2rem);
  }

  .service-slide {
    width: clamp(23.5rem, 29vw, 27rem);
  }

  .method__inner {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 5rem;
  }

  .method__heading {
    position: sticky;
    top: 8rem;
  }

  .footer__inner {
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 2rem;
  }

  .footer img {
    margin-bottom: 0;
  }
}

@keyframes technology-loop {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

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

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

  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .technology-group[aria-hidden="true"] {
    display: none;
  }
}
