/*
  BOTS PAGE STYLES
  This file is intentionally isolated for bots.html.
  Future edits for the Bots section should go here.
  Use only .bots-* classes to avoid affecting the rest of the site.
*/

/* ── Capabilities row ────────────────────────────────────────── */
.bots-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}

.bots-capability {
  padding: 40px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bots-capability:last-child {
  border-right: 0;
}

.bots-capability__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.bots-capability__title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.bots-capability__body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--slate);
}

/* ── Bot type grid ───────────────────────────────────────────── */
.bots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.bots-card {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}

.bots-card:hover {
  background: var(--paper-2);
}

.bots-card__icon {
  width: 28px;
  height: 28px;
  color: var(--d3);
  margin-bottom: 8px;
}

.bots-card__label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.bots-card__title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.bots-card__body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--slate);
  flex: 1;
}

/* ── Benefit feature list ────────────────────────────────────── */
.bots-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.bots-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.bots-feature:first-child {
  border-top: 1px solid var(--rule-soft);
}

.bots-feature__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--mute);
  flex-shrink: 0;
}

.bots-feature__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--graphite);
}

.bots-feature__text strong {
  font-weight: 500;
  color: var(--ink);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bots-capabilities {
    grid-template-columns: 1fr;
  }

  .bots-capability {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .bots-capability:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .bots-grid {
    grid-template-columns: 1fr;
  }

  .bots-card {
    padding: 28px 24px;
  }

  .bots-capability {
    padding: 28px 24px;
  }
}
