:root {
  --cyan: #006f9f;
  --top-blue: #0365ac;
  --primary-blue: #1d39c4;
  --ink: #101828;
  --body: #475467;
  --muted: #8c8c8c;
  --line: #e4e7ec;
  --soft-blue: #f0f5ff;
  --soft-gray: #fafafa;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 18px 46px rgba(29, 57, 196, 0.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: var(--shadow);
  font-weight: 800;
}

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

.top-strip {
  color: var(--white);
  background: var(--top-blue);
}

.top-strip-inner,
.site-header,
.hero,
.quick-cards,
.section > *,
.contact-content,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.top-strip-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.88rem;
}

.top-strip a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  font-weight: 700;
}

.top-strip-access {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-strip-email {
  font-weight: 500 !important;
}

.access-link {
  padding-inline: 2px;
  white-space: nowrap;
}

.subscriber-login {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  padding-left: 16px;
}

.proposal-login {
  min-height: 28px !important;
  border-radius: 6px;
  padding: 5px 11px;
  color: var(--top-blue);
  background: var(--white);
}

.access-link:hover,
.access-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 70px;
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 144px;
  height: auto;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 24px);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(16, 24, 40, 0.85);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--cyan);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: clamp(24px, 4vw, 58px);
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  padding: 36px 0 44px;
}

.hero::before {
  position: absolute;
  inset: 0 -60px 0 auto;
  z-index: -1;
  width: min(760px, 62vw);
  content: "";
  background: url("assets/brand/live-site/Background.svg") center / contain no-repeat;
  opacity: 0.75;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.05rem, 6.2vw, 4.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  color: var(--cyan);
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--body);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-lede {
  max-width: 700px;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 15px 26px;
  font-weight: 700;
  line-height: 1;
}

.button.primary {
  color: var(--white);
  background: var(--cyan);
  box-shadow: 0 12px 30px rgba(0, 111, 159, 0.24);
}

.button.secondary {
  color: var(--primary-blue);
  border: 1px solid #c8d5ff;
  background: var(--soft-blue);
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-product {
  position: absolute;
  filter: drop-shadow(0 22px 44px rgba(29, 57, 196, 0.15));
}

.primary-visual {
  inset: 20px 0 auto auto;
  width: min(420px, 90%);
}

.float-a {
  left: 0;
  bottom: 28px;
  width: min(230px, 48%);
}

.float-b {
  right: 14px;
  bottom: 0;
  width: min(230px, 46%);
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.quick-cards article,
.product-card,
.update-card,
.control-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.04);
}

.quick-cards article {
  min-height: 240px;
  padding: 26px;
}

.quick-cards img {
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
}

.quick-cards h2 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  font-weight: 700;
}

.quick-cards p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  scroll-margin-top: 104px;
  padding: clamp(58px, 7vw, 92px) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 760px;
}

.product-section,
.model-section,
.solutions-section,
.operations-section {
  background: var(--soft-gray);
}

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

.product-card {
  min-height: 290px;
  padding: 28px;
}

.product-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 32px;
}

.product-card.featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  min-height: 330px;
  align-items: center;
  background: linear-gradient(0deg, rgba(240, 245, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.product-card.featured img {
  width: 260px;
  height: auto;
  margin: 0;
}

.product-label,
.updates-grid span,
.control-card span {
  display: block;
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-grid,
.model-grid,
.deep-grid,
.bridge-layout,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.catalog-grid article,
.model-card,
.deep-grid article,
.bridge-layout article,
.explainer-list article,
.industry-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.04);
}

.catalog-grid article,
.model-card,
.deep-grid article,
.bridge-layout article,
.industry-grid article {
  padding: 28px;
}

.catalog-grid p,
.model-card p,
.deep-grid p,
.bridge-layout p,
.updates-grid p,
.industry-grid p {
  font-size: 0.96rem;
  line-height: 1.6;
}

.catalog-grid span,
.model-card span,
.bridge-layout span {
  display: block;
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-grid p:last-child,
.model-card p:last-child,
.deep-grid p:last-child,
.bridge-layout p:last-child,
.industry-grid p:last-child {
  margin-bottom: 0;
}

.industry-rich-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.industry-solution {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.industry-solution > span {
  width: fit-content;
  border: 1px solid rgba(35, 55, 205, 0.16);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(35, 55, 205, 0.08);
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.industry-solution h3,
.industry-solution p {
  margin-bottom: 0;
}

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

.solution-columns div {
  border: 1px solid rgba(35, 55, 205, 0.12);
  border-radius: calc(var(--radius) - 4px);
  padding: 18px;
  background: rgba(248, 251, 255, 0.82);
}

.solution-columns h4 {
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}

.solution-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.model-card {
  min-height: 250px;
}

.model-card-wide {
  grid-column: span 2;
  background: linear-gradient(0deg, rgba(240, 245, 255, 0.9), rgba(255, 255, 255, 0.96));
}

.deep-platform-section,
.technology-section {
  background: var(--white);
}

.connectbridge-section,
.industry-section {
  background: var(--soft-blue);
}

.connectbridge-section .bridge-layout article,
.industry-section .industry-grid article {
  background: rgba(255, 255, 255, 0.92);
}

.deep-grid article {
  min-height: 220px;
}

.bridge-layout article {
  min-height: 230px;
}

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

.explainer-list article {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 255, 0.48));
}

.explainer-list article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--primary-blue));
}

.explainer-list article h3 {
  margin-bottom: 2px;
  font-size: 1.16rem;
  line-height: 1.28;
}

.explainer-list article p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.explainer-list article p:last-child {
  margin-bottom: 0;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.feature-list strong {
  color: var(--ink);
}

.feature-list span {
  color: var(--body);
  line-height: 1.55;
}

.control-plane {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  background: var(--soft-blue);
}

.control-plane > img {
  position: absolute;
  top: 38px;
  right: 22px;
  width: min(420px, 88%);
}

.control-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  padding: 24px;
}

.control-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.35;
}

.tabs {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tab-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tab-button {
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.tab-button.is-active {
  color: var(--white);
  border-color: var(--cyan);
  background: var(--cyan);
}

.tab-panel {
  display: none;
  min-height: 340px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h3 {
  max-width: 780px;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  font-weight: 500;
}

.tab-panel p {
  max-width: 780px;
}

.tab-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  min-height: 94px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--body);
  line-height: 1.45;
  background: var(--soft-blue);
}

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

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

.update-card {
  display: block;
  min-height: 240px;
  padding: 26px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.update-card:hover,
.update-card:focus-visible {
  border-color: rgba(4, 181, 237, 0.52);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.update-card h3 {
  transition: color 180ms ease;
}

.update-card:hover h3,
.update-card:focus-visible h3 {
  color: var(--primary-blue);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  overflow: visible;
  padding: 28px 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 255, 0.58));
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.timeline li::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--primary-blue));
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: 47px;
  right: -20px;
  z-index: 2;
  width: 20px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--primary-blue), var(--cyan));
}

.timeline span {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 26px;
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--white);
  background: linear-gradient(90deg, var(--primary-blue), #254ce0);
  box-shadow: 0 10px 22px rgba(29, 57, 196, 0.2);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.timeline span::before {
  content: "Step";
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.82;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.timeline p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

.reserve-section {
  padding: clamp(72px, 9vw, 116px) 0;
  background: #f7fbff;
}

.reserve-form {
  max-width: 980px;
  border: 1px solid #d8e6f2;
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(3, 101, 172, 0.09);
}

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

.reserve-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

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

.reserve-form span {
  font-size: 0.92rem;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #b9cad8;
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  line-height: 1.35;
}

.reserve-form textarea {
  resize: vertical;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: 3px solid rgba(19, 168, 199, 0.3);
  border-color: var(--cyan);
}

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

.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
}

.reserve-status {
  flex: 1 1 280px;
  min-height: 24px;
  margin: 0;
  color: var(--body);
  font-weight: 700;
}

.reserve-status.is-error {
  color: #b42318;
}

.reserve-status.is-success {
  color: #05603a;
}

.contact-section {
  padding: clamp(78px, 10vw, 120px) 0;
  background: linear-gradient(90deg, #262626 0%, #0e1b5e 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 40px;
  align-items: center;
}

.contact-content h2,
.contact-content p {
  color: var(--white);
}

.contact-content .eyebrow {
  color: #9de7ff;
}

.contact-card {
  padding: 28px;
}

.contact-card a {
  display: block;
  margin-bottom: 16px;
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-card p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer img {
  width: 144px;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 128px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-scrolled .site-nav,
  .site-header.nav-active .site-nav {
    top: 108px;
  }

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

  .site-nav a {
    padding: 12px 6px;
  }

  .hero,
  .platform-section,
  .tabs,
  .reserve-form,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .quick-cards,
  .product-grid,
  .catalog-grid,
  .model-grid,
  .deep-grid,
  .bridge-layout,
  .industry-grid,
  .industry-rich-grid,
  .updates-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explainer-list {
    grid-template-columns: 1fr;
  }

  .explainer-list article {
    min-height: auto;
  }

  .product-card.featured {
    grid-column: span 2;
  }

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

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

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

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

  .timeline li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .top-strip-inner {
    justify-content: center;
    text-align: center;
  }

  .top-strip-inner span {
    display: none;
  }

  .top-strip-access {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .top-strip-email {
    display: none !important;
  }

  .access-link {
    min-height: 42px !important;
    justify-content: center;
    font-size: 0.8rem;
  }

  .subscriber-login {
    flex: 1 1 45%;
    border-left: 0;
    padding-left: 0;
  }

  .proposal-login {
    flex: 1 1 55%;
  }

  .site-header {
    min-height: 76px;
  }

  .site-header.is-scrolled,
  .site-header.nav-active {
    min-height: 76px;
  }

  .brand img {
    width: 116px;
  }

  .site-nav,
  .site-header.is-scrolled .site-nav,
  .site-header.nav-active .site-nav {
    top: 110px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 13px 12px;
  }

  .reserve-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 132px;
  }

  .primary-visual {
    top: 0;
    right: 0;
    width: 62%;
  }

  .float-a,
  .float-b {
    display: none;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .quick-cards,
  .product-grid,
  .catalog-grid,
  .model-grid,
  .deep-grid,
  .bridge-layout,
  .industry-grid,
  .industry-rich-grid,
  .solution-columns,
  .updates-grid,
  .timeline,
  .tab-list,
  .product-card.featured {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
  }

  .model-card-wide {
    grid-column: auto;
  }

  .product-card.featured img {
    width: 180px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }

  .control-plane {
    min-height: 360px;
  }

  .tab-button {
    text-align: center;
  }

  .timeline li,
  .update-card,
  .quick-cards article,
  .product-card,
  .model-card,
  .deep-grid article,
  .bridge-layout article {
    min-height: auto;
  }

  .catalog-grid article,
  .model-card,
  .deep-grid article,
  .bridge-layout article,
  .explainer-list article,
  .industry-grid article {
    padding: 22px;
  }

  .timeline span {
    margin-bottom: 18px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }
}

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

  .update-card:hover,
  .update-card:focus-visible {
    transform: none;
  }
}
