/* Integrations — EH cards. Hairline depth, lime only as the connected signal. */

.int-screen { gap: 18px; }
.int-head { display: flex; align-items: center; justify-content: flex-end; }
.int-stat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--text-tertiary);
}
.int-stat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-ink); }

.int-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  align-content: start;
  overflow-y: auto;
  min-height: 0;
}
@media (max-width: 1100px) { .int-grid { grid-template-columns: 1fr; } }

.int-card {
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-hover) var(--ease), background var(--dur-hover) var(--ease);
}
.int-card:hover { border-color: var(--border-soft); }
.int-card.connected { border-color: var(--accent-border); }
.int-card.soon { opacity: 0.72; }

.int-card-top { display: flex; align-items: center; gap: 13px; }
.int-glyph {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--surface-2);
  color: var(--text-primary);
}
.int-card.connected .int-glyph { color: var(--accent-ink); border-color: var(--accent-border); background: var(--accent-soft); }
.int-name-wrap { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.int-name { font-size: 16px; font-weight: 500; letter-spacing: -0.012em; color: var(--text-primary); }
.int-badge {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-tertiary); border: 1px solid var(--border-faint); border-radius: 999px; padding: 2px 9px; white-space: nowrap;
}
.int-badge.on { color: var(--accent-ink); background: var(--accent-soft); border-color: var(--accent-border); }
.int-badge.soon { color: var(--text-tertiary); }
.int-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-ink); }

.int-blurb { font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); margin-top: 14px; max-width: 56ch; }
.int-actions { margin-top: 16px; }
.int-btn { }
.int-note { font-size: 12px; line-height: 1.5; color: var(--text-tertiary); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-faint); }
