/* ================================================================
   features.css — Page-specific styles for /features/
   Extends landing.css (shared marketing page base)
   ================================================================ */

/* Category group titles in the feature grid */
.ft-category { margin-top: 40px; }
.ft-category:first-child { margin-top: 0; }
.ft-category-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* Feature card icon container */
.ft-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.ft-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Feature card title */
.ft-card-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 6px;
  color: var(--text);
}

/* Feature card description */
.ft-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Dark mode */
[data-theme="dark"] .ft-category-title {
  border-bottom-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .ft-card-icon {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}
[data-theme="dark"] .ft-card-icon svg {
  stroke: #e4e4e4;
}

/* Responsive */
@media (max-width: 600px) {
  .ft-category { margin-top: 32px; }
}
