:root {
  --bg: #000000;
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.74);
  --accent: rgba(255, 255, 255, 0.88);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.landing {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.bg-image {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(1.16);
  width: auto;
  height: auto;
  max-width: min(78vw, 720px);
  max-height: 70vh;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.typewriter {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  min-width: var(--typewriter-width, auto);
  white-space: nowrap;
}

.typewriter::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 6px;
  background: var(--accent);
  opacity: 0;
  transform: translateY(2px);
}

html.js .typewriter {
  visibility: hidden;
}

html.js .typewriter.is-typing,
html.js .typewriter.is-done,
html.js .typewriter.reduced {
  visibility: visible;
}

.typewriter.is-typing::after,
.typewriter.is-done::after {
  opacity: 1;
  animation: caret 0.8s steps(1) infinite;
}

.typewriter.reduced::after {
  display: none;
}

@keyframes caret {
  50% {
    opacity: 0;
  }
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.note-soon {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}
