:root {
  --ink: #1f1f23;
  --blue: #1469d2;
  --blue-dark: #0b4c9c;
  --mist: #eff3f8;
  --line: #e6e6ef;
  --white: #ffffff;
  --muted: rgba(31, 31, 35, 0.7);
  --font: "Helvetica Neue", "Arial", sans-serif;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(20, 105, 210, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 31, 35, 0.14);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.shell {
  width: min(100% - 80px, 1380px);
  margin-inline: auto;
}

.site-header {
  display: grid;
  width: min(100% - 80px, 1380px);
  min-height: 88px;
  margin-inline: auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto 1fr;
}

.identity {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.identity small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.identity__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 600;
}

nav a {
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--blue);
}

.header-action {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  justify-self: end;
  align-items: center;
  gap: 30px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.header-action:hover {
  background: var(--blue);
}

.hero-case {
  padding-block: 28px 72px;
}

.hero-case__stage {
  position: relative;
  display: flex;
  min-height: 760px;
  overflow: hidden;
  padding: 82px 72px 130px;
  align-items: center;
  border-radius: 34px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-case__stage::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 16, 19, 0.96) 0%, rgba(15, 16, 19, 0.86) 38%, rgba(15, 16, 19, 0.26) 72%, rgba(15, 16, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 16, 19, 0.72) 0%, transparent 35%);
  content: "";
}

.hero-case__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-case__content {
  position: relative;
  z-index: 1;
  width: min(61%, 710px);
}

.section-index {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-index--light {
  color: rgba(255, 255, 255, 0.55);
}

.section-index--light span {
  color: #72adf5;
}

.hero-case h1,
.profile h2,
.section-heading h2,
.capabilities h2,
.hardware-upgrade h2,
.decision h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-case h1 {
  font-size: clamp(52px, 5.25vw, 80px);
  line-height: 1.01;
}

.hero-case h1 em {
  color: #85baff;
  font-style: normal;
}

.hero-case__lead {
  max-width: 640px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.58;
}

.hero-case__actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-case__status {
  display: flex;
  margin: 0 0 25px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-case__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7a45;
  box-shadow: 0 0 0 5px rgba(255, 122, 69, 0.13);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

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

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

.button--secondary:hover {
  border-color: var(--blue);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(18, 20, 24, 0.42);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(18, 20, 24, 0.7);
}

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

.hero-case__telemetry {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 72px;
  display: flex;
  gap: 44px;
}

.hero-case__telemetry div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-case__telemetry div + div {
  padding-left: 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-case__telemetry span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-case__telemetry strong {
  font-size: 12px;
  font-weight: 600;
}

.metrics {
  border-block: 1px solid var(--line);
  background: var(--mist);
}

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

.metrics__grid > div {
  display: flex;
  min-height: 162px;
  padding: 30px 34px;
  align-items: center;
  gap: 18px;
  border-right: 1px solid #dce2ea;
}

.metrics__grid > div:first-child {
  border-left: 1px solid #dce2ea;
}

.metrics strong {
  color: var(--blue);
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.profile {
  display: grid;
  padding-block: 130px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(80px, 11vw, 180px);
}

.profile h2,
.section-heading h2,
.hardware-upgrade h2 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
}

.profile__body {
  padding-top: 52px;
}

.profile__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.profile__body .profile__lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.profile__facts {
  margin: 52px 0 0;
  border-top: 1px solid var(--line);
}

.profile__facts div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 140px 1fr;
  gap: 25px;
}

.profile__facts dt {
  color: var(--muted);
  font-size: 12px;
}

.profile__facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.work {
  padding-block: 120px;
  background: var(--mist);
}

.section-heading {
  display: grid;
  margin-bottom: 76px;
  align-items: end;
  grid-template-columns: 1fr 0.5fr;
  gap: 80px;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.project-list {
  border-top: 1px solid #d6dde7;
}

.project {
  position: relative;
  display: grid;
  min-height: 430px;
  padding-block: 44px;
  align-items: start;
  border-bottom: 1px solid #d6dde7;
  grid-template-columns: 58px minmax(0, 1fr) 300px 160px;
  gap: clamp(28px, 4vw, 64px);
}

.project__number {
  padding-top: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.project__meta {
  margin: 0 0 12px !important;
  color: var(--blue) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.project h3 {
  margin: 0;
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.project__content > p:not(.project__meta) {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.project__content ul {
  display: grid;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.project__content li {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 600;
}

.project__content li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.project__signal {
  position: relative;
  display: grid;
  min-height: 240px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #d6dde7;
  border-radius: 22px;
  background: var(--white);
}

.project__link {
  display: flex;
  padding-top: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.project__link span {
  color: var(--blue);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.project__link:hover span {
  transform: translate(3px, -3px);
}

.project__signal--ai > span {
  display: grid;
  z-index: 2;
  width: 98px;
  height: 98px;
  place-items: center;
  border-radius: 28px;
  background: var(--blue);
  color: var(--white);
  font-size: 34px;
  font-weight: 500;
}

.project__signal--ai i {
  position: absolute;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
}

.project__signal--ai i:nth-of-type(1) {
  top: 22px;
  left: 24px;
}

.project__signal--ai i:nth-of-type(2) {
  top: 27px;
  right: 23px;
}

.project__signal--ai i:nth-of-type(3) {
  right: 28px;
  bottom: 24px;
}

.project__signal--network span {
  display: grid;
  z-index: 2;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.project__signal--network i {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #b9c8dc;
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
}

.project__signal--network i::after {
  position: absolute;
  z-index: -1;
  width: 85px;
  height: 1px;
  background: #9db5d2;
  content: "";
}

.project__signal--network i:nth-of-type(1) {
  top: 24px;
}

.project__signal--network i:nth-of-type(1)::after {
  transform: rotate(90deg) translateX(55px);
}

.project__signal--network i:nth-of-type(2) {
  bottom: 25px;
  left: 25px;
}

.project__signal--network i:nth-of-type(2)::after {
  transform: rotate(-35deg) translateX(55px);
}

.project__signal--network i:nth-of-type(3) {
  right: 25px;
  bottom: 25px;
}

.project__signal--network i:nth-of-type(3)::after {
  transform: rotate(35deg) translateX(-55px);
}

.project__signal--metric {
  align-content: center;
  justify-items: start;
  padding: 34px;
}

.project__signal--metric strong {
  color: var(--blue);
  font-size: 82px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.project__signal--metric span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.project__signal--terminal {
  padding: 26px;
  align-content: center;
  justify-items: stretch;
  background: var(--ink);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.project__signal--terminal code {
  color: var(--white);
  font-size: 12px;
}

.project__signal--terminal span {
  margin-block: 20px;
  overflow: hidden;
  color: #72adf5;
  font-size: 12px;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.project__signal--terminal i {
  color: #81d7a8;
  font-size: 10px;
  font-style: normal;
}

.capabilities {
  padding-block: 125px;
  background: var(--ink);
  color: var(--white);
}

.capabilities__heading {
  display: grid;
  margin-bottom: 75px;
  grid-template-columns: 0.5fr 1fr;
  align-items: end;
}

.capabilities__heading .section-index {
  margin-bottom: 10px;
}

.capabilities h2 {
  max-width: 780px;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: 1.04;
}

.capabilities__grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(4, 1fr);
}

.capabilities article {
  min-height: 295px;
  padding: 32px 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.capabilities article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.capabilities article > span {
  color: #72adf5;
  font-size: 10px;
  font-weight: 700;
}

.capabilities article h3 {
  margin: 68px 0 17px;
  font-size: 21px;
  font-weight: 500;
}

.capabilities article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.hardware-upgrade {
  padding-block: 135px;
  background: var(--mist);
}

.hardware-upgrade__heading {
  display: grid;
  margin-bottom: 66px;
  align-items: end;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(70px, 10vw, 150px);
}

.hardware-upgrade__heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.hardware-comparison {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
}

.hardware-panel {
  overflow: hidden;
  border: 1px solid #dce2ea;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(34, 48, 67, 0.08);
}

.hardware-panel--target {
  border-color: rgba(20, 105, 210, 0.26);
  box-shadow: 0 24px 62px rgba(20, 105, 210, 0.12);
}

.hardware-panel__topline {
  display: flex;
  min-height: 58px;
  padding-inline: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hardware-panel__topline strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aa4c2b;
  font-size: inherit;
}

.hardware-panel__topline strong i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7a45;
}

.hardware-panel--target .hardware-panel__topline strong {
  color: #217a50;
}

.hardware-panel--target .hardware-panel__topline strong i {
  background: #36a56e;
}

.hardware-panel figure {
  margin: 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.hardware-panel figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hardware-panel__body {
  padding: 30px 30px 28px;
}

.hardware-panel__body > p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hardware-panel__body h3 {
  margin: 0 0 27px;
  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hardware-panel__body dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hardware-panel__body dl div {
  display: grid;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 92px 1fr;
  gap: 16px;
}

.hardware-panel__body dt,
.hardware-panel__body dd {
  font-size: 11px;
  line-height: 1.45;
}

.hardware-panel__body dt {
  color: var(--muted);
}

.hardware-panel__body dd {
  margin: 0;
  font-weight: 600;
}

.hardware-comparison__path {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  color: var(--blue);
}

.hardware-comparison__path span {
  max-width: 65px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.hardware-comparison__path i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-style: normal;
}

.decision {
  padding-block: 125px;
  background: var(--blue);
  color: var(--white);
}

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

.decision h2 {
  max-width: 980px;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 1.02;
}

.decision__inner > p:not(.section-index) {
  max-width: 720px;
  margin: 32px 0 42px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.6;
}

footer {
  background: var(--ink);
  color: var(--white);
}

.footer__inner {
  display: grid;
  min-height: 150px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

.identity--footer small {
  color: rgba(255, 255, 255, 0.5);
}

.footer__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer__inner > a {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal][data-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.18s;
}

[data-reveal][data-delay="3"] {
  transition-delay: 0.26s;
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-case__stage {
    min-height: 700px;
    padding-inline: 56px;
  }

  .hero-case h1 {
    font-size: clamp(50px, 6vw, 70px);
  }

  .metrics__grid > div {
    padding: 25px 20px;
    gap: 12px;
  }

  .profile {
    gap: 70px;
  }

  .project {
    grid-template-columns: 42px minmax(0, 1fr) 240px;
  }

  .project__link {
    grid-column: 2 / 4;
    padding-top: 0;
  }

  .hardware-comparison {
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  }

  .hardware-panel__body {
    padding-inline: 24px;
  }
}

@media (max-width: 860px) {
  .shell,
  .site-header {
    width: min(100% - 44px, 1380px);
  }

  .hero-case {
    padding-block: 18px 58px;
  }

  .hero-case__stage {
    min-height: 900px;
    padding: 54px 42px 410px;
    align-items: flex-start;
  }

  .hero-case__stage::after {
    background:
      linear-gradient(180deg, rgba(15, 16, 19, 0.98) 0%, rgba(15, 16, 19, 0.92) 43%, rgba(15, 16, 19, 0.22) 66%, rgba(15, 16, 19, 0.64) 100%),
      linear-gradient(90deg, rgba(15, 16, 19, 0.42), transparent);
  }

  .hero-case__image {
    top: auto;
    bottom: 0;
    height: 52%;
    object-position: center;
  }

  .hero-case__content {
    width: 100%;
  }

  .hero-case h1 {
    font-size: clamp(52px, 10vw, 76px);
  }

  .hero-case__telemetry {
    bottom: 28px;
    left: 42px;
  }

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

  .metrics__grid > div:nth-child(2) {
    border-right: 1px solid #dce2ea;
  }

  .metrics__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid #dce2ea;
  }

  .profile,
  .section-heading,
  .capabilities__heading,
  .hardware-upgrade__heading {
    grid-template-columns: 1fr;
  }

  .profile {
    gap: 48px;
  }

  .hardware-upgrade__heading {
    margin-bottom: 46px;
    gap: 28px;
  }

  .hardware-comparison {
    grid-template-columns: 1fr;
  }

  .hardware-comparison__path {
    min-height: 92px;
    justify-content: center;
  }

  .hardware-comparison__path i {
    transform: rotate(90deg);
  }

  .profile__body {
    padding-top: 0;
  }

  .section-heading,
  .capabilities__heading {
    gap: 30px;
  }

  .project {
    min-height: auto;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .project__signal {
    min-height: 280px;
    grid-column: 2;
  }

  .project__link {
    grid-column: 2;
  }

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

  .capabilities article:nth-child(2) {
    border-right: 0;
  }

  .capabilities article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .footer__inner p {
    display: none;
  }
}

@media (max-width: 560px) {
  .shell,
  .site-header {
    width: min(100% - 30px, 1380px);
  }

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

  .identity {
    gap: 8px;
    font-size: 11px;
  }

  .identity__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 15px;
  }

  .header-action {
    min-height: 42px;
    padding-inline: 15px;
    gap: 12px;
    font-size: 10px;
  }

  .header-action span {
    display: none;
  }

  .hero-case {
    padding-block: 12px 46px;
  }

  .hero-case__stage {
    min-height: 820px;
    padding: 38px 24px 350px;
    border-radius: 24px;
  }

  .hero-case__image {
    height: 44%;
    object-position: 55% center;
  }

  .section-index {
    margin-bottom: 21px;
    font-size: 9px;
  }

  .hero-case h1 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .hero-case__lead {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-case__actions,
  .button {
    width: 100%;
  }

  .hero-case__telemetry {
    right: 24px;
    bottom: 21px;
    left: 24px;
    gap: 17px;
  }

  .hero-case__telemetry div + div {
    padding-left: 17px;
  }

  .hero-case__telemetry span {
    font-size: 7px;
  }

  .hero-case__telemetry strong {
    font-size: 10px;
  }

  .metrics__grid > div {
    min-height: 125px;
    padding: 18px 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .metrics strong {
    font-size: 38px;
  }

  .metrics span {
    font-size: 8px;
  }

  .profile,
  .work,
  .capabilities,
  .hardware-upgrade,
  .decision {
    padding-block: 80px;
  }

  .profile h2,
  .section-heading h2,
  .hardware-upgrade h2,
  .capabilities h2,
  .decision h2 {
    font-size: clamp(37px, 10.5vw, 52px);
  }

  .profile__body .profile__lead {
    font-size: 17px;
  }

  .profile__facts div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .project {
    padding-block: 34px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project__number,
  .project__content,
  .project__signal,
  .project__link {
    grid-column: 1;
  }

  .project__number {
    padding-top: 0;
  }

  .project h3 {
    font-size: 34px;
  }

  .project__signal {
    min-height: 240px;
  }

  .project__link {
    padding-top: 4px;
  }

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

  .capabilities article,
  .capabilities article:first-child {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .capabilities article h3 {
    margin-top: 48px;
  }

  .hardware-upgrade__heading {
    margin-bottom: 38px;
  }

  .hardware-upgrade__heading > p {
    font-size: 14px;
  }

  .hardware-panel {
    border-radius: 20px;
  }

  .hardware-panel__topline {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 8px;
  }

  .hardware-panel__body {
    padding: 24px 20px 22px;
  }

  .hardware-panel__body h3 {
    font-size: 30px;
  }

  .hardware-panel__body dl div {
    grid-template-columns: 78px 1fr;
  }

  .footer__inner {
    min-height: 120px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
