:root {
  --surface: oklch(13% 0.012 75);
  --ink: oklch(95% 0.008 82);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.page,
.hero {
  min-height: 100svh;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  isolation: isolate;
}

.hero-spline {
  display: block;
  width: 100vw;
  height: 100svh;
}

.hero-spline::part(logo) {
  display: none;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@supports (height: 100dvh) {
  .page,
  .hero,
  .hero-spline {
    min-height: 100dvh;
    height: 100dvh;
  }
}
