/* Process page standalone styles – loaded as real stylesheet to avoid Astro scoping issues */

.pp-page {
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.pp-wrap {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pp-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.pp-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-lead {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Timeline */
.pp-tl {
  margin-bottom: 4rem;
}

.pp-row {
  display: flex;
  gap: 1.75rem;
  padding-bottom: 2rem;
  align-items: stretch;
}

.pp-row-last {
  padding-bottom: 0;
}

.pp-col-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  flex-shrink: 0;
}

.pp-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0d9488;
  box-shadow: 0 0 8px rgba(13,148,136,0.3);
  flex-shrink: 0;
  margin-top: 1.5rem;
  transition: background 0.25s, box-shadow 0.25s;
}

.pp-row:hover .pp-dot {
  background: #0d9488;
  box-shadow: 0 0 16px rgba(13,148,136,0.5);
}

.pp-vline {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, #2dd4bf, transparent);
  margin-top: 6px;
  opacity: 0.4;
}

.pp-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.pp-row:hover .pp-card {
  transform: translateX(6px);
  border-color: #0d9488;
  box-shadow: 0 4px 12px rgba(13,148,136,0.1);
}

.pp-n {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px #cbd5e1;
  margin-top: 0.1rem;
  transition: -webkit-text-stroke-color 0.25s;
  letter-spacing: -0.02em;
}

.pp-row:hover .pp-n {
  -webkit-text-stroke-color: #0d9488;
}

.pp-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.pp-p {
  color: #334155;
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0;
}

.pp-p strong {
  color: #0f172a;
  font-weight: 600;
}

/* Standards */
.pp-stds {
  text-align: center;
}

.pp-stds-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.pp-stds-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pp-std {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  text-align: left;
  flex: 1;
  min-width: 170px;
  max-width: 230px;
  transition: border-color 0.2s, box-shadow 0.2s;
  opacity: 1;
}

.pp-std:hover {
  border-color: #0d9488;
  box-shadow: 0 2px 8px rgba(13,148,136,0.1);
  opacity: 1;
}

.pp-std strong {
  font-size: 0.875rem;
  color: #0f172a;
  display: block;
}

.pp-std span {
  font-size: 0.775rem;
  color: #64748b;
}

@media (max-width: 600px) {
  .pp-page { padding-top: 5.5rem; }
  .pp-card { flex-direction: column; gap: 0.5rem; }
  .pp-n { font-size: 1.75rem; }
  .pp-stds-grid { flex-direction: column; align-items: stretch; }
  .pp-std { max-width: 100%; }
}
