:root {
  --navy: #192938;
  --red: #b92430;
  --muted: #586572;
  --line: #dbe1e6;
  --pale: #f3f5f7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  font:
    16px/1.6 Arial,
    Helvetica,
    sans-serif;
  color: var(--navy);
  background: #fff;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #2e70ae;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, calc(100% - 64px));
  margin: auto;
}
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-link {
  text-decoration: none;
}
.brand {
  display: block;
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.brand span {
  display: block;
  font-size: 8px;
  letter-spacing: 1.4px;
  margin-top: 7px;
}
.header-inner nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.header-inner nav > a {
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--red);
  border: 1px solid var(--red);
  color: white;
  padding: 15px 22px;
  text-decoration: none;
  font-weight: 700;
  min-height: 48px;
  border-radius: 2px;
}
.button:hover {
  background: #a31e29;
}
.button.small {
  padding: 10px 16px;
  font-size: 14px;
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
}
#menu-button {
  display: none;
}
.hero {
  background: var(--navy);
  color: #fff;
  border-left: 6px solid var(--red);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 42px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.7px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--muted);
}
.hero .eyebrow {
  color: #c3cdd6;
}
h1 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin: 0 0 26px;
}
h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.7px;
  margin: 0 0 28px;
}
h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
}
p {
  margin: 0 0 18px;
}
.series-line {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.series-line span {
  color: #bdc8d1;
  margin: 0 6px;
}
.hero-copy {
  font-size: 16px;
  color: #e0e6eb;
  max-width: 490px;
}
.actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin-top: 26px;
}
.text-link {
  font-size: 14px;
}
.hero-products {
  background: white;
  color: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  padding: 24px;
}
.image-label {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
  margin: 0;
}
.hero-products figure {
  margin: 0;
  min-width: 0;
}
.hero-products img {
  width: 100%;
  height: 125px;
  object-fit: contain;
}
.hero-products figcaption {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
.hero-products figcaption span {
  display: block;
  font-weight: 400;
  color: var(--navy);
  font-size: 12px;
}
.manufacturer {
  padding: 21px 0;
  border-top: 1px solid #485661;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: #ccd6dd;
}
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.section-heading > a {
  font-size: 14px;
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.series-grid article {
  border-top: 2px solid var(--navy);
  padding-top: 18px;
}
.series-grid h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.series-grid p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.pale {
  background: var(--pale);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product {
  background: white;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.product-image {
  height: 175px;
  margin-bottom: 22px;
}
.product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.oe {
  color: var(--red);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 7px;
}
.product h3 {
  font-size: 17px;
}
.muted {
  color: var(--muted);
}
.product .muted {
  font-size: 13px;
  margin: 8px 0 22px;
}
.product-cta {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.other {
  margin-top: 46px;
}
.other dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin: 24px 0;
}
.other dl > div {
  display: flex;
  gap: 18px;
  font-size: 14px;
}
.other dt {
  color: var(--red);
  font-weight: 700;
  min-width: 132px;
}
dd {
  margin: 0;
}
.categories {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.intro {
  max-width: 760px;
  color: var(--muted);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
}
.stats dt {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}
.stats dd {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 32px 0;
}
.capabilities h3 {
  font-size: 17px;
}
.quality {
  display: flex;
  gap: 55px;
  align-items: center;
  margin: 0;
}
.quality > span {
  font-size: 13px;
  color: var(--muted);
}
.quality strong span {
  color: #85919b;
  padding: 0 15px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.steps li {
  font-weight: 700;
  line-height: 1.4;
}
.steps li span {
  display: block;
  color: var(--red);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 15px;
  padding-bottom: 12px;
}
.rfq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 85px;
}
.rfq-aside p {
  color: var(--muted);
}
.rfq-aside h2 {
  font-size: 38px;
}
.direct-contact {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 26px;
  font-size: 14px;
}
.direct-contact p {
  margin: 8px 0;
}
.direct-contact a {
  color: var(--navy);
}
fieldset {
  padding: 0;
  margin: 0 0 28px;
  border: 0;
  min-width: 0;
}
legend {
  font-weight: 700;
  font-size: 18px;
  padding: 0;
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 700;
}
input:not([type="checkbox"]),
select,
textarea {
  display: block;
  width: 100%;
  padding: 11px 12px;
  margin-top: 7px;
  border: 1px solid #a6b1b9;
  border-radius: 2px;
  background: #fff;
  color: var(--navy);
  min-height: 46px;
}
input[aria-invalid="true"] {
  border: 2px solid var(--red);
}
textarea {
  resize: vertical;
}
.check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 22px 0 14px;
  min-height: 32px;
}
.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}
#oe-help {
  padding: 14px;
  background: var(--pale);
  font-size: 14px;
}
.upload {
  padding: 20px;
  background: var(--pale);
  margin-top: 20px;
}
.upload input {
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 13px;
}
.upload span {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#form-error {
  border-left: 3px solid var(--red);
  background: #fff2f2;
  padding: 15px;
  color: #8d1420;
  font-size: 14px;
}
#success {
  padding: 35px;
  border-top: 4px solid var(--red);
  background: var(--pale);
}
footer {
  background: var(--navy);
  color: #fff;
  padding: 45px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  font-size: 13px;
}
.footer-grid p {
  margin: 18px 0;
}
.disclaimer {
  border-top: 1px solid #485661;
  margin: 28px 0 0;
  padding-top: 24px;
  font-size: 11px;
  color: #ccd6dd;
}
.link-button {
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  font-size: 12px;
  display: block;
  padding: 14px 0;
}
.policy {
  padding-top: 50px;
  padding-bottom: 65px;
  max-width: 850px;
}
.policy h1 {
  margin-top: 25px;
}
.policy h2 {
  font-size: 23px;
  margin-top: 38px;
  margin-bottom: 18px;
}
.policy .eyebrow {
  margin-top: 40px;
}
.skip {
  position: fixed;
  left: 15px;
  top: -70px;
  background: white;
  padding: 15px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
#consent {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: white;
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: 0 4px 25px #19293825;
  z-index: 30;
  max-width: 420px;
  font-size: 13px;
}
#consent-no {
  background: white;
  border: 1px solid var(--line);
  padding: 10px 16px;
  margin-left: 10px;
  min-height: 44px;
}
#submit-status {
  font-size: 13px;
  margin-top: 10px;
}
@media (max-width: 1000px) {
  .header-inner nav {
    gap: 15px;
    font-size: 12px;
  }
  .hero-grid {
    gap: 30px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rfq-grid {
    gap: 40px;
  }
  .hero-products {
    padding: 18px;
  }
  .wrap {
    width: calc(100% - 44px);
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .header-inner {
    min-height: 67px;
  }
  .brand {
    font-size: 24px;
  }
  .brand span {
    font-size: 7px;
  }
  #menu-button {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: white;
    font-size: 23px;
    color: var(--navy);
  }
  .header-inner nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    padding: 18px;
    background: white;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    align-items: stretch;
  }
  .header-inner nav.open {
    display: flex;
    flex-direction: column;
  }
  .header-inner nav > a {
    padding: 10px;
  }
  .hero {
    border-left-width: 4px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 35px;
    padding-bottom: 25px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
  }
  h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 22px;
  }
  .series-line {
    font-size: 19px;
    letter-spacing: 0.5px;
  }
  .series-line span {
    margin: 0 4px;
  }
  .hero-copy {
    font-size: 14px;
    line-height: 1.6;
  }
  .actions {
    margin-top: 22px;
    gap: 18px;
  }
  .actions .button {
    width: 100%;
    font-size: 14px;
  }
  .hero-products img {
    height: 102px;
  }
  .hero-products {
    gap: 12px 18px;
    padding: 18px;
  }
  .hero-products figcaption {
    font-size: 12px;
  }
  .hero-products figcaption span {
    font-size: 11px;
  }
  .manufacturer {
    flex-direction: column;
    gap: 6px;
    font-size: 10px;
  }
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > a {
    display: inline-block;
    margin-bottom: 25px;
  }
  .series-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .series-grid h3 {
    font-size: 26px;
  }
  .series-grid p {
    font-size: 12px;
  }
  .product-grid {
    gap: 12px;
  }
  .product {
    padding: 15px;
  }
  .product-image {
    height: 110px;
    margin-bottom: 15px;
  }
  .oe {
    font-size: 14px;
  }
  .product h3 {
    font-size: 14px;
  }
  .product-cta {
    font-size: 12px;
  }
  .product .muted {
    font-size: 12px;
  }
  .other {
    margin-top: 30px;
  }
  .other dl {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .other dl > div {
    font-size: 12px;
    gap: 10px;
  }
  .other dt {
    min-width: 121px;
  }
  .categories {
    font-size: 12px;
  }
  .intro {
    font-size: 14px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .stats dt {
    font-size: 38px;
  }
  .stats dd {
    font-size: 12px;
  }
  .capabilities {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .capabilities h3 {
    font-size: 15px;
  }
  .quality {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
    font-size: 14px;
  }
  .rfq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rfq-aside h2 {
    font-size: 32px;
  }
  .rfq-aside > p {
    font-size: 14px;
  }
  .direct-contact {
    margin-top: 22px;
    padding-top: 15px;
  }
  .form-grid {
    gap: 17px;
    grid-template-columns: 1fr;
  }
  form > .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-grid p {
    margin: 12px 0;
  }
  .disclaimer {
    font-size: 10px;
  }
  .policy h1 {
    font-size: 32px;
  }
  .policy p {
    font-size: 15px;
  }
  #consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .upload {
    padding: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.upload {
  position: relative;
  cursor: pointer;
}
.upload .upload-button {
  display: table;
  background: white;
  border: 1px solid #a6b1b9;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  margin: 12px 0;
}
.upload .file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
}
.upload:focus-within {
  outline: 3px solid #2e70ae;
  outline-offset: 3px;
}
#file-selection {
  display: block;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.footer-grid > div > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
