/* Styles for the Limestone password gate overlay. Brand-matched:
   ink background, paper text, green accent, Space Mono display. */
#ls-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #16191A;
  background: radial-gradient(circle at 50% 32%, #1c2320 0%, #16191A 72%);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

#ls-gate-overlay .ls-gate-card {
  width: 100%;
  max-width: 360px;
  text-align: center;
  color: #FBFFF6;
}

#ls-gate-overlay .ls-gate-logo {
  font-family: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #FBFFF6;
  margin-bottom: 18px;
}

#ls-gate-overlay .ls-gate-logo .ls-br {
  color: #2FBF39;
}

#ls-gate-overlay .ls-gate-msg {
  font-size: 15px;
  line-height: 1.5;
  color: #8B9088;
  margin: 0 0 24px;
}

#ls-gate-overlay .ls-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#ls-gate-overlay .ls-gate-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #2A2E2C;
  background: #1c201d;
  color: #FBFFF6;
  outline: none;
  transition: border-color 0.15s ease;
}

#ls-gate-overlay .ls-gate-input:focus {
  border-color: #2FBF39;
}

#ls-gate-overlay .ls-gate-btn {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: #2FBF39;
  color: #0b0f0c;
  cursor: pointer;
  transition: background 0.15s ease;
}

#ls-gate-overlay .ls-gate-btn:hover {
  background: #29a832;
}

#ls-gate-overlay .ls-gate-error {
  margin: 14px 0 0;
  font-size: 13px;
  color: #CA1E08;
}
