:root {
  --bg: #050505;
  --ink: #f5f1ea;
  --muted: #bdb5aa;
  --quiet: rgba(245, 241, 234, 0.13);
  --quiet-strong: rgba(245, 241, 234, 0.22);
  --orange: #e86617;
  --orange-soft: #ff8b3d;
  --max-width: 1040px;
  --font-display: "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-text: Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  line-height: 1.45;
}

body::selection {
  background: var(--orange);
  color: #080808;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.site-shell {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(104deg, transparent 0 59%, rgba(232, 102, 23, 0.12) 59.1% 59.34%, transparent 59.45%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 116px 116px, 116px 116px;
  pointer-events: none;
  z-index: 0;
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.98));
  pointer-events: none;
  z-index: 0;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

main {
  align-items: center;
  display: grid;
  justify-items: center;
  padding: 3rem 1.5rem 2rem;
}

.hero {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
  width: 100%;
}

.hero-logo {
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.72));
  height: auto;
  margin: 0 auto 2.25rem;
  max-width: 34rem;
  width: min(84vw, 34rem);
}

.hero-copy {
  margin: 0 auto;
  max-width: 34rem;
}

h1,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.soon {
  color: rgba(245, 241, 234, 0.7);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.button {
  align-items: center;
  border: 1px solid var(--quiet);
  border-radius: 8px;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.55rem;
  justify-content: center;
  min-height: 3rem;
  min-width: 9.5rem;
  padding: 0.8rem 1rem;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #080808;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-soft);
  border-color: var(--orange-soft);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--quiet-strong);
}

.button-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  justify-content: center;
  margin-top: 2.1rem;
}

.social-links a {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.35rem 0.2rem;
  text-decoration-color: rgba(232, 102, 23, 0);
  text-underline-offset: 0.35rem;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink);
  outline: none;
  text-decoration-color: var(--orange);
}

.site-footer {
  align-items: center;
  color: rgba(245, 241, 234, 0.58);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 400;
  gap: 0.45rem 1rem;
  justify-content: center;
  padding: 0 1.5rem 1.4rem;
}

@media (max-width: 640px) {
  .site-shell::before {
    background-size: auto, 82px 82px, 82px 82px;
  }

  main {
    padding: 2.2rem 1rem 1.8rem;
  }

  .hero-logo {
    margin-bottom: 1.6rem;
    width: min(92vw, 27rem);
  }

  h1 {
    font-size: 1.65rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .social-links {
    margin-top: 1.7rem;
  }
}
