:root {
  color-scheme: dark;
  --bg: #07130f;
  --card: rgba(15, 31, 24, .78);
  --card-strong: rgba(20, 49, 38, .92);
  --text: #f8fafc;
  --muted: #9fb2a9;
  --accent: #10b981;
  --accent-2: #059669;
  --border: rgba(255,255,255,.11);
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(16,185,129,.20), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(5,150,105,.12), transparent 35%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .28;
  pointer-events: none;
}

.orb-1 {
  left: -80px;
  top: 18%;
  background: var(--accent);
}

.orb-2 {
  right: -90px;
  bottom: 12%;
  background: #22c55e;
}

.shell {
  width: min(960px, 100%);
}

.hero {
  text-align: center;
  margin-bottom: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #d1fae5;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: .95;
  letter-spacing: -0.07em;
}

.hero p {
  width: min(560px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    var(--card);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 110px;
  background: radial-gradient(circle, rgba(16,185,129,.20), transparent 70%);
  opacity: 0;
  transition: opacity .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,.52);
  background:
    linear-gradient(145deg, rgba(16,185,129,.12), rgba(255,255,255,.025)),
    var(--card-strong);
}

.card:hover::after {
  opacity: 1;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 40px rgba(16,185,129,.25);
  font-size: 24px;
  font-weight: 900;
}

.card h2 {
  margin: 0 0 9px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.arrow, .status {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #d1fae5;
  font-weight: 800;
}

.status {
  font-size: 13px;
  color: var(--muted);
}

.muted-card {
  opacity: .68;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  body {
    place-items: start center;
    padding: 22px 14px;
  }

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

  .card {
    min-height: 180px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
