:root {
  --l4p-orange: #ff7a00;
  --l4p-navy: #1f2937;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--l4p-navy);
  margin: 0;
}

/* ── Splash / Landing ── */

.splash {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--l4p-navy) 0%, #0f172a 100%);
  padding: 2rem;
}

.splash-content {
  text-align: center;
  max-width: 560px;
}

.splash-logo {
  max-width: 380px;
  width: 100%;
  margin-bottom: 2rem;
}

.splash-text {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.splash-footer {
  margin-top: 3rem;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.8;
}

.splash-email {
  color: var(--l4p-orange);
  text-decoration: none;
}

.splash-email:hover {
  text-decoration: underline;
}

/* ── Button ── */

.btn-brand {
  background: var(--l4p-orange);
  border-color: var(--l4p-orange);
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #e76f00;
  border-color: #e76f00;
  color: #fff;
}
