:root {
  --bg: #05070d;
  --bg-2: #0b1220;
  --gold: #d6aa4f;
  --gold-light: #f2d27c;
  --text: #ffffff;
  --muted: #b7bdc9;
  --line: rgba(214, 170, 79, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px 72px;
  position: relative;
  background:
    radial-gradient(circle at 50% 18%, rgba(214,170,79,0.16), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(35,55,95,0.40), transparent 35%),
    linear-gradient(145deg, #05070d, #08101d 55%, #020409);
}

.background-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle, black 0%, transparent 72%);
}

.card {
  width: min(760px, 100%);
  position: relative;
  z-index: 2;
  padding: clamp(30px, 5vw, 64px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(5, 7, 13, 0.72);
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
}

.logo {
  width: clamp(120px, 22vw, 190px);
  height: auto;
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
}

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

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  background: linear-gradient(120deg, #fff, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.text {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 34px;
}

.tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #f6e7bc;
  border: 1px solid rgba(214,170,79,0.28);
  background: rgba(214,170,79,0.08);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #090b10;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(214,170,79,0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(214,170,79,0.34);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  text-align: center;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
}

@media (max-width: 520px) {
  .card { border-radius: 24px; }
  .tags span { font-size: 13px; }
  .site-footer { position: static; padding: 0 12px 18px; margin-top: -54px; }
}
