/* ============================
   Simple Placeholder Landing
   ============================ */

:root {
  --bg: #f5f4ee;
  --panel: #101824;
  --text: #000000;
 /* --muted: #b8c3d3;*/
  --btn: #e9eef5;
  --btn-text: #0b0f14;
  }

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: #FAF7E0;
  color: var(--text);
}

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 18px;
  text-align: center;
}

.logo {
  width: min(420px, 80vw);
  height: auto;
  display: block;
  margin: 0 0 16px 0;
  
}

.tagline {
  margin: 0 0 20px 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.4;
  max-width: 48ch;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--btn);
  color: var(--btn-text);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring), 0 12px 26px rgba(0, 0, 0, 0.42);
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
