:root {
  --bg: #000;
  --fg: #b9b9bd;
  --fg-strong: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.stage {
  display: grid;
  grid-template-columns: minmax(320px, 36%) 1fr;
  height: 100vh;
  width: 100vw;
}

.content {
  align-self: center;
  padding: 6vw clamp(32px, 5vw, 80px);
  max-width: 520px;
}

.wordmark {
  display: block;
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.lede {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--fg);
  max-width: 38ch;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-strong);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.contact-link:hover {
  border-bottom-color: currentColor;
  gap: 12px;
}

.arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.viz {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.viz iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

@media (max-width: 800px) {
  body {
    overflow: auto;
  }

  .stage {
    grid-template-columns: 1fr;
    grid-template-rows: 60vh auto;
    height: auto;
    min-height: 100vh;
  }

  .viz {
    height: 60vh;
    order: -1;
  }

  .content {
    padding: 32px 28px 48px;
    max-width: none;
  }

  .wordmark {
    height: 28px;
    margin-bottom: 20px;
  }

  .lede {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
