/* Codnixy — capabilities: 3-card grid + mock visualisations */

.cap-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)) ,
    rgba(8, 12, 22, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 34px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.card.glow {
  background:
    radial-gradient(120% 90% at 100% 100%, rgba(58, 92, 255, 0.55), rgba(8, 12, 22, 0.85) 65%),
    rgba(8, 12, 22, 0.6);
}
.card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.card p {
  color: var(--ink-dim);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  max-width: 30ch;
}
.card .body { flex: 0 0 auto; }
.card .figure {
  margin-top: auto;
  padding-top: 30px;
}

.mock-chart {
  background: #ffffff;
  color: #0a0f1a;
  border-radius: 16px;
  padding: 22px;
  font-family: "Manrope", sans-serif;
}
.mock-chart h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
}
.mock-chart .axis {
  display: flex;
  justify-content: space-between;
  color: #7a8295;
  font-size: 11px;
  margin-bottom: 6px;
}
.mock-chart .plot {
  height: 130px;
  position: relative;
  border-top: 1px dashed #e5e9f0;
  border-bottom: 1px dashed #e5e9f0;
}
.mock-chart .plot svg { width: 100%; height: 100%; }
.mock-chart .tag {
  position: absolute;
  top: -10px;
  left: 28%;
  background: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.mock-assistant {
  border-radius: 16px;
  overflow: hidden;
  background: #5e6b85;
  aspect-ratio: 4/3;
  position: relative;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0) 12px 24px),
    linear-gradient(160deg, #6b7693 0%, #2f384e 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
}
.mock-assistant .silhouette {
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse 60% 40% at 50% 20%, rgba(255,255,255,0.25), transparent 60%);
  border-radius: 50% 50% 0 0;
}
.mock-assistant .regen-chip {
  position: relative;
  z-index: 2;
  padding: 10px 18px;
  background: #fff;
  color: #0a0f1a;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.score-chip {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: #e2eaff;
}
.score-big {
  margin-top: 60px;
  font-size: 180px;
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 4px 80px rgba(58, 92, 255, 0.5);
}
.score-foot {
  margin-top: 22px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
