/* ============================================================
   SPLASH — public "coming soon" landing page + password gate
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F8F7F4;
  --text: #1A1A1A;
  --muted: #6B6760;
  --accent: #C85A2A;
}

html, body {
  height: 100%;
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.content {
  text-align: right;
}

.name {
  font-size: clamp(52px, 14vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--text);
  display: block;
}

.coming-soon {
  margin-top: 28px;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.gate-form {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.gate-input {
  width: 160px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.25);
  padding: 6px 2px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  outline: none;
  text-align: right;
  transition: border-color 0.2s;
}

.gate-input::placeholder { color: rgba(107, 103, 96, 0.6); }
.gate-input:focus { border-color: var(--accent); }

.gate-submit {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
  transition: color 0.2s;
  padding: 4px 6px;
  line-height: 1;
}

.gate-submit:hover { color: var(--accent); }

.gate-error {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
}
