* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: rgba(17, 17, 17, 0.95);
  --panel-2: rgba(28, 28, 28, 0.95);
  --text: #f5f2ea;
  --muted: #aaa59a;
  --gold: #d5a237;
  --gold-light: #f3cf72;
  --silver: #d9d9d9;
  --line: rgba(213, 162, 55, 0.34);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(213, 162, 55, 0.13), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(135deg, #020202, #111 48%, #050505);
}

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

.card {
  position: relative;
  overflow: hidden;
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--panel-2), var(--panel));
  box-shadow:
    0 28px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
}

.glow-one {
  width: 170px;
  height: 170px;
  right: -65px;
  top: -60px;
  background: rgba(213, 162, 55, 0.19);
}

.glow-two {
  width: 140px;
  height: 140px;
  left: -60px;
  bottom: 10%;
  background: rgba(255,255,255,0.05);
}

.logo-wrap {
  position: relative;
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f0f0f0, #cfcfcf 44%, #e0b85a);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.logo {
  display: block;
  width: 100%;
  border-radius: 14px;
}

.intro {
  position: relative;
  padding: 24px 4px 16px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 1.04;
}

.tagline {
  margin: 12px auto 0;
  max-width: 300px;
  color: var(--muted);
  line-height: 1.55;
}

.actions {
  position: relative;
  display: grid;
  gap: 11px;
  margin-top: 10px;
}

.action {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 13px 16px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 17px;
  background: rgba(255,255,255,0.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.action:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 162, 55, 0.6);
  background: rgba(213, 162, 55, 0.08);
}

.action.primary {
  background: linear-gradient(135deg, rgba(213,162,55,.18), rgba(255,255,255,.04));
  border-color: rgba(213, 162, 55, 0.45);
}

.icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 18px rgba(213, 162, 55, 0.18);
}

.action span:last-child {
  font-weight: 600;
}

.action small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp {
  position: relative;
  display: block;
  margin-top: 14px;
  padding: 15px 18px;
  text-align: center;
  color: #0b0b0b;
  font-weight: 800;
  text-decoration: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #f4d37f, #c58b20);
  box-shadow: 0 12px 28px rgba(197, 139, 32, 0.18);
}

footer {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
  color: #8f8b83;
  font-size: 0.75rem;
  text-align: center;
}

.dot {
  color: var(--gold);
}

@media (max-width: 420px) {
  .page {
    padding: 12px;
  }

  .card {
    padding: 18px;
    border-radius: 22px;
  }

  .logo-wrap {
    padding: 8px;
  }
}
