@font-face {
  font-family: "ABCDiatypeMono";
  src: url("/ABCDiatypeMonoVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  background: #000;
  color: #f5f5f5;
  overscroll-behavior: none;
  overflow: hidden;
}

body {
  font-family: "ABCDiatypeMono", monospace;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  background-color: #000;
  touch-action: none;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.footer-inner {
  width: fit-content;
  margin: 0 auto;
}

.location-time {
  display: none;
}

.coming-soon {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "ABCDiatypeMono", monospace;
  font-size: clamp(9px, 0.85vw, 13px);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
}

.badge-line {
  flex: 1;
  height: 1px;
  background: #333;
}

.logo-badge img {
  width: 80px;
  flex-shrink: 0;
}

.logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(66vw, 900px);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  visibility: hidden;
}

.site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 24px;
  font-family: "ABCDiatypeMono", monospace;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(60px, 14vw, 220px);
  align-items: start;
  justify-content: center;
  width: fit-content;
  color: #f5f5f5;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

.footer-col {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.footer-col h2,
.footer-col p {
  margin: 0;
  font: inherit;
}

.footer-col a {
  color: #f5f5f5;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.footer-col a:hover {
  color: #9f9f9f;
}

@media (max-width: 760px) {
  .coming-soon {
    top: 6%;
    font-size: 9px;
    letter-spacing: 0.45em;
  }

  .logo {
    top: 46%;
    width: 92vw;
  }

  .site-footer {
    padding: 32px 20px 20px;
    bottom: 6%;
  }

  .footer-inner {
    width: 100%;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 80px;
    width: fit-content;
    font-size: 11px;
  }

  .footer-col:first-child {
    display: none;
  }

  .location-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: calc(8% + 22px);
    left: 50%;
    transform: translateX(-50%);
    font-family: "ABCDiatypeMono", monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    white-space: nowrap;
    gap: 2px;
  }

  .logo-badge img {
    width: 70px;
  }

  .logo-badge {
    margin-bottom: 16px;
  }

  .badge-line {
    display: none;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-badge {
    justify-content: center;
  }
}
