.adc-status-wrap {
  max-width: 1080px;
  margin: 0 auto;
  font-family: inherit;
}

.adc-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.04);
}

.adc-head {
  margin-bottom: 26px;
}

.adc-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.adc-title {
  margin: 0 0 8px 0;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 800;
  color: #0f172a;
}

.adc-sub {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.5;
}

.adc-form-card {
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
}

.adc-grid {
  display: grid;
  gap: 18px;
}

.adc-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.adc-label {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.adc-input {
  width: 100%;
  height: 56px;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 16px;
  background: #fff;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.adc-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.adc-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.adc-btn {
  height: 54px;
  padding: 0 22px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.adc-btn:hover {
  transform: translateY(-1px);
}

.adc-btn:disabled,
.adc-btn.is-loading {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none;
}

.adc-msg {
  min-height: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.adc-msg.error {
  color: #b91c1c;
}

.adc-msg.success {
  color: #15803d;
}

.adc-result {
  margin-top: 24px;
}

.adc-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.adc-result-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 6px;
}

.adc-result-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}

.adc-progress-line {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.adc-progress-node {
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  transition: all .2s ease;
}

.adc-progress-node.done {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
}

.adc-progress-node.active {
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
}

.adc-progress-node.todo {
  background: #e2e8f0;
}

.adc-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.adc-step-card {
  position: relative;
  min-height: 185px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.adc-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.adc-step-card.done {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border-color: #bbf7d0;
}

.adc-step-card.active {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  border-color: #93c5fd;
  box-shadow:
    0 10px 24px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.06);
}

.adc-step-card.todo {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-color: #e2e8f0;
}

.adc-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.adc-step-badge {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  flex: 0 0 46px;
}

.adc-step-card.done .adc-step-badge {
  background: #16a34a;
  color: #fff;
}

.adc-step-card.active .adc-step-badge {
  background: #2563eb;
  color: #fff;
}

.adc-step-card.todo .adc-step-badge {
  background: #e2e8f0;
  color: #475569;
}

.adc-step-status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.adc-status-done {
  background: #dcfce7;
  color: #166534;
}

.adc-status-active {
  background: #dbeafe;
  color: #1d4ed8;
}

.adc-status-todo {
  background: #e2e8f0;
  color: #475569;
}

.adc-step-name {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.adc-step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
}

.adc-termin-box {
  margin-top: 18px;
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.adc-termin-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.78;
  margin-bottom: 8px;
}

.adc-termin-value {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.adc-status-error {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

@media (max-width: 900px) {
  .adc-title {
    font-size: 32px;
  }

  .adc-steps-grid {
    grid-template-columns: 1fr;
  }

  .adc-progress-line {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .adc-card {
    padding: 20px;
    border-radius: 18px;
  }

  .adc-form-card {
    padding: 16px;
  }

  .adc-row2 {
    grid-template-columns: 1fr;
  }

  .adc-title {
    font-size: 28px;
  }

  .adc-step-name {
    font-size: 19px;
  }

  .adc-btn {
    width: 100%;
  }

  .adc-action-row {
    display: block;
  }

  .adc-progress-line {
    grid-template-columns: repeat(2, 1fr);
  }
}