:root {
  --pci-navy: #0c1f4a;
  --pci-navy-2: #213b86;
  --pci-orange: #ff6a00;
  --pci-yellow: #ffd400;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.82);
  --surface: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(33, 59, 134, 0.7), rgba(12, 31, 74, 0.98)),
    linear-gradient(135deg, var(--pci-navy), var(--pci-navy-2));
}

.page {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar {
  display: flex;
  justify-content: center;
  padding: 28px 16px 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 212, 0, 0.25);
}

.brand strong {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.hero {
  display: grid;
  place-items: center;
  padding: 24px 16px 48px;
}

.card {
  width: min(860px, 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  padding: clamp(22px, 5vw, 44px);
  text-align: center;
  backdrop-filter: blur(10px);
}

.badge {
  display: inline-block;
  background: var(--pci-orange);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 10px 18px;
  border-radius: 10px;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.subtitle {
  margin: 0 auto 22px;
  max-width: 64ch;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #ffffff;
  color: #0b1638;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.footer {
  padding: 14px 16px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transform: none !important;
  }
}
