:root {
  color-scheme: dark;
  --ink: #e6e6e6;
  --muted: #a6a6a6;
  --line: rgba(255, 255, 255, .16);
}

* { box-sizing: border-box; }

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

body {
  color: var(--ink);
  background: #050706;
  font-family: Bahnschrift, "DIN Alternate", "Arial Narrow", Arial, sans-serif;
}

.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 4vw, 50px) clamp(22px, 6vw, 92px) 28px;
  isolation: isolate;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 56% center;
}

.shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, .92) 0%, rgba(3, 5, 4, .7) 29%, rgba(3, 5, 4, .16) 67%, rgba(3, 5, 4, .35) 100%),
    linear-gradient(180deg, rgba(3, 5, 4, .44) 0%, transparent 42%, rgba(3, 5, 4, .84) 100%);
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 60%);
}

.hero {
  align-self: center;
  max-width: 880px;
  padding: 70px 0;
}

.coming-soon {
  text-transform: uppercase;
}

h1 {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: .16em;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .86;
  letter-spacing: -.025em;
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .45);
}

.hero-mark {
  color: #fff;
  font-size: .82em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 255, 255, .16);
}

.coming-soon {
  width: max-content;
  margin: 30px 0 0;
  padding: 11px 15px 10px;
  color: #050706;
  background: var(--ink);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: .18em;
  box-shadow: 0 0 28px rgba(255, 255, 255, .14);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

footer p { margin: 0; }

@media (max-width: 680px) {
  .landing { padding: 24px 20px 22px; }

  .hero-image { object-position: 61% center; }

  .shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 4, .84), rgba(3, 5, 4, .26)),
      linear-gradient(180deg, rgba(3, 5, 4, .38), transparent 34%, rgba(3, 5, 4, .9) 100%);
  }

  .hero { align-self: center; padding: 50px 0; }
  h1 { font-size: clamp(46px, 14vw, 68px); }

  footer {
    display: block;
    font-size: 10px;
    line-height: 1.6;
  }

  footer p + p { margin-top: 3px; }
}

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