:root {
  --bg: #08111f;
  --bg-soft: #112038;
  --panel: rgba(11, 22, 38, 0.72);
  --panel-border: rgba(157, 217, 255, 0.22);
  --text: #edf6ff;
  --muted: #9ab5cb;
  --accent: #7cf7c8;
  --accent-strong: #ff9b71;
  --accent-cool: #89b9ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top, rgba(137, 185, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(124, 247, 200, 0.15), transparent 25%),
    linear-gradient(160deg, #07101c 0%, #08111f 45%, #12233d 100%);
  color: var(--text);
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 32px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero {
  position: relative;
  width: min(1100px, 100%);
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 16vw, 10rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.lead {
  margin: 18px 0 0;
  max-width: 680px;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  color: var(--muted);
}

.status-card {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.status-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.status-kicker {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.date-pill {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  font-size: 0.95rem;
  color: var(--text);
}

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

.task-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(24px);
  opacity: 0;
  animation: rise 0.8s ease forwards;
}

.task-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
}

.task-1::before {
  background: radial-gradient(circle, rgba(124, 247, 200, 0.55), transparent 65%);
}

.task-2::before {
  background: radial-gradient(circle, rgba(255, 155, 113, 0.55), transparent 65%);
}

.task-3::before {
  background: radial-gradient(circle, rgba(137, 185, 255, 0.55), transparent 65%);
}

.task-4::before {
  background: radial-gradient(circle, rgba(255, 240, 138, 0.5), transparent 65%);
}

.task-5::before {
  background: radial-gradient(circle, rgba(255, 143, 214, 0.5), transparent 65%);
}

.task-6::before {
  background: radial-gradient(circle, rgba(145, 255, 116, 0.5), transparent 65%);
}

.task-1 {
  animation-delay: 0.05s;
}

.task-2 {
  animation-delay: 0.15s;
}

.task-3 {
  animation-delay: 0.25s;
}

.task-4 {
  animation-delay: 0.35s;
}

.task-5 {
  animation-delay: 0.45s;
}

.task-6 {
  animation-delay: 0.55s;
}

.task-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: var(--bg);
  background: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.task-card h2 {
  margin: 0 0 12px;
  max-width: 24ch;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.05;
}

.task-card p {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  line-height: 1.55;
}

.orb,
.grid-glow {
  position: absolute;
  pointer-events: none;
}

.orb {
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  z-index: 1;
}

.orb-a {
  top: 8%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 247, 200, 0.7), transparent 65%);
  animation: drift 10s ease-in-out infinite;
}

.orb-b {
  right: 10%;
  bottom: 12%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 155, 113, 0.45), transparent 65%);
  animation: drift 14s ease-in-out infinite reverse;
}

.grid-glow {
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(1.08);
  }
}

@media (max-width: 780px) {
  .page-shell {
    padding: 20px;
  }

  .status-card {
    padding: 20px;
    border-radius: 24px;
  }

  .status-topline {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .task-card {
    min-height: auto;
  }
}
