:root {
  --ink: #111315;
  --white: #ffffff;
  --orange: #ef5b19;
  --lime: #d9dd00;
  --line-light: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(17, 19, 21, 0.13);
  --font: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body,
a,
button {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg,
img {
  display: block;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  flex-direction: column;
  background: #151515;
}

.site-media,
.site-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-media {
  z-index: -3;
  object-fit: cover;
  object-position: center 55%;
  animation: media-reveal 1.1s ease-out both;
}

.site-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.94) 0%, rgba(8, 9, 10, 0.79) 38%, rgba(8, 9, 10, 0.28) 72%, rgba(8, 9, 10, 0.5) 100%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.38) 0%, transparent 42%, rgba(8, 9, 10, 0.72) 100%);
}

.site-header,
.site-main,
.contact-strip-inner,
.site-footer {
  width: min(100%, 1600px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 116px;
  padding: 26px 40px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 238px;
  height: auto;
  filter: brightness(0) invert(1);
}

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

.build-status {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.build-status i {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(217, 221, 0, 0.13);
}

.header-phone {
  display: inline-flex;
  min-height: 48px;
  padding: 0 21px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(9, 10, 11, 0.22);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.site-main {
  display: flex;
  flex: 1 1 auto;
  padding: 56px 40px 54px;
  align-items: center;
}

.intro {
  width: 700px;
  max-width: 100%;
  animation: content-reveal 700ms 120ms ease-out both;
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 2px;
  margin-right: 13px;
  background: var(--orange);
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.countdown-panel {
  width: 650px;
  max-width: 100%;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.countdown-heading {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-heading time {
  color: var(--white);
  font-style: normal;
}

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

.countdown-unit {
  display: grid;
  min-height: 102px;
  align-content: center;
  justify-items: start;
}

.countdown-unit + .countdown-unit {
  padding-left: 26px;
  border-left: 1px solid var(--line-light);
}

.countdown-unit strong {
  min-width: 2ch;
  font-size: 56px;
  font-weight: 800;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.countdown-unit:first-child strong {
  color: var(--lime);
}

.countdown-unit span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-progress {
  height: 2px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.countdown-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 600ms ease;
}

.contact-strip {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(680px, 2fr);
  padding: 28px 40px;
  align-items: center;
  gap: 56px;
}

.company-summary span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-summary p {
  max-width: 350px;
  margin: 7px 0 0;
  color: rgba(17, 19, 21, 0.68);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  font-style: normal;
}

.contact-item {
  display: grid;
  min-width: 0;
  padding: 2px 26px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.contact-item + .contact-item {
  border-left: 1px solid var(--line-dark);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item span {
  display: grid;
  min-width: 0;
}

.contact-item small,
.contact-item em {
  color: rgba(17, 19, 21, 0.54);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.contact-item small {
  margin-bottom: 2px;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

a.contact-item {
  transition: color 180ms ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  color: var(--orange);
}

a.contact-item:hover svg,
a.contact-item:focus-visible svg {
  stroke: var(--orange);
}

.site-footer {
  display: flex;
  min-height: 36px;
  padding: 8px 40px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 700;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  max-width: 420px;
  margin: 0;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

@keyframes media-reveal {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes content-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .build-status {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  .contact-strip-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .company-summary p {
    max-width: 680px;
  }

  .contact-item:first-child {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .site-shell {
    overflow: hidden auto;
  }

  .site-media {
    object-position: 60% center;
  }

  .site-shade {
    background: rgba(8, 9, 10, 0.8);
  }

  .site-header {
    min-height: 88px;
    padding: 18px 22px;
  }

  .brand img {
    width: 170px;
  }

  .header-actions {
    gap: 0;
  }

  .header-phone {
    width: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
  }

  .header-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .site-main {
    padding: 64px 22px 58px;
    align-items: flex-start;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .eyebrow span {
    width: 28px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.58;
  }

  .countdown-panel {
    margin-top: 34px;
    padding-top: 18px;
  }

  .countdown-heading {
    font-size: 10px;
  }

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

  .countdown-unit + .countdown-unit {
    padding-left: 14px;
  }

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

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

  .contact-strip-inner {
    padding: 30px 22px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-item,
  .contact-item:first-child {
    padding: 16px 0;
  }

  .contact-item + .contact-item {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .site-footer {
    min-height: 54px;
    padding: 12px 22px;
    flex-wrap: wrap;
    gap: 4px 20px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 150px;
  }

  h1 {
    font-size: 38px;
  }

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

@media (max-height: 820px) and (min-width: 768px) {
  .site-header {
    min-height: 92px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-main {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 54px;
  }

  .lead {
    margin-top: 18px;
  }

  .countdown-panel {
    margin-top: 28px;
  }

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

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

  .contact-strip-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

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