:root {
  --bg-top: #06131f;
  --bg-bottom: #123a63;
  --panel: rgba(9, 20, 34, 0.72);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text-main: #f7fbff;
  --text-soft: rgba(247, 251, 255, 0.78);
  --shadow: 0 24px 55px rgba(4, 12, 24, 0.32);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-ui: "Trebuchet MS", "Segoe UI Variable", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-ui);
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(80, 170, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(122, 232, 160, 0.18), transparent 22%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
}

body::before {
  width: 260px;
  height: 260px;
  top: 5%;
  right: -90px;
  background: rgba(255, 210, 120, 0.14);
}

body::after {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: -80px;
  background: rgba(120, 166, 255, 0.16);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 26px 18px 40px;
}

.hero,
.footer-note {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  padding: 26px 24px 22px;
  animation: rise-in 480ms ease-out both;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fd5ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.lead {
  margin: 16px 0 0;
  max-width: 48ch;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.chip-soft {
  color: #d9ebff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 22px 20px;
  border: 0;
  border-radius: var(--radius-lg);
  text-align: left;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(10, 14, 24, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  animation: rise-in 520ms ease-out both;
}

.card:nth-child(2) { animation-delay: 40ms; }
.card:nth-child(3) { animation-delay: 80ms; }
.card:nth-child(4) { animation-delay: 120ms; }
.card:nth-child(5) { animation-delay: 160ms; }
.card:nth-child(6) { animation-delay: 200ms; }

.card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 68%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.card:hover,
.card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(10, 14, 24, 0.28);
  filter: saturate(1.05);
  outline: none;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
}

.card strong {
  display: block;
  font-size: clamp(24px, 4vw, 31px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.card span:last-child {
  display: block;
  max-width: 24ch;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.card-sky {
  background: linear-gradient(135deg, #2494ff, #4cc6ff);
}

.card-mint {
  background: linear-gradient(135deg, #2aa87f, #8ae08f);
}

.card-amber {
  background: linear-gradient(135deg, #ef8f16, #ffcb5c);
}

.card-rose {
  background: linear-gradient(135deg, #d94873, #ff7d8a);
}

.card-violet {
  background: linear-gradient(135deg, #5a52dd, #a574ff);
}

.card-ocean {
  background: linear-gradient(135deg, #1e6d96, #4bc0c8);
}

.footer-note {
  margin-top: 18px;
  padding: 16px 18px;
}

.footer-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .shell {
    padding: 16px 14px 28px;
  }

  .hero {
    padding: 22px 18px 18px;
  }

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

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