:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-2: #090b0e;
  --panel: rgba(12, 15, 19, 0.88);
  --panel-strong: rgba(7, 9, 12, 0.96);
  --ink: #f4f0e8;
  --muted: rgba(244, 240, 232, 0.72);
  --soft: rgba(244, 240, 232, 0.54);
  --faint: rgba(244, 240, 232, 0.38);
  --line: rgba(244, 240, 232, 0.14);
  --line-strong: rgba(244, 240, 232, 0.26);
  --blue: #2d86ff;
  --blue-strong: #69adff;
  --warm: #d8a14d;
  --good: #86c998;
  --danger: #d97868;
  --radius: 8px;
  --radius-small: 5px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --display:
    "Bodoni 72",
    "Iowan Old Style",
    "Palatino Linotype",
    Georgia,
    serif;
  --body:
    "Avenir Next",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-sharp: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  min-width: 320px;
  scroll-padding-top: 88px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(244, 240, 232, 0.035) 1px, transparent 1px) 0 0 / 100% 68px,
    linear-gradient(90deg, rgba(244, 240, 232, 0.03) 1px, transparent 1px) 0 0 / 112px 100%,
    linear-gradient(180deg, #050607 0%, #080b0e 44%, #050607 100%);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(45, 134, 255, 0.08) 18.08%, transparent 18.38%),
    linear-gradient(70deg, transparent 0 62%, rgba(216, 161, 77, 0.06) 62.08%, transparent 62.42%);
  opacity: 0.72;
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 18%, rgba(244, 240, 232, 0.055) 0 1px, transparent 1.4px),
    radial-gradient(circle at 70% 38%, rgba(105, 173, 255, 0.16) 0 1px, transparent 1.4px),
    radial-gradient(circle at 18% 62%, rgba(216, 161, 77, 0.12) 0 1px, transparent 1.4px);
  background-size:
    220px 180px,
    260px 210px,
    300px 240px;
  opacity: 0.26;
  content: "";
}

body.is-menu-open {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

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

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

button {
  color: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(45, 134, 255, 0.35);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(105, 173, 255, 0.72);
  outline-offset: 3px;
}

.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: 12px;
  left: 12px;
  z-index: 80;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: var(--panel-strong);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 220ms var(--ease);
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1540px, calc(100% - 32px));
  min-height: 104px;
  margin: 12px auto 0;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 7, 0.82);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 88px;
  min-width: 0;
  font-weight: 760;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(105, 173, 255, 0.52);
  border-radius: var(--radius-small);
  background:
    linear-gradient(135deg, rgba(45, 134, 255, 0.24), rgba(216, 161, 77, 0.08)),
    rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.brand__logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(96px, 7.6vw, 118px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 18px rgba(63, 172, 255, 0.2));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius-small);
  color: var(--muted);
  font-size: 0.94rem;
  transition:
    color 180ms var(--ease-sharp),
    background 180ms var(--ease-sharp);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-selector {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.032);
}

.language-selector button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
}

.language-selector button[aria-pressed="true"] {
  background: rgba(45, 134, 255, 0.22);
  color: var(--ink);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius-small);
  font-weight: 720;
  line-height: 1;
}

.button {
  padding: 0 18px;
  border: 1px solid rgba(105, 173, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(45, 134, 255, 0.96), rgba(29, 94, 207, 0.92)),
    var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(45, 134, 255, 0.24);
  transition:
    transform 180ms var(--ease-sharp),
    border-color 180ms var(--ease-sharp),
    filter 180ms var(--ease-sharp);
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(145, 197, 255, 0.88);
  filter: brightness(1.06);
}

.button svg,
.text-link svg,
.service-band svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button--quiet {
  min-height: 46px;
  padding-inline: 16px;
  border-color: rgba(244, 240, 232, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.button--quiet:hover {
  border-color: rgba(105, 173, 255, 0.62);
}

.text-link {
  padding: 0;
  color: var(--blue-strong);
}

.text-link:hover {
  color: #9ccaff;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.035);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
  transition:
    transform 220ms var(--ease),
    opacity 220ms var(--ease);
}

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

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

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  align-items: start;
  overflow-y: auto;
  padding: 84px 16px max(16px, env(safe-area-inset-bottom));
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(18px);
  overscroll-behavior: contain;
}

.mobile-menu__nav {
  display: grid;
  gap: 4px;
  width: min(440px, 100%);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  color: var(--muted);
  font-weight: 650;
}

.mobile-menu__nav a:hover {
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
}

.mobile-menu__nav .button {
  margin-top: 8px;
  color: #ffffff;
}

.mobile-menu__language {
  width: 100%;
  margin-top: 8px;
}

.mobile-menu__language button {
  min-height: 44px;
}

main {
  position: relative;
  z-index: 1;
}

.hero,
.section-block,
.contact-section,
.site-footer {
  width: min(1540px, calc(100% - 32px));
  margin-inline: auto;
}

.section-block,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  grid-template-rows: minmax(560px, auto) auto;
  gap: 24px;
  min-height: calc(100svh - 90px);
  padding: 54px 0 0;
  scroll-margin-top: 0;
}

.hero__copy {
  align-self: center;
  min-width: 0;
  padding: 18px 0 34px;
}

.hero__kicker {
  margin: 0 0 18px;
  color: var(--blue-strong);
  font-size: 0.94rem;
  font-weight: 780;
  line-height: 1.35;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: 5.4rem;
  font-weight: 680;
  line-height: 0.97;
}

.hero h1 span {
  display: block;
}

.hero__lead {
  max-width: 59ch;
  margin: 26px 0 0;
  color: rgba(244, 240, 232, 0.86);
  font-size: 1.28rem;
  line-height: 1.38;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.hero__next {
  max-width: 56ch;
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px 16px;
  border-left: 1px solid rgba(244, 240, 232, 0.08);
}

.hero-facts div:first-child {
  border-left: 0;
}

.hero-facts dt {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.hero-facts dd {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07090b;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0.2) 38%, transparent 64%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.54), transparent 34%);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.visual-readout {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 188px;
  padding: 12px 14px;
  border-left: 2px solid var(--blue-strong);
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.12));
  color: var(--ink);
}

.visual-readout strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.visual-readout span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.visual-readout--one {
  top: 15%;
  right: 8%;
}

.visual-readout--two {
  right: 12%;
  bottom: 18%;
  border-left-color: var(--warm);
}

.visual-readout--three {
  left: 8%;
  bottom: 28%;
}

.hero-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-preview a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  transition:
    background 180ms var(--ease-sharp),
    color 180ms var(--ease-sharp);
}

.hero-preview a:first-child {
  border-left: 0;
}

.hero-preview a:hover {
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.hero-preview span {
  color: var(--blue-strong);
  font-family: var(--display);
  font-size: 1.4rem;
}

.hero-preview strong {
  font-size: 1.08rem;
}

.section-block {
  padding: 108px 0 0;
  scroll-margin-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 0.88fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.section-heading p,
.standards-copy p,
.contact-copy > p:first-child {
  margin: 0;
  color: var(--blue-strong);
  font-weight: 780;
}

.section-heading h2,
.standards-copy h2,
.contact-copy h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 620;
  line-height: 1.05;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.58fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.service-list {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  margin: 0;
}

.service-band {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 118px;
  padding: 22px 20px 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  transition:
    background 180ms var(--ease-sharp),
    color 180ms var(--ease-sharp);
}

.service-list li:last-child .service-band {
  border-bottom: 0;
}

.service-band:hover,
.service-band.is-active {
  background: linear-gradient(90deg, rgba(45, 134, 255, 0.11), rgba(255, 255, 255, 0));
}

.service-band__index {
  color: var(--soft);
  font-family: var(--display);
  font-size: 1.55rem;
  text-align: center;
}

.service-band strong {
  display: block;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-band small {
  display: block;
  max-width: 74ch;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-band svg {
  color: var(--blue-strong);
  opacity: 0.74;
  transition: transform 180ms var(--ease-sharp);
}

.service-band:hover svg,
.service-band.is-active svg {
  transform: translateX(3px);
  opacity: 1;
}

.service-detail {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 18px;
  min-width: 0;
  min-height: 590px;
  padding: 30px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.018);
}

.service-detail > p:first-child {
  margin: 0;
  color: var(--warm);
  font-weight: 780;
}

.service-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.85rem;
  font-weight: 620;
  line-height: 1;
}

.service-detail > p:not(:first-child) {
  margin: 0;
  color: rgba(244, 240, 232, 0.84);
  font-size: 1.08rem;
  line-height: 1.55;
}

.service-detail dl {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-detail div {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 240, 232, 0.08);
}

.service-detail div:first-child {
  border-top: 0;
}

.service-detail dt {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 760;
}

.service-detail dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.process-rail li {
  min-height: 252px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.process-rail li:first-child {
  border-left: 0;
}

.process-rail span {
  display: block;
  color: var(--blue-strong);
  font-family: var(--display);
  font-size: 1.6rem;
}

.process-rail h3 {
  display: block;
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-family: var(--body);
  font-weight: 760;
  line-height: 1.2;
}

.process-rail p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.work-item {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 360px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.work-item:first-child {
  border-left: 0;
}

.work-item h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.18;
}

.work-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.work-plate {
  position: relative;
  height: 142px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background:
    linear-gradient(90deg, rgba(244, 240, 232, 0.04) 1px, transparent 1px) 0 0 / 34px 100%,
    linear-gradient(rgba(244, 240, 232, 0.035) 1px, transparent 1px) 0 0 / 100% 28px,
    rgba(255, 255, 255, 0.018);
}

.work-plate span {
  position: absolute;
  display: block;
  border: 1px solid rgba(105, 173, 255, 0.52);
  background: rgba(45, 134, 255, 0.12);
}

.work-plate span:nth-child(1) {
  top: 22px;
  left: 22px;
  width: 36%;
  height: 32px;
}

.work-plate span:nth-child(2) {
  top: 66px;
  right: 24px;
  width: 43%;
  height: 40px;
  border-color: rgba(216, 161, 77, 0.5);
  background: rgba(216, 161, 77, 0.1);
}

.work-plate span:nth-child(3) {
  right: 27%;
  bottom: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-strong);
  box-shadow: 0 0 22px rgba(45, 134, 255, 0.7);
}

.work-plate--flow::before,
.work-plate--docs::before,
.work-plate--site::before {
  position: absolute;
  inset: 36px 26px auto;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-strong), rgba(216, 161, 77, 0.72));
  content: "";
}

.work-plate--docs span:nth-child(1),
.work-plate--docs span:nth-child(2) {
  width: 62%;
  left: 22px;
  right: auto;
}

.work-plate--site span:nth-child(1) {
  width: 76%;
}

.work-plate--site span:nth-child(2) {
  width: 28%;
}

.standards-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 0.72fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--line);
}

.standards-copy h2 {
  margin-top: 14px;
}

.standards-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.standards-list article {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.standards-list h3 {
  margin: 0;
  font-family: var(--body);
  font-size: 1.13rem;
  font-weight: 760;
  line-height: 1.25;
}

.standards-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 0.78fr);
  gap: 42px;
  padding: 110px 0;
  scroll-margin-top: 0;
}

.contact-copy h2 {
  margin-top: 14px;
}

.contact-copy > p:not(:first-child) {
  max-width: 60ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.contact-channels {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-channels a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  color: var(--blue-strong);
  font-weight: 730;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.25);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form label span {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: var(--radius-small);
  background: rgba(5, 6, 7, 0.64);
  color: var(--ink);
  outline: 0;
  transition:
    border-color 180ms var(--ease-sharp),
    background 180ms var(--ease-sharp);
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
  padding: 13px;
  line-height: 1.42;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(105, 173, 255, 0.55);
  background: rgba(5, 6, 7, 0.82);
}

.contact-form .button {
  width: fit-content;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.94rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 760;
}

.footer-brand__logo {
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 12px rgba(63, 172, 255, 0.14));
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  transition: color 180ms var(--ease-sharp);
}

.footer-nav a:hover {
  color: var(--ink);
}

.motion-in,
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.motion-in.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.hero-visual.motion-in.is-visible {
  transition-delay: 120ms;
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  }

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

  .section-heading h2,
  .standards-copy h2,
  .contact-copy h2 {
    font-size: 3.5rem;
  }

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

  .process-rail li:nth-child(4) {
    border-left: 0;
  }

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

  .work-item:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 1040px) {
  .site-nav,
  .header-cta {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
  }

  .header-actions > .language-selector {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
    min-height: 0;
    padding-top: 44px;
  }

  .hero__copy {
    padding-bottom: 12px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 5rem;
  }

  .hero-visual {
    align-self: stretch;
  }

  .hero-preview {
    margin-top: 12px;
  }

  .section-heading,
  .service-layout,
  .standards-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-detail {
    position: static;
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .standards-section {
    padding-bottom: 92px;
  }

  .contact-section {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section-block,
  .contact-section,
  .site-footer {
    width: min(100% - 24px, 1540px);
  }

  .site-header {
    gap: 12px;
    top: 8px;
    min-height: 102px;
    margin-top: 8px;
  }

  .brand {
    min-height: 86px;
  }

  .brand__logo {
    width: 96px;
  }

  .hero {
    gap: 10px;
    padding-top: 28px;
  }

  .hero__copy {
    padding: 12px 0 6px;
  }

  .hero__kicker {
    margin-bottom: 14px;
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 3.85rem;
    line-height: 0.98;
  }

  .hero h1 span {
    display: block;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .hero__actions {
    align-items: stretch;
    margin-top: 22px;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__next {
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .hero-facts {
    display: none;
  }

  .hero-visual {
    aspect-ratio: 1.92;
  }

  .hero-visual::before {
    background:
      linear-gradient(0deg, rgba(5, 6, 7, 0.68), transparent 48%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.3), transparent 64%);
  }

  .visual-readout {
    display: none;
  }

  .hero-preview {
    grid-template-columns: 1fr;
  }

  .hero-preview a,
  .hero-preview a:first-child {
    min-height: 72px;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  .hero-preview a:first-child {
    border-top: 0;
  }

  .section-block {
    padding-top: 64px;
  }

  .section-heading {
    gap: 18px;
    padding-bottom: 24px;
  }

  .section-heading h2,
  .standards-copy h2,
  .contact-copy h2 {
    font-size: 2.55rem;
    line-height: 1.07;
  }

  .service-band {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 128px;
    padding-right: 0;
  }

  .service-band svg {
    display: none;
  }

  .service-band__index {
    text-align: left;
  }

  .service-detail {
    padding: 22px 0;
    background: transparent;
  }

  .service-detail h3 {
    font-size: 2.25rem;
  }

  .process-rail,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .process-rail li,
  .work-item,
  .work-item:nth-child(3) {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }

  .process-rail li:first-child,
  .work-item:first-child {
    border-top: 0;
  }

  .process-rail h3 {
    margin-top: 16px;
  }

  .work-plate {
    height: 128px;
  }

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

  .contact-section {
    padding: 68px 0 82px;
  }

  .contact-form {
    padding: 16px;
  }

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

  .site-footer {
    display: grid;
    padding-bottom: 28px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.02rem;
  }

  .section-heading h2,
  .standards-copy h2,
  .contact-copy h2 {
    font-size: 2.18rem;
  }

  .visual-readout span {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 8px;
  }

  .brand {
    min-height: 78px;
  }

  .brand__logo {
    width: 86px;
  }

}

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

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

  .motion-in,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
