:root {
  --color-navy: #07274d;
  --color-navy-light: #123a66;
  --color-navy-950: #04162c;
  --color-gold: #c9a227;
  --color-cream: #fbf6ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 50% 0%, var(--color-navy-light), var(--color-navy-950) 65%);
  color: var(--color-cream);
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.page::before {
  width: 46vw;
  height: 46vw;
  top: -10vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.55), transparent 70%);
}

.page::after {
  width: 50vw;
  height: 50vw;
  bottom: -18vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(29, 92, 163, 0.65), transparent 70%);
}

.card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
  width: 100%;
  padding: 48px 32px;
  border: 1px solid rgba(251, 246, 238, 0.22);
  border-top-color: rgba(251, 246, 238, 0.4);
  background:
    linear-gradient(165deg, rgba(4, 22, 44, 0.45), rgba(4, 22, 44, 0.25)),
    rgba(251, 246, 238, 0.07);
  border-radius: 28px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -12px 24px -16px rgba(4, 22, 44, 0.5),
    0 20px 60px -10px rgba(4, 22, 44, 0.55);
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 0.6s ease-out forwards;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -12px 24px -16px rgba(4, 22, 44, 0.5),
    0 24px 70px -10px rgba(4, 22, 44, 0.65);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.logo {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.25;
  font-weight: 600;
}

.lead {
  margin: 0 0 28px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(251, 246, 238, 0.7);
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.whatsapp {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.whatsapp:hover {
  background-color: var(--color-gold);
  color: var(--color-navy-950);
}

.email {
  font-size: 0.85rem;
  color: rgba(251, 246, 238, 0.6);
  text-decoration: none;
}

.email:hover {
  color: var(--color-gold);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(251, 246, 238, 0.4);
}

.credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(251, 246, 238, 0.4);
  transition: opacity 0.2s ease;
}

.credit:hover {
  opacity: 0.85;
}

.credit img {
  height: 22px;
  width: auto;
  opacity: 0.85;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
