:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #667085;
  --line: #d9e0ea;
  --panel: #ffffff;
  --surface: #f5f7fb;
  --accent: #c0aeee;
  --accent-dark: #aa94df;
  --nav: #233044;
  --nav-muted: #aab4c5;
  --success: #1f7a52;
  --danger: #b42318;
  --block-radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.shell {
  min-height: 100vh;
}

.is-hidden {
  display: none !important;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-button,
.ghost-button,
.nav-item {
  border: 0;
  border-radius: var(--block-radius);
  font-weight: 700;
}

.primary-button {
  min-height: 46px;
  background: var(--accent);
  color: #000000;
  box-shadow: 0 12px 24px rgba(192, 174, 238, 0.28);
}

.primary-button:hover {
  background: var(--accent-dark);
}

.ghost-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

@media (max-width: 720px) {
  .shell {
    min-height: 100dvh;
  }
}
