@import url("https://fonts.googleapis.com/css2?family=Jura:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Furore";
  src: url("../assets/fonts/Furore.otf") format("opentype");
  font-display: swap;
}

:root {
  --black: #000000;
  --ink: #050a12;
  --surface: #09111f;
  --light: #e3e5ee;
  --blue: #3c76ff;
  --light-blue: #2862ff;
  --dark: #131722;
  --paper: #f8f9fc;
  --line: rgba(227, 229, 238, 0.12);
  --shell: min(1480px, calc(100vw - 96px));
  --display: "Furore", "Arial Black", sans-serif;
  --body: "Jura", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--light);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-lock {
  overflow: hidden;
}

body.menu-lock .site-header {
  border-bottom-color: rgba(227, 229, 238, 0.12);
  background: #020409;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

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

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

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

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

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

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.15vw, 80px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h3 {
  line-height: 1.2;
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-dark,
.section-ink,
.section-light,
.section-blue {
  position: relative;
}

.section-dark {
  background: var(--black);
  color: var(--light);
}

.section-ink {
  background: var(--ink);
  color: var(--light);
}

.section-light {
  background: var(--paper);
  color: var(--dark);
}

.section-blue {
  background: var(--blue);
  color: #fff;
}

.eyebrow {
  margin-bottom: 24px;
  color: rgba(227, 229, 238, 0.76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  color: rgba(227, 229, 238, 0.66);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::after {
  width: 56px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.45;
}

.section-kicker span {
  color: var(--blue);
}

.section-kicker.dark {
  color: rgba(19, 23, 34, 0.62);
}

.section-kicker.light,
.section-kicker.light span {
  color: rgba(255, 255, 255, 0.86);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--blue);
  box-shadow: 0 12px 32px rgba(60, 118, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.icon-arrow-up-right {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("../assets/icons/arrow-up-right.svg") center / contain no-repeat;
  mask: url("../assets/icons/arrow-up-right.svg") center / contain no-repeat;
}

.button span {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.button:hover {
  background: #4d82ff;
  box-shadow: 0 17px 38px rgba(60, 118, 255, 0.3);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 48px;
  gap: 22px;
  padding-inline: 18px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(227, 229, 238, 0.42);
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 200ms ease,
    color 200ms ease;
}

.text-link span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.text-link:hover {
  border-color: var(--blue);
  color: #fff;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  border-bottom: 1px solid rgba(227, 229, 238, 0.075);
  background: rgba(0, 0, 0, 0.08);
  transition:
    background 240ms ease,
    backdrop-filter 240ms ease,
    height 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand {
  width: 108px;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 54px);
}

.desktop-nav a {
  position: relative;
  padding: 13px 0;
  color: rgba(227, 229, 238, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.desktop-nav a:hover {
  color: var(--light);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  border-color: rgba(60, 118, 255, 0.42);
  background: rgba(9, 17, 31, 0.62);
  box-shadow:
    0 0 24px rgba(60, 118, 255, 0.07),
    inset 0 1px 0 rgba(227, 229, 238, 0.04);
}

.header-cta:hover {
  border-color: rgba(60, 118, 255, 0.72);
  background: rgba(13, 25, 46, 0.8);
  box-shadow:
    0 0 28px rgba(60, 118, 255, 0.16),
    inset 0 1px 0 rgba(227, 229, 238, 0.06);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background: radial-gradient(circle at 12% 42%, rgba(60, 118, 255, 0.07), transparent 31%),
    radial-gradient(circle at 88% 35%, rgba(60, 118, 255, 0.065), transparent 30%), var(--black);
  isolation: isolate;
}

.neural-canvas {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.28);
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(
      ellipse 58% 48% at 50% 43%,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.4) 42%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, transparent 25%, transparent 76%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero-inner {
  display: flex;
  min-height: max(780px, 100svh);
  flex-direction: column;
  padding-top: clamp(112px, 13vh, 142px);
  padding-bottom: clamp(30px, 4vh, 44px);
}

.hero-copy {
  width: 100%;
  margin-block: auto;
  text-align: center;
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  color: rgba(60, 118, 255, 0.78);
  letter-spacing: 0.21em;
}

.hero-copy .eyebrow::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(60, 118, 255, 0.65);
  content: "";
}

.hero-title {
  display: flex;
  max-width: 1160px;
  flex-direction: column;
  margin: 0 auto;
  color: var(--light);
  font-size: clamp(56px, 5vw, 80px);
  font-weight: 500;
  letter-spacing: -0.057em;
  line-height: 1;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title .accent,
.hero-title em {
  color: var(--blue);
  font-style: normal;
}

.hero-description {
  max-width: 810px;
  margin: 29px auto 0;
  color: rgba(227, 229, 238, 0.72);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.hero-description span {
  display: block;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
}

.hero-actions .button {
  min-height: 56px;
  padding-inline: 24px;
  background: linear-gradient(135deg, #356df4 0%, #477fff 100%);
  box-shadow:
    0 13px 36px rgba(60, 118, 255, 0.24),
    0 0 24px rgba(60, 118, 255, 0.1);
}

.hero-actions .button:hover {
  background: linear-gradient(135deg, #4179ff 0%, #588bff 100%);
  box-shadow:
    0 17px 42px rgba(60, 118, 255, 0.34),
    0 0 30px rgba(60, 118, 255, 0.16);
}

.metric-panel {
  display: grid;
  width: min(980px, calc(100% - 96px));
  min-height: 126px;
  grid-template-columns: repeat(3, 1fr);
  align-self: center;
  flex: 0 0 auto;
  border: 1px solid rgba(127, 151, 203, 0.19);
  border-radius: 18px;
  margin: 34px auto 0;
  background: rgba(7, 13, 24, 0.68);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(227, 229, 238, 0.055),
    inset 0 0 42px rgba(60, 118, 255, 0.022);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.metric {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px 15px;
  padding: 23px clamp(20px, 2.2vw, 32px);
}

.metric + .metric {
  border-left: 0;
}

.metric + .metric::before {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 0;
  width: 1px;
  background: rgba(227, 229, 238, 0.09);
  content: "";
}

.metric-icon {
  position: relative;
  width: 34px;
  height: 34px;
  grid-row: 1 / 3;
  align-self: center;
  border: 1px solid rgba(60, 118, 255, 0.38);
  border-radius: 9px;
  background: rgba(60, 118, 255, 0.035);
}

.metric-icon::before,
.metric-icon::after,
.metric-icon i {
  position: absolute;
  display: block;
  background: var(--blue);
  content: "";
}

.metric-icon::before {
  top: 16px;
  left: 8px;
  width: 17px;
  height: 1px;
  transform: rotate(-45deg);
}

.metric-icon::after {
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  background: transparent;
}

.metric-icon-platforms {
  border-radius: 7px;
}

.metric-icon-users i {
  top: 8px;
  left: 12px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: transparent;
}

.metric-icon-users::before {
  top: 21px;
  left: 8px;
  width: 16px;
  border-radius: 10px 10px 0 0;
  transform: none;
}

.metric-icon-users::after {
  display: none;
}

.metric-icon-scale {
  border-radius: 4px 50% 50%;
  transform: rotate(45deg);
}

.metric-icon-scale::before,
.metric-icon-scale::after {
  transform: rotate(-45deg);
}

.metric-value {
  color: var(--light);
  font-family: var(--display);
  font-size: clamp(21px, 1.8vw, 28px);
  letter-spacing: 0.015em;
  line-height: 1.15;
}

.metric-label {
  color: rgba(227, 229, 238, 0.6);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(227, 229, 238, 0.48);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 52px;
  height: 1px;
  background: rgba(60, 118, 255, 0.5);
}

.hero-enter {
  opacity: 0;
  animation: hero-in 520ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-enter-1 {
  animation-delay: 40ms;
}
.hero-enter-2 {
  animation-delay: 105ms;
}
.hero-enter-3 {
  animation-delay: 175ms;
}
.hero-enter-4 {
  animation-delay: 245ms;
}
.hero-enter-5 {
  animation-delay: 310ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.case-feature {
  padding: 150px 0 120px;
  border-top: 1px solid var(--line);
}

.case-feature::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 150px;
  background: linear-gradient(var(--blue), transparent);
  content: "";
  opacity: 0.45;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.case-label {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.case-grid h2 {
  font-size: clamp(48px, 5.7vw, 86px);
}

.case-grid h2 span {
  color: var(--blue);
}

.case-summary {
  padding-bottom: 5px;
}

.case-summary p {
  margin-bottom: 38px;
  color: rgba(227, 229, 238, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 96px;
  border-top: 1px solid rgba(227, 229, 238, 0.16);
  border-bottom: 1px solid rgba(227, 229, 238, 0.16);
}

.case-facts span {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 14px;
  color: rgba(227, 229, 238, 0.7);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.case-facts span + span {
  border-left: 1px solid rgba(227, 229, 238, 0.12);
}

.case-facts b {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  gap: clamp(70px, 11vw, 180px);
}

.beyond {
  padding: 160px 0 180px;
}

.beyond h2 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.large-copy > p {
  margin: 92px 0 70px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.comparison {
  border-top: 1px solid rgba(19, 23, 34, 0.18);
}

.comparison > div {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(19, 23, 34, 0.18);
}

.comparison span {
  color: rgba(19, 23, 34, 0.58);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison p {
  margin: 0;
  color: rgba(19, 23, 34, 0.7);
}

.comparison .comparison-active {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(40, 98, 255, 0.08), transparent 80%);
}

.comparison-active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--light-blue);
  content: "";
}

.comparison-active span {
  color: var(--light-blue);
}

.build-section {
  padding: 0 0 160px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading-row > p {
  max-width: 390px;
  margin-bottom: 5px;
  color: rgba(19, 23, 34, 0.64);
  line-height: 1.65;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(19, 23, 34, 0.18);
}

.build-item {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: 45px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid rgba(19, 23, 34, 0.18);
  transition:
    background 220ms ease,
    padding 220ms ease;
}

.build-item:nth-child(odd) {
  padding-right: 54px;
  border-right: 1px solid rgba(19, 23, 34, 0.18);
}

.build-item:nth-child(even) {
  padding-left: 54px;
}

.build-item > span {
  color: var(--light-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.build-item h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.engagement {
  padding: 150px 0 140px;
  overflow: hidden;
}

.engagement::after {
  position: absolute;
  top: -60%;
  right: -18%;
  width: 64vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 88px rgba(255, 255, 255, 0.035),
    0 0 0 176px rgba(255, 255, 255, 0.025);
  content: "";
}

.engagement .shell {
  z-index: 1;
}

.engagement h2 {
  max-width: 800px;
  font-size: clamp(52px, 6.3vw, 96px);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.engagement-grid article {
  min-height: 320px;
  padding: 30px 44px 30px 0;
}

.engagement-grid article + article {
  padding-left: 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.engagement-grid span {
  display: block;
  margin-bottom: 82px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: 14px;
}

.engagement-grid h3 {
  max-width: 330px;
  margin-bottom: 20px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.engagement-grid p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.process {
  padding: 160px 0;
}

.process-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 80px;
  align-items: end;
}

.process-intro h2 {
  color: var(--light);
}

.process-intro > p {
  margin: 0 0 8px;
  color: rgba(227, 229, 238, 0.66);
  line-height: 1.7;
}

.process-list {
  margin: 100px 0 0;
  padding: 0;
  border-top: 1px solid rgba(227, 229, 238, 0.16);
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 154px;
  grid-template-columns: 90px minmax(260px, 0.75fr) minmax(360px, 1fr) 130px;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(227, 229, 238, 0.16);
}

.process-list li::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(60, 118, 255, 0.13), transparent 60%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.process-list li:hover::before {
  opacity: 1;
}

.process-number,
.process-list h3,
.process-list p {
  position: relative;
}

.process-number {
  color: var(--blue);
  font-family: var(--display);
  font-size: 14px;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 620px;
  margin: 0;
  color: rgba(227, 229, 238, 0.63);
}

.guarantee {
  padding: 160px 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.72fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.guarantee h2 {
  font-size: clamp(44px, 4.8vw, 74px);
}

.guarantee-copy > p:first-child {
  color: rgba(19, 23, 34, 0.68);
}

.guarantee-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 28px 0 32px;
  padding: 0;
  border-top: 1px solid rgba(19, 23, 34, 0.18);
  list-style: none;
}

.guarantee-copy li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(19, 23, 34, 0.18);
  font-weight: 700;
}

.guarantee-copy li::before {
  display: inline-block;
  width: 0.78em;
  height: 0.78em;
  margin-right: 11px;
  background: currentColor;
  color: var(--light-blue);
  content: "";
  -webkit-mask: url("../assets/icons/arrow-up-right.svg") center / contain no-repeat;
  mask: url("../assets/icons/arrow-up-right.svg") center / contain no-repeat;
}

.fine-print {
  margin: 0;
  color: rgba(19, 23, 34, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.why {
  padding: 160px 0;
}

.why h2 {
  position: sticky;
  top: 130px;
  color: var(--light);
  font-size: clamp(48px, 5.2vw, 80px);
}

.why-list {
  margin-top: 90px;
  border-top: 1px solid rgba(227, 229, 238, 0.16);
}

.why-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(227, 229, 238, 0.16);
}

.why-list article > span {
  padding-top: 6px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 14px;
}

.why-list h3 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.why-list p {
  margin: 0;
  color: rgba(227, 229, 238, 0.62);
}

.cases {
  padding: 160px 0 180px;
  border-top: 1px solid var(--line);
}

.light-text > p {
  color: rgba(227, 229, 238, 0.62);
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  display: grid;
  min-height: 590px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(227, 229, 238, 0.12);
  border-radius: 16px;
  background: var(--surface);
}

.case-card-main {
  grid-column: 1 / -1;
  min-height: 620px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: none;
}

.case-visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(60, 118, 255, 0.2), transparent 46%), #050a12;
}

.case-visual::before,
.case-visual::after {
  position: absolute;
  border: 1px solid rgba(60, 118, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.case-visual::before {
  width: 52%;
  aspect-ratio: 1;
}

.case-visual::after {
  width: 78%;
  aspect-ratio: 1;
}

.case-visual span {
  z-index: 1;
  color: var(--light);
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 112px);
  text-shadow: 0 0 42px rgba(60, 118, 255, 0.35);
}

.case-visual i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue);
}

.case-visual i:nth-of-type(1) {
  top: 25%;
  left: 28%;
}
.case-visual i:nth-of-type(2) {
  right: 22%;
  bottom: 31%;
}
.case-visual i:nth-of-type(3) {
  top: 16%;
  right: 36%;
}

.case-visual-scale::before {
  border-radius: 7px 50% 50%;
  transform: rotate(45deg);
}

.case-visual-users::after {
  width: 68%;
  border-right-color: transparent;
  border-left-color: transparent;
}

.case-card-copy {
  padding: 40px;
  border-top: 1px solid rgba(227, 229, 238, 0.12);
}

.case-card-main .case-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 0;
  border-left: 1px solid rgba(227, 229, 238, 0.12);
}

.case-card-copy > span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.case-card-copy p {
  margin: 0;
  color: rgba(227, 229, 238, 0.61);
}

.technology {
  padding: 160px 0;
}

.technology .shell {
  display: grid;
  grid-template-columns: minmax(350px, 0.75fr) 1.25fr;
  gap: clamp(80px, 12vw, 190px);
}

.technology-heading h2 {
  margin-bottom: 34px;
  font-size: clamp(46px, 5vw, 76px);
}

.technology-heading > p:last-child {
  max-width: 450px;
  color: rgba(19, 23, 34, 0.64);
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: start;
  border-top: 1px solid rgba(19, 23, 34, 0.18);
}

.tech-list span {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  border-bottom: 1px solid rgba(19, 23, 34, 0.18);
  font-size: 18px;
  font-weight: 700;
}

.tech-list span:nth-child(odd) {
  border-right: 1px solid rgba(19, 23, 34, 0.18);
}

.tech-list span:nth-child(even) {
  padding-left: 26px;
}

.tech-list b {
  color: var(--light-blue);
  font-family: var(--display);
  font-size: 14px;
}

.faq {
  padding: 0 0 180px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(70px, 12vw, 180px);
}

.faq-grid h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 5vw, 74px);
}

.faq-grid > div:first-child > p:last-child {
  color: rgba(19, 23, 34, 0.62);
}

.faq-list {
  border-top: 1px solid rgba(19, 23, 34, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(19, 23, 34, 0.2);
}

.faq-list summary {
  display: grid;
  min-height: 94px;
  grid-template-columns: 46px 1fr 22px;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--light-blue);
  font-family: var(--display);
  font-size: 14px;
}

.faq-list summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--light-blue);
  content: "";
  transition: transform 200ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 760px;
  margin: -4px 40px 30px 64px;
  color: rgba(19, 23, 34, 0.66);
  line-height: 1.7;
}

.contact {
  padding: 160px 0;
  overflow: hidden;
}

.contact-orbit {
  position: absolute;
  top: 6%;
  left: -22%;
  width: 62vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.024),
    0 0 0 180px rgba(255, 255, 255, 0.018);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.84fr) minmax(520px, 0.76fr);
  gap: clamp(80px, 12vw, 180px);
}

.contact-intro,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-intro h2 {
  margin-bottom: 36px;
  color: #fff;
  font-size: clamp(50px, 5.5vw, 86px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 64px;
}

.contact-note > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 22px;
  transform: rotate(-45deg);
}

.contact-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-note strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
}

.contact-form {
  scroll-margin-top: 100px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(9, 17, 31, 0.25);
  box-shadow: 0 32px 80px rgba(5, 10, 18, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form label:not(.privacy-check) {
  display: block;
  margin-bottom: 22px;
}

.contact-form label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  min-height: 88px;
  padding-top: 10px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 22px,
    calc(100% - 9px) 22px;
  background-repeat: no-repeat;
  background-size:
    5px 5px,
    5px 5px;
}

.contact-form option {
  color: var(--dark);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #fff;
}

.contact-form [aria-invalid="true"] {
  border-color: #ff7185;
  box-shadow: 0 1px 0 #ff7185;
}

.contact-form small {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.contact-form .field-error {
  position: relative;
  padding-left: 14px;
  color: #ffe0e5;
  line-height: 1.45;
}

.contact-form .field-error::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7185;
  box-shadow: 0 0 12px rgba(255, 113, 133, 0.72);
  content: "";
  transform: translateY(-50%);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 3px 0 22px;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.privacy-check span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.privacy-check a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.privacy-error {
  margin: -16px 0 18px;
}

.button-light {
  width: 100%;
  border-color: var(--light);
  background: var(--light);
  box-shadow: none;
  color: var(--dark);
}

.button-light:hover {
  background: #fff;
  box-shadow: 0 14px 35px rgba(5, 10, 18, 0.18);
}

.button-light:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-success {
  margin: 18px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.form-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 113, 133, 0.82);
  border-radius: 8px;
  background: rgba(107, 8, 28, 0.34);
  color: #ffe0e5;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.thank-you-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 28%, rgba(60, 118, 255, 0.16), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(60, 118, 255, 0.08), transparent 30%),
    #010207;
}

.thank-you-header {
  display: flex;
  min-height: 104px;
  align-items: center;
  border-bottom: 1px solid rgba(227, 229, 238, 0.1);
}

.thank-you-main {
  display: grid;
  min-height: calc(100svh - 104px);
  place-items: center;
  padding-block: 72px;
}

.thank-you-copy {
  max-width: 820px;
  text-align: center;
}

.thank-you-copy .eyebrow {
  color: var(--blue);
}

.thank-you-copy h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.thank-you-copy h1 span {
  color: var(--blue);
}

.thank-you-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 34px auto 0;
  color: rgba(227, 229, 238, 0.78);
  font-size: 20px;
}

.thank-you-copy .button {
  margin-top: 38px;
}

@media (max-width: 700px) {
  .thank-you-header {
    min-height: 86px;
  }

  .thank-you-main {
    min-height: calc(100svh - 86px);
    padding-block: 56px;
  }

  .thank-you-copy h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .thank-you-copy > p:not(.eyebrow) {
    font-size: 17px;
  }
}

.site-footer {
  padding: 80px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 0.7fr;
  gap: 70px;
  padding-bottom: 76px;
}

.footer-brand {
  display: block;
  width: 122px;
  margin-bottom: 28px;
}

.footer-grid > div:first-child p {
  max-width: 440px;
  margin: 0;
  color: rgba(227, 229, 238, 0.57);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  color: rgba(227, 229, 238, 0.72);
}

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

.footer-contact > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(227, 229, 238, 0.2);
  font-weight: 700;
}

.footer-contact > a span {
  color: var(--blue);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding-top: 24px;
  border-top: 1px solid rgba(227, 229, 238, 0.12);
  color: rgba(227, 229, 238, 0.45);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1480px);
  }

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(227, 229, 238, 0.18);
    border-radius: 10px;
    background: transparent;
    color: var(--light);
    cursor: pointer;
    transition:
      width 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease;
  }

  .menu-toggle-label {
    display: none;
    padding-right: 30px;
    color: var(--light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .menu-toggle-line {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--light);
    transform: translateX(-50%);
    transition:
      transform 220ms ease,
      top 220ms ease,
      right 220ms ease,
      left 220ms ease;
  }

  .menu-toggle-line-top {
    top: 19px;
  }

  .menu-toggle-line-bottom {
    top: 27px;
  }

  .menu-toggle.is-open {
    width: 102px;
    border-color: rgba(93, 140, 255, 0.72);
    background: rgba(60, 118, 255, 0.14);
  }

  .menu-toggle.is-open .menu-toggle-label {
    display: block;
  }

  .menu-toggle.is-open .menu-toggle-line {
    top: 23px;
    right: 14px;
    left: auto;
    width: 18px;
  }

  .menu-toggle.is-open .menu-toggle-line-top {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open .menu-toggle-line-bottom {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    justify-content: flex-start;
    padding: max(116px, calc(env(safe-area-inset-top) + 92px)) max(32px, calc((100vw - var(--shell)) / 2))
      max(38px, env(safe-area-inset-bottom));
    background: #020409;
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 240ms ease,
      transform 240ms ease,
      visibility 0s linear 240ms;
    visibility: hidden;
  }

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

  .mobile-menu nav {
    display: grid;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: clamp(26px, 6vw, 42px);
    font-weight: 600;
  }

  .mobile-menu nav span {
    color: var(--blue);
    font-family: var(--display);
    font-size: 14px;
  }

  .mobile-menu > .button {
    margin-top: 38px;
    margin-bottom: auto;
    align-self: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .metric-panel {
    width: min(980px, 100%);
  }

  .metric {
    grid-template-columns: 34px 1fr;
    gap: 0 12px;
    padding-inline: 18px;
  }

  .metric-icon {
    width: 32px;
    height: 32px;
  }

  .metric-icon::before {
    top: 15px;
    left: 7px;
    width: 17px;
  }
  .metric-icon::after {
    top: 7px;
    right: 7px;
  }
  .metric-icon-users i {
    top: 7px;
    left: 11px;
  }
  .metric-icon-users::before {
    top: 20px;
    left: 7px;
  }

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

  .case-facts span:nth-child(5) {
    border-left: 0;
  }

  .case-facts span:nth-child(n + 5) {
    border-top: 1px solid rgba(227, 229, 238, 0.12);
  }

  .guarantee-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .guarantee-copy {
    grid-column: auto;
  }

  .contact-grid {
    grid-template-columns: 0.75fr 1fr;
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 48px);
  }

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

  .site-header {
    height: 80px;
  }

  .brand {
    width: 98px;
  }

  .hero {
    min-height: max(820px, 100svh);
  }

  .hero-inner {
    min-height: max(820px, 100svh);
    padding-top: 118px;
    padding-bottom: 30px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(48px, 7.2vw, 64px);
  }

  .hero-title span {
    white-space: normal;
  }

  .metric {
    padding-inline: 15px;
  }

  .case-feature,
  .beyond,
  .engagement,
  .process,
  .guarantee,
  .why,
  .cases,
  .technology,
  .contact {
    padding-block: 110px;
  }

  .build-section,
  .faq {
    padding-bottom: 110px;
  }

  .case-grid,
  .split,
  .process-intro,
  .technology .shell,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .large-copy > p,
  .why-list {
    margin-top: 0;
  }

  .case-facts {
    margin-top: 70px;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .engagement-grid article {
    display: grid;
    min-height: 0;
    grid-template-columns: 54px 0.7fr 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .engagement-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .engagement-grid span,
  .engagement-grid h3,
  .engagement-grid p {
    margin: 0;
  }

  .process-list {
    margin-top: 70px;
  }

  .process-list li {
    grid-template-columns: 60px 0.75fr 1.25fr;
    gap: 24px;
  }

  .why h2 {
    position: static;
  }

  .case-card-main {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .case-card-main .case-card-copy {
    border-top: 1px solid rgba(227, 229, 238, 0.12);
    border-left: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.5fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 36px);
  }

  body {
    font-size: 16px;
  }

  h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .section-kicker {
    margin-bottom: 42px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .brand {
    width: 90px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle-line-top {
    top: 17px;
  }

  .menu-toggle-line-bottom {
    top: 25px;
  }

  .menu-toggle.is-open {
    width: 98px;
  }

  .menu-toggle.is-open .menu-toggle-line {
    top: 21px;
  }

  .mobile-menu {
    padding-top: max(100px, calc(env(safe-area-inset-top) + 80px));
  }

  .hero {
    min-height: max(880px, 100svh);
  }

  .hero::after {
    display: none;
  }

  .hero-shade {
    background: radial-gradient(
        ellipse 90% 52% at 50% 38%,
        rgba(0, 0, 0, 0.64) 0%,
        rgba(0, 0, 0, 0.44) 56%,
        rgba(0, 0, 0, 0.08) 100%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 34%, rgba(0, 0, 0, 0.34) 100%);
  }

  .hero-inner {
    min-height: max(880px, 100svh);
    padding-top: 104px;
    padding-bottom: 24px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(37px, 10.6vw, 52px);
    letter-spacing: -0.055em;
    line-height: 1.01;
  }

  .hero-description {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-description span {
    display: inline;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 25px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .metric-panel {
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .metric {
    min-height: 90px;
    grid-template-columns: 28px 1fr;
    gap: 0 9px;
    padding: 15px 12px;
  }

  .metric:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(227, 229, 238, 0.085);
  }

  .metric:nth-child(3)::before {
    display: none;
  }

  .metric-icon {
    width: 26px;
    height: 26px;
  }

  .metric-icon::before {
    top: 12px;
    left: 6px;
    width: 13px;
  }
  .metric-icon::after {
    top: 5px;
    right: 5px;
  }
  .metric-icon-users i {
    top: 5px;
    left: 8px;
  }
  .metric-icon-users::before {
    top: 17px;
    left: 5px;
    width: 14px;
  }
  .metric-value {
    font-size: 18px;
  }
  .metric-label {
    font-size: 14px;
    line-height: 1.25;
  }
  .scroll-cue {
    display: none;
  }

  .case-feature,
  .beyond,
  .engagement,
  .process,
  .guarantee,
  .why,
  .cases,
  .technology,
  .contact {
    padding-block: 88px;
  }

  .build-section,
  .faq {
    padding-bottom: 88px;
  }

  .case-grid h2,
  .beyond h2,
  .engagement h2,
  .guarantee h2,
  .why h2,
  .technology-heading h2,
  .faq-grid h2,
  .contact-intro h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .case-summary p {
    font-size: 16px;
  }

  .case-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 55px;
  }

  .case-facts span:nth-child(odd) {
    border-left: 0;
  }

  .case-facts span:nth-child(n + 3) {
    border-top: 1px solid rgba(227, 229, 238, 0.12);
  }

  .case-facts span:nth-child(6) {
    border-bottom: 1px solid rgba(227, 229, 238, 0.12);
  }

  .large-copy > p {
    margin-bottom: 45px;
    font-size: 21px;
  }

  .comparison > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 45px;
  }

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

  .build-item,
  .build-item:nth-child(odd),
  .build-item:nth-child(even) {
    min-height: 104px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding: 20px 0;
    border-right: 0;
  }

  .build-item > span {
    padding-top: 4px;
  }

  .build-item h3 {
    font-size: 21px;
    line-height: 1.25;
  }

  .engagement-grid article {
    grid-template-columns: 38px 1fr;
    gap: 18px;
  }

  .engagement-grid article p {
    grid-column: 2;
  }

  .engagement-grid h3 {
    font-size: 24px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 13px 18px;
    padding: 26px 0;
  }

  .process-list li p {
    grid-column: 2;
  }

  .process-list h3 {
    font-size: 25px;
  }

  .why-list article {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .case-cards {
    grid-template-columns: 1fr;
  }

  .case-card-main {
    grid-column: auto;
  }

  .case-card,
  .case-card-main {
    min-height: 500px;
  }

  .case-visual {
    min-height: 260px;
  }

  .case-card-copy {
    padding: 28px;
  }

  .case-card-copy h3 {
    font-size: 27px;
  }

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

  .tech-list span:nth-child(odd) {
    border-right: 0;
  }

  .tech-list span:nth-child(even) {
    padding-left: 0;
  }

  .faq-list summary {
    min-height: 82px;
    grid-template-columns: 32px 1fr 18px;
    gap: 12px;
    font-size: 17px;
  }

  .faq-list details > p {
    margin: 0 0 26px 44px;
    font-size: 15px;
  }

  .contact-orbit {
    top: 0;
    left: -90%;
    width: 160vw;
  }

  .contact-intro > p:not(.eyebrow) {
    font-size: 16px;
  }

  .contact-form {
    padding: 26px 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-bottom: 55px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }
}

@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;
    transition-duration: 0.01ms !important;
  }

  .hero-enter,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Header and hero */

body.home .site-header {
  height: 84px;
  border-bottom-color: rgba(227, 229, 238, 0.085);
  background: rgba(0, 0, 0, 0.08);
}

body.home .site-header.is-scrolled {
  height: 76px;
  background: rgba(0, 0, 0, 0.8);
}

body.home.menu-lock .site-header,
body.home.menu-lock .site-header.is-scrolled {
  background: #020409;
}

body.home .desktop-nav {
  gap: clamp(34px, 3.35vw, 60px);
}

body.home .desktop-nav a {
  color: rgba(227, 229, 238, 0.8);
  font-size: 15px;
}

body.home .header-cta {
  border-color: rgba(60, 118, 255, 0.4);
  background: rgba(8, 16, 29, 0.66);
  box-shadow:
    0 0 24px rgba(60, 118, 255, 0.06),
    inset 0 1px 0 rgba(227, 229, 238, 0.04);
}

body.home .header-cta:hover {
  border-color: rgba(60, 118, 255, 0.66);
  background: rgba(12, 23, 42, 0.82);
  box-shadow:
    0 0 28px rgba(60, 118, 255, 0.13),
    inset 0 1px 0 rgba(227, 229, 238, 0.055);
}

body.home .hero {
  min-height: max(760px, 100svh);
  background:
    radial-gradient(circle at 7% 28%, rgba(60, 118, 255, 0.1), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(32, 90, 188, 0.08), transparent 32%),
    radial-gradient(circle at 76% 92%, rgba(41, 160, 187, 0.055), transparent 30%),
    #010207;
}

body.home .neural-canvas {
  filter: saturate(1.28) contrast(1.08);
}

body.home .hero-shade {
  background: radial-gradient(
      ellipse 43% 38% at 50% 43%,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.56) 54%,
      rgba(0, 0, 0, 0.06) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.29) 0%, transparent 24%, transparent 76%, rgba(0, 0, 0, 0.34) 100%);
}

body.home .hero-inner {
  display: grid;
  min-height: max(760px, 100svh);
  grid-template-rows: minmax(0, 1fr) auto;
  padding-top: 104px;
  padding-bottom: clamp(52px, 6.4vh, 70px);
}

body.home .hero-copy {
  width: 100%;
  align-self: center;
  margin: 0;
  text-align: center;
  transform: translateY(-34px);
}

body.home .hero-copy .eyebrow {
  margin-bottom: 23px;
}

body.home .hero-title {
  max-width: 1160px;
  row-gap: 2px;
  font-size: clamp(58px, 5vw, 80px);
  letter-spacing: -0.058em;
  line-height: 0.99;
}

body.home .hero-description {
  max-width: 700px;
  margin-top: 27px;
  color: rgba(227, 229, 238, 0.8);
  font-size: clamp(19px, 1.3vw, 22px);
  line-height: 1.52;
}

body.home .hero-actions {
  gap: 34px;
  margin-top: 28px;
}

body.home .hero-actions .button {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 38px rgba(60, 118, 255, 0.25),
    0 0 26px rgba(60, 118, 255, 0.1);
}

body.home .hero-actions .button span,
body.home .header-cta span,
body.home .hero-actions .text-link span {
  transition: transform 220ms ease;
}

body.home .hero-actions .button:hover span,
body.home .header-cta:hover span,
body.home .hero-actions .text-link:hover span {
  transform: translate(2px, -2px);
}

body.home .hero-actions .button:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 44px rgba(60, 118, 255, 0.34),
    0 0 32px rgba(60, 118, 255, 0.15);
}

body.home .hero-actions .text-link {
  border-bottom-color: rgba(227, 229, 238, 0.52);
  color: rgba(227, 229, 238, 0.86);
}

body.home .proof-stack {
  width: 100%;
  align-self: end;
  margin-top: 8px;
}

body.home .metric-panel {
  width: min(920px, calc(100% - 96px));
  min-height: 108px;
  grid-template-columns: repeat(3, 1fr);
  border-color: rgba(127, 151, 203, 0.15);
  border-radius: 17px;
  margin: 0 auto;
  background: rgba(7, 14, 26, 0.58);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(227, 229, 238, 0.035);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}

body.home .metric {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 18px 24px;
  text-align: center;
}

body.home .metric + .metric::before {
  top: 21px;
  bottom: 21px;
  background: rgba(227, 229, 238, 0.085);
}

body.home .metric-value {
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

body.home .metric-label {
  color: rgba(227, 229, 238, 0.5);
  font-size: 14px;
  letter-spacing: 0.055em;
  text-transform: none;
}

@media (max-width: 1180px) {
  body.home .metric-panel {
    width: min(100%, 900px);
  }
}

@media (max-width: 900px) {
  body.home .hero,
  body.home .hero-inner {
    min-height: max(780px, 100svh);
  }

  body.home .hero-inner {
    padding-top: 94px;
    padding-bottom: 30px;
  }

  body.home .hero-copy {
    transform: translateY(-18px);
  }

  body.home .hero-title {
    display: block;
    font-size: clamp(46px, 7.3vw, 64px);
  }

  body.home .hero-title span {
    display: inline;
    white-space: normal;
  }

  body.home .hero-title > span + span::before {
    content: "\00a0";
  }

  body.home .case-feature .case-grid h2 br,
  body.home .guarantee h2 br {
    display: none;
  }

  body.home .hero-description {
    max-width: 680px;
    font-size: 19px;
  }

  body.home .metric {
    min-height: 82px;
  }
}

@media (max-width: 640px) {
  body.home .hero,
  body.home .hero-inner {
    min-height: max(844px, 100svh);
  }

  body.home .hero-inner {
    grid-template-rows: auto auto;
    align-content: center;
    row-gap: 46px;
    padding-top: 92px;
    padding-bottom: 20px;
  }

  body.home .hero-copy {
    transform: none;
  }

  body.home .hero-copy .eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
  }

  body.home .hero-title {
    font-size: clamp(37px, 10.4vw, 48px);
    line-height: 1;
  }

  body.home .hero-description {
    max-width: 355px;
    margin-top: 21px;
    color: rgba(227, 229, 238, 0.76);
    font-size: 17px;
    line-height: 1.48;
  }

  body.home .hero-actions {
    gap: 21px;
    margin-top: 46px;
  }

  body.home .proof-stack {
    margin-top: 0;
  }

  body.home .metric-panel {
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14px;
  }

  body.home .metric {
    min-height: 72px;
    padding: 12px 8px;
  }

  body.home .metric:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(227, 229, 238, 0.075);
  }

  body.home .metric:nth-child(3)::before {
    display: none;
  }

  body.home .metric-value {
    font-size: 21px;
  }

  body.home .metric-label {
    font-size: 14px;
    line-height: 1.25;
  }

  body.home .metric + .metric::before {
    top: 15px;
    bottom: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .hero-actions .button span,
  body.home .header-cta span,
  body.home .hero-actions .text-link span {
    transition: none;
  }
}

/* Page components */

.home .comparison-copy strong,
.home .comparison-copy small {
  display: block;
}

.home .comparison-copy strong {
  color: #131722;
  font-weight: 600;
}

.home .comparison-copy small {
  margin-top: 5px;
  color: rgba(19, 23, 34, 0.58);
  font-size: 0.9em;
  line-height: 1.5;
}

.home .comparison > div > span {
  padding-left: 18px;
}

.home .comparison .comparison-active {
  padding: 28px 24px 30px;
  background: linear-gradient(
    105deg,
    rgba(60, 118, 255, 0.18) 0%,
    rgba(60, 118, 255, 0.08) 58%,
    rgba(60, 118, 255, 0.025) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(60, 118, 255, 0.14);
}

.home .comparison .comparison-active::before {
  width: 4px;
  box-shadow: 0 0 18px rgba(60, 118, 255, 0.32);
}

.home .comparison .comparison-active > span {
  padding-left: 0;
  color: #2862ff;
  letter-spacing: 0.1em;
}

.home .comparison-active .comparison-copy strong {
  color: #0a235e;
}

.home .comparison-active .comparison-copy small {
  color: rgba(19, 23, 34, 0.76);
}

.home .case-feature .case-facts span {
  min-height: 146px;
  justify-content: flex-start;
  padding: 28px 18px;
}

.home .case-feature .case-facts b {
  margin-bottom: 20px;
  color: #3c76ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}

.home .case-feature .case-facts strong {
  margin-bottom: 14px;
  color: rgba(227, 229, 238, 0.88);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.home .case-feature .case-facts small {
  color: rgba(227, 229, 238, 0.54);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.home .process-list li {
  grid-template-columns: 72px minmax(210px, 0.72fr) minmax(320px, 1.15fr) minmax(260px, 0.72fr);
  gap: 30px;
}

.home .process-number,
.home .process-list h3,
.home .process-list p {
  transition: color 240ms ease;
}

.home .process-list li:hover .process-number {
  color: #5d8cff;
}

.home .process-list li:hover h3 {
  color: #fff;
}

.home .process-list li:hover p {
  color: rgba(227, 229, 238, 0.78);
}

.home .process-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.home .process-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(60, 118, 255, 0.52);
  border-radius: 10px;
  color: #e3e5ee;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 240ms ease,
    border-color 240ms ease;
}

.home .process-cta-price {
  color: #5d8cff;
}

.home .process-cta span {
  color: #5d8cff;
  transition: transform 240ms ease;
}

.home .process-cta:hover {
  border-color: rgba(60, 118, 255, 0.78);
  background: rgba(60, 118, 255, 0.16);
}

.home .process-cta:hover span {
  transform: translate(3px, -3px);
}

.home .process-cta:focus-visible {
  outline: 2px solid #e3e5ee;
  outline-offset: 3px;
}

.home .build-item > span {
  opacity: 0.72;
  transition:
    color 240ms ease,
    opacity 240ms ease;
}

.home .build-item h3 {
  max-width: 16ch;
}

.home .team-section {
  overflow: hidden;
  padding: 150px 0 170px;
  border-top: 1px solid rgba(227, 229, 238, 0.1);
}

.home .team-section .section-kicker {
  margin-bottom: 58px;
}

.home .team-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.68fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: end;
}

.home .team-intro h2 {
  max-width: 920px;
  color: #e3e5ee;
  font-size: clamp(52px, 5.25vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.home .team-intro h2 span {
  display: block;
}

.home .team-intro .team-dot {
  display: inline;
  color: #3c76ff;
}

.home .team-intro > p {
  max-width: 590px;
  margin: 0 0 6px;
  color: rgba(227, 229, 238, 0.62);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}

.home .team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 82px;
}

.home .team-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(60, 118, 255, 0.28);
  border-radius: 12px;
  background: #050a14;
  transition:
    border-color 240ms ease,
    background-color 240ms ease;
}

.home .team-card-heading {
  display: flex;
  min-height: 18px;
  align-items: baseline;
  gap: 14px;
}

.home .team-card-number {
  flex: 0 0 auto;
  color: #3c76ff;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.home .team-card h3 {
  margin: 0;
  color: rgba(227, 229, 238, 0.84);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home .team-card-description {
  min-height: 72px;
  margin: 22px 0 28px;
  color: rgba(227, 229, 238, 0.56);
  font-size: 14px;
  line-height: 1.65;
}

.home .team-members {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.home .team-member {
  display: grid;
  min-width: 0;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(227, 229, 238, 0.11);
}

.home .team-photo {
  position: relative;
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(60, 118, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(60, 118, 255, 0.13), transparent 54%), #0a111d;
  color: rgba(227, 229, 238, 0.52);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.home .team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 240ms ease;
}

.home .team-photo img[hidden] {
  display: none;
}

.home .team-member-copy {
  min-width: 0;
}

.home .team-member-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home .team-member h4 {
  margin: 0;
  color: #e3e5ee;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.home .team-experience {
  flex: 0 0 auto;
  padding: 4px 6px 3px;
  border: 1px solid rgba(60, 118, 255, 0.24);
  border-radius: 4px;
  color: rgba(227, 229, 238, 0.48);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.home .team-member p {
  margin: 7px 0 0;
  color: rgba(60, 118, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  transition: color 240ms ease;
}

.home .tech-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  border-top: 1px solid rgba(19, 23, 34, 0.18);
}

.home .tech-group {
  display: flex;
  min-width: 0;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px 22px 0;
  border-bottom: 1px solid rgba(19, 23, 34, 0.18);
  transition: background-color 240ms ease;
}

.home .tech-group:nth-child(even) {
  padding-right: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(19, 23, 34, 0.18);
}

.home .tech-group-wide {
  grid-column: 1 / -1;
  padding-right: 0;
}

.home .tech-group-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.home .tech-group-number {
  color: #3c76ff;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: color 240ms ease;
}

.home .tech-group h3 {
  margin: 0;
  color: rgba(19, 23, 34, 0.55);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.home .tech-group > p {
  margin: 16px 0 0;
  color: #131722;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.home .faq-answer {
  max-width: 760px;
  margin: -4px 40px 30px 64px;
  color: rgba(19, 23, 34, 0.66);
  line-height: 1.7;
}

.home .faq-answer p {
  margin: 0;
}

.home .faq-answer p + p {
  margin-top: 16px;
}

.home .faq-answer strong {
  color: #131722;
  font-weight: 700;
}

@media (hover: hover) {
  .home .team-card:hover {
    border-color: rgba(60, 118, 255, 0.52);
    background: #07101e;
  }

  .home .team-card:hover .team-photo img {
    transform: scale(1.02);
  }

  .home .team-card:hover .team-member p {
    color: #5d8cff;
  }

  .home .tech-group:hover {
    background: rgba(60, 118, 255, 0.035);
  }

  .home .tech-group:hover .tech-group-number {
    color: #2862ff;
  }

  .home .tech-group:hover h3 {
    color: rgba(19, 23, 34, 0.76);
  }
}

@media (min-width: 901px) {
  .home .case-feature .case-grid h2 {
    font-size: clamp(48px, 4.7vw, 78px);
  }
}

@media (min-width: 1181px) {
  .home .guarantee-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.72fr);
    gap: clamp(50px, 5vw, 90px);
  }

  .home .guarantee h2 {
    font-size: clamp(44px, 3.35vw, 54px);
  }
}

@media (max-width: 1279px) {
  .home .team-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 52px;
  }

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

@media (max-width: 1180px) {
  .home .process-list li {
    grid-template-columns: 60px minmax(200px, 0.75fr) minmax(300px, 1.25fr);
    gap: 24px;
  }

  .home .process-actions {
    grid-column: 2 / -1;
    justify-content: flex-start;
    margin-top: -10px;
    padding-bottom: 24px;
  }
}

@media (max-width: 900px) {
  .home .team-section {
    padding-block: 110px;
  }

  .home .team-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home .team-intro > p {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .home .team-section {
    padding-block: 88px;
  }

  .home .team-section .section-kicker {
    margin-bottom: 44px;
  }

  .home .team-intro h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .home .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 54px;
  }

  .home .team-card {
    min-height: 346px;
    padding: 22px;
  }

  .home .team-card-description {
    min-height: 0;
    margin-bottom: 26px;
  }

  .home .team-member h4 {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .home .comparison > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 28px 18px;
  }

  .home .comparison > div > span {
    padding-left: 0;
  }

  .home .comparison .comparison-active {
    padding: 30px 18px 32px 24px;
  }

  .home .comparison-copy {
    min-width: 0;
  }

  .home .comparison-copy strong {
    font-size: 22px;
    line-height: 1.28;
  }

  .home .comparison-copy small {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .home .build-item,
  .home .build-item:nth-child(odd),
  .home .build-item:nth-child(even) {
    min-height: 136px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 32px 0;
  }

  .home .build-item > span {
    padding-top: 0;
  }

  .home .build-item h3 {
    line-height: 1.25;
  }

  .home .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 13px 18px;
    padding: 26px 0;
  }

  .home .process-list li p {
    grid-column: 2;
  }

  .home .process-actions {
    grid-column: 2;
    flex-wrap: wrap;
    margin-top: 4px;
    padding-bottom: 0;
  }

  .home .process-cta {
    min-height: 44px;
    flex: 1 1 190px;
  }

  .home .tech-map {
    grid-template-columns: 1fr;
  }

  .home .tech-group,
  .home .tech-group:nth-child(even),
  .home .tech-group-wide {
    min-height: 104px;
    grid-column: auto;
    padding: 20px 0;
    border-left: 0;
  }

  .home .faq-answer {
    margin: 0 0 26px 44px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .home .team-member {
    grid-template-columns: 1fr;
  }
}

/* Type scale and contrast */
body.home {
  --text-muted-dark: rgba(227, 229, 238, 0.78);
  --text-muted-light: rgba(19, 23, 34, 0.78);
  --text-muted-blue: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.58;
}

.home .eyebrow {
  color: rgba(227, 229, 238, 0.88);
}

.home .hero-copy .eyebrow {
  color: rgba(60, 118, 255, 0.96);
}

.home .eyebrow.blue {
  color: #2862ff;
}

.home .section-kicker {
  color: rgba(227, 229, 238, 0.8);
}

.home .section-kicker.dark {
  color: rgba(19, 23, 34, 0.74);
}

.home .section-kicker.light,
.home .section-kicker.light span {
  color: rgba(255, 255, 255, 0.94);
}

.home .hero-description {
  color: rgba(227, 229, 238, 0.9);
  font-size: clamp(22px, 1.48vw, 25px);
}

.home .metric-label {
  color: rgba(227, 229, 238, 0.68);
}

.home .case-summary p {
  color: rgba(227, 229, 238, 0.84);
  font-size: 21px;
}

.home .case-feature .case-facts span {
  min-height: 160px;
}

.home .case-feature .case-facts strong {
  color: rgba(227, 229, 238, 0.94);
  font-size: 16px;
}

.home .case-feature .case-facts small {
  color: rgba(227, 229, 238, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.home .comparison span {
  color: rgba(19, 23, 34, 0.72);
  font-size: 14px;
}

.home .comparison p,
.home .comparison-copy small {
  color: rgba(19, 23, 34, 0.78);
}

.home .section-heading-row > p,
.home .technology-heading > p:last-child,
.home .faq-grid > div:first-child > p:last-child {
  color: var(--text-muted-light);
}

.home .build-item > span {
  font-size: 14px;
}

.home .engagement-grid span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.home .engagement-grid p {
  color: var(--text-muted-blue);
}

.home .process-intro > p,
.home .process-list p {
  color: var(--text-muted-dark);
}

.home .process-list li:hover p {
  color: rgba(227, 229, 238, 0.92);
}

.home .process-cta {
  font-size: 14px;
}

.home .guarantee-copy > p:first-child,
.home .faq-answer {
  color: var(--text-muted-light);
}

.home .fine-print {
  color: rgba(19, 23, 34, 0.72);
  font-size: 16.5px;
}

.home .team-intro > p {
  color: var(--text-muted-dark);
  font-size: clamp(19px, 1.45vw, 22px);
}

.home .team-card h3 {
  color: rgba(227, 229, 238, 0.92);
}

.home .team-card-description {
  min-height: 84px;
  color: rgba(227, 229, 238, 0.72);
  font-size: 16.5px;
  line-height: 1.62;
}

.home .team-photo {
  color: rgba(227, 229, 238, 0.68);
  font-size: 17px;
}

.home .team-experience {
  color: rgba(227, 229, 238, 0.68);
}

.home .team-member p {
  color: rgba(93, 140, 255, 0.96);
}

.home .tech-group h3 {
  color: rgba(19, 23, 34, 0.72);
}

.home .tech-group > p {
  font-size: clamp(20px, 1.5vw, 24px);
}

.home .faq-answer {
  font-size: 20px;
  line-height: 1.72;
}

.home .contact-intro > p:not(.eyebrow) {
  color: var(--text-muted-blue);
  font-size: 22px;
}

.home .contact-note p {
  color: rgba(255, 255, 255, 0.88);
}

.home .contact-form label > span:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.home .privacy-check span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.home .footer-grid > div:first-child p {
  color: rgba(227, 229, 238, 0.72);
}

.home .footer-links a {
  color: rgba(227, 229, 238, 0.82);
}

.home .footer-bottom {
  color: rgba(227, 229, 238, 0.62);
  font-size: 14px;
}

@media (max-width: 640px) {
  .home .hero-copy .eyebrow {
    font-size: 14px;
  }

  .home .hero-description {
    font-size: 20px;
  }

  .home .metric-label {
    font-size: 14px;
  }

  .home .team-card-description {
    min-height: 0;
  }

  .home .faq-answer {
    font-size: 18px;
  }
}

/* Shared section type scale */
body.home {
  --section-heading-size: clamp(58px, 5vw, 80px);
  --section-lead-size: clamp(22px, 1.48vw, 25px);
  --eyebrow-heading-gap: 23px;
  --heading-lead-gap: 27px;
}

.home .eyebrow,
.home .section-kicker,
.home .case-label,
.home .team-section .section-kicker {
  margin-bottom: var(--eyebrow-heading-gap);
  font-size: 14px;
}

.home .hero-title,
.home .case-grid h2,
.home .beyond h2,
.home .section-heading-row h2,
.home .engagement h2,
.home .process-intro h2,
.home .guarantee h2,
.home .team-intro h2,
.home .technology-heading h2,
.home .faq-grid h2,
.home .contact-intro h2 {
  font-size: var(--section-heading-size);
}

.home .hero-description,
.home .case-summary p,
.home .large-copy > p,
.home .section-heading-row > p,
.home .process-intro > p,
.home .guarantee-copy > p:first-child,
.home .team-intro > p,
.home .technology-heading > p:last-child,
.home .faq-grid > div:first-child > p:last-child,
.home .contact-intro > p:not(.eyebrow) {
  font-size: var(--section-lead-size);
  line-height: 1.52;
}

.home .hero-description {
  margin-top: var(--heading-lead-gap);
}

.home .technology-heading h2,
.home .faq-grid h2,
.home .contact-intro h2 {
  margin-bottom: var(--heading-lead-gap);
}

@media (max-width: 900px) {
  body.home {
    --section-heading-size: clamp(46px, 7.3vw, 64px);
    --heading-lead-gap: 25px;
  }

  .home .case-grid,
  .home .split,
  .home .process-intro,
  .home .team-intro {
    gap: var(--heading-lead-gap);
  }

  .home .guarantee-grid {
    row-gap: var(--heading-lead-gap);
  }
}

@media (max-width: 640px) {
  body.home {
    --section-heading-size: clamp(37px, 10.4vw, 48px);
    --section-lead-size: 17px;
    --eyebrow-heading-gap: 18px;
    --heading-lead-gap: 21px;
  }

  .home .section-heading-row {
    gap: var(--heading-lead-gap);
  }
}

/* Numeric labels */
.home .mobile-menu nav span,
.home .section-kicker > span,
.home .case-facts b,
.home .build-item > span,
.home .engagement-grid article > span,
.home .process-number,
.home .team-card-number,
.home .tech-group-number,
.home .faq-list summary > span {
  font-family: var(--body);
}

@media (prefers-reduced-motion: reduce) {
  .home .team-card,
  .home .team-photo img,
  .home .team-member p,
  .home .tech-group,
  .home .tech-group-number,
  .home .tech-group h3 {
    transition: none;
  }

  .home .team-card:hover .team-photo img {
    transform: none;
  }
}
