@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black: #050505;
  --white: #f4f4f4;
  --gray: #777;
  --line: #242424;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.035) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255,255,255,.025) 50%, transparent 50.1%);
  background-size: 120px 120px;
  opacity: .35;
}

.noise {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: noise .18s steps(2) infinite;
}

@keyframes noise {
  0% { transform: translate(0,0); }
  25% { transform: translate(2%,-1%); }
  50% { transform: translate(-1%,2%); }
  75% { transform: translate(1%,1%); }
  100% { transform: translate(-2%,-1%); }
}

.construction {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.topbar,
.footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font: 700 10px/1 "Space Mono", monospace;
  letter-spacing: .16em;
  color: #8b8b8b;
}

.topbar .mark {
  color: var(--white);
  letter-spacing: .08em;
}

.status b {
  color: var(--white);
  font-size: 9px;
  margin-left: 7px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 60px;
}

.eyebrow {
  margin-bottom: 20px;
  font: 700 11px/1 "Space Mono", monospace;
  letter-spacing: .28em;
  color: #8d8d8d;
}

h1 {
  font-size: clamp(58px, 11vw, 150px);
  line-height: .83;
  font-weight: 900;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1px #f4f4f4;
}

.line {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 46px 0 25px;
}

.message {
  color: #9b9b9b;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.65;
  letter-spacing: -.01em;
}

.loader {
  width: min(520px, 100%);
  margin-top: 55px;
}

.loader-track {
  width: 100%;
  height: 2px;
  background: #292929;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--white);
  transition: width .12s linear;
}

.loader-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font: 700 9px/1 "Space Mono", monospace;
  letter-spacing: .16em;
  color: #686868;
}

.footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  min-height: 70px;
}

@media (max-width: 600px) {
  .construction {
    width: calc(100% - 30px);
  }

  .topbar {
    min-height: 65px;
  }

  .hero {
    padding: 50px 0;
  }

  h1 {
    font-size: clamp(48px, 15vw, 82px);
    line-height: .88;
  }

  .line {
    margin: 35px 0 22px;
  }

  .loader {
    margin-top: 42px;
  }

  .footer {
    min-height: 62px;
    font-size: 8px;
    letter-spacing: .1em;
  }

  .footer span:nth-child(2) {
    display: none;
  }
}
