:root {
  --ink: #122033;
  --muted: #5e6876;
  --blue: #145ea8;
  --gold: #f1b82d;
  --paper: #f7f9f6;
  --white: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(20, 94, 168, 0.1), rgba(241, 184, 45, 0.16)),
    var(--paper);
  color: var(--ink);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero {
  width: min(760px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(18, 32, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(18, 32, 51, 0.14);
  text-align: center;
}

.logo {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.eyebrow {
  margin: 26px 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 13px 20px;
  border-radius: 6px;
  background: var(--gold);
  color: #231700;
  font-weight: 900;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  outline: 3px solid rgba(20, 94, 168, 0.22);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .page {
    padding: 16px;
  }

  .hero {
    padding: 30px 20px;
  }

  .logo {
    width: 78px;
    height: 78px;
  }

  .button {
    width: 100%;
  }
}
