.progress-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 36px;
  align-items: center;
  padding: 80px 5vw 60px;
  background:
    radial-gradient(circle at 10% 20%, rgba(19, 78, 74, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(30, 64, 175, 0.08) 0%, transparent 45%),
    linear-gradient(135deg, #030712 0%, #0d1527 50%, #030712 100%);
  color: #f8fafc;
  border-bottom: 1px solid var(--line);
  animation: fadeInUp 0.7s ease-out;
}

.progress-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.progress-hero-copy {
  min-width: 0;
}

.progress-hero h1,
.progress-hero .lead {
  overflow-wrap: anywhere;
}

.progress-kicker {
  margin: 0 0 16px;
  color: #bae6fd;
  font-size: 15px;
  font-weight: 800;
}

.progress-hero .lead {
  max-width: 860px;
  color: #cbd5e1;
  margin-top: 16px;
}

.status-panel {
  display: grid;
  gap: 16px;
}

.status-panel > div,
.progress-item,
.check-list > div,
.timeline > div {
  background: #111827;
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.status-panel > div {
  display: grid;
  gap: 6px;
  min-height: 100px;
  padding: 20px;
}

.status-panel > div:hover,
.progress-item:hover,
.check-list > div:hover,
.timeline > div:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.status-panel span,
.progress-item span,
.check-list p,
.timeline p {
  color: var(--muted);
}

.status-panel strong {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  color: #f8fafc;
}

.progress-section {
  padding: 90px 5vw;
  background: #030712;
}

.alt-section {
  background: #060b18;
  border-block: 1px solid var(--line);
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.architecture-flow > div {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #f1f5f9;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.architecture-flow > div:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
}

.architecture-flow span {
  display: none;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.progress-item {
  min-height: 230px;
  padding: 24px;
  position: relative;
}

.progress-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--cyan);
  font-size: 14px;
}

.progress-item h3,
.check-list strong {
  color: #ffffff;
}

.progress-item h3 {
  margin: 16px 0 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.progress-item p {
  font-size: 14px;
  line-height: 1.5;
}

.progress-item p,
.check-list p,
.timeline p {
  margin: 0;
}

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

.check-list > div {
  display: grid;
  gap: 10px;
  min-height: 140px;
  padding: 22px;
}

.check-list strong {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list strong::before {
  content: '⚡';
  color: var(--amber);
}

.check-list p {
  font-size: 14px;
  line-height: 1.5;
}

code {
  padding: 3px 8px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: #38bdf8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline > div {
  min-height: 160px;
  padding: 22px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 15px;
}

.timeline p {
  font-size: 14px;
  line-height: 1.5;
}

.next-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.6;
}

.next-list li {
  padding-left: 8px;
}

.next-list li::marker {
  color: var(--cyan);
  font-weight: 800;
}

.summary-band {
  padding: 60px 5vw;
  background: linear-gradient(135deg, #0f766e 0%, #1e3a8a 100%);
  color: #ffffff;
  border-top: 1px solid var(--line);
  box-shadow: inset 0 20px 40px rgba(0,0,0,0.15);
}

.summary-band p {
  max-width: 1120px;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

@media (max-width: 980px) {
  .progress-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .status-panel {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .architecture-flow,
  .progress-grid,
  .check-list,
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .progress-hero,
  .progress-section {
    padding: 60px 5vw;
  }

  .progress-hero-copy {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .progress-hero h1 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.18;
  }

  .status-panel strong {
    font-size: 24px;
  }
}

/* Brand alignment for the progress page */
.progress-hero {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.1), transparent 30rem),
    radial-gradient(circle at 12% 18%, rgba(217, 119, 6, 0.08), transparent 22rem),
    linear-gradient(180deg, #f8fbf9 0%, #edf3f0 100%);
  color: var(--ink);
}

.progress-hero h1 {
  color: var(--ink);
}

.progress-kicker {
  color: var(--teal);
  letter-spacing: 0.08em;
}

.progress-hero .lead,
.next-list,
.timeline p,
.check-list p {
  color: var(--muted);
}

.status-panel > div,
.progress-item,
.check-list > div,
.timeline > div,
.architecture-flow > div {
  background: rgba(248, 251, 249, 0.94);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.status-panel > div:hover,
.progress-item:hover,
.check-list > div:hover,
.timeline > div:hover {
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: 0 18px 42px rgba(23, 58, 49, 0.12);
}

.status-panel strong,
.progress-item h3,
.check-list strong,
.timeline strong,
.architecture-flow > div {
  color: var(--ink);
}

.progress-section,
.alt-section {
  background: transparent;
}

.alt-section {
  border-block: 1px solid var(--line);
}

.architecture-flow span,
.timeline span,
.progress-item span {
  background: #e0f2ef;
  border-color: rgba(15, 118, 110, 0.14);
  color: var(--teal);
}

.summary-band {
  background: linear-gradient(135deg, #10251f 0%, #115e59 100%);
}

code {
  background: #edf3f0;
  border-color: var(--line);
  color: var(--teal);
}

/* Visual repair: keep progress page in the same dark premium direction */
.progress-hero {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(217, 119, 6, 0.11), transparent 22rem),
    linear-gradient(180deg, #07110f 0%, #10251f 100%);
  color: #f8fafc;
}

.progress-hero h1 {
  color: #f8fafc;
}

.progress-hero .lead,
.next-list,
.timeline p,
.check-list p {
  color: var(--muted);
}

.status-panel > div,
.progress-item,
.check-list > div,
.timeline > div,
.architecture-flow > div {
  background:
    linear-gradient(145deg, rgba(236, 253, 245, 0.08), rgba(236, 253, 245, 0.025)),
    rgba(16, 37, 31, 0.78);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.status-panel strong,
.progress-item h3,
.check-list strong,
.architecture-flow > div {
  color: #f8fafc;
}

.progress-section,
.alt-section {
  background: transparent;
}

.architecture-flow span,
.timeline span,
.progress-item span {
  background: rgba(224, 242, 239, 0.1);
  border-color: rgba(45, 212, 191, 0.18);
  color: #99f6e4;
}

code {
  background: rgba(236, 253, 245, 0.08);
  border-color: var(--line);
  color: #99f6e4;
}
