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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #f7f7f7;
  background:
    radial-gradient(circle at top, rgba(22, 78, 120, 0.35), transparent 35%),
    radial-gradient(circle at bottom, rgba(201, 154, 74, 0.12), transparent 35%),
    linear-gradient(135deg, #03070c 0%, #07111c 45%, #010204 100%);
}

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

.hero {
  width: 100%;
  max-width: 980px;
  text-align: center;
  padding: 30px 20px;
}

.logo {
  width: min(92vw, 560px);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 26px rgba(59, 145, 255, 0.18));
}

.tagline {
  color: #c9a45f;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1.7vw, 1rem);
  margin-bottom: 34px;
}

.message {
  max-width: 850px;
  margin: 0 auto 42px;
  color: #e9edf4;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.message span {
  color: #d7aa5c;
}

h1 {
  color: #d7aa5c;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 400;
  font-size: clamp(2.2rem, 7vw, 5rem);
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(215, 170, 92, 0.18);
}

.footer-line {
  width: min(80vw, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 169, 255, 0.7), transparent);
  margin: 0 auto 18px;
}

.footer-text {
  color: #bfc7d5;
  letter-spacing: 0.12em;
  font-size: clamp(0.72rem, 1.7vw, 0.95rem);
}

@media (max-width: 600px) {
  .hero {
    padding-top: 10px;
  }

  .tagline {
    letter-spacing: 0.22em;
  }

  h1 {
    letter-spacing: 0.16em;
  }

  .message {
    line-height: 1.5;
  }
}
