* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: rgba(15, 15, 15, 0.78);
  --gold: #d49a27;
  --gold-soft: #f0c15a;
  --silver: #d8d8d8;
  --text: #f5f5f5;
  --muted: #a9a9a9;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 15%, rgba(212, 154, 39, 0.16), transparent 28%),
    radial-gradient(circle at 50% 70%, rgba(120, 120, 120, 0.10), transparent 35%),
    var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  overflow: hidden;
}

.hero {
  width: 100%;
  max-width: 900px;
  min-height: 720px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 24px;
  border: 1px solid rgba(212, 154, 39, 0.32);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--panel);
  box-shadow: 0 0 80px rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

.glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 154, 39, 0.20), transparent 68%);
  top: 55px;
  pointer-events: none;
}

.logo {
  width: min(340px, 78vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 28px rgba(212, 154, 39, 0.28));
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-soft);
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: 3px;
  color: var(--silver);
  text-shadow: 0 3px 0 rgba(0,0,0,0.55);
}

.tagline {
  margin-top: 14px;
  color: var(--gold-soft);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: clamp(15px, 2vw, 19px);
}

.description {
  margin-top: 26px;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.cta-box {
  width: 100%;
  max-width: 660px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(212, 154, 39, 0.24);
  border-radius: 22px;
  background: rgba(0,0,0,0.32);
}

.cta-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
}

.cta-text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  min-width: 150px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
}

.secondary {
  border: 1px solid rgba(212, 154, 39, 0.55);
  color: var(--gold-soft);
}

footer {
  margin-top: 34px;
  color: #7f7f7f;
  font-size: 13px;
  line-height: 1.7;
}

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

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding: 34px 18px;
  }

  .logo {
    width: min(280px, 86vw);
  }

  .description {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }
}
