/* ============================================================
   process.css — Horizontal Process Scroller
   ============================================================ */

#process {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: #f4f4f4;
}

.process-top {
  padding: 0 var(--pad-x);
  margin-bottom: 56px;
}

.process-scroller {
  overflow-x: auto;
  padding: 0 var(--pad-x) 36px;
  scrollbar-width: none;
}

.process-scroller::-webkit-scrollbar { display: none; }

.process-track {
  display: flex;
  width: max-content;
  gap: 0;
}

/* ── Card ───────────────────────────────────── */
.proc-card {
  width: 310px;
  flex-shrink: 0;
  background: #f4f4f4;
  border-right: 1px solid var(--rule-2);
  padding: 48px 42px;
  position: relative;
  transition: background 0.3s;
}

.proc-card:first-child { border-left: 1px solid var(--rule-2); }
.proc-card:hover { background: rgba(184, 255, 57, 0.035); }

/* Neural dot connector */
.proc-dot {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  z-index: 2;
  background: var(--color-bg-alt);
  border: 1px solid var(--rule-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 7px rgba(184, 255, 57, 0.55);
}

.proc-card:last-child .proc-dot { display: none; }

.proc-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 50px;
  color: rgba(15, 15, 14, 0.06);
  line-height: 1;
  margin-bottom: 18px;
}

.proc-h {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-ink);
}

.proc-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.proc-p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-ink-2);
  line-height: 1.85;
}

/* ── Horizontal scroll cue ──────────────────── */
.proc-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: var(--pad-x);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-ink-2);
  font-family: var(--font-body);
  font-weight: 300;
}

.proc-scroll-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(to right, var(--color-ink-2), transparent);
  animation: hScrollPulse 2.4s infinite ease-in-out;
}

@keyframes hScrollPulse {
  0%, 100% { transform: scaleX(0); transform-origin: left; opacity: 0; }
  50%       { transform: scaleX(1); transform-origin: left; opacity: 1; }
}
