:root {
  --osk-blue: #016699;
  --osk-dark: #761E14;
  --osk-amber: #FFCD34;
  --osk-cream: #F7F0E3;
  --osk-text: #111111;
  --osk-muted: #6b5a4d;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--osk-text);
  background: var(--osk-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  text-align: center;
}

.wrap {
  max-width: 560px;
}

.brand-logo {
  width: min(90%, 420px);
  height: auto;
  margin: 0 0 1.5rem;
}

.blurb {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--osk-muted);
  margin: 0 0 2.5rem;
}

.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  padding: 1.5rem 2.5rem;
  border: 2px solid var(--osk-dark);
  border-radius: 16px;
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(1, 102, 153, 0.18);
}

.cta-logo {
  height: 56px;
  width: auto;
}

.cta-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--osk-blue);
}

.footer {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--osk-muted);
}
