:root {
  --brand-navy: #0a2d63;
  --brand-blue: #1b76f2;
  --brand-green: #18a77b;
  --ink: #1f2a37;
  --muted: #667085;
  --soft: #f6f9fc;
  --soft-blue: #e8f1f8;
  --line: #d8e2f0;
  --white: #ffffff;
  --danger: #b42318;
  --content-width: 1200px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 12px 34px rgba(15, 35, 65, 0.08);
  --shadow-raised: 0 18px 46px rgba(15, 35, 65, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-navigation-open="true"] {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--brand-navy);
  line-height: 1.2;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--brand-navy);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid rgba(27, 118, 242, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(216, 226, 240, 0.78);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 14px rgba(15, 35, 65, 0.07);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: flex;
  width: min(calc(100% - 48px), var(--content-width));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 124px;
  height: 64px;
  flex: 0 0 124px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 124px;
  height: 70px;
  object-fit: contain;
}

.desktop-navigation {
  display: flex;
  height: 100%;
  flex: 1 1 auto;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
}

.navigation-item,
.product-menu {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.navigation-link,
.product-menu-button {
  display: inline-flex;
  height: 100%;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 150ms ease;
}

.navigation-link:hover,
.navigation-link[aria-current="page"],
.product-menu-button:hover,
.product-menu-button[aria-expanded="true"] {
  color: var(--brand-navy);
}

.navigation-link[aria-current="page"]::after,
.product-menu-button[aria-expanded="true"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--brand-blue);
  content: "";
}

.chevron {
  margin-left: 6px;
  font-size: 11px;
  transition: transform 150ms ease;
}

.product-menu-button[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.product-panel {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  visibility: hidden;
  width: min(calc(100vw - 48px), 1120px);
  transform: translate(-50%, -5px);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-raised);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.product-menu[data-open="true"] .product-panel {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.product-panel-grid {
  display: grid;
  padding: 28px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px 30px;
}

.product-family h3 {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.product-family a {
  display: block;
  padding: 6px 0;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.product-family a:hover {
  color: var(--brand-blue);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  min-width: 46px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd8e4;
  border-radius: var(--radius-sm);
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.language-switch:hover {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.header-demo {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--brand-navy);
  color: var(--white);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

.header-demo:hover {
  background: #123d78;
}

.mobile-navigation-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--brand-navy);
  font-size: 24px;
}

.mobile-navigation {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  background: rgba(10, 45, 99, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-navigation[data-open="true"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-navigation-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  transform: translateX(100%);
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: -18px 0 44px rgba(15, 35, 65, 0.18);
  padding: 18px 22px 34px;
  transition: transform 180ms ease;
}

.mobile-navigation[data-open="true"] .mobile-navigation-panel {
  transform: translateX(0);
}

.mobile-navigation-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.mobile-navigation-head strong {
  color: var(--brand-navy);
}

.mobile-navigation-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--brand-navy);
  font-size: 28px;
}

.mobile-navigation-links {
  display: grid;
  padding: 18px 0;
  gap: 4px;
}

.mobile-navigation-links > a {
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  color: var(--ink);
  font-weight: 700;
}

.mobile-navigation-links > a:hover {
  background: var(--soft);
  color: var(--brand-navy);
}

.mobile-family {
  border-top: 1px solid var(--line);
  padding: 14px 12px 0;
}

.mobile-family h3 {
  margin-bottom: 8px;
  font-size: 13px;
}

.mobile-family a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.mobile-navigation-actions {
  display: grid;
  margin-top: 24px;
  gap: 10px;
}

main {
  min-height: 70vh;
  padding-top: var(--header-height);
}

.container {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  padding: 92px 0 88px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: 64px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero .lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-navy);
  border-radius: var(--radius-sm);
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

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

.button-primary:hover {
  background: #123d78;
  box-shadow: 0 8px 22px rgba(10, 45, 99, 0.2);
}

.button-secondary {
  background: var(--white);
  color: var(--brand-navy);
}

.button-secondary:hover {
  background: var(--soft);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-navy);
}

.hero-image,
.product-hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-raised);
}

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

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  background: linear-gradient(135deg, #eef4fa 0%, var(--white) 100%);
}

.section-head {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-head-copy {
  max-width: 760px;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 22px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-soft);
}

.product-card-image {
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.product-card-image img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.025);
}

.product-card-family {
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 750;
}

.product-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 750;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 160ms ease;
}

.product-card:hover .text-link::after,
.text-link:hover::after {
  transform: translateX(3px);
}

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

.family-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 24px;
}

.family-card h3 {
  margin-bottom: 14px;
  font-size: 19px;
}

.family-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.family-card li + li {
  margin-top: 7px;
}

.family-card a {
  color: #344054;
  font-size: 14px;
}

.family-card a:hover {
  color: var(--brand-blue);
}

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

.workflow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--soft);
  padding: 26px;
}

.workflow-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-green));
  content: "";
}

.workflow-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.workflow-card p {
  margin-bottom: 0;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
}

.cta-section {
  padding: 76px 0;
  background: var(--soft);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.5vw, 40px);
}

.cta-section p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 18px;
}

.cta-section .button-row {
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft) 0%, var(--white) 56%, var(--soft-blue) 100%);
  padding: 92px 0;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 45, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 45, 99, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.7;
}

.family-section + .family-section {
  border-top: 1px solid var(--line);
}

.family-section-head {
  display: flex;
  margin-bottom: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.family-section-head h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.family-count {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--brand-navy);
  font-weight: 800;
}

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

.solution-card,
.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 35, 65, 0.045);
}

.solution-card h2,
.industry-card h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.definition-grid {
  display: grid;
  margin: 0;
  gap: 14px;
}

.definition-row {
  border-top: 1px solid #edf1f6;
  padding-top: 13px;
}

.definition-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.definition-row dt {
  margin-bottom: 5px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 800;
}

.definition-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.related-links {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 8px;
}

.related-links a {
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--brand-navy);
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 750;
}

.related-links a:hover {
  background: #dbeafa;
  color: var(--brand-blue);
}

.product-hero {
  background: linear-gradient(135deg, var(--soft) 0%, var(--white) 70%);
  padding: 76px 0 70px;
}

.product-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 58px;
}

.product-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.product-hero h2 {
  margin-bottom: 24px;
  color: var(--brand-blue);
  font-size: 22px;
}

.product-hero .lead {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.product-hero-image img {
  width: 100%;
  aspect-ratio: 40 / 27;
  object-fit: cover;
}

.challenge-band {
  background: var(--brand-navy);
  color: var(--white);
  padding: 50px 0;
}

.challenge-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(180px, 0.36fr) 1fr;
  gap: 48px;
}

.challenge-band h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 30px;
}

.challenge-band p {
  margin-bottom: 0;
  color: #dbe7f5;
  font-size: 18px;
}

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

.capability-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 28px;
}

.capability-card h2 {
  margin-bottom: 18px;
  font-size: 23px;
}

.capability-card ol,
.capability-card ul {
  margin: 0;
  padding-left: 22px;
}

.capability-card li {
  color: var(--muted);
}

.capability-card li + li {
  margin-top: 10px;
}

.company-layout,
.resource-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 34px;
}

.content-panel h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.content-panel h3 {
  margin: 30px 0 10px;
  font-size: 20px;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.content-panel ul {
  margin-bottom: 0;
  padding-left: 22px;
}

.company-facts {
  display: grid;
  gap: 18px;
}

.company-fact {
  border-radius: var(--radius-md);
  background: var(--soft);
  padding: 22px;
}

.company-fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-navy);
}

.company-fact span,
.company-fact a {
  color: var(--muted);
}

.company-fact a:hover {
  color: var(--brand-blue);
}

.resource-steps {
  display: grid;
  gap: 18px;
  counter-reset: resource-step;
}

.resource-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 26px 26px 26px 76px;
  counter-increment: resource-step;
}

.resource-step::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--white);
  content: counter(resource-step);
  font-weight: 800;
}

.resource-step h2 {
  margin-bottom: 9px;
  font-size: 21px;
}

.resource-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 20px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.consent-row label {
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfd8e4;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 12px 13px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-blue);
  outline: 3px solid rgba(27, 118, 242, 0.14);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-navy);
}

.form-hint,
.form-message {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-message[data-kind="error"] {
  color: var(--danger);
  font-weight: 700;
}

.form-message[data-kind="ready"] {
  color: #067647;
  font-weight: 700;
}

.demo-information {
  display: grid;
  gap: 22px;
}

.demo-information-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.demo-information-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.demo-information-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-navy);
}

.demo-information-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content {
  max-width: 900px;
}

.legal-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 38px;
}

.legal-content h2 {
  margin: 32px 0 10px;
  font-size: 23px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found strong {
  display: block;
  margin-bottom: 14px;
  color: var(--soft-blue);
  font-size: clamp(92px, 18vw, 190px);
  font-weight: 900;
  line-height: 0.8;
}

.not-found h1 {
  margin-bottom: 14px;
  font-size: 42px;
}

.not-found p {
  margin-bottom: 26px;
  color: var(--muted);
}

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

.footer-main {
  display: grid;
  padding: 64px 0 44px;
  grid-template-columns: 1.8fr repeat(3, minmax(150px, 1fr));
  gap: 42px;
}

.footer-introduction p {
  max-width: 420px;
  color: #ccd8e8;
}

.footer-company {
  color: #aebdd1;
  font-size: 14px;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 15px;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: #ccd8e8;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  border-top: 1px solid rgba(216, 226, 240, 0.22);
  padding: 22px 0 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #9fb0c7;
  font-size: 13px;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1120px) {
  .desktop-navigation {
    gap: 18px;
  }

  .navigation-link,
  .product-menu-button {
    font-size: 14px;
  }

  .header-demo {
    padding: 0 13px;
  }

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

@media (max-width: 1023px) {
  .desktop-navigation,
  .header-actions {
    display: none;
  }

  .mobile-navigation-button {
    display: inline-flex;
  }

  .header-shell {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .container {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .hero {
    padding: 72px 0;
  }

  .hero-grid,
  .product-hero-grid,
  .company-layout,
  .resource-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .product-hero-image {
    max-width: 720px;
  }

  .product-grid,
  .family-grid,
  .workflow-grid,
  .three-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .hero,
  .page-hero,
  .product-hero {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero .lead,
  .page-hero p,
  .product-hero .lead {
    font-size: 17px;
  }

  .section,
  .cta-section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .product-grid,
  .family-grid,
  .workflow-grid,
  .solution-grid,
  .industry-grid,
  .three-column-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .family-section-head {
    align-items: flex-start;
  }

  .challenge-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-hero h1,
  .product-hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .content-panel,
  .solution-card,
  .industry-card,
  .legal-content article {
    padding: 24px;
  }

  .resource-step {
    padding: 70px 22px 24px;
  }

  .resource-step::before {
    top: 22px;
    left: 22px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .page-hero h1,
  .product-hero h1,
  .hero h1 {
    font-size: 34px;
  }

  .brand,
  .brand img {
    width: 112px;
  }
}

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