:root {
  --hl-bg: #f7f7f7;
  --hl-fg: #171717;
  --hl-muted: #6b7280;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--hl-bg);
  color: var(--hl-fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
}

.hl-page {
  box-sizing: border-box;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(1.25rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1.5rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
}

.hl-col {
  width: 100%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hl-cube {
  aspect-ratio: 100 / 114;
  width: min(12.5rem, 42vw, 32svh);
  mix-blend-mode: multiply;
}

.hl-cube canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hl-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -5.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease-out 200ms;
}

.hl-copy.is-ready {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hl-copy {
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
}

.hl-logo {
  display: block;
  width: 120px;
  height: auto;
  margin-top: 0;
}

.hl-tagline {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.hl-actions {
  width: 100%;
  margin-top: 2.5rem;
}

.hl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid #000;
  border-radius: 0.375rem;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}

.hl-btn:hover {
  background: #262626;
}

.hl-footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--hl-muted);
}

.hl-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
