@import url('./studio-v1.css');
body {
  --accent: #b68afa;
  --accent-soft: #211b32;
}
.agent-scope {
  background: linear-gradient(155deg, #251d38 0%, #161b22 65%);
  border: 1px solid #584174;
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
  position: relative;
}
.agent-scope:before {
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  background: var(--accent);
  margin-bottom: 28px;
  border-radius: 999px;
}
.agent-scope h2 {
  font-size: 30px;
}
.agent-scope > ul {
  padding-left: 0;
  list-style: none;
}
.agent-scope > ul > li {
  padding: 12px 0;
  border-top: 1px solid #43364f;
  margin: 0;
}
.human-check {
  display: flex;
  gap: 16px;
  border-top: 1px solid #584174;
  margin-top: 28px;
  padding-top: 24px;
}
.scope-mark {
  font-size: 32px;
  color: #7ee787;
  line-height: 1;
}
.human-check h3 {
  font-size: 18px;
  color: #7ee787;
  letter-spacing: 0;
}
.human-check li {
  font-size: 14px;
  color: #c5cedb;
}
.agent-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.agent-steps li {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.agent-steps p {
  margin: 24px 0 0;
  font-size: 18px;
}
.agent-steps .stage-number {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #584174;
  border-radius: 6px;
}
.studio-pilot {
  border-color: #584174;
}
@media (max-width: 1050px) {
  .agent-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 580px) {
  .agent-steps {
    grid-template-columns: 1fr;
  }
  .agent-steps li {
    padding: 22px;
  }
  .agent-scope {
    border-radius: 16px;
  }
  .agent-scope h2 {
    font-size: 27px;
  }
}
