* {
  box-sizing: border-box;
}

:root {
  --black: #111111;
  --black-soft: #1b1b1b;
  --yellow: #ffea00;
  --green: #49b967;
  --grey: #d7d9da;
  --text: #f5f5f5;
  --muted: #b7b7b7;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(255,234,0,.10), transparent 25rem),
    linear-gradient(145deg, #0b0b0b 0%, #181818 55%, #0c0c0c 100%);
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
}

.card {
  width: min(100%, 860px);
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: rgba(24,24,24,.94);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}

.logo-box {
  overflow: hidden;
  width: 100%;
  margin-bottom: 38px;
  padding: 10px;
  border-radius: 20px;
  background: var(--grey);
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #e8e8e8;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,234,0,.10);
}

h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 900;
}

.lead {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
}

.line {
  width: 90px;
  height: 4px;
  margin: 34px 0 23px;
  border-radius: 99px;
  background: var(--yellow);
}

.soon {
  margin: 0 0 22px;
  font-size: 1.08rem;
  font-weight: 700;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 17px;
  border: 2px solid var(--yellow);
  border-radius: 13px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}

.contact:hover,
.contact:focus-visible {
  transform: translateY(-1px);
  filter: brightness(.95);
  outline: none;
}

.contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

footer {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 20px;
  color: #818181;
  font-size: .78rem;
}

.sep {
  color: var(--yellow);
}

@media (max-width: 600px) {
  .page {
    padding: 12px;
  }

  .card {
    border-radius: 20px;
  }

  .logo-box {
    margin-bottom: 30px;
    padding: 6px;
    border-radius: 15px;
  }

  footer {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
