/* ============================================
   CSS RESET + BASE STYLES
   ============================================
   Imported by components that need a clean baseline.
   Scoped to :host since components run in Shadow DOM.
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-default);
}

a:not([class]):hover {
  color: var(--blue-primary);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   INDUSTRY OUTCOMES (C36)
   ============================================
   Migrated to Two-Container Rule + new elevation system (2026-04-28).
   - Section: Light variant (whitish gradient)
   - Metric tiles: Filled variant (Cool Steel gradient + multi-layer
     shadow + subtle hover lift). Smaller padding since they're stat
     cards rather than feature cards.
*/

.IndustryOutcomes-module__industryOutcomesSection--QH8lM {
  /* 2026-04-30: was whitish gradient — too narrow contrast against the
     white metric tiles inside. bg-muted gives the tiles real surface. */
  background: var(--bg-muted);
  padding: var(--section-pad) 0;
}

.IndustryOutcomes-module__container--I8DUc {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.IndustryOutcomes-module__industryOutcomesSection--QH8lM h2 {
  font-family: var(--font-body);
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--text-primary);
  text-align: center;
}

/* Tab row */
.IndustryOutcomes-module__indTabs--MtdHu {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.IndustryOutcomes-module__indTab--fqmgH {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--duration-fast) var(--ease-hover),
              background-color var(--duration-fast) var(--ease-hover),
              border-color var(--duration-fast) var(--ease-hover);
}

.IndustryOutcomes-module__indTab--fqmgH:hover {
  border-color: rgba(0, 156, 222, 0.3);
  background: rgba(0, 156, 222, 0.04);
  color: var(--blue-primary);
}

.IndustryOutcomes-module__indTab--fqmgH.IndustryOutcomes-module__active--ULqM_ {
  color: var(--text-inverse);
  background: var(--bg-charcoal);
  border-color: var(--bg-charcoal);
}

/* Panel — hidden by default, grid when active */
.IndustryOutcomes-module__indPanel--UH0fI {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-normal) var(--ease-enter),
              transform var(--duration-normal) var(--ease-enter);
}

.IndustryOutcomes-module__indPanel--UH0fI.IndustryOutcomes-module__active--ULqM_ {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left column */
.IndustryOutcomes-module__indPanelLeft--N0ibg {
  display: flex;
  flex-direction: column;
}

.IndustryOutcomes-module__threatSummary--OrawE {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Quote block */
.IndustryOutcomes-module__indQuoteBlock--pJN7d {
  margin-bottom: 28px;
}

.IndustryOutcomes-module__indQuoteMark--K5lPF {
  font-family: Georgia, serif;
  font-size: var(--display-size);
  line-height: 1;
  color: var(--text-muted);
  opacity: 0.2;
  margin-bottom: 4px;
  user-select: none;
}

.IndustryOutcomes-module__indQuote--e1lv0 {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
}

/* Attribution row */
.IndustryOutcomes-module__indAttribution--Cjze7 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.IndustryOutcomes-module__indAvatar--qxD93 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.IndustryOutcomes-module__indAvatar--qxD93 span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.IndustryOutcomes-module__indAttrName--ueyQg {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.IndustryOutcomes-module__indAttrRole--xg5Y6 {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Right column — 2x2 metrics grid */
.IndustryOutcomes-module__indPanelRight--xrTJn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === FILLED CARD (per Two-Container Rule) === */
.IndustryOutcomes-module__indMetric--ktI6J {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--elev-1), var(--elev-inset-light);
  transition: background var(--duration-fast) var(--ease-hover),
              border-color var(--duration-fast) var(--ease-hover),
              box-shadow var(--duration-fast) var(--ease-hover),
              transform var(--duration-fast) var(--ease-hover);
}

.IndustryOutcomes-module__indMetric--ktI6J:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FD 100%);
  border-color: var(--border-card-blue);
  box-shadow: var(--elev-2), var(--elev-inset-light);
  transform: translateY(-2px);
}

.IndustryOutcomes-module__indMetricValue--MG8t1 {
  font-family: var(--font-body);
  font-size: var(--h2-size);
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.IndustryOutcomes-module__indMetricLabel--EaLWM {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 500;
}

/* Explore link — text link, not a button */
.IndustryOutcomes-module__indLearnMore--L21Gd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-primary);
  text-decoration: none;
  margin-top: 4px;
  grid-column: 1 / -1;
  transition: gap var(--duration-fast) var(--ease-hover),
              color var(--duration-fast) var(--ease-hover);
}

.IndustryOutcomes-module__indLearnMore--L21Gd:hover {
  gap: 10px;
  color: var(--blue-primary-hover);
}

/* Tablet */
@media (max-width: 1024px) {
  .IndustryOutcomes-module__indPanel--UH0fI.IndustryOutcomes-module__active--ULqM_ {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .IndustryOutcomes-module__indPanelRight--xrTJn {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .IndustryOutcomes-module__industryOutcomesSection--QH8lM {
    padding: var(--section-pad-mobile) 0;
  }

  .IndustryOutcomes-module__industryOutcomesSection--QH8lM h2 {
    margin-bottom: 32px;
  }

  .IndustryOutcomes-module__indTabs--MtdHu {
    margin-bottom: 32px;
  }

  .IndustryOutcomes-module__indTab--fqmgH {
    padding: 8px 16px;
    font-size: 13px;
  }

  .IndustryOutcomes-module__indPanel--UH0fI.IndustryOutcomes-module__active--ULqM_ {
    gap: 32px;
  }

  .IndustryOutcomes-module__indPanelRight--xrTJn {
    grid-template-columns: 1fr 1fr;
  }

  .IndustryOutcomes-module__indMetric--ktI6J {
    padding: 20px;
  }

  .IndustryOutcomes-module__indMetricValue--MG8t1 {
    font-size: 28px;
  }

  .IndustryOutcomes-module__indQuote--e1lv0 {
    font-size: 16px;
  }
}

