:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #f6f7fb;
  background: #080b14;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(100, 116, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.14), transparent 28rem),
    #080b14;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 32px;
  padding: 32px 20px;
}

.card {
  width: min(100%, 760px);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(18, 23, 40, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  font-size: 18px;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #0b1020;
  background: linear-gradient(135deg, #a5b4fc, #67e8f9);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #a5b4fc;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 0 6px rgba(103, 232, 249, 0.1);
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: #aeb5c7;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  color: #0b1020;
  background: #f6f7fb;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #cffafe;
}

.button:focus-visible {
  outline: 3px solid #67e8f9;
  outline-offset: 4px;
}

.domain,
footer {
  color: #747d93;
  font-size: 14px;
}

@media (max-width: 560px) {
  .brand {
    margin-bottom: 42px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
