:root {
  --bg-dark: #06080d;
  --bg-card: rgba(14, 18, 28, 0.88);
  --border: rgba(255, 255, 255, 0.12);
  --text-main: #ffffff;
  --text-muted: #b6bdca;
  --accent: #d7a84f;
  --accent-soft: rgba(215, 168, 79, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 168, 79, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(52, 95, 180, 0.16), transparent 36%),
    linear-gradient(135deg, #05070c 0%, #0b101b 50%, #05070c 100%);
  color: var(--text-main);
}

.landing-page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.landing-page::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 44px 44px;
  mask-image: radial-gradient(circle, black 35%, transparent 75%);
  pointer-events: none;
}

.hero-card {
  width: 100%;
  max-width: 860px;
  padding: 64px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(215, 168, 79, 0.16);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(215, 168, 79, 0.35);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: clamp(2.45rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  line-height: 1.8;
}

.divider {
  width: 92px;
  height: 3px;
  margin: 34px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.message {
  color: #e6e9ef;
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.status-box {
  width: fit-content;
  margin: 0 auto 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #f7f7f7;
  font-size: 0.95rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(215, 168, 79, 0.12);
}

footer p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .landing-page {
    padding: 18px;
  }

  .hero-card {
    padding: 44px 24px;
    border-radius: 24px;
  }

  .hero-card::before {
    border-radius: 23px;
  }

  h1 {
    letter-spacing: -0.045em;
  }

  .intro {
    line-height: 1.7;
  }

  .status-box {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
