/* Lull employer styles — Slate Water + Sand palette. */
:root {
  --slate-water: #4A6B7C;
  --deepwater: #28414D;
  --sand: #E9D9BF;
  --dawn: #F4EAD5;
  --paper: #FBFAF6;
  --fog: #D9DCDD;
  --stone: #4C5359;
  --ink: #1E252A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--paper);
  color: var(--stone);
  line-height: 1.5;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--ink); color: var(--paper);
  padding: 8px 12px; border-radius: 4px; z-index: 100; text-decoration: none;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 2px solid var(--slate-water); outline-offset: 2px; }

header {
  background: var(--paper); color: var(--ink); padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--fog);
}
.brand { display: flex; align-items: baseline; gap: 0.75rem; }
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  color: var(--slate-water);
  font-weight: 500;
}
.brand .sub { font-size: 0.8rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.08em; }

nav { display: flex; gap: 0.25rem; }
nav button {
  background: transparent; color: var(--stone); border: 1px solid transparent;
  padding: 0.5rem 0.9rem; border-radius: 6px; cursor: pointer; font-family: inherit;
}
nav button:hover { background: var(--dawn); color: var(--ink); }

.hidden { display: none !important; }

main { flex: 1; max-width: 960px; margin: 2rem auto; padding: 0 1rem; width: 100%; }

section {
  background: white; border: 1px solid var(--fog);
  border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem;
}

h1 { font-family: 'Fraunces', Georgia, serif; color: var(--ink); font-weight: 500; margin-bottom: 0.5rem; font-size: 1.5rem; }
.trust-line, .disclaimer { color: var(--stone); font-size: 0.9rem; margin-bottom: 1.5rem; font-style: italic; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.card {
  background: var(--dawn); border: 1px solid var(--sand); border-radius: 8px;
  padding: 1.25rem; text-align: center;
}
.card.meta { background: var(--paper); border-color: var(--fog); }
.card .value {
  font-family: 'Fraunces', Georgia, serif; font-size: 2rem; font-weight: 500;
  color: var(--deepwater); letter-spacing: -0.02em;
}
.card .label { font-size: 0.85rem; color: var(--stone); margin-top: 0.3rem; }

form { display: flex; flex-direction: column; gap: 0.8rem; max-width: 400px; }
form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.9rem; }
input { padding: 0.7rem; border: 1px solid var(--fog); border-radius: 6px; font-family: inherit; font-size: 1rem; }
.btn-primary { background: var(--slate-water); color: white; border: none; padding: 0.75rem 1.25rem; border-radius: 6px; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--deepwater); }

.error { color: #8A3A2E; font-size: 0.9rem; min-height: 1.2em; }

footer { text-align: center; padding: 1.5rem 1rem; color: var(--stone); font-size: 0.8rem; border-top: 1px solid var(--fog); }
