/* Splash gate: obscures casual browsing only; anyone can read the published assets or bypass in devtools. */
.suite-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, #f6faf7 0%, #eef4f8 45%, #ffffff 100%);
}

html.suite-gate-unlocked .suite-splash {
  display: none !important;
  pointer-events: none;
}

.suite-splash__panel {
  width: 100%;
  max-width: 26rem;
  padding: 2rem 1.75rem 2.25rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 45, 30, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.suite-splash__logo {
  display: block;
  margin: 0 auto 1rem;
  max-width: 100%;
  height: auto;
}

.suite-splash__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a2e22;
  letter-spacing: -0.02em;
}

.suite-splash__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #4a5c54;
}

.suite-splash__form {
  text-align: left;
}

.suite-splash__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d4538;
}

.suite-splash__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
  border: 1px solid #c5d4cc;
  border-radius: 8px;
  font-size: 1rem;
}

.suite-splash__input:focus {
  outline: 2px solid #1e6b4a;
  outline-offset: 1px;
  border-color: #1e6b4a;
}

.suite-splash__submit {
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #1e6b4a 0%, #165a3d 100%);
  cursor: pointer;
}

.suite-splash__submit:hover {
  filter: brightness(1.05);
}

.suite-splash__error {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #b42318;
}

/* Header: CF mark + title */
.site-title--with-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-title__cf {
  flex-shrink: 0;
  display: block;
  max-height: 3rem;
  width: auto;
  object-fit: contain;
}

.site-title__text {
  line-height: 1.2;
}
