:root {
  --bg: #f4f8fd;
  --surface: rgba(255, 255, 255, 0.84);
  --text: #0f172a;
  --muted: #5f6f87;
  --line: rgba(37, 99, 235, 0.12);
  --primary: #2563eb;
  --primary-2: #06b6d4;
  --shadow: 0 16px 44px rgba(37, 99, 235, 0.1);
  --radius: 24px;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
}
a {
  text-decoration: none;
  color: inherit;
}
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.78)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  text-align: center;
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  z-index: 0;
}
.hero:before {
  width: 240px;
  height: 240px;
  right: -60px;
  top: -80px;
  background: rgba(37, 99, 235, 0.18);
}
.hero:after {
  width: 180px;
  height: 180px;
  left: -30px;
  bottom: -50px;
  background: rgba(6, 182, 212, 0.16);
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.05;
}
h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: -0.04em;
}
.breadcrumb {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.crumb {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.card {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.card:hover,
.card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.28);
  outline: none;
}

.card .glyph {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(37, 99, 235, 0.08);
}
.card .body {
  flex: 1;
  min-width: 0;
}
.card h3 {
  font-size: 1.25rem;
}
.card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}
.card .side {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.status {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.status.live {
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
}
.status.progress {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}
.status.soon {
  background: rgba(37,99,235,.06);
  color:var(--muted)
}
.status.planned {
  background: rgba(15,23,42,.05);
  color:var(--muted)
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  min-height: 40px;
}

footer {
  text-align: center;
  color: gray;
  margin-top: 40px;
  padding: 20px 18px 36px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .shell {
    padding: 12px;
  }
  .hero {
    border-radius: 28px;
    padding: 20px;
  }
  .card {
    border-radius: 20px;
    padding: 16px;
    flex-wrap: wrap;
  }
  .card .glyph {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .card .side {
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-top: 4px;
  }
  .link {
    width: auto;
  }
}
