:root {
  color-scheme: light;
  --canvas:  #F7F7F5;
  --text:    #181818;
  --text-2:  #6E6E73;
  --sep:     #E7E7E3;
  --accent:  #7C5CFC;
  --ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
        "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --canvas: #0E0E0F;
    --text:   #F5F5F5;
    --text-2: #ABABAF;
    --sep:    #2A2A2D;
    --accent: #A78BFA;
  }
}

* { box-sizing: border-box; }

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 24px;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--ui);
  text-align: center;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(6px);
  animation: rise 420ms cubic-bezier(.32,.72,0,1) 60ms forwards;
}

@media (prefers-reduced-motion: reduce) {
  .stage { opacity: 1; transform: none; animation: none; }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 9.9px;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0 7.5px;
}

.mark span {
  display: block;
  height: 16px;
  border-radius: 4px;
  background: var(--canvas);
}

.mark span:first-child { width: 11.7px; }
.mark span:last-child { width: 14.3px; }

.wordmark {
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 34ch;
}

.hairline {
  width: 32px;
  height: 1px;
  background: var(--sep);
}
