:root {
  --bg: #0b0c0e;
  --ink: #f3f1ec;
  --muted: #b7b3a9;
  --accent: #e8a54b;
  --panel: rgba(8, 9, 11, 0.72);
  --line: rgba(243, 241, 236, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; background: var(--bg); color: var(--ink); }
a { color: var(--accent); }

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 2rem 1.25rem 5.5rem;
  overflow: hidden;
}

.hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.55) 0%, rgba(5, 6, 8, 0.35) 40%, rgba(5, 6, 8, 0.82) 100%),
    radial-gradient(ellipse at 50% 35%, transparent 0%, rgba(0, 0, 0, 0.45) 70%);
  pointer-events: none;
}

.panel {
  position: relative;
  z-index: 1;
  width: min(40rem, 100%);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.waitlist {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.waitlist input {
  flex: 1 1 14rem;
  min-height: 2.85rem;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
}

.waitlist input::placeholder { color: #7f7b73; }

.waitlist button {
  min-height: 2.85rem;
  border: 0;
  border-radius: 0.65rem;
  padding: 0.7rem 1.1rem;
  background: var(--accent);
  color: #1a1208;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.waitlist button:hover { filter: brightness(1.05); }
.waitlist button:focus-visible,
.waitlist input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.fine {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.foot {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 1.25rem;
  color: #9a958b;
  font-size: 0.8rem;
}

.brand {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.foot p { margin: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 560px) {
  .panel { padding: 1.35rem 1.1rem; }
  .waitlist button { width: 100%; }
  .foot { flex-direction: column; align-items: flex-start; }
}
