:root {
  color-scheme: light;
  --ink: #151821;
  --muted: #586171;
  --line: #d9e0ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --accent: #bf4f2d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

.placeholder-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.placeholder-panel {
  width: min(620px, 100%);
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 8vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}
