/* =========================================================
   Process — sticky scroll timeline
   ========================================================= */

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.process-left {
  position: sticky;
  top: 110px;
}
.process-left .eyebrow { margin-bottom: 1.2rem; }
.process-left .section-title { margin-bottom: 1.5rem; }
.process-left p {
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 38ch;
}

.process-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.process-stats div {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.02);
}
.process-stats .v {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}
.process-stats .l {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Timeline rail */
.process-right {
  position: relative;
  padding-left: 2.2rem;
}
.process-right::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
  opacity: 0.45;
}

.step {
  position: relative;
  padding: 1.5rem 0 2.5rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }

.step::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: 1.8rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 84, 54, 0.12);
  transition: transform var(--t-norm), box-shadow var(--t-norm);
}
.step:hover::before {
  transform: scale(1.18);
  box-shadow: 0 0 0 8px rgba(255, 84, 54, 0.18);
}
.step:nth-child(2)::before { border-color: var(--accent-2); box-shadow: 0 0 0 5px rgba(77, 127, 255, 0.18); }
.step:nth-child(3)::before { border-color: var(--accent-3); box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.18); }

.step-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--accent);
  grid-row: span 2;
}
.step:nth-child(2) .step-num { color: var(--accent-2); }
.step:nth-child(3) .step-num { color: var(--accent-3); }

.step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  letter-spacing: 0.005em;
  color: var(--text);
  align-self: center;
}

.step-body {
  grid-column: 2;
}
.step-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.step-body .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.step-body .meta-row span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
}
