:root {
  --ink: #07111f;
  --muted: #5f6f82;
  --paper: #f3f8fb;
  --surface: #ffffff;
  --surface-soft: #eaf6fb;
  --navy: #0b2d6d;
  --navy-2: #051847;
  --cyan: #05c6eb;
  --cyan-dark: #087f98;
  --accent: #05c6eb;
  --accent-dark: #087f98;
  --amber: var(--accent);
  --red: var(--accent-dark);
  --green: var(--accent-dark);
  --line: #d7e7ef;
  --line-dark: rgba(5, 198, 235, 0.22);
  --shadow: 0 18px 44px rgba(5, 24, 71, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: 58px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 21px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 14px 46px;
  border-bottom: 1px solid rgba(215, 231, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(5, 24, 71, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 170px;
  height: 50px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-line {
  max-width: 176px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.site-nav a,
.header-cta,
.button {
  min-height: 42px;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  color: #526579;
}

.site-nav a:hover,
.site-nav a.active {
  background: #e6f8fc;
  color: var(--navy);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
}

.header-cta {
  background: var(--navy);
  color: var(--surface);
}

.header-cta:hover {
  background: var(--navy-2);
}

.button.primary {
  background: var(--amber);
  color: var(--navy-2);
}

.button.primary:hover {
  background: #5fe4f6;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 24, 71, 0.96), rgba(11, 45, 109, 0.8) 47%, rgba(5, 24, 71, 0.24)),
    url("assets/altronix-traffic-operations.png");
  background-position: center;
  background-size: cover;
  color: var(--surface);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(5, 198, 235, 0.18) 42%, transparent 49% 100%),
    linear-gradient(25deg, transparent 0 58%, rgba(5, 198, 235, 0.12) 70%, transparent 84%);
  content: "";
  opacity: 0.88;
  transform: translateX(-18%);
  animation: heroSweep 12s ease-in-out infinite alternate;
}

.hero > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 74px 56px;
}

.hero-content,
.page-hero-content {
  width: 100%;
  min-width: 0;
}

.hero-content {
  max-width: 980px;
}

.page-hero-content {
  max-width: 1040px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow {
  color: var(--amber);
}

.hero-lede,
.page-hero p {
  max-width: 760px;
  color: #d9e7ec;
  font-size: 21px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 38px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, 100%);
  margin-bottom: 0;
}

.hero-metrics div {
  min-height: 118px;
  padding: 16px 14px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.34);
}

.hero-metrics dt {
  color: var(--amber);
  font-size: 29px;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: #d9e7ec;
  font-size: 14px;
  font-weight: 750;
}

.page-hero {
  display: flex;
  align-items: end;
  min-height: 430px;
  padding: 76px 56px;
}

.page-hero h1 {
  max-width: 1000px;
  font-size: 48px;
}

.section {
  padding: 84px 56px;
}

.section-light,
.section-intro {
  background: var(--paper);
}

.section-dark {
  background:
    linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--surface);
}

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

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.46fr) minmax(0, 1.1fr) minmax(260px, 0.64fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 30px;
}

.section-heading.compact,
.section-heading.narrow {
  display: block;
  max-width: 820px;
}

.section-heading h2,
.intro-grid h2,
.delivery-grid h2,
.proof-grid h2,
.values-grid h2,
.cta-band h2 {
  margin-bottom: 0;
  font-size: 36px;
}

.section-heading p:last-child,
.intro-grid > p,
.rich-text p,
.domain-card p,
.solution-panel p,
.product-panel p,
.partner-grid p,
.proof-list p,
.values-grid p,
.contact-details p,
.site-footer p,
.site-footer address {
  color: var(--muted);
}

.section-dark p,
.section-dark .values-grid p {
  color: #cedce4;
}

.intro-grid,
.delivery-grid,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
}

.intro-grid > p,
.rich-text {
  font-size: 18px;
}

.domain-grid,
.process-grid,
.partner-grid {
  display: grid;
  gap: 18px;
}

.picture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.picture-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.picture-card img,
.image-band img,
.contact-image,
.panel-image {
  width: 100%;
  object-fit: cover;
}

.picture-card img {
  height: 210px;
}

.picture-card figcaption {
  padding: 16px;
  color: var(--muted);
  font-weight: 700;
}

.picture-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-weight: 950;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.image-band img {
  height: 210px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.domain-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.domain-card,
.process-grid article,
.partner-grid article,
.contact-details article,
.contact-form-panel,
.solution-panel,
.product-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.domain-card {
  display: grid;
  gap: 13px;
  min-height: 305px;
  padding: 24px;
}

.domain-card span,
.process-grid span,
.product-label,
.partner-grid span,
.values-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.domain-card h3,
.process-grid h3,
.partner-grid span,
.proof-list h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.domain-card a {
  align-self: end;
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.delivery-grid {
  align-items: center;
}

.pipeline {
  display: grid;
  gap: 12px;
}

.pipeline article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 19px 0;
  border-top: 1px solid var(--line-dark);
}

.pipeline article:first-child {
  border-top: 0;
  padding-top: 0;
}

.pipeline span {
  color: var(--amber);
  font-weight: 950;
  text-transform: uppercase;
}

.pipeline p {
  margin-bottom: 0;
}

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

.product-strip a {
  display: flex;
  min-height: 118px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 950;
  line-height: 1.25;
  text-decoration: none;
}

.product-strip a:hover,
.domain-card:hover {
  transform: translateY(-2px);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.proof-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.solution-stack,
.product-stack {
  display: grid;
  gap: 18px;
}

.solution-panel,
.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  scroll-margin-top: 100px;
}

.solution-panel h2,
.product-panel h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.panel-image {
  height: 230px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 24, 71, 0.13);
}

.panel-image.product-visual {
  object-fit: contain;
  background: var(--surface-soft);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #53616d;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--amber);
  content: "";
}

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

.process-grid article {
  min-height: 250px;
  padding: 24px;
}

.process-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--amber);
}

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

.values-grid article {
  padding-top: 22px;
  border-top: 2px solid rgba(5, 198, 235, 0.82);
}

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

.partner-grid article {
  min-height: 220px;
  padding: 24px;
}

.partner-grid span {
  display: block;
  color: var(--navy);
  font-size: 18px;
  text-transform: none;
}

.partner-motion-section {
  overflow: hidden;
  background: var(--surface);
}

.partner-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f5fbfe;
}

.partner-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px 14px;
  animation: partnerScroll 28s linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
  animation-play-state: paused;
}

.partner-marquee span,
.partner-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(5, 24, 71, 0.07);
  font-weight: 950;
}

.partner-marquee span {
  min-width: 172px;
  min-height: 64px;
  padding: 12px 18px;
  font-size: 20px;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-logo-card {
  min-height: 178px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.partner-logo-img {
  width: min(210px, 100%);
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(5, 24, 71, 0.08));
}

.partner-logo-card span {
  font-size: 23px;
  line-height: 1.1;
}

.partner-logo-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 198, 235, 0.5);
  box-shadow: 0 18px 42px rgba(5, 24, 71, 0.12);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.34fr);
  gap: 22px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details article {
  padding: 22px;
}

.contact-image {
  height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-details span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-details a,
.site-footer a {
  color: inherit;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-form-panel {
  padding: 28px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.header-cta:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(5, 198, 235, 0.32);
  outline-offset: 2px;
}

.full-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.form-status.error {
  color: var(--red);
}

.form-status.success {
  color: var(--green);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--surface);
}

.cta-band h2 {
  max-width: 850px;
}

.site-footer {
  background: #f5fbfe;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(260px, 0.8fr);
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
}

.footer-brand .brand-line,
.site-footer p,
.site-footer address {
  color: var(--muted);
}

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

.footer-links a {
  text-decoration: none;
}

.site-footer address {
  font-style: normal;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: #65727b;
  font-size: 14px;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  background: var(--navy-2);
  color: var(--surface);
}

.error-page section {
  width: min(620px, 100%);
}

.error-page .brand-logo {
  margin-bottom: 28px;
}

.error-page p:not(.eyebrow) {
  color: #cedce4;
}

.domain-card,
.picture-card,
.solution-panel,
.product-panel,
.partner-grid article,
.proof-list article,
.process-grid article,
.contact-details article {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.domain-card:hover,
.picture-card:hover,
.solution-panel:hover,
.product-panel:hover,
.partner-grid article:hover,
.process-grid article:hover,
.contact-details article:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 198, 235, 0.42);
  box-shadow: 0 22px 54px rgba(5, 24, 71, 0.14);
}

.picture-card img,
.image-band img,
.panel-image,
.contact-image {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.picture-card:hover img,
.image-band img:hover,
.product-panel:hover .panel-image,
.contact-image:hover {
  transform: scale(1.035);
  filter: saturate(1.07) contrast(1.03);
}

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

.summary-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  isolation: isolate;
}

.summary-card::before {
  position: absolute;
  z-index: -1;
  inset: -2px;
  content: "";
  opacity: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(5, 198, 235, 0.18), transparent 72%);
  transform: translateX(-75%);
  transition: opacity 0.35s ease;
}

.summary-card:hover {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-8px);
}

.summary-card:hover::before {
  opacity: 1;
  animation: cardShimmer 1.1s ease;
}

.summary-card > div {
  width: 100%;
}

.summary-card .panel-image {
  width: 100%;
  height: 220px;
  margin-bottom: 22px;
  object-fit: cover;
}

.summary-card .product-visual,
.summary-card .solution-visual {
  object-fit: contain;
  background: linear-gradient(145deg, #f5fbff, #e8f3f8);
}

.detail-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.detail-link {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(5, 24, 71, 0.12);
}

.detail-link span {
  font-size: 1.35rem;
  transition: transform 0.3s ease;
}

.detail-link:hover span {
  transform: translateX(7px);
}

.detail-nav {
  position: sticky;
  z-index: 20;
  top: 76px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(5, 24, 71, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.detail-panel {
  scroll-margin-top: 150px;
}

.detail-panel .solution-visual {
  height: 260px;
  margin-bottom: 22px;
  object-fit: contain;
  background: linear-gradient(145deg, #f5fbff, #e8f3f8);
}

.panel-image[src*="assets/professional/"] {
  height: 300px;
  object-fit: cover;
  background: none;
  filter: saturate(0.98) contrast(1.03);
}

.summary-card .panel-image[src*="assets/professional/"] {
  height: 230px;
}

.detail-panel:hover .panel-image[src*="assets/professional/"] {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.04);
}

.motion-card {
  will-change: transform;
}

.individual-hero .page-hero-content {
  max-width: 920px;
}

.individual-detail .product-stack {
  max-width: 1120px;
}

.individual-detail .detail-panel {
  box-shadow: 0 26px 70px rgba(5, 24, 71, 0.14);
}

.detail-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-index-grid a {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(5, 24, 71, 0.1);
  border-radius: 14px;
  background: var(--surface);
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.detail-index-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 198, 235, 0.5);
  box-shadow: 0 20px 44px rgba(5, 24, 71, 0.12);
}

.detail-index-grid strong {
  color: var(--blue);
  font-size: 1rem;
}

.detail-index-grid span {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.page-hero-content {
  animation: heroContentIn 0.9s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.product-strip a,
.domain-card a {
  position: relative;
  overflow: hidden;
}

.product-strip a::after,
.domain-card a::after {
  position: absolute;
  right: 14px;
  bottom: 8px;
  left: 14px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.product-strip a:hover::after,
.domain-card a:hover::after {
  transform: scaleX(1);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

@keyframes heroSweep {
  from {
    transform: translateX(-18%);
  }

  to {
    transform: translateX(16%);
  }
}

@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardShimmer {
  from {
    transform: translateX(-75%);
  }

  to {
    transform: translateX(75%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 24px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 78px 18px auto 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .section-heading,
  .intro-grid,
  .delivery-grid,
  .proof-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .domain-grid,
  .domain-grid.compact,
  .process-grid,
  .partner-grid,
  .partner-logo-grid,
  .picture-grid,
  .image-band,
  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .summary-card .panel-image {
    height: 210px;
  }

  .detail-nav {
    top: 70px;
  }

  .detail-index-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 136px;
    height: 42px;
  }

  .brand-line {
    display: none;
  }

  .site-nav {
    inset: 70px 12px auto 12px;
  }

  .hero {
    align-items: end;
    min-height: auto;
    padding: 34px 18px 32px;
    background-position: 58% center;
  }

  .hero-content,
  .page-hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: 34px;
  }

  h2,
  .section-heading h2,
  .intro-grid h2,
  .delivery-grid h2,
  .proof-grid h2,
  .values-grid h2,
  .cta-band h2 {
    font-size: 29px;
  }

  .page-hero {
    min-height: 390px;
    padding: 50px 18px;
    background-position: 58% center;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .hero-lede,
  .page-hero p,
  .intro-grid > p,
  .rich-text {
    font-size: 17px;
  }

  .hero-actions,
  .form-actions,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    margin: 24px 0 26px;
  }

  .hero-metrics,
  .domain-grid,
  .domain-grid.compact,
  .process-grid,
  .values-grid,
  .partner-grid,
  .partner-logo-grid,
  .picture-grid,
  .image-band,
  .product-strip,
  .solution-panel,
  .product-panel,
  .contact-form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-metrics div {
    min-height: auto;
    padding-top: 9px;
  }

  .hero-metrics dt {
    font-size: 23px;
  }

  .hero-metrics dd {
    font-size: 12px;
    line-height: 1.35;
  }

  .section {
    padding: 58px 18px;
  }

  .domain-card,
  .process-grid article,
  .partner-grid article,
  .product-strip a {
    min-height: auto;
  }

  .picture-card img,
  .image-band img,
  .panel-image,
  .contact-image {
    height: 220px;
  }

  .solution-panel,
  .product-panel,
  .contact-form-panel,
  .cta-band {
    padding: 22px;
  }

  .pipeline article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 31px;
  }

  .page-hero h1,
  h2,
  .section-heading h2,
  .intro-grid h2,
  .delivery-grid h2,
  .proof-grid h2,
  .values-grid h2,
  .cta-band h2 {
    font-size: 26px;
  }

  .brand-logo {
    width: 124px;
  }
}
