:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111f;
  color: #f5f8fc;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

.page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 32px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgb(25 113 194 / 22%), transparent 32rem),
    radial-gradient(circle at 85% 80%, rgb(31 191 144 / 15%), transparent 28rem),
    linear-gradient(145deg, #07111f 0%, #091827 55%, #06101c 100%);
}

.page::before,
.page::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 50%;
  content: "";
}

.page::before {
  top: -90px;
  right: -60px;
}

.page::after {
  bottom: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
}

.card {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  padding: clamp(32px, 6vw, 68px);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 28px;
  background: rgb(9 24 39 / 72%);
  box-shadow: 0 32px 90px rgb(0 0 0 / 32%);
  backdrop-filter: blur(18px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 44px;
  padding: 8px 12px;
  border: 1px solid rgb(95 224 176 / 20%);
  border-radius: 999px;
  background: rgb(41 182 130 / 8%);
  color: #9aebca;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55e3ae;
  box-shadow: 0 0 0 5px rgb(85 227 174 / 10%), 0 0 18px #55e3ae;
}

.eyebrow {
  margin: 0 0 14px;
  color: #7f96ad;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.9rem);
  font-weight: 730;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

h1 span {
  color: #67e7b7;
}

.description {
  max-width: 620px;
  margin: 30px 0 38px;
  color: #a9b9c8;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.details {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 16px;
  background: rgb(255 255 255 / 8%);
}

.details > div {
  min-width: 0;
  padding: 19px 21px;
  background: #0a1928;
}

.label {
  display: block;
  margin-bottom: 7px;
  color: #698198;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.details strong {
  display: block;
  overflow: hidden;
  color: #dce7f0;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

footer {
  display: flex;
  gap: 9px;
  margin-top: 27px;
  color: #536d83;
  font-size: 0.76rem;
}

@media (max-width: 560px) {
  .card {
    border-radius: 22px;
  }

  .status {
    margin-bottom: 34px;
  }

  .details {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: pulse 2s ease-out infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 5px rgb(85 227 174 / 10%), 0 0 18px #55e3ae; }
    50% { box-shadow: 0 0 0 9px rgb(85 227 174 / 3%), 0 0 26px #55e3ae; }
  }
}
