:root {
  --night: #031a22;
  --night-soft: #062730;
  --petrol: #073845;
  --petrol-mid: #0a4554;
  --paper: #f3f6f5;
  --white: #fcfefd;
  --ink: #08252d;
  --muted: #5d6f75;
  --orange-text: #b54400;
  --line: #cbd7d7;
  --line-dark: rgba(157, 206, 216, 0.2);
  --orange: #ff7417;
  --orange-deep: #e85d08;
  --blue: #69c7e3;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --sans: "Onest", Arial, sans-serif;
  --shell: min(1440px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--night);
  transform: translateY(-150%);
}

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

.utility-bar {
  background: var(--night);
  color: #a9c1c7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.utility-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.utility-bar a {
  color: var(--white);
  transition: color 160ms ease;
}

.utility-bar a:hover {
  color: var(--blue);
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(105, 199, 227, 0.1);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(252, 254, 253, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
}

.brand {
  display: flex;
  width: clamp(190px, 14vw, 238px);
  flex: 0 0 auto;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.3vw, 26px);
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--petrol);
  cursor: pointer;
}

.icon-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.spec-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.spec-link b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--petrol);
  color: white;
  font: 500 10px/1 var(--mono);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button--compact {
  min-height: 42px;
  padding-inline: 18px;
}

.button--large {
  min-height: 56px;
  padding-inline: 28px;
}

.button--orange {
  background: var(--orange);
  color: var(--night);
}

.button--orange:hover {
  background: #ff893f;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

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

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

.search-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(3, 26, 34, 0.12);
}

.search-panel__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: end;
  gap: 28px;
}

.search-panel label {
  font-size: 13px;
  font-weight: 600;
}

.search-panel__inner > div {
  display: flex;
}

.search-panel input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 0 16px;
  outline: none;
}

.search-panel input:focus {
  border-color: var(--blue);
}

.search-panel button {
  width: 120px;
  border: 0;
  background: var(--petrol);
  color: white;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 71% 38%, rgba(10, 69, 84, 0.82), transparent 31%),
    linear-gradient(120deg, #031a22 0%, #04232c 52%, #031a22 100%);
}

.hero-grid {
  position: absolute;
  inset: 0 0 0 50%;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(105, 199, 227, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 199, 227, 0.24) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: perspective(600px) rotateY(-15deg) scale(1.15);
  transform-origin: center right;
}

.hero-beam {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105, 199, 227, 0.65), transparent);
  transform: rotate(-34deg);
  transform-origin: left;
}

.hero-beam--one {
  width: 720px;
  right: -200px;
  top: 180px;
}

.hero-beam--two {
  width: 600px;
  right: -90px;
  bottom: 140px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
  padding-block: 76px 70px;
}

.eyebrow {
  margin: 0 0 26px;
  color: #a6c1c8;
  font: 500 11px/1.2 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 14px;
  color: var(--orange);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(46px, 5.15vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 600;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero__lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #b7cbd0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
}

.hero__facts > div {
  min-height: 92px;
  padding: 21px 20px 8px 0;
  border-right: 1px solid var(--line-dark);
}

.hero__facts > div + div {
  padding-left: 20px;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  margin-bottom: 7px;
  color: var(--white);
  font: 600 22px/1 var(--mono);
}

.hero__facts span {
  color: #829fa7;
  font-size: 12px;
}

.request-module {
  position: relative;
  background: rgba(4, 33, 42, 0.86);
  border: 1px solid rgba(105, 199, 227, 0.34);
  box-shadow: 28px 34px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}

.request-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 3px;
  background: var(--orange);
}

.request-module__head {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-dark);
}

.request-module__head span,
.request-code {
  color: #718f97;
  font: 500 10px/1.3 var(--mono);
  letter-spacing: 0.11em;
}

.request-module__head b {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.request-module__head p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--blue);
  font: 500 10px/1 var(--mono);
}

.request-module__screen {
  padding: 34px 30px 28px;
}

.request-code {
  margin: 0 0 16px;
  color: var(--orange);
}

.request-module h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(25px, 2.15vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.request-module__screen > p:not(.request-code):not(.file-feedback) {
  margin: 16px 0 0;
  color: #9cb6bd;
  font-size: 13px;
  line-height: 1.55;
}

.upload-zone {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border: 1px dashed rgba(105, 199, 227, 0.55);
  background: rgba(105, 199, 227, 0.04);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.upload-zone:hover {
  background: rgba(105, 199, 227, 0.09);
  border-color: var(--blue);
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.upload-zone__mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--orange);
  color: var(--night);
  font: 400 30px/1 var(--mono);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.upload-zone b,
.upload-zone small {
  display: block;
}

.upload-zone b {
  font-size: 14px;
}

.upload-zone small {
  margin-top: 6px;
  color: #78969e;
  font-size: 11px;
}

.file-feedback {
  margin: 11px 0 0;
  color: #78969e;
  font: 400 10px/1.4 var(--mono);
}

.request-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.request-steps li {
  min-height: 83px;
  padding: 18px 15px;
  border-right: 1px solid var(--line-dark);
  color: #9bb4bb;
  font-size: 10px;
  line-height: 1.35;
}

.request-steps li:last-child {
  border-right: 0;
}

.request-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font: 500 10px/1 var(--mono);
}

.hero__foot {
  position: relative;
  z-index: 2;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: #77949b;
  font: 500 10px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__foot a {
  color: var(--white);
}

.hero__foot a span {
  margin-left: 20px;
  color: var(--orange);
}

.section {
  padding-block: clamp(88px, 9vw, 150px);
}

.catalog-section {
  background:
    linear-gradient(rgba(8, 37, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 37, 45, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.eyebrow--dark {
  color: #5d6f75;
}

.eyebrow--dark span {
  color: #b64600;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 334px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.category-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: var(--orange);
  box-shadow: 0 22px 50px rgba(3, 26, 34, 0.12);
}

.category-card--wide {
  grid-column: span 2;
}

.category-card--dark {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
}

.category-card--orange {
  background: var(--orange);
  color: var(--night);
  border-color: var(--orange);
}

.category-card--line {
  min-height: 260px;
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(105, 199, 227, 0.16) 68% 68.3%, transparent 68.3%),
    var(--white);
}

.category-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #72878c;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
}

.category-card__top b {
  color: inherit;
  font-weight: 500;
}

.category-card--dark .category-card__top {
  color: #7fa3ac;
}

.category-card--orange .category-card__top {
  color: rgba(3, 26, 34, 0.66);
}

.category-card__body {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.category-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.category-card p {
  max-width: 510px;
  min-height: 45px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.category-card--dark p {
  color: #a9c1c7;
}

.category-card--orange p {
  color: #031a22;
}

.link-arrow {
  font: 600 11px/1.2 var(--mono);
  letter-spacing: 0.02em;
}

.category-card__visual {
  position: absolute;
  top: 64px;
  right: 28px;
  width: 44%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card__visual::before {
  content: "";
  position: absolute;
  right: 4%;
  left: 4%;
  height: 1px;
  background: var(--line);
}

.category-card__visual i {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border: 3px solid var(--petrol);
  transform: rotate(45deg);
}

.category-card__visual i:nth-child(2) {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-color: var(--orange);
}

.category-card__visual i:nth-child(3) {
  border-color: var(--blue);
}

.spec-section {
  padding-top: 0;
  background: var(--paper);
}

.spec-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  gap: clamp(56px, 8vw, 130px);
  padding: clamp(52px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(122deg, transparent 67%, rgba(105, 199, 227, 0.08) 67.2%, transparent 67.5%),
    var(--petrol);
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
}

.spec-panel__copy h2,
.process-intro h2,
.about-copy h2,
.brands-header h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 68px);
  line-height: 1.01;
  letter-spacing: -0.048em;
  font-weight: 600;
}

.spec-panel__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: #afc6cc;
  font-size: 16px;
  line-height: 1.65;
}

.spec-panel__copy ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.spec-panel__copy li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #d5e2e5;
  font-size: 13px;
}

.spec-panel__copy li span {
  color: var(--orange);
  font: 500 10px/1 var(--mono);
}

.request-form {
  display: grid;
  align-content: center;
  gap: 18px;
}

.request-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.request-form label:not(.request-form__file):not(.request-form__consent) > span {
  display: block;
  margin-bottom: 8px;
  color: #89a7ae;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-form input:not([type="file"]):not([type="checkbox"]) {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(2, 21, 27, 0.34);
  border: 1px solid rgba(143, 187, 197, 0.28);
  outline: none;
}

.request-form input::placeholder {
  color: #6f8c93;
}

.request-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(105, 199, 227, 0.1);
}

.request-form__file {
  min-height: 84px;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  column-gap: 14px;
  padding: 15px;
  border: 1px dashed rgba(105, 199, 227, 0.48);
  cursor: pointer;
}

.request-form__file input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.request-form__file > span {
  grid-row: 1 / 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  align-self: center;
  background: var(--orange);
  color: var(--night);
  font: 400 26px/1 var(--mono);
}

.request-form__file b {
  align-self: end;
  font-size: 13px;
}

.request-form__file small {
  align-self: start;
  overflow: hidden;
  color: #78969e;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #829fa7;
  font-size: 10px;
  line-height: 1.45;
}

.request-form__consent input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

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

.form-result {
  min-height: 16px;
  color: var(--blue);
  font: 400 10px/1.45 var(--mono);
}

.solutions-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(105, 199, 227, 0.025) 1px, transparent 1px),
    var(--night);
  background-size: 11.111% 100%;
}

.section-heading--inverse > p {
  color: #8ba5ac;
}

.solution-list {
  border-top: 1px solid var(--line-dark);
}

.solution-row {
  min-height: 116px;
  display: grid;
  grid-template-columns: 66px minmax(260px, 1fr) minmax(250px, 0.78fr) 40px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 200ms ease, background-color 200ms ease, color 200ms ease;
}

.solution-row:hover {
  padding-inline: 22px;
  background: var(--petrol);
}

.solution-row__number {
  color: var(--orange);
  font: 500 11px/1 var(--mono);
}

.solution-row h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.solution-row p {
  margin: 0;
  color: #809ba2;
  font-size: 13px;
  line-height: 1.5;
}

.solution-row__arrow {
  color: var(--blue);
  font: 400 24px/1 var(--mono);
}

.solution-row--accent {
  background: var(--orange);
  color: var(--night);
  border-bottom-color: var(--orange);
}

.solution-row--accent:hover {
  background: #ff893f;
}

.solution-row--accent .solution-row__number,
.solution-row--accent .solution-row__arrow,
.solution-row--accent p {
  color: rgba(3, 26, 34, 0.68);
}

.brands-section {
  background: var(--white);
}

.brands-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.brands-header h2 {
  max-width: 900px;
}

.brands-header > a {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font: 600 11px/1 var(--mono);
}

.brands-header > a span {
  margin-left: 20px;
  color: var(--orange-text);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-grid a {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, color 180ms ease;
}

.brand-grid a:hover {
  color: var(--white);
  background: var(--petrol);
}

.brand-grid b {
  font: 600 clamp(21px, 2vw, 30px)/1 var(--mono);
  letter-spacing: -0.045em;
}

.brand-grid span {
  color: var(--muted);
  font: 500 10px/1 var(--mono);
  text-transform: uppercase;
}

.brand-grid a:hover span {
  color: var(--blue);
}

.brand-grid__all {
  color: var(--white);
  background: var(--orange);
}

.brand-grid__all span {
  color: #031a22;
}

.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 19% 23%, rgba(10, 69, 84, 0.9), transparent 31%),
    var(--night);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(460px, 1fr);
  gap: clamp(70px, 10vw, 170px);
}

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

.process-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 36px;
  color: #91aab1;
  font-size: 15px;
  line-height: 1.7;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.process-steps li {
  min-height: 154px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line-dark);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.process-steps > li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(105, 199, 227, 0.11);
  color: var(--orange);
  font: 500 10px/1 var(--mono);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.process-steps h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 500;
}

.process-steps p {
  max-width: 590px;
  margin: 12px 0 0;
  color: #849fa6;
  font-size: 13px;
  line-height: 1.65;
}

.about-section {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(540px, 1fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
}

.about-mark {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 37, 45, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 37, 45, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 40px 40px;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.about-mark::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255, 116, 23, 0.24);
  transform: rotate(45deg);
}

.about-mark img {
  position: relative;
  z-index: 1;
  width: 72%;
}

.about-mark span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: #759097;
  font: 500 10px/1.4 var(--mono);
  letter-spacing: 0.12em;
}

.about-copy__lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-principles > div {
  min-height: 222px;
  padding: 22px;
  background: var(--paper);
}

.about-principles span {
  color: var(--orange-text);
  font: 500 10px/1 var(--mono);
}

.about-principles h3 {
  margin: 54px 0 10px;
  font-size: 19px;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.final-cta {
  padding-block: clamp(90px, 10vw, 160px);
  color: var(--white);
  background:
    linear-gradient(118deg, transparent 0 67%, rgba(105, 199, 227, 0.11) 67.1% 67.3%, transparent 67.4%),
    var(--petrol);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "eyebrow actions" "title actions";
  align-items: end;
  gap: 22px 70px;
}

.final-cta .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
}

.final-cta h2 {
  grid-area: title;
}

.final-cta__actions {
  grid-area: actions;
  min-width: 340px;
  display: grid;
  gap: 24px;
}

.final-cta__mail small,
.final-cta__mail b {
  display: block;
}

.final-cta__mail small {
  margin-bottom: 7px;
  color: #88a5ac;
  font: 500 10px/1 var(--mono);
  text-transform: uppercase;
}

.final-cta__mail b {
  font-size: 21px;
}

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

.site-footer__top {
  min-height: 150px;
  display: grid;
  grid-template-columns: 260px minmax(300px, 560px) auto;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: block;
  width: 230px;
}

.footer-brand img {
  display: block;
  width: 100%;
}

.site-footer__top p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__top > a:last-child {
  justify-self: end;
  font: 600 15px/1 var(--mono);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-block: 58px;
}

.site-footer__links > div {
  display: grid;
  gap: 11px;
}

.site-footer__links b {
  margin-bottom: 10px;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links a {
  width: fit-content;
  color: var(--muted);
  font-size: 12px;
}

.site-footer__links a:hover {
  color: var(--orange-text);
}

.site-footer__bottom {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #789096;
  font: 500 9px/1.4 var(--mono);
  text-transform: uppercase;
}

.site-footer__bottom > div {
  display: flex;
  gap: 28px;
}

.site-footer__bottom > span:last-child {
  justify-self: end;
}

@media (max-width: 1260px) {
  .desktop-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .spec-link span {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    gap: 48px;
  }

  .about-layout {
    grid-template-columns: minmax(280px, 0.55fr) minmax(500px, 1fr);
    gap: 70px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles > div {
    min-height: 150px;
  }

  .about-principles h3 {
    margin-top: 30px;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 820px);
  }

  .desktop-nav,
  .header-actions .button--compact,
  .spec-link {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    align-content: center;
    gap: 6px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    background: currentColor;
  }

  .mobile-menu {
    position: absolute;
    right: 0;
    left: 0;
    padding: 18px 20px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(3, 26, 34, 0.16);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 70px;
  }

  .hero__copy,
  .request-module {
    width: 100%;
    min-width: 0;
    max-width: 650px;
  }

  .hero-grid {
    left: 20%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .category-card--wide {
    grid-column: span 2;
  }

  .spec-panel {
    grid-template-columns: 1fr;
  }

  .request-form {
    max-width: 680px;
  }

  .solution-row {
    grid-template-columns: 54px minmax(0, 1fr) 36px;
  }

  .solution-row p {
    display: none;
  }

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

  .process-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .about-mark {
    min-height: 420px;
  }

  .about-mark img {
    width: min(56%, 360px);
  }

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

  .about-principles > div {
    min-height: 210px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "actions";
  }

  .final-cta__actions {
    max-width: 520px;
    margin-top: 24px;
  }

  .site-footer__top {
    grid-template-columns: 230px 1fr;
    padding-block: 34px;
  }

  .site-footer__top > a:last-child {
    grid-column: 2;
    justify-self: start;
  }

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

  .site-footer__bottom > span:last-child {
    display: none;
  }
}

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

  .utility-bar__inner p {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    width: 176px;
  }

  .search-panel__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__inner {
    min-height: auto;
    padding-block: 58px 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
    overflow-wrap: anywhere;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions > *,
  .request-module,
  .request-module__head,
  .request-module__screen,
  .request-steps,
  .upload-zone {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .hero__facts > div,
  .hero__facts > div + div {
    min-height: 65px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .request-module__screen {
    padding: 28px 20px 24px;
  }

  .request-steps {
    grid-template-columns: 1fr;
  }

  .request-steps li {
    min-height: auto;
    display: grid;
    grid-template-columns: 32px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero__foot p {
    display: none;
  }

  .hero__foot {
    justify-content: flex-end;
  }

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

  .category-card,
  .category-card--wide {
    min-height: 300px;
    grid-column: span 1;
  }

  .category-card__visual {
    opacity: 0.55;
  }

  .spec-panel {
    width: 100%;
    padding: 44px 20px;
    clip-path: none;
  }

  .request-form__row {
    grid-template-columns: 1fr;
  }

  .solution-row {
    min-height: 124px;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 14px;
  }

  .solution-row:hover {
    padding-inline: 8px;
  }

  .solution-row h3 {
    font-size: 21px;
  }

  .brands-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-grid a {
    min-height: 132px;
    padding: 18px;
  }

  .process-layout {
    gap: 54px;
  }

  .process-steps li {
    min-height: 132px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .about-mark {
    min-height: 300px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles > div {
    min-height: 166px;
  }

  .about-principles h3 {
    margin-top: 36px;
  }

  .final-cta__actions {
    min-width: 0;
  }

  .final-cta__mail b {
    font-size: 17px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer__top > a:last-child {
    grid-column: 1;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    padding-block: 20px;
  }

  .site-footer__bottom > div {
    display: grid;
    gap: 8px;
  }

  .site-footer__bottom a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding-block: 6px;
  }
}

/* Explicit states keep text readable regardless of browser link history. */
.button--orange,
.button--orange:link,
.button--orange:visited {
  color: #031a22;
}

.category-card__top {
  color: #5d6f75;
}

.category-card--dark,
.category-card--dark:link,
.category-card--dark:visited,
.category-card--dark h3,
.category-card--dark .link-arrow {
  color: #fcfefd;
}

.category-card--dark .category-card__top {
  color: #b9d4d9;
}

.category-card--orange .category-card__top {
  color: #031a22;
}

.solution-row--accent,
.solution-row--accent:link,
.solution-row--accent:visited,
.solution-row--accent h3,
.solution-row--accent .solution-row__number,
.solution-row--accent .solution-row__arrow,
.solution-row--accent p,
.brand-grid__all,
.brand-grid__all:link,
.brand-grid__all:visited,
.brand-grid__all span {
  color: #031a22;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
