:root {
  --mint-400: #4ade80;
  --mint-100: #dcfce7;
  --teal-600: #0d9488;
  --teal-900: #134e4a;
  --ink-900: #16322f;
  --ink-700: #36504d;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line: rgba(13, 148, 136, 0.14);
  --shadow: 0 24px 60px rgba(12, 39, 35, 0.12);
  --font-sans: "Ubuntu", "Noto Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(74, 222, 128, 0.26), transparent 34%),
    radial-gradient(circle at right center, rgba(13, 148, 136, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fffb 0%, #ffffff 52%, #f3fbf9 100%);
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 1.25rem;
}

.hero {
  display: grid;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
  padding: 2rem 0 2.5rem;
}

.hero__content,
.status-panel__card {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 1.5rem;
  animation: rise-in 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--teal-600);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint-400), #79f2a0);
  color: #073530;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(74, 222, 128, 0.2);
}

.status-badge::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(7, 53, 48, 0.78);
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  max-width: 12ch;
  text-wrap: balance;
}

.lead {
  margin: 1.2rem 0 0;
  max-width: 62ch;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.7;
}

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.tech-strip span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 148, 136, 0.12);
  color: var(--teal-900);
  font-size: 0.92rem;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 0;
  border-radius: 999px;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-900));
  color: #f3fffc;
  box-shadow: 0 18px 30px rgba(13, 148, 136, 0.18);
}

.button--disabled {
  background: #d5dedd;
  color: #60706e;
  cursor: not-allowed;
}

.status-panel {
  display: grid;
  gap: 1rem;
}

.status-panel__card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  animation: rise-in 850ms ease-out both;
}

.status-panel__card::after {
  content: "";
  position: absolute;
  inset: auto -15% -30% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.24), transparent 68%);
}

.status-panel__label {
  margin: 0 0 0.65rem;
  color: var(--teal-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-panel__card h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.status-panel__card p:last-child {
  margin: 1rem 0 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.status-panel__timeline {
  display: flex;
  gap: 0.75rem;
  padding: 0 0.25rem;
}

.status-panel__timeline span {
  flex: 1;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.9), rgba(13, 148, 136, 0.3));
}

.status-panel__timeline span:last-child {
  background: rgba(13, 148, 136, 0.14);
}

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

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

@media (min-width: 720px) {
  .page-shell {
    padding: 2rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 2rem;
    padding: 2.5rem 0 3rem;
  }

  .hero__content,
  .status-panel__card {
    border-radius: 2rem;
  }

  .hero__content,
  .status-panel__card {
    padding: 2.25rem;
  }
}

@media (min-width: 1040px) {
  .hero {
    gap: 2.75rem;
  }

  .hero__content {
    padding: 3rem;
  }

  .status-panel__card {
    padding: 2.5rem;
  }
}