:root {
  --blue: #2e59b7;
  --black: #08090b;
  --ink: #17191d;
  --gray-900: #25282e;
  --gray-700: #5c616b;
  --gray-500: #8a909a;
  --gray-300: #d8dce2;
  --gray-100: #f3f5f7;
  --white: #ffffff;
  --content: 1240px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.capture-mode {
  scroll-behavior: auto;
  scrollbar-width: none;
}

html.capture-mode::-webkit-scrollbar {
  display: none;
}

html.capture-mode .site-header {
  position: relative;
}

html.capture-mode *,
html.capture-mode *::before,
html.capture-mode *::after {
  transition-duration: 0s !important;
  animation-duration: 0s !important;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
}

.content-width {
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 12px 32px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid #24262b;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(108px, 11vw, 132px);
  min-width: 0;
  line-height: 1.1;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 132px;
  height: auto;
  aspect-ratio: 413 / 56;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.desktop-nav > a,
.nav-parent {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 0;
  color: #d8dce3;
  font-size: 13px;
  white-space: nowrap;
}

.desktop-nav > a::after,
.nav-parent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.nav-item:hover .nav-parent::after,
.nav-item:focus-within .nav-parent::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  z-index: 10;
  top: calc(100% + 18px);
  left: -18px;
  width: 220px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: #111318;
  border: 1px solid #30333a;
  border-top: 3px solid var(--blue);
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  pointer-events: none;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  color: #e4e7ec;
  font-size: 13px;
  border-bottom: 1px solid #2a2d33;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--white);
  background: #20232a;
}

.nav-dropdown-wide {
  width: 310px;
}

.nav-dropdown strong,
.nav-dropdown span {
  display: block;
}

.nav-dropdown strong {
  font-weight: 600;
}

.nav-dropdown span {
  margin-top: 2px;
  color: #9ea4ae;
  font-size: 11px;
}

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

.button,
.menu-button,
.footer-inquiry,
.quote-close,
.product-tab,
.upload-button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: #aeb4bf;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.menu-button {
  display: none;
  padding: 8px 12px;
  color: var(--white);
  background: transparent;
  border-color: #5d626c;
}

.mobile-nav {
  grid-column: 1 / -1;
  padding: 10px 0 4px;
  border-top: 1px solid #24262b;
}

.mobile-nav > a {
  display: block;
  padding: 11px 0;
  color: #e8eaf0;
  border-bottom: 1px solid #24262b;
}

.mobile-nav details {
  color: #e8eaf0;
  border-bottom: 1px solid #24262b;
}

.mobile-nav summary {
  position: relative;
  padding: 11px 30px 11px 0;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 4px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #aeb4bd;
  border-bottom: 1px solid #aeb4bd;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.mobile-nav details[open] summary::after {
  top: 21px;
  transform: rotate(225deg);
}

.mobile-submenu {
  padding: 4px 0 10px 16px;
  border-top: 1px solid #24262b;
}

.mobile-submenu a {
  display: block;
  padding: 9px 12px;
  color: #bfc4cc;
  font-size: 14px;
  border-bottom: 1px solid #24262b;
}

.mobile-submenu a:last-child {
  border-bottom: 0;
}

.mobile-nav .mobile-quote {
  width: 100%;
  margin-top: 16px;
}

.hero {
  position: relative;
  min-height: 690px;
  height: calc(100svh - var(--header-height) - 56px);
  max-height: 790px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 76px;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  margin: 0 10px 3px 0;
  background: var(--blue);
}

.eyebrow-dark {
  color: var(--gray-700);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: #e0e3e8;
  font-size: 20px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-500);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.text-link-light {
  color: var(--white);
  border-color: #c5c9d0;
}

.hero-caption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 20px;
  margin: 0;
  color: #d0d4da;
  font-size: 12px;
}

.proof-band {
  color: var(--white);
  background: var(--black);
}

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

.proof-item {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-left: 1px solid #2d3036;
  transition: background 180ms ease;
}

.proof-item:last-child {
  border-right: 1px solid #2d3036;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 500;
}

.proof-item span {
  color: #aeb3bd;
  font-size: 13px;
}

.proof-item:hover,
.proof-item:focus-visible {
  background: #17191e;
}

.collection-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.collection-strip-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.collection-strip-inner > span {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-strip-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
}

.collection-strip-links a {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
}

.collection-strip-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.collection-strip-links a:hover::after,
.collection-strip-links a:focus-visible::after {
  transform: scaleX(1);
}

.section {
  padding: 116px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 72px;
  align-items: end;
}

.heading-split h2 {
  margin-bottom: 0;
}

.heading-split > p,
.heading-split > a {
  justify-self: end;
  max-width: 520px;
  margin-bottom: 3px;
  color: var(--gray-700);
}

.editorial-section {
  padding: 128px 0 132px;
  background: var(--white);
}

.editorial-intro {
  max-width: 780px;
  margin-bottom: 64px;
}

.editorial-intro h2 {
  margin-bottom: 24px;
}

.editorial-intro > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 18px;
}

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

.editorial-card {
  min-width: 0;
}

.editorial-media {
  position: relative;
  min-height: 640px;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.editorial-media img,
.editorial-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.editorial-media img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.editorial-card:first-child .editorial-media img {
  object-position: center;
}

.editorial-card-light .editorial-media {
  color: var(--ink);
  background: #eef1f4;
}

.editorial-card-light .editorial-media img {
  object-fit: contain;
  object-position: center top;
  padding: 42px 42px 190px;
}

.editorial-card-light .editorial-overlay {
  background: linear-gradient(to bottom, rgba(238, 241, 244, 0) 34%, rgba(238, 241, 244, 0.98) 76%);
}

.editorial-card-light .editorial-copy {
  color: var(--gray-700);
}

.editorial-card-light .editorial-link {
  border-color: var(--gray-500);
}

.editorial-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.76) 100%);
}

.editorial-content {
  position: absolute;
  z-index: 1;
  right: 44px;
  bottom: 42px;
  left: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.editorial-kicker {
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.editorial-content strong {
  max-width: 510px;
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.12;
}

.editorial-copy {
  max-width: 480px;
  margin-bottom: 28px;
  color: #e0e3e8;
  font-size: 16px;
}

.editorial-link {
  padding-bottom: 4px;
  font-weight: 600;
  border-bottom: 1px solid #d7dbe2;
}

.editorial-media:hover img,
.editorial-media:focus-visible img {
  transform: scale(1.02);
}

.collection-index-section {
  background: var(--gray-100);
}

.collection-index-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 104px;
  align-items: start;
}

.collection-index-intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.collection-index-intro h2 {
  max-width: 470px;
}

.collection-index-intro > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 30px;
  color: var(--gray-700);
}

.collection-index {
  border-top: 1px solid #bfc4cc;
}

.collection-index-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 148px;
  padding: 24px 4px;
  border-bottom: 1px solid #bfc4cc;
}

.collection-index-row > span:first-child,
.collection-index-row > span:last-child {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.collection-index-row > span:last-child {
  font-size: 18px;
}

.collection-index-row strong,
.collection-index-row small {
  display: block;
}

.collection-index-row strong {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 500;
}

.collection-index-row small {
  color: var(--gray-700);
  font-size: 14px;
}

.collection-index-row:hover strong,
.collection-index-row:focus-visible strong {
  color: var(--blue);
}

.products-section {
  background: var(--gray-100);
}

.product-explorer {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  min-height: 570px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  overflow: hidden;
}

.product-tabs {
  display: grid;
  align-content: start;
  background: var(--black);
}

.product-tab {
  position: relative;
  min-height: 74px;
  padding: 18px 26px;
  color: #cbd0d8;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #2a2d33;
  border-radius: 0;
}

.product-tab::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: transparent;
}

.product-tab:hover,
.product-tab:focus-visible,
.product-tab.is-active {
  color: var(--white);
  background: #191b20;
}

.product-tab.is-active::before {
  background: var(--blue);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.product-visual {
  min-height: 570px;
  display: grid;
  place-items: center;
  padding: 46px;
  background: #eef1f4;
}

.product-visual img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  transition: opacity 150ms ease;
}

.product-detail {
  align-self: center;
  padding: 46px;
}

.product-index {
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.product-detail > p:not(.product-index) {
  color: var(--gray-700);
}

.spec-list {
  margin: 32px 0;
  border-top: 1px solid var(--gray-300);
}

.spec-list > div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-300);
}

.spec-list dt {
  color: var(--gray-500);
}

.spec-list dd {
  margin: 0;
}

.editorial-projects {
  padding-top: 132px;
  padding-bottom: 124px;
}

.project-heading {
  margin-bottom: 64px;
}

.project-carousel {
  position: relative;
}

.project-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-viewport::-webkit-scrollbar {
  display: none;
}

.project-track {
  display: flex;
}

.project-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-slide-media {
  display: block;
  overflow: hidden;
  background: var(--gray-100);
}

.project-slide-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  transition: transform 520ms ease;
}

.project-slide-media:hover img,
.project-slide-media:focus-visible img {
  transform: scale(1.02);
}

.project-slide-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 42px;
  min-height: 104px;
  padding-top: 20px;
  border-top: 3px solid var(--black);
}

.project-slide-meta p {
  margin-bottom: 4px;
  color: var(--gray-700);
  font-size: 13px;
}

.project-slide-meta h3 {
  margin-bottom: 0;
}

.project-slide-meta > span {
  align-self: start;
  color: var(--gray-700);
  font-size: 13px;
  text-align: right;
}

.project-carousel-footer {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto auto;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.project-progress {
  height: 2px;
  overflow: hidden;
  background: var(--gray-300);
}

.project-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--blue);
  transition: width 320ms ease;
}

.project-status {
  display: flex;
  gap: 7px;
  margin: 0;
  color: var(--gray-700);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.project-controls {
  display: flex;
  gap: 8px;
}

.project-control {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-400);
  border-radius: 0;
  font: inherit;
  font-size: 19px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.project-control:hover,
.project-control:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.project-play {
  font-size: 13px;
}

.project-icon-play,
.project-play[aria-pressed="true"] .project-icon-pause {
  display: none;
}

.project-play[aria-pressed="true"] .project-icon-play {
  display: inline;
}

.project-all-link {
  margin-top: 0;
  white-space: nowrap;
}

.application-showcase {
  padding: 124px 0 132px;
  color: var(--white);
  background: var(--black);
  border-bottom: 10px solid var(--blue);
}

.application-heading {
  align-items: end;
  margin-bottom: 62px;
}

.application-heading h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.application-heading > p {
  max-width: 560px;
  color: #b7bcc5;
}

.application-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(390px, 0.78fr);
  min-height: 610px;
  border-top: 1px solid #33363d;
  border-bottom: 1px solid #33363d;
}

.application-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #15171b;
}

.application-visual::after {
  position: absolute;
  inset: 46% 0 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(5, 6, 8, 0.78));
}

.application-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  transition: opacity 220ms ease, transform 600ms ease;
}

.application-visual img.is-changing {
  opacity: 0.28;
  transform: scale(1.012);
}

.application-visual-caption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.application-visual-caption span {
  color: #9db9f4;
  font-size: 13px;
  font-weight: 700;
}

.application-visual-caption p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  text-align: right;
}

.application-tabs {
  border-left: 1px solid #33363d;
}

.application-tab {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  width: 100%;
  min-height: 112px;
  padding: 24px 26px;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #33363d;
  border-radius: 0;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.application-tab:last-child {
  border-bottom: 0;
}

.application-tab:hover,
.application-tab:focus-visible,
.application-tab.is-active {
  background: #11141a;
}

.application-tab.is-active {
  box-shadow: inset 4px 0 0 var(--blue);
}

.application-tab-number {
  padding-top: 5px;
  color: #7f8794;
  font-size: 12px;
  font-weight: 700;
}

.application-tab-copy strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
}

.application-tab-copy small {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #aeb4be;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0;
  transition: max-height 240ms ease, margin 240ms ease, opacity 180ms ease;
}

.application-tab.is-active .application-tab-copy small {
  max-height: 48px;
  margin-top: 8px;
  opacity: 1;
}

.application-tab-arrow {
  padding-top: 2px;
  color: var(--blue);
  font-size: 18px;
  transition: transform 180ms ease;
}

.application-tab.is-active .application-tab-arrow {
  transform: translate(2px, -2px);
}

.inquiry-section {
  padding: 74px 0;
  color: var(--white);
  background: var(--blue);
}

.inquiry-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.inquiry-layout h2 {
  margin-bottom: 0;
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 50px;
  padding-bottom: 60px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 9px;
}

.footer-grid a,
.footer-inquiry {
  color: #bfc4cc;
  font-size: 14px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-inquiry:hover,
.footer-inquiry:focus-visible {
  color: var(--white);
}

.footer-brand strong {
  display: block;
  font-size: 30px;
}

.footer-brand p {
  color: #bfc4cc;
}

.footer-inquiry {
  min-height: 0;
  padding: 0 0 3px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #777d87;
  border-radius: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: #8f949d;
  font-size: 12px;
  border-top: 1px solid #2f3238;
}

.mobile-contact-bar {
  display: none;
}

.quote-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.72);
}

.quote-overlay.is-open {
  display: flex;
}

.quote-panel {
  position: relative;
  width: min(100%, 640px);
  height: 100%;
  overflow-y: auto;
  padding: 52px 44px;
  color: var(--white);
  background: var(--black);
  border-left: 4px solid var(--blue);
}

.quote-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border-color: #5c616a;
  font-size: 28px;
}

.quote-heading {
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid #3a3d44;
}

.quote-heading p {
  margin-bottom: 6px;
  color: #aeb4bd;
  font-size: 12px;
  text-transform: uppercase;
}

.quote-heading h2 {
  margin-bottom: 0;
  font-size: 36px;
}

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

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

.quote-panel label:not(.upload-button) {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
}

.quote-panel label > span {
  color: #86a9f3;
}

.quote-panel input:not([type="file"]),
.quote-panel textarea,
.quote-panel select {
  display: block;
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  padding: 10px 12px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 3px;
}

.quote-panel textarea {
  min-height: 130px;
  resize: vertical;
}

.upload-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  min-width: 112px;
  padding: 8px 14px;
  color: var(--white);
  border-color: #8c929c;
}

#quote-file {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

#file-name {
  min-width: 0;
  overflow: hidden;
  color: #bec3cc;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-note,
.form-status {
  color: #aeb4bd;
  font-size: 13px;
}

.form-note {
  margin: 10px 0 24px;
}

.quote-submit {
  min-width: 116px;
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.quote-submit:hover,
.quote-submit:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.quote-submit:disabled {
  color: #727782;
  background: #d9dce1;
  border-color: #d9dce1;
  cursor: wait;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
}

.form-status.is-error {
  color: #ffb6a6;
}

.form-status.is-success {
  color: #b8d0ff;
}

:focus-visible {
  outline: 3px solid #86a9f3;
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-button {
    display: inline-block;
  }

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

  .product-visual {
    min-height: 390px;
  }

  .product-visual img {
    height: 330px;
  }

  .editorial-media {
    min-height: 560px;
  }

  .collection-index-layout {
    gap: 64px;
  }

  .application-explorer {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    min-height: 560px;
  }

  .application-visual img {
    min-height: 560px;
  }

  .application-tab {
    min-height: 102px;
    padding: 20px 22px;
  }

}

@media (max-width: 780px) {
  body {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: env(safe-area-inset-bottom);
    color: #fff;
    background: #050506;
    border-top: 1px solid #2d3036;
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button {
    display: flex;
    min-width: 0;
    height: 32px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 5px;
    color: #fff;
    background: transparent;
    border: 0;
    border-right: 1px solid #2d3036;
    border-radius: 0;
    cursor: pointer;
  }

  .mobile-contact-bar > :last-child {
    border-right: 0;
  }

  .mobile-contact-bar span {
    color: #aeb4bd;
    font-size: 11px;
    line-height: 1;
  }

  .mobile-contact-bar strong {
    overflow: hidden;
    font-size: 9px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-contact-bar button {
    color: #fff;
    background: var(--blue);
  }

  .mobile-contact-bar button span {
    color: #fff;
  }
  :root {
    --header-height: 70px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 21px;
  }

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

  .site-header {
    min-height: var(--header-height);
    padding: 10px 18px;
  }

  .header-actions .quote-open {
    display: none;
  }

  .hero {
    min-height: 620px;
    height: calc(100svh - var(--header-height) - 40px);
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-caption {
    right: 18px;
    bottom: 14px;
    max-width: 220px;
    text-align: right;
  }

  .collection-strip-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .collection-strip-links {
    width: 100%;
    justify-content: space-between;
    gap: 14px 24px;
    flex-wrap: wrap;
  }

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

  .proof-item {
    min-height: 104px;
    padding: 18px;
    border-bottom: 1px solid #2d3036;
  }

  .section {
    padding: 82px 0;
  }

  .editorial-section,
  .editorial-projects {
    padding: 86px 0;
  }

  .editorial-intro,
  .project-heading {
    margin-bottom: 44px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .editorial-media {
    min-height: 560px;
  }

  .editorial-content {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .editorial-content strong {
    font-size: 34px;
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .heading-split > p,
  .heading-split > a {
    justify-self: start;
  }

  .product-explorer {
    grid-template-columns: 1fr;
  }

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

  .product-tab {
    min-height: 62px;
    padding: 14px 16px;
    border-right: 1px solid #2a2d33;
  }

  .product-visual {
    min-height: 330px;
    padding: 30px;
  }

  .product-visual img {
    height: 270px;
  }

  .product-detail {
    padding: 32px 24px;
  }

  .collection-index-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .collection-index-intro {
    position: static;
  }

  .collection-index-row {
    min-height: 132px;
  }

  .project-slide-media img {
    aspect-ratio: 4 / 3;
  }

  .project-slide-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 126px;
  }

  .project-slide-meta > span {
    text-align: left;
  }

  .project-carousel-footer {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    margin-top: 26px;
  }

  .project-progress {
    grid-column: 1 / -1;
  }

  .project-status {
    grid-column: 1;
  }

  .project-all-link {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .project-controls {
    grid-column: 3;
    grid-row: 2;
  }

  .application-showcase {
    padding: 86px 0 92px;
  }

  .application-heading {
    margin-bottom: 44px;
  }

  .application-explorer {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .application-visual {
    aspect-ratio: 4 / 3;
  }

  .application-visual img {
    min-height: 0;
  }

  .application-tabs {
    border-top: 1px solid #33363d;
    border-left: 0;
  }

  .application-tab {
    min-height: 96px;
  }

  .inquiry-layout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .brand {
    width: clamp(104px, 30vw, 124px);
  }

  .brand-logo {
    width: 100%;
  }

  .collection-strip-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-strip-links a:nth-child(even) {
    text-align: right;
  }

  .editorial-media {
    min-height: 500px;
  }

  .editorial-content {
    right: 24px;
    bottom: 26px;
    left: 24px;
  }

  .editorial-content strong {
    font-size: 30px;
  }

  .editorial-copy {
    font-size: 14px;
  }

  .editorial-card-light .editorial-media img {
    padding: 28px 24px 188px;
  }

  .collection-index-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 128px;
  }

  .collection-index-row strong {
    font-size: 21px;
  }

  .project-control {
    width: 40px;
    height: 40px;
  }

  .application-visual {
    aspect-ratio: 1 / 1;
  }

  .application-visual-caption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .application-tab {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 92px;
    padding: 20px 16px;
  }

  .application-tab-copy strong {
    font-size: 19px;
  }

  .proof-grid,
  .product-tabs,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-tab {
    border-right: 0;
  }

  .spec-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .quote-panel {
    padding: 52px 20px 30px;
    border-left: 0;
    border-top: 4px solid var(--blue);
  }

  .quote-heading h2 {
    font-size: 30px;
  }

  .upload-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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