:root {
  --bg: #0b0d12;
  --bg-soft: #10141c;
  --surface: #151a24;
  --surface-strong: #1a202c;
  --text: #f3f6fb;
  --muted: #9ba6b8;
  --faint: #8a96a9;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #2468e8;
  --accent-hover: #3578ef;
  --accent-soft: rgba(36, 104, 232, 0.15);
  --success: #68c995;
  --danger: #ff8d8d;
  --shadow: rgba(0, 7, 26, 0.34);
  --card-radius: 24px;
  --field-radius: 12px;
  --nav-height: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f6fa;
    --bg-soft: #e9edf5;
    --surface: #ffffff;
    --surface-strong: #edf1f8;
    --text: #10141d;
    --muted: #566277;
    --faint: #566277;
    --line: rgba(16, 20, 29, 0.11);
    --line-strong: rgba(16, 20, 29, 0.2);
    --accent-soft: rgba(36, 104, 232, 0.11);
    --success: #167649;
    --danger: #b82e39;
    --shadow: rgba(20, 40, 82, 0.14);
    color-scheme: light;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

button, input, textarea {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1, h2, h3 {
  text-wrap: balance;
}

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

.section-pad {
  padding-block: clamp(92px, 10vw, 152px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transition: transform .2s var(--ease);
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 9%, rgba(36, 104, 232, .13), transparent 26%),
    radial-gradient(circle at 16% 42%, rgba(36, 104, 232, .06), transparent 24%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  box-shadow: 0 16px 50px var(--shadow);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -.025em;
}

.brand b {
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: .04em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
}

.brand-mark i {
  position: absolute;
  top: 7px;
  width: 7px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.95);
  border-top: 0;
}

.brand-mark i:first-child {
  left: 7px;
  border-right: 0;
  border-radius: 0 0 0 5px;
}

.brand-mark i:last-child {
  right: 7px;
  border-left: 0;
  border-radius: 0 0 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
  transition: color .25s ease;
}

.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.nav-contact {
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s var(--ease);
}

.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 92px;
  padding-bottom: 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -.065em;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 620;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.button:active {
  transform: translateY(1px) scale(.985);
}

.button-primary {
  background: var(--accent);
  color: #f8fbff;
  box-shadow: 0 14px 35px rgba(36,104,232,.24), inset 0 1px 0 rgba(255,255,255,.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 18px 42px rgba(36,104,232,.3), inset 0 1px 0 rgba(255,255,255,.28);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--line-strong);
  background: var(--surface);
}

.hero-visual {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .7s var(--ease);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: #10141c;
  box-shadow: 0 42px 100px rgba(0, 7, 26, .42), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: .04em;
}

.capability-strip {
  margin-top: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-strip span {
  padding: 16px 22px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  letter-spacing: .08em;
}

.capability-strip span + span {
  border-left: 1px solid var(--line);
}

.manifesto {
  background: var(--bg-soft);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(120px, .34fr) minmax(0, 1.66fr);
  gap: 48px;
}

.manifesto-label {
  padding-top: 9px;
  color: var(--faint);
  font-size: 13px;
}

.manifesto h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 64px);
  font-weight: 560;
  line-height: 1.22;
  letter-spacing: -.045em;
}

.product-logo {
  width: 64px;
  height: 64px;
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(15, 72, 184, .24);
}

.product-compact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 5vw, 68px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.product-compact::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(70px);
  transform: translateY(-50%);
  pointer-events: none;
}

.product-compact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr) auto;
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.product-compact-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-compact-brand h2 {
  margin: 0 0 2px;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.product-compact-brand p,
.product-compact-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-compact-copy {
  max-width: 460px;
}

.product-link {
  min-width: 138px;
}

.services {
  background: var(--bg-soft);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(270px, .76fr) minmax(0, 1.24fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 120px;
}

.services-intro h2 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 590;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.services-intro > p:last-child {
  max-width: 500px;
  color: var(--muted);
}

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

.service-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-item > span {
  padding-top: 5px;
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 670;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -.025em;
}

.service-item p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: clamp(60px, 10vw, 150px);
}

.about-copy h2 {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 590;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.about-copy p {
  max-width: 680px;
  color: var(--muted);
}

.company-facts {
  margin: 0;
  align-self: end;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: var(--faint);
  font-size: 12px;
}

.company-facts dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.contact::after {
  content: "";
  position: absolute;
  left: -15vw;
  bottom: -25vw;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: rgba(36,104,232,.1);
  filter: blur(100px);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 590;
  line-height: 1.06;
  letter-spacing: -.055em;
}

.contact-copy p {
  max-width: 480px;
  margin-bottom: 32px;
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-hover);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 620;
}

.contact-form {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  box-shadow: 0 34px 90px var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.field label {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.field label span,
.field-hint {
  color: var(--faint);
  font-size: 11px;
  font-weight: 450;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--field-radius);
  outline: 0;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
  padding: 13px 14px;
  line-height: 1.6;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--faint);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(36,104,232,.18);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 1em;
  color: var(--danger);
  font-size: 11px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
}

.form-footer p {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
}

.submit-button {
  min-width: 132px;
  border: 0;
}

.submit-button i {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
}

.submit-button.is-loading i {
  display: block;
  animation: spin .7s linear infinite;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .75;
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 13px 15px;
  border-radius: var(--field-radius);
  font-size: 13px;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  border: 1px solid color-mix(in srgb, var(--success) 45%, transparent);
  background: color-mix(in srgb, var(--success) 10%, transparent);
  color: var(--success);
}

.form-status.is-error {
  border: 1px solid color-mix(in srgb, var(--danger) 45%, transparent);
  background: color-mix(in srgb, var(--danger) 9%, transparent);
  color: var(--danger);
}

.site-footer {
  padding: 62px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-main > p {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  gap: 28px;
}

.footer-main nav a {
  color: var(--muted);
  font-size: 12px;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--text);
}

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

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

html.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-enter {
  opacity: 0;
  animation: hero-in .9s var(--ease) forwards;
}

.hero-copy .hero-enter:nth-child(1) { animation-delay: .08s; }
.hero-copy .hero-enter:nth-child(2) { animation-delay: .16s; }
.hero-copy .hero-enter:nth-child(3) { animation-delay: .24s; }
.hero-copy .hero-enter:nth-child(4) { animation-delay: .32s; }
.hero-visual.hero-enter { animation-delay: .18s; }
.capability-strip.hero-enter { animation-delay: .42s; }

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
    gap: 44px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, .8fr) minmax(440px, 1.2fr);
    gap: 52px;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main nav {
    grid-column: 1 / 3;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--nav-height) + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--card-radius);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: 0 28px 70px var(--shadow);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    visibility: hidden;
    transition: opacity .25s ease, transform .35s var(--ease), visibility .25s;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .site-nav a,
  .site-nav .nav-contact {
    padding: 13px 14px;
    border: 0;
    border-radius: 10px;
  }

  .site-nav a + a {
    border-top: 1px solid var(--line);
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero-grid,
  .manifesto-grid,
  .services-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-visual {
    width: 100%;
  }

  .manifesto-grid {
    gap: 16px;
  }

  .manifesto-label {
    padding: 0;
  }

  .services-intro {
    position: static;
  }

  .about-grid,
  .contact-grid {
    gap: 64px;
  }

  .company-facts {
    align-self: auto;
  }

  .product-compact-inner {
    grid-template-columns: 1fr auto;
    gap: 24px 38px;
  }

  .product-compact-copy {
    grid-column: 1 / 3;
    grid-row: 2;
  }

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

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

  .section-pad {
    padding-block: 82px;
  }

  .brand b {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.07;
  }

  .hero-lead {
    margin-bottom: 28px;
  }

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

  .button {
    width: 100%;
  }

  .hero-caption {
    display: none;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .capability-strip span {
    padding: 13px 8px;
    font-size: 10px;
  }

  .capability-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .capability-strip span:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .manifesto h2 {
    font-size: 34px;
  }

  .product-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .product-compact-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-compact-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

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

  .submit-button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main nav {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .hero {
    padding-top: 82px;
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 62px);
    margin-bottom: 18px;
  }

  .hero-lead {
    margin-bottom: 24px;
  }

  .capability-strip {
    margin-top: 22px;
  }

  .hero-image-wrap img {
    max-height: 430px;
  }
}

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

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

  .hero-enter,
  html.js-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual {
    transform: none !important;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header.is-scrolled,
  .site-nav {
    background: var(--bg-soft);
  }
}
