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

:root {
  color-scheme: dark;
  font-family: "Manrope", sans-serif;
  background: #101311;
  color: #f2f3ed;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-weight: 400;

  --acid: #c4f36a;
  --muted: #878d85;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(ellipse at 77% 48%, rgb(196 243 106 / 6%), transparent 34%),
    #101311;
}

body::before {
  position: fixed;
  z-index: -1;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='.18' filter='url(%23n)'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

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

.page-shell {
  display: flex;
  flex-direction: column;
  width: min(100% - 112px, 1280px);
  min-height: 100svh;
  margin-inline: auto;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.13em;
}

.topbar {
  min-height: 94px;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.wordmark-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font: 500 14px/1 var(--mono);
  letter-spacing: 0;
}

.topbar-note,
.footer {
  color: var(--muted);
}

.hero {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 32px;
  padding-block: 60px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 7px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 27px;
  color: var(--acid);
  font: 500 10px/1.5 var(--mono);
  letter-spacing: 0.1em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px rgb(196 243 106 / 70%);
}

h1 {
  margin: 0;
  font-size: clamp(58px, 8.2vw, 112px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.085em;
}

h1 span {
  color: var(--acid);
}

.intro {
  max-width: 385px;
  margin: 28px 0 0;
  color: #a6aba3;
  font-size: 14px;
  line-height: 1.8;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: #d7dbd1;
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.coming-soon-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 19%);
  border-radius: 50%;
  color: var(--acid);
  font: 16px/1 sans-serif;
}

.hero-art {
  position: relative;
  display: grid;
  width: min(100%, 510px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(196 243 106 / 8%), rgb(255 255 255 / 1%) 57%, transparent 68%);
}

.art-orbit {
  position: absolute;
  border: 1px solid rgb(196 243 106 / 15%);
  border-radius: 50%;
}

.orbit-outer {
  width: 76%;
  height: 76%;
}

.orbit-inner {
  width: 56%;
  height: 56%;
  border-color: rgb(255 255 255 / 8%);
}

.art-number {
  position: absolute;
  top: 15%;
  left: 17%;
  color: rgb(255 255 255 / 21%);
  font: 11px/1 var(--mono);
  letter-spacing: 0.1em;
}

.barbell {
  position: relative;
  display: flex;
  width: 67%;
  height: 106px;
  align-items: center;
  justify-content: center;
  transform: rotate(-39deg);
}

.bar {
  width: 100%;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, #768069, #f0f5e8 48%, #9ea792);
  box-shadow: 0 0 24px rgb(196 243 106 / 19%);
}

.weight {
  position: absolute;
  z-index: 1;
  width: 27px;
  height: 75px;
  border: 1px solid rgb(196 243 106 / 66%);
  border-radius: 5px;
  background: linear-gradient(110deg, #8aa751, #c4f36a 48%, #71913f);
  box-shadow: 0 0 26px rgb(196 243 106 / 16%);
}

.weight::before,
.weight::after {
  position: absolute;
  width: 5px;
  height: 48px;
  border: 1px solid rgb(196 243 106 / 48%);
  border-radius: 3px;
  background: #283322;
  content: "";
  top: 12px;
}

.weight::before {
  left: -8px;
}

.weight::after {
  right: -8px;
}

.weight-left {
  left: 0;
}

.weight-right {
  right: 0;
}

.art-caption {
  position: absolute;
  right: 14%;
  bottom: 17%;
  left: 14%;
  display: flex;
  justify-content: space-between;
  color: #7f877b;
  font: 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.art-cross {
  position: absolute;
  width: 8px;
  height: 8px;
}

.art-cross::before,
.art-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--acid);
  content: "";
  transform: translate(-50%, -50%);
}

.art-cross::before {
  width: 8px;
  height: 1px;
}

.art-cross::after {
  width: 1px;
  height: 8px;
}

.cross-one {
  top: 26%;
  right: 22%;
}

.cross-two {
  bottom: 28%;
  left: 19%;
  transform: scale(0.7);
}

.footer {
  min-height: 68px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  font-size: 9px;
}

.footer-arrow {
  margin-left: 5px;
  color: var(--acid);
  font: 14px/1 sans-serif;
}

@media (min-width: 1500px) {
  .page-shell {
    width: min(100% - 160px, 1380px);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 40px);
  }

  .topbar {
    min-height: 72px;
  }

  .topbar-note {
    font-size: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 58px 44px;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(62px, 14vw, 100px);
  }

  .intro {
    margin-top: 22px;
    font-size: 13px;
  }

  .coming-soon {
    margin-top: 26px;
  }

  .hero-art {
    width: min(100%, 390px);
    justify-self: center;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .hero-art {
    animation: arrive 800ms ease-out both;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: scale(0.96) rotate(-3deg);
    }

    to {
      opacity: 1;
      transform: scale(1) rotate(0);
    }
  }
}
