@font-face {
  font-family: "MadeforText";
  src: url("../fonts/madefor-text.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MadeforDisplay";
  src: url("../fonts/madefor-display.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WixHelvetica";
  src: url("../fonts/helvetica-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WixHelvetica";
  src: url("../fonts/helvetica-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff9100;
  --black: #000;
  --ink: #101010;
  --charcoal: #202020;
  --line: #111;
  --soft-line: #e8e8e8;
  --page-width: 996px;
  --mobile-gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  color: var(--black);
  font-family: "MadeforText", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #fff;
  color: var(--black);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(.83, 0, .17, 1);
}

body.page-ready {
  opacity: 1;
}

body.is-leaving {
  opacity: 0;
  transform: translateX(-18px);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  padding: 8px 10px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  width: 100%;
  height: 90px;
  background: #fff;
  position: relative;
  z-index: 20;
}

.header-inner {
  width: min(var(--page-width), calc(100vw - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-block;
  min-width: 234px;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 33px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand .slash {
  color: var(--orange);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 54px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 35px;
  font-family: "MadeforText", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--orange);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 0;
  height: 2px;
  background: var(--orange);
}

.page {
  min-height: calc(100vh - 90px);
}

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

.home-page .site-header {
  box-shadow: none;
}

.home-hero {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 560px;
  overflow: hidden;
  background: #121212 url("../img/hero.jpg") center center / cover no-repeat;
}

.home-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-heading {
  margin: 0;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.company-main {
  padding-top: 39px;
}

.company-main .page-heading {
  max-width: 1000px;
}

.lead-copy {
  max-width: 960px;
  margin: 32px 0 38px;
  font-size: 20px;
  line-height: 1.42;
}

.feature-stack {
  position: relative;
  margin-top: 40px;
}

.orange-panel {
  position: relative;
  min-height: 358px;
  padding: 29px 56px 43px;
  border-radius: 50px 50px 0 0;
  background: var(--orange);
  overflow: visible;
}

.orange-panel p {
  position: relative;
  z-index: 2;
  width: 520px;
  max-width: 52%;
  margin: 0 0 30px;
  font-size: 19px;
  line-height: 1.48;
}

.orange-panel img {
  position: absolute;
  z-index: 1;
  right: -199px;
  top: -65px;
  width: 585px;
  max-width: 58%;
  pointer-events: none;
}

.dark-panel {
  padding: 48px 40px 50px;
  border-radius: 0 0 48px 48px;
  background: var(--charcoal);
  color: #fff;
}

.dark-panel h2 {
  max-width: 880px;
  margin: 0 0 16px;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 800;
}

.dark-panel p {
  max-width: 920px;
  margin: 0;
  font-size: 19px;
  line-height: 1.48;
}

.services-main {
  padding-top: 43px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 63px;
}

.service-card {
  min-height: 281px;
  padding: 28px 32px 28px;
  border: 1px solid var(--soft-line);
  border-radius: 49px;
  background: #fff;
}

.service-card img {
  width: 43px;
  height: 43px;
  margin-bottom: 22px;
  object-fit: contain;
}

.service-card h2 {
  margin: 0 0 10px;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.48;
}

.products-main {
  padding-top: 42px;
}

.products-main .page-heading {
  max-width: 900px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 58px;
  row-gap: 45px;
  margin-top: 72px;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 240px;
  height: 164px;
  margin: 0 auto 2px;
  object-fit: contain;
}

.product-card h2 {
  margin: 0;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 800;
}

.contact-main {
  padding-top: 62px;
}

.contact-main .page-heading {
  max-width: 980px;
}

.contact-form {
  width: min(953px, 100%);
  margin-top: 83px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label {
  font-size: 15px;
  line-height: 1.25;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #777;
  border-radius: 0;
  background: #fff;
  color: #000;
  font: 16px/1.3 "MadeforText", "WixHelvetica", Arial, Helvetica, sans-serif;
}

.field input {
  height: 42px;
  padding: 7px 10px;
}

.field textarea {
  min-height: 93px;
  padding: 9px 10px;
  resize: vertical;
}

.form-submit {
  grid-column: 1 / -1;
  height: 42px;
  margin-top: 0;
  border: 0;
  background: var(--orange);
  color: #fff;
  font: 16px/42px "MadeforText", "WixHelvetica", Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: #e98500;
}

.form-note {
  min-height: 22px;
  margin-top: 12px;
  color: #28630a;
  font-size: 14px;
}

.legal-main {
  padding-top: 103px;
}

.legal-content {
  width: min(996px, calc(100vw - 48px));
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.55;
}

.legal-content h1 {
  margin: 0 0 32px;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.legal-content h2 {
  margin: 20px 0 2px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  margin: 0 0 22px 30px;
  padding: 0;
}

.legal-content li {
  margin: 0;
}

.legal-content a {
  text-decoration: underline;
}

.site-footer {
  padding: 110px 0 51px;
  background: #fff;
}

.footer-inner {
  width: min(800px, calc(100vw - 72px));
  margin: 0 auto;
}

.footer-cta {
  max-width: 560px;
  margin: 0 0 42px;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 39px;
  font-weight: 800;
}

.footer-cta a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-rule {
  height: 1px;
  margin-bottom: 42px;
  background: var(--line);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links a {
  width: max-content;
  font-family: "MadeforText", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange);
}

.credit {
  margin-top: 30px;
  color: #b9b9b9;
  font-size: 11px;
  line-height: 1.2;
}

.credit a {
  color: #0092ff;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand {
  justify-self: end;
  margin-bottom: 49px;
  font-family: "MadeforDisplay", "WixHelvetica", Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 33px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.footer-brand .slash {
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.22, 1, .36, 1);
}

.reveal.in-view,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

.success-main {
  padding: 110px 0;
}

.success-main p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

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

@media (max-width: 900px) {
  .site-header {
    height: 92px;
  }

  .header-inner {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    padding-top: 13px;
  }

  .brand {
    min-width: 0;
    font-size: 25px;
    line-height: 33px;
  }

  .site-nav {
    margin: 0;
    gap: 25px;
  }

  .site-nav a {
    height: 30px;
    font-size: 12px;
    line-height: 15px;
  }

  .site-nav a.active::after,
  .site-nav a:hover::after {
    left: -9px;
    right: -9px;
    bottom: 1px;
  }

  .container {
    width: calc(100vw - 48px);
  }

  .page {
    min-height: calc(100vh - 92px);
  }

  .home-hero {
    height: calc(100vh - 92px);
    min-height: 610px;
  }

  .home-hero video {
    object-position: center center;
  }

  .page-heading {
    font-size: 28px;
    line-height: 1.18;
  }

  .company-main {
    padding-top: 20px;
  }

  .lead-copy {
    margin: 22px 7px 20px;
    font-size: 18px;
    line-height: 1.48;
  }

  .feature-stack {
    width: calc(100vw - 32px);
    margin-left: -8px;
    margin-top: 20px;
  }

  .orange-panel {
    min-height: 366px;
    padding: 26px 14px 28px;
    border-radius: 16px 16px 0 0;
  }

  .orange-panel p {
    width: auto;
    max-width: none;
    margin: 0 0 29px;
    font-size: 18px;
    line-height: 1.43;
  }

  .orange-panel img {
    display: none;
  }

  .dark-panel {
    padding: 28px 13px 20px;
    border-radius: 0 0 16px 16px;
  }

  .dark-panel h2 {
    max-width: 300px;
    font-size: 30px;
    line-height: 1.18;
  }

  .dark-panel p {
    font-size: 18px;
    line-height: 1.52;
  }

  .services-main {
    padding-top: 36px;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 55px;
    margin-top: 48px;
  }

  .service-card {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .service-card img {
    width: 43px;
    height: 43px;
    margin: 0 0 18px 18px;
  }

  .service-card h2 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .products-main {
    padding-top: 19px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 11px;
    row-gap: 41px;
    margin-top: 49px;
  }

  .product-card img {
    width: 144px;
    height: 98px;
  }

  .product-card h2 {
    font-size: 17px;
    line-height: 1.2;
  }

  .product-card.center-mobile {
    grid-column: 1 / -1;
    width: 164px;
    margin: 0 auto;
  }

  .contact-main {
    padding-top: 19px;
  }

  .contact-form {
    margin-top: 39px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 20px;
  }

  .field label {
    font-size: 13px;
  }

  .field input {
    height: 38px;
  }

  .field textarea {
    min-height: 83px;
  }

  .form-submit {
    height: 38px;
    font-size: 15px;
    line-height: 38px;
  }

  .legal-main {
    padding-top: 15px;
  }

  .legal-content {
    width: calc(100vw - 34px);
    font-size: 17px;
    line-height: 1.24;
  }

  .legal-content h1 {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .legal-content h2 {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.24;
  }

  .legal-content ul {
    margin-left: 30px;
    margin-bottom: 17px;
  }

  .site-footer {
    padding: 72px 0 28px;
  }

  .footer-inner {
    width: calc(100vw - 72px);
  }

  .footer-cta {
    max-width: 288px;
    margin-bottom: 31px;
    font-size: 30px;
    line-height: 39px;
  }

  .footer-rule {
    margin-bottom: 34px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-links {
    gap: 11px;
  }

  .footer-links a {
    font-size: 12px;
    line-height: 1.1;
  }

  .credit {
    margin-top: 23px;
    font-size: 10px;
  }

  .footer-brand {
    float: right;
    margin: -42px 0 0;
    font-size: 20px;
    line-height: 26px;
    text-decoration: none;
  }
}

@media (max-width: 380px) {
  .site-nav {
    gap: 21px;
  }

  .container {
    width: calc(100vw - 20px);
  }

  .contact-form .container,
  .contact-main.container {
    width: calc(100vw - 40px);
  }

  .form-grid {
    gap: 22px 20px;
  }

  .products-grid {
    column-gap: 10px;
  }
}
