:root {
  color-scheme: dark;
  --bg: #020604;
  --bg-2: #06100a;
  --panel: rgba(6, 14, 9, 0.78);
  --panel-border: rgba(70, 165, 98, 0.18);
  --text: #eef4ff;
  --muted: #a4b3a8;
  --accent: #63e08a;
  --accent-2: #2fb56f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(99, 224, 138, 0.14), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(47, 181, 111, 0.12), transparent 28%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
  opacity: 0.24;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero-card {
  width: min(980px, 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 18, 11, 0.94), rgba(4, 10, 7, 0.84));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99, 224, 138, 0.14), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(99, 224, 138, 0.12);
}

.eyebrow {
  margin: 24px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: var(--muted);
}

.progress-wrap {
  margin-top: 34px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.progress-bar {
  display: flex;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.progress-segment {
  height: 100%;
  flex: 0 0 auto;
}

.progress-segment.complete {
  background: linear-gradient(90deg, #6ff39b, #37c56f);
}

.progress-segment.in-progress {
  background: linear-gradient(90deg, rgba(111, 243, 155, 0.34), rgba(55, 197, 111, 0.22));
}

.progress-segment.planned {
  background: rgba(2, 6, 4, 0.98);
}

.progress-segment + .progress-segment {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.05);
}

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

.info-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.info-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at top, rgba(99, 224, 138, 0.22), transparent 30%),
      radial-gradient(circle at 80% 18%, rgba(47, 181, 111, 0.2), transparent 24%),
      linear-gradient(160deg, #04100a 0%, #08150d 55%, #020604 100%);
  }

  .page-shell {
    padding: 16px;
  }

  .hero-card {
    padding: 22px;
    border-radius: 22px;
    background:
      radial-gradient(circle at top, rgba(99, 224, 138, 0.16), transparent 42%),
      linear-gradient(180deg, rgba(12, 42, 24, 0.9), rgba(6, 18, 11, 0.86));
    border-color: rgba(99, 224, 138, 0.22);
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  h1 {
    max-width: 100%;
  }

  .status-pill,
  .progress-wrap,
  .info-card {
    background: rgba(12, 34, 20, 0.5);
  }

  .progress-bar {
    background: rgba(99, 224, 138, 0.08);
    border-color: rgba(99, 224, 138, 0.12);
  }

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

@media (max-width: 960px) and (orientation: landscape) {
  body {
    background:
      radial-gradient(circle at top, rgba(99, 224, 138, 0.24), transparent 28%),
      radial-gradient(circle at 78% 18%, rgba(47, 181, 111, 0.24), transparent 22%),
      linear-gradient(160deg, #06150d 0%, #0a1d12 50%, #030805 100%);
  }

  .page-shell {
    padding: 14px 20px;
  }

  .hero-card {
    padding: 20px 26px;
    background:
      radial-gradient(circle at top, rgba(99, 224, 138, 0.2), transparent 40%),
      linear-gradient(180deg, rgba(16, 52, 29, 0.92), rgba(8, 24, 14, 0.88));
    border-color: rgba(99, 224, 138, 0.24);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .status-pill,
  .progress-wrap,
  .info-card {
    background: rgba(14, 36, 21, 0.52);
  }

  .progress-bar {
    background: rgba(99, 224, 138, 0.1);
    border-color: rgba(99, 224, 138, 0.16);
  }

  h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    max-width: 11ch;
  }
}
