:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #f5f4f0;
  background: #090b0f;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 8%, rgba(49, 229, 143, 0.12), transparent 32rem),
    linear-gradient(150deg, #090b0f 0%, #10141b 100%);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 34px;
}

header {
  max-width: 850px;
  padding: 5.5rem 0 4rem;
}

.brand {
  color: #f5f4f0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.eyebrow {
  margin: 3.5rem 0 1rem;
  color: #31e58f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 660;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.lede {
  max-width: 650px;
  margin: 2rem 0 0;
  color: #aab0bb;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #292e37;
  border-radius: 20px;
  background: #292e37;
}

.card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 2rem;
  background: rgba(15, 18, 24, 0.96);
}

.card__topline,
.meta,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status,
.protection {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status--ready {
  color: #31e58f;
}

.status--pending,
.protection {
  color: #777f8d;
}

.card h2 {
  margin: 3.5rem 0 1rem;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: #9ba2ae;
  line-height: 1.6;
}

.meta {
  justify-content: flex-start;
  margin: auto 0 1.2rem;
  font-size: 0.78rem;
}

.meta a,
.revision,
footer a {
  color: #aeb5c1;
  text-decoration: none;
}

.meta a:hover,
footer a:hover {
  color: #f5f4f0;
}

.button {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #31e58f;
  color: #07110c;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button--disabled {
  background: #242932;
  color: #777f8d;
  cursor: not-allowed;
}

footer {
  margin-top: 2rem;
  color: #707784;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 310px;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 24px, 1180px);
  }

  header {
    padding: 4rem 0 3rem;
  }

  .card {
    padding: 1.4rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
