:root {
  --theme: #4e8c40;
  --theme-light: #e9f3e6;
  --theme-dark: #396630;
  --text: #22301f;
  --muted: #6b7a67;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  padding: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(78, 140, 64, 0.15);
  border-top: 6px solid var(--theme);
}

.icon {
  font-size: 48px;
  margin-bottom: 8px;
}

h1 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--theme-dark);
}

.subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.progress-wrap {
  margin-bottom: 24px;
}

.progress-bar {
  background: var(--theme-light);
  border-radius: 999px;
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(78, 140, 64, 0.25);
}

.progress-fill {
  height: 100%;
  background: var(--theme);
  border-radius: 999px 0 0 999px;
  transition: width 0.4s ease;
}

.progress-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-dark);
}

.eta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.eta strong {
  color: var(--theme-dark);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--theme);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cta:hover {
  background: var(--theme-dark);
}
