:root {
  --navy: #08294d;
  --navy-dark: #041b34;
  --orange: #ff7a1a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 122, 26, 0.16), transparent 27rem),
    linear-gradient(180deg, var(--navy), var(--navy-dark));
}

.page {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.card {
  width: min(100%, 520px);
  text-align: center;
  padding: 42px 28px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(4, 27, 52, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.logo {
  width: 132px;
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #071f3c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 430px;
  margin: 22px auto 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 3.4vw, 1.22rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  color: #071f3c;
  background: var(--orange);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.32);
}

.small {
  margin: 26px auto 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover { color: var(--orange); }

@media (max-width: 480px) {
  .page { padding: 22px 14px; }
  .card { padding: 34px 20px 28px; border-radius: 24px; }
  .logo { width: 112px; }
  .footer { flex-wrap: wrap; }
}
