/**
 * procedure-staff.css
 * The Procedure page (steps + rules) and the public staff grid.
 */

/* PROSEDUR */
#prosedur-view {
  display: none;
  padding: 70px 0 80px;
}

.proc-hero {
  max-width: 680px;
  margin-bottom: 50px;
}

.proc-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}

.proc-steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
}

.proc-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  background: var(--bg-panel);
  padding: 24px 24px;
}

.proc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--muted);
}

.proc-step:nth-child(odd) .proc-num {
  color: var(--cyan);
}

.proc-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.proc-step-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rule-card {
  display: flex;
  gap: 12px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.rule-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 107, 129, .12);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rule-icon svg {
  width: 15px;
  height: 15px;
}

.rule-text {
  font-size: 13px;
  line-height: 1.55;
  color: #D3D8E8;
}

.proc-cta {
  margin-top: 50px;
  background: radial-gradient(ellipse at 20% 30%, rgba(124, 111, 255, .16), transparent 60%), var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.proc-cta div p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 420px;
}

.proc-cta div h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  margin: 0 0 8px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
  margin-top: 40px;
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}
