/* ==========================================================================
   WORKFLOW STEPS + ORBIT VISUAL
   ========================================================================== */
.workflow-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.workflow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-4);
  padding: var(--s-5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: border-color var(--d-fast) var(--ease-standard),
              background var(--d-fast) var(--ease-standard);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
}

.workflow-step:hover { border-color: var(--ink); }

.workflow-step.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.workflow-step.is-active .step-num { background: var(--accent); color: var(--accent-ink); }
.workflow-step.is-active .step-text { color: rgba(250, 250, 250, 0.78); }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--paper-2);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 600;
  display: block;
}

.step-text {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.workflow-visual {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.workflow-visual::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(214, 255, 61, 0.15) 25%, transparent 50%, rgba(214, 255, 61, 0.10) 75%, transparent 100%);
  animation: spin-slow 22s linear infinite;
  pointer-events: none;
}

.workflow-orbit {
  position: relative;
  margin: auto;
  width: 320px;
  height: 320px;
}

.workflow-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
}

.workflow-orbit-ring--inner {
  inset: 50px;
  border-color: rgba(255, 255, 255, 0.12);
  animation: spin-slow 28s linear infinite reverse;
}

.workflow-orbit-core {
  position: absolute;
  inset: 50%;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-orbit-core::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(214, 255, 61, 0.35);
}

.orbit-node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--paper);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.orbit-node:nth-child(3) { top: -10px; left: 50%; margin-left: -28px; }
.orbit-node:nth-child(4) { right: -10px; top: 50%; margin-top: -28px; }
.orbit-node:nth-child(5) { bottom: -10px; left: 50%; margin-left: -28px; }
.orbit-node:nth-child(6) { left: -10px; top: 50%; margin-top: -28px; }

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.workflow-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 250, 250, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-card {
  padding: var(--s-7);
  border-radius: var(--r-xl);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 100% 100%, rgba(214, 255, 61, 0.18), transparent 60%);
  pointer-events: none;
}

.contact-card h3 {
  font-size: var(--fs-h2);
  color: var(--paper);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--s-4);
  align-items: flex-start;
  padding-block: var(--s-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child { border-bottom: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.contact-item .lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2px;
}

.contact-item .val {
  font-size: 1rem;
  color: var(--paper);
  word-break: break-word;
}

.contact-form {
  padding: var(--s-7);
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.contact-form h3 {
  font-size: var(--fs-h2);
  letter-spacing: var(--tracking-tight);
}

.form-row {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.9375rem;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  transition: border-color var(--d-fast) var(--ease-standard),
              background var(--d-fast) var(--ease-standard);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: var(--paper);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.form-foot small {
  color: var(--muted);
  font-size: var(--fs-xs);
}
