:root {
  --bg: #060606;
  --panel: #0d0d0d;
  --text: #ececec;
  --muted: #b9b9b9;
  --line: #414141;
  --focus: #ececec;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 10% 0%, #171717 0%, transparent 36%),
    radial-gradient(circle at 88% 100%, #181818 0%, transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  padding: 28px;
}

.page-shell {
  min-height: calc(100vh - 56px);
  display: grid;
  place-items: center;
}

.editorial-panel {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 28%),
    var(--panel);
  padding: clamp(24px, 4vw, 56px);
  border-radius: 0;
}

.kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  margin: 10px 0 26px;
  font-size: clamp(1.85rem, 5.5vw, 3.6rem);
  line-height: 1.03;
}

.statement {
  margin: 0 0 38px;
  max-width: 62ch;
  line-height: 1.72;
  color: var(--text);
}

.waitlist-block {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

h2 {
  margin: 0;
  font-size: 1.2rem;
}

.waitlist-block > p {
  margin: 10px 0 24px;
  color: var(--muted);
  line-height: 1.56;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

input,
button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

input:focus,
button:focus {
  outline: 1px solid var(--focus);
  outline-offset: 2px;
}

button {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

button:hover {
  background: var(--text);
  color: #0a0a0a;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#form-status {
  min-height: 1.3em;
  margin: 4px 0 0;
  font-size: 0.87rem;
  color: var(--muted);
}

#form-status.success {
  color: var(--text);
}

#form-status.error {
  color: var(--text);
}

@media (max-width: 640px) {
  body {
    padding: 14px;
  }

  .page-shell {
    min-height: calc(100vh - 28px);
  }

  .editorial-panel {
    padding: 22px;
  }
}
