:root {
  --bg: #070912;
  --panel: rgba(255, 255, 255, 0.035);
  --ink: #e6f4ff;
  --muted: #8ba0b6;
  --cyan: #22d3ee;
  --violet: #a78bfa;
  --edge: rgba(120, 200, 230, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  padding: 0 20px calc(48px + env(safe-area-inset-bottom, 0px));
}

.glow {
  position: fixed;
  inset: -30% -10% auto;
  height: 70vh;
  background:
    radial-gradient(40% 60% at 25% 30%, rgba(34, 211, 238, 0.16), transparent 70%),
    radial-gradient(40% 60% at 75% 20%, rgba(167, 139, 250, 0.14), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 12vw, 96px) 0 clamp(28px, 6vw, 48px);
  text-align: center;
}

.kicker {
  margin: 0;
  font: 600 12px/1 ui-monospace, monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.85;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(40px, 11vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero h1 span {
  background: linear-gradient(120deg, #22d3ee, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(15px, 3.6vw, 17px);
}

main { max-width: 900px; margin: 0 auto; }

.section-title {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 14px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--edge);
  background: linear-gradient(180deg, rgba(22, 32, 58, 0.6), rgba(10, 14, 26, 0.6));
  color: inherit;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.card:hover, .card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(34, 211, 238, 0.12);
  outline: none;
}

.card.soon { opacity: 0.5; }
.card.soon:hover { transform: none; box-shadow: none; border-color: var(--edge); }

.card-top { display: flex; gap: 14px; align-items: center; }

.badge {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: color-mix(in srgb, var(--accent, #22d3ee) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent, #22d3ee) 40%, transparent);
}

.card h3 { margin: 0; font-size: 20px; font-weight: 700; }
.tagline { margin: 2px 0 0; font-size: 13px; color: var(--cyan); }
.desc { margin: 0; font-size: 14px; color: var(--muted); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--edge);
  color: var(--muted);
}

.meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--edge);
  padding-top: 10px;
}

.cta {
  font-weight: 700;
  font-size: 14px;
  color: var(--cyan);
}

.card.soon .cta { color: var(--muted); }

footer {
  max-width: 900px;
  margin: 48px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

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