:root {
  --yellow: #ffc400;
  --white: #f6f6f6;
  --muted: #a7a7aa;
  --line: rgba(255,255,255,.16);
  --panel: rgba(8,9,10,.82);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: #020304;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 48%, rgba(255,255,255,.08), transparent 31%),
    linear-gradient(90deg, #010202 0%, #030405 44%, #090a0b 72%, #020304 100%);
}

.industrial-grid,
.steel-panels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

.industrial-grid {
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 35%, black 67%, black);
}

.steel-panels {
  left: 51%;
  background:
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(255,255,255,.025) 86px 89px),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 52%);
  opacity: .62;
  clip-path: polygon(0 0,100% 0,100% 78%,0 62%);
}

.steel-panels::before,
.steel-panels::after {
  content: "";
  position: absolute;
  top: 7%;
  height: 4px;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  filter: blur(1px);
  transform: rotate(18deg);
}
.steel-panels::after { top: 14%; left: 35%; width: 36%; }

.brand-watermark {
  position: absolute;
  right: 7.7%;
  top: 18%;
  z-index: -1;
  font: 800 190px/1 "Barlow Condensed", sans-serif;
  color: rgba(255,255,255,.085);
  transform: scaleX(.78);
}

.line-art {
  position: absolute;
  inset: 0 0 0 auto;
  width: 25%;
  z-index: 0;
  opacity: .8;
  pointer-events: none;
}
.line-art span {
  position: absolute;
  right: 1%;
  width: 430px;
  height: 1px;
  background: rgba(255,255,255,.42);
  transform: rotate(-57deg);
  transform-origin: right center;
}
.line-art span:nth-child(1){top:22%}
.line-art span:nth-child(2){top:36%}
.line-art span:nth-child(3){top:56%; background:var(--yellow)}
.line-art span:nth-child(4){top:76%}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 5vw 0;
}
.logo { width: 275px; max-width: 40vw; height: auto; object-fit: contain; }
.top-note {
  margin-top: 17px;
  margin-right: 1.3vw;
  font-size: 15px;
}
.top-note i {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 17px;
  background: var(--yellow);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(570px, .9fr) minmax(610px, 1.1fr);
  min-height: 690px;
  padding: 55px 4.7vw 105px;
}

.content-column { position: relative; z-index: 4; }
.headline-wrap h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(76px, 7vw, 112px);
  line-height: .91;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0,0,0,.45);
}
.headline-wrap h1 span,
.headline-wrap h1 strong { display: block; }
.headline-wrap h1 span { font-weight: 700; }
.headline-wrap h1 strong {
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 800;
}
.yellow-rule {
  width: 109px;
  height: 3px;
  margin: 29px 0 26px;
  background: var(--yellow);
}
.headline-wrap p {
  margin: 0;
  font-size: 21px;
  line-height: 1.75;
  color: #ececec;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(124px, 1fr));
  gap: 15px;
  width: min(100%, 620px);
  margin-top: 34px;
}
.benefit-card {
  min-height: 136px;
  padding: 17px 10px 13px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(10,11,12,.72), rgba(3,4,5,.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 12px 28px rgba(0,0,0,.18);
}
.benefit-card svg {
  width: 49px;
  height: 49px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h2 {
  margin: 8px 0 0;
  font: 600 15px/1.35 "Barlow Condensed", sans-serif;
}

.contact-block { margin-top: 35px; }
.contact-block h2 {
  margin: 0 0 18px;
  color: var(--yellow);
  font: 700 16px/1 "Barlow Condensed", sans-serif;
}
.contact-block a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  margin: 0 0 14px;
  color: #f3f3f3;
  text-decoration: none;
  font-size: 14px;
}
.contact-block a:hover span { color: var(--yellow); }
.contact-block svg {
  width: 20px;
  height: 20px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-column {
  position: relative;
  min-width: 0;
}
.product-glow {
  position: absolute;
  left: 2%;
  right: -8%;
  bottom: 5%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.13), rgba(255,255,255,.025) 47%, transparent 72%);
  filter: blur(18px);
}
.eps-stack {
  position: absolute;
  z-index: 2;
  width: min(860px, 67vw);
  right: -2.7vw;
  bottom: -25px;
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.66));
}

.countdown-panel {
  position: absolute;
  z-index: 8;
  left: 30%;
  bottom: 66px;
  display: grid;
  grid-template-columns: 215px repeat(4, 115px);
  align-items: center;
  min-height: 112px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(12,13,14,.94), rgba(5,6,7,.94));
  box-shadow: 0 18px 45px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
}
.countdown-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 25px;
}
.clock-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}
.clock-icon svg { width: 21px; stroke: var(--yellow); fill:none; stroke-width:1.7; }
.countdown-intro p { margin: 0; font: 500 16px/1.4 "Barlow Condensed", sans-serif; }
.countdown-unit {
  position: relative;
  display: flex;
  min-height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.countdown-unit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.countdown-unit strong { font: 700 43px/.9 "Barlow Condensed", sans-serif; }
.countdown-unit span { margin-top: 11px; color: var(--yellow); font: 700 12px/1 "Barlow Condensed", sans-serif; }

footer {
  position: absolute;
  z-index: 5;
  left: 4.8vw;
  bottom: 66px;
  color: #8f9094;
  font-size: 11px;
}

@media (max-width: 1250px) {
  .hero { grid-template-columns: minmax(520px, .95fr) 1.05fr; }
  .eps-stack { right: -14vw; width: 760px; }
  .countdown-panel { left: 35%; grid-template-columns: 190px repeat(4, 95px); }
}

@media (max-width: 980px) {
  .page-shell { min-height: auto; }
  .topbar { padding: 28px 24px 0; }
  .top-note { display: none; }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 46px 24px 32px;
  }
  .headline-wrap h1 { font-size: clamp(64px, 16vw, 100px); }
  .benefits { width: 100%; }
  .visual-column { height: 430px; margin-top: -15px; }
  .eps-stack { width: min(790px, 110vw); max-width: none; right: -15vw; bottom: -25px; }
  .countdown-panel {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0 24px 28px;
    grid-template-columns: 1.7fr repeat(4, 1fr);
  }
  footer { position: relative; left: auto; bottom: auto; padding: 0 24px 28px; }
}

@media (max-width: 640px) {
  .logo { width: 230px; max-width: 75vw; }
  .hero { padding-top: 42px; }
  .headline-wrap h1 { font-size: clamp(58px, 18vw, 86px); line-height: .93; }
  .headline-wrap h1 strong { margin-top: 7px; }
  .headline-wrap p { font-size: 17px; line-height: 1.65; }
  .yellow-rule { margin: 22px 0 18px; }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .benefit-card { min-height: 125px; }
  .contact-block { margin-top: 29px; }
  .visual-column { height: 300px; margin-top: 7px; }
  .eps-stack { width: 158vw; right: -39vw; bottom: -45px; }
  .brand-watermark { top: 50%; right: 0; font-size: 130px; }
  .line-art { width: 55%; opacity: .45; }
  .countdown-panel {
    grid-template-columns: repeat(4, 1fr);
    margin: 0 16px 24px;
    min-height: 170px;
    padding: 16px 8px 8px;
  }
  .countdown-intro {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 0 10px 14px;
  }
  .countdown-unit { min-height: 65px; }
  .countdown-unit:nth-child(2)::before { display: none; }
  .countdown-unit strong { font-size: 36px; }
  footer { padding: 0 18px 25px; text-align: center; }
}

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

/* Precision pass against the supplied reference */
@media (min-width: 981px) {
  .topbar {
    padding: 61px 4.8vw 0;
  }

  .logo {
    width: 255px;
    max-width: none;
  }

  .top-note {
    margin-top: 7px;
    margin-right: .1vw;
    font-size: 15px;
  }

  .top-note i {
    width: 43px;
    margin-top: 17px;
  }

  .hero {
    grid-template-columns: 596px minmax(0, 1fr);
    min-height: 748px;
    padding: 55px 4.8vw 106px;
  }

  .headline-wrap h1 {
    font-size: 108px;
    line-height: .94;
    letter-spacing: -1.8px;
  }

  .headline-wrap h1 strong {
    margin-top: 11px;
  }

  .yellow-rule {
    width: 109px;
    margin: 29px 0 25px;
  }

  .headline-wrap p {
    font-size: 20px;
    line-height: 1.78;
  }

  .benefits {
    width: 596px;
    grid-template-columns: repeat(4, 136px);
    gap: 16px;
    margin-top: 34px;
  }

  .benefit-card {
    min-height: 136px;
    padding: 17px 8px 13px;
    border-radius: 7px;
  }

  .benefit-card svg {
    width: 48px;
    height: 48px;
  }

  .benefit-card h2 {
    margin-top: 8px;
    font-size: 15px;
  }

  .contact-block {
    margin-top: 35px;
  }

  .contact-block h2 {
    margin-bottom: 18px;
  }

  .contact-block a {
    gap: 14px;
    margin-bottom: 14px;
    font-size: 14px;
  }

  .eps-stack {
    width: 825px;
    max-width: none;
    right: 1.5vw;
    bottom: -18px;
  }

  .product-glow {
    left: -2%;
    right: 0;
    bottom: 3%;
  }

  .countdown-panel {
    left: 30.08%;
    bottom: 66px;
    grid-template-columns: 215px repeat(4, 122px);
    min-height: 112px;
  }

  footer {
    left: 4.8vw;
    bottom: 66px;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .hero {
    grid-template-columns: 535px minmax(0, 1fr);
  }

  .headline-wrap h1 {
    font-size: 96px;
  }

  .benefits {
    width: 535px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .eps-stack {
    width: 735px;
    right: -1.5vw;
  }

  .countdown-panel {
    left: 34%;
    grid-template-columns: 190px repeat(4, 105px);
  }
}

@media (max-width: 980px) {
  .topbar {
    padding: 28px 24px 0;
  }

  .logo {
    width: 244px;
  }

  .hero {
    padding: 42px 24px 30px;
  }

  .headline-wrap h1 {
    font-size: clamp(72px, 14vw, 98px);
    line-height: .94;
    letter-spacing: -1.4px;
  }

  .headline-wrap h1 strong {
    margin-top: 9px;
  }

  .benefits {
    max-width: 596px;
  }

  .visual-column {
    height: 410px;
    margin-top: -4px;
  }

  .eps-stack {
    width: min(825px, 105vw);
    right: -9vw;
    bottom: -18px;
  }

  .countdown-panel {
    max-width: 706px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    overflow: hidden;
  }

  .topbar {
    padding: 24px 18px 0;
  }

  .logo {
    width: 218px;
    max-width: 78vw;
  }

  .hero {
    padding: 34px 18px 24px;
  }

  .headline-wrap h1 {
    font-size: clamp(56px, 17.5vw, 78px);
    line-height: .95;
    letter-spacing: -1px;
  }

  .headline-wrap h1 strong {
    margin-top: 6px;
  }

  .yellow-rule {
    width: 82px;
    height: 3px;
    margin: 22px 0 18px;
  }

  .headline-wrap p {
    font-size: 16px;
    line-height: 1.65;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 27px;
  }

  .benefit-card {
    min-height: 118px;
    padding: 14px 7px 11px;
  }

  .benefit-card svg {
    width: 43px;
    height: 43px;
  }

  .benefit-card h2 {
    margin-top: 6px;
    font-size: 14px;
  }

  .contact-block {
    margin-top: 28px;
  }

  .contact-block h2 {
    margin-bottom: 16px;
  }

  .contact-block a {
    gap: 12px;
    margin-bottom: 13px;
    font-size: 13px;
  }

  .contact-block svg {
    width: 19px;
    height: 19px;
  }

  .visual-column {
    height: 255px;
    margin-top: 16px;
  }

  .eps-stack {
    width: 148vw;
    right: -31vw;
    bottom: -24px;
  }

  .countdown-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 154px;
    margin: 0 12px 24px;
    padding: 13px 5px 7px;
  }

  .countdown-intro {
    padding: 0 8px 11px;
    gap: 12px;
  }

  .clock-icon {
    width: 34px;
    height: 34px;
  }

  .countdown-intro p {
    font-size: 15px;
    line-height: 1.3;
  }

  .countdown-unit {
    min-height: 61px;
  }

  .countdown-unit strong {
    font-size: 33px;
  }

  .countdown-unit span {
    margin-top: 9px;
    font-size: 10px;
  }

  footer {
    padding: 0 16px 24px;
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .headline-wrap h1 {
    font-size: 55px;
  }

  .benefit-card h2 {
    font-size: 13px;
  }

  .visual-column {
    height: 232px;
  }

  .eps-stack {
    width: 154vw;
    right: -35vw;
  }

  .countdown-unit strong {
    font-size: 30px;
  }
}
