
/* ─── Hero h1: tight line-height, descender buffer + bigger gap to subline ─── */
.hero h1 {
  line-height: 1.04;
  padding-bottom: 0.18em;
  margin-bottom: var(--space-10);
}

/* ─── LLM strip: stacked layout ─── */
.llm-strip {
  padding: 36px 0;
}
.llm-strip .container {
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}
.llm-strip .client-strip-label {
  white-space: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}

.llm-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.llm-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: var(--bg-elevated-1);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all 200ms var(--ease-out);
  cursor: default;
  user-select: none;
}
.llm-logo:hover {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg-elevated-2);
  transform: translateY(-1px);
}
.llm-logo svg,
.llm-logo img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
}

/* ─── Industries grid ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.industry-card {
  background: var(--bg-elevated-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 220ms var(--ease-out);
}
.industry-card:hover {
  border-color: var(--border);
  background: var(--bg-elevated-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim-border);
  color: var(--accent-light);
  margin-bottom: var(--space-4);
}
.industry-card:nth-child(2) .industry-icon,
.industry-card:nth-child(4) .industry-icon,
.industry-card:nth-child(6) .industry-icon {
  background: var(--teal-dim);
  border-color: var(--teal-dim-border);
  color: var(--teal);
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.industry-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── Stat cards: SVG icon variant (no gradient text on SVG) ─── */
.stat-number svg {
  color: var(--accent-light);
  margin-bottom: 0;
}
.stat-card:nth-child(2) .stat-number svg,
.stat-card:nth-child(4) .stat-number svg {
  color: var(--teal);
}
.stat-number:has(svg) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim-border);
  margin: 0 auto var(--space-4);
  -webkit-text-fill-color: initial;
  background-clip: padding-box;
}
.stat-card:nth-child(2) .stat-number:has(svg),
.stat-card:nth-child(4) .stat-number:has(svg) {
  background: var(--teal-dim);
  border-color: var(--teal-dim-border);
}

/* ─── Responsive overrides ─── */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .industries-grid { grid-template-columns: 1fr; }
  .llm-logos { gap: 8px; }
  .llm-logo { padding: 6px 12px; font-size: 12px; }
}
