:root {
  --page-bg: #17244f;
  --text: #ffffff;
  --page-padding-x: 85px;
  --page-padding-y: 85px;
}

* {
  box-sizing: border-box;
}
img{display: block;width: auto;height: auto;max-width: 100%;max-height: 100%;}

html {
  color-scheme: dark;
  background: var(--page-bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Google Sans Flex", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  overflow: hidden;
  padding: var(--page-padding-y) var(--page-padding-x) 85px;
  background: var(--page-bg);
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.coming-soon::before {
  background:
    linear-gradient(
      90deg,
      var(--page-bg) 0%,
      var(--page-bg) 17%,
      rgba(23, 36, 79, 0.93) 7%,
      rgba(23, 36, 79, 0.54) 18%,
      rgba(23, 36, 79, 0.08) 26%,
      transparent 100%
    );
}

.coming-soon::after {
  background:
    linear-gradient(
      0deg,
      var(--page-bg) 0%,
      rgba(23, 36, 79, 0.98) 9%,
      rgba(23, 36, 79, 0.7) 20%,
      rgba(23, 36, 79, 0) 42%
    );
}

.machine-visual {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 73%;
  min-width: 1700px;
  height: 95%;
  overflow: hidden;
}

.machine-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(1.02) contrast(1.02);
}
.ban-mb-img{display: none;}

.site-header {
  position: relative;
  z-index: 1;
}

.brand {
  width: 207px;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 69%;
  max-width: 992px;
  margin-bottom: 66px;
  text-transform: uppercase;
}

.eyebrow,
.subheading,
.hero-copy .page-title {
  margin: 0;
}

.eyebrow {
  margin-bottom: 7px;
  font-size: 32px;
  font-weight: 390;
  line-height: 1;
}

.subheading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-copy .page-title {
  margin-top: 8px;
  font-size: 143px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.contact-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 45px;
  min-width: 0;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  white-space: nowrap;
  transition: all 0.4s ease-in-out;
}

.contact-item:hover {
  color: #d2d2d2;
}

.contact-item img {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.certification {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  gap: 18px;
  text-align: right;
  text-transform: uppercase;
}

.certification span {
  color: var(--text);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.certification strong {
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.certification i {
  margin: 0 2px;
  font-style: normal;
  font-weight: 600;
}


@media (min-width: 1921px) {
.machine-visual {max-width: 1920px;min-width: max-content;}
.coming-soon::before {
  background:
    linear-gradient(
      90deg,
      var(--page-bg) 0%,
      var(--page-bg) 24%,
      rgba(23, 36, 79, 0.93) 34%,
      rgba(23, 36, 79, 0.54) 50%,
      rgba(23, 36, 79, 0.08) 72%,
      transparent 100%
    );
}
}
@media (max-width: 1700px) {
  .machine-visual{min-width: 1400px;}
}
@media (max-width: 1500px) {
  :root {
    --page-padding-x: 64px;
    --page-padding-y: 52px;
  }
  .machine-visual{min-width: 1200px;height: 70%;}
  

  .brand {
    width: 190px;
  }

  .hero-copy {
    margin-bottom: 55px;
  }

  .eyebrow {
    font-size: 27px;
  }

  .subheading {
    font-size: 42px;
  }

  .hero-copy .page-title {
    font-size: 112px;
  }

  .contact-list {
    gap: 14px 36px;
  }

  .contact-item {
    font-size: 15px;
  }

  .certification span {
    font-size: 14px;
  }

  .certification strong {
    font-size: 16px;
  }
}

@media (max-width: 1180px) {
  :root {
    --page-padding-x: 44px;
    --page-padding-y: 42px;
  }

  .machine-visual {
    width: 73%;
    height: 65%;
    min-width: 900px;
  }

  .hero-copy {
    width: 72%;
    margin-bottom: 50px;
  }

  .eyebrow {
    font-size: 24px;
  }

  .subheading {
    font-size: 36px;
  }

  .hero-copy .page-title {
    font-size: 94px;
  }

  .site-footer {
    align-items: flex-start;
  }

  .contact-list {
    max-width: 70%;
    gap: 12px 24px;
  }

  .contact-item {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-padding-x: 32px;
    --page-padding-y: 32px;
  }

  .coming-soon {
    padding-bottom: 28px;
  }


  .coming-soon::before {
    background:
      linear-gradient(
        180deg,
        rgba(23, 36, 79, 0.06) 0%,
        rgba(23, 36, 79, 0.2) 31%,
        rgba(23, 36, 79, 0.88) 55%,
        var(--page-bg) 72%,
        var(--page-bg) 100%
      );
  }

  .coming-soon::after {
    display: none;
  }

  .machine-visual {
    width: 100%;
    max-width: none;
    height: 62%;
    opacity: 0.95;
  }

  .machine-visual img {
    object-position: 56% center;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 42px;
    padding-top: 420px;
  }

  .eyebrow {
    font-size: 22px;
  }

  .subheading {
    font-size: 34px;
  }

  .hero-copy .page-title {
    margin-top: 14px;
    font-size: 78px;
    line-height: 0.9;
    white-space: normal;
  }

  .site-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .contact-list {
    max-width: none;
  }

  .certification {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 767px) {
  :root {
    --page-padding-x: 20px;
    --page-padding-y: 22px;
  }


  .machine-visual {
    height: 45%;

    min-width: 400px;
  }

  .machine-visual img {
    object-position: top center;
  }

  .hero-copy {
    padding-top: 100px;
    margin-bottom: 32px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .subheading {
    font-size: 30px;
  }

  .hero-copy .page-title {
    margin-top: 12px;
    font-size: 62px;
    line-height: 0.9;
  }

  .contact-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .contact-item {
    max-width: 100%;
    font-size: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .certification {
    gap: 6px;
  }

  .certification span {
    font-size: 13px;
  }

  .certification strong {
    font-size: 15px;
  }
}

@media (max-width: 568px) {
  .machine-visual {
    height: 25%;
    width: 100%;
    display: none;
  }
  .brand{width: 120px;margin: auto;}
      .machine-visual img {
        object-position: top right;
        object-fit: contain;
        
    }

  .hero-copy {
    padding-top: 25px;
    margin-bottom: 25px;
  }
  .coming-soon{background: #131f4d;}

  .eyebrow {
    font-size: 14px;
  }

  .subheading {
    font-size: 22px;
  }
  .site-footer{gap: 12px;}
  .coming-soon{padding-bottom: 20px;}

  .hero-copy .page-title {
    font-size: 44px;

  }
  .coming-soon{min-height: auto;}
  .ban-mb-img{display: block;margin: 0 -30px;   z-index: -2;  position: relative;padding-bottom: 25px;}
}

@media (max-width: 350px) {
  .brand{width: 100px;}
  .hero-copy .page-title{font-size: 36px;}
}

@media (max-height: 650px) and (min-width: 700px) {
  .coming-soon {
    min-height: 650px;
  }

  .brand {
    width: 152px;
  }

  .hero-copy {
    margin-bottom: 32px;
  }

  .site-footer {
    gap: 16px;
  }
}

@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;
  }
}
