:root {
  --navy: #0a1230;
  --navy-mid: #152048;
  --gold: #c7a16a;
  --gold-light: #f0dfb4;
  --cream: #f5f2ec;
  --muted: #8a9bb8;
  --line: rgba(240, 223, 180, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, "Segoe UI", system-ui, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(199, 161, 106, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(21, 32, 72, 0.9), transparent 45%),
    linear-gradient(165deg, #030624 0%, var(--navy) 42%, #0d1638 100%);
  display: flex;
  flex-direction: column;
}

.shell {
  flex: 1;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 2.75rem) clamp(1.1rem, 4vw, 1.75rem) 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(199, 161, 106, 0.25), rgba(10, 18, 48, 0.6));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.brand-name {
  text-align: left;
  line-height: 1.15;
}

.brand-name strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.brand-name span {
  font-size: 0.78rem;
  color: var(--muted);
}

.card {
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(21, 32, 72, 0.92), rgba(10, 18, 48, 0.88));
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(199, 161, 106, 0.06);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(199, 161, 106, 0.06) 50%, transparent 60%);
  animation: shine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { transform: translateX(-120%); opacity: 0; }
  45% { opacity: 1; }
  55% { transform: translateX(120%); opacity: 0; }
}

.icon-orbit {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(240, 223, 180, 0.35), rgba(199, 161, 106, 0.08));
  border: 1px solid rgba(199, 161, 106, 0.35);
  display: grid;
  place-items: center;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 161, 106, 0.25); }
  50% { box-shadow: 0 0 0 14px rgba(199, 161, 106, 0); }
}

.icon-orbit svg {
  width: 40px;
  height: 40px;
  color: var(--gold-light);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 4.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.lead {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #d4dce8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(199, 161, 106, 0.12);
  border: 1px solid rgba(199, 161, 106, 0.28);
}

.note {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #b8c4d8;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  color: var(--navy);
  background: linear-gradient(180deg, #f0dfb4 0%, #c7a16a 100%);
  box-shadow: 0 8px 24px rgba(199, 161, 106, 0.28);
}

.btn--ghost {
  color: var(--gold-light);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

footer {
  padding: 1.25rem 1rem 1.75rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}
