:root {
  --bg: #efe6eb;
  --card: #f7f7f7;
  --text: #172136;
  --accent: #f44363;
  --accent-dark: #db2f52;
  --green: #1fc15a;
  --green-soft: #e3f4eb;
  --green-strong: #d2ecdf;
  --red-soft: #f8dede;
  --red-strong: #f3caca;
  --radius-card: 26px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #efe6eb 0%, #f6eef2 100%);
  font-family: "Baloo 2", system-ui, sans-serif;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.wrap {
  width: min(100%, 860px);
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 34px 28px 30px;
  box-shadow: 0 20px 50px rgba(23, 33, 54, 0.08);
}

.badge-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #17753a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.title {
  margin: 0;
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 800;
  color: #182238;
  line-height: 1.1;
}

.subtitle {
  margin-top: 4px;
}

.highlight {
  margin-top: 10px;
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 800;
  color: var(--accent);
}

.desc {
  margin-top: 10px;
  font-size: 15px;
  color: #42495d;
  line-height: 1.45;
}

.hero {
  display: flex;
  justify-content: center;
  margin: 18px 0 18px;
}

.hero img {
  width: 220px;
  max-width: 100%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.08));
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  column-gap: 16px;
  margin-top: 10px;
}

.stack {
  display: grid;
  grid-template-rows: 42px 42px;
  gap: 12px;
}

.connector-group {
  display: grid;
  grid-template-rows: 42px 42px;
  gap: 12px;
}

.connector {
  width: 18px;
  height: 4px;
  align-self: center;
  justify-self: center;
  border-radius: 999px;
  background: rgba(255, 100, 100, 0.22);
  overflow: hidden;
  position: relative;
}

.connector::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ff8d8d, #e45454);
}

.connector::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(180deg, #49e37f, #1fbe56);
  transition: width 0.5s ease;
}

.connector.active::after {
  width: 100%;
}

.pill {
  height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--red-soft), var(--red-strong));
  color: #b83232;
  box-shadow: 0 6px 14px rgba(255, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill.is-complete {
  background: linear-gradient(180deg, var(--green-soft), var(--green-strong));
  color: #173722;
  box-shadow: 0 6px 14px rgba(31, 193, 90, 0.12);
}

.pill.is-current {
  outline: 3px solid rgba(244, 67, 99, 0.16);
  transform: scale(1.02);
}

.icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  border: 1.8px solid currentColor;
  flex: 0 0 16px;
  background: transparent;
}

.icon::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  top: 0px;
  left: 4px;
}

.pill:not(.is-complete) .icon {
  color: #e24b4b;
  background: #fff4f4;
  border-color: #e24b4b;
}

.pill.is-complete .icon {
  color: #1fc15a;
  background: #eafff1;
  border-color: #1fc15a;
}

.foot {
  margin-top: 18px;
  font-size: 15px;
  color: #4a5060;
  text-align: center;
  min-height: 24px;
}

.cta {
  margin-top: 14px;
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 0 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(244, 67, 99, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover:not(:disabled) {
  transform: translateY(-1px);
}

.cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.cta.pulse {
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 14px 26px rgba(244, 67, 99, 0.22);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 18px 34px rgba(244, 67, 99, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 14px 26px rgba(244, 67, 99, 0.22);
  }
}

@media (max-width: 820px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .connector-group {
    display: none;
  }

  .hero img {
    width: 190px;
  }

  .wrap {
    padding: 24px 18px 22px;
  }

  .cta {
    min-height: 48px;
    font-size: 17px;
  }
}

.logo{
  text-align:center;
  font-family:"Inter", sans-serif;
  font-weight:800;
  font-size:22px;
  color:#111827;
  margin:10px 0 14px;
}