/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/styles/industries-hub.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
/* ─── Industries Hub ─── */
.ihub {
  --ihub-accent: #2563eb;
  --ihub-ink: #0f172a;
  --ihub-muted: #64748b;
  --ihub-soft: #f8fafc;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ihub-ink);
  background: #fff;
  width: 100%;
}

.ihub__hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 1.5rem 2.75rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 100% at 0% 0%, #cae2ff 0%, transparent 70%),
    radial-gradient(ellipse 70% 100% at 100% 0%, #fff0dc 0%, transparent 70%),
    #fff;
}

.ihub__shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.ihub__hero .ihub__shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ihub__title {
  margin: 0;
  max-width: min(44rem, 96%);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.55rem, 5.6vw, 4.25rem);
  letter-spacing: -0.04em;
  line-height: 1.16;
  color: #0f172a;
}

.ihub__title-line {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-height: 1.2em;
  margin-inline: auto;
}

.ihub__title-line--accent {
  color: #2563eb;
}

.ihub__title-reserve {
  display: block;
  visibility: hidden;
  white-space: nowrap;
  font: inherit;
  letter-spacing: inherit;
}

.ihub__fade-in {
  opacity: 0;
  animation: ihub-hero-in 0.9s ease both;
}

@keyframes ihub-hero-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.ihub__lede {
  margin: 1.35rem auto 0;
  max-width: 38rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: #475569;
  text-align: center;
}

.ihub__grid-section {
  padding: 2rem 1.5rem 4.75rem;
}

.ihub__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.ihub__card {
  --ihub-accent: #2563eb;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
  padding: 1.75rem 1.35rem 1.35rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ihub__card:hover {
  transform: translateY(-5px);
  border-color: #e2e8f0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.ihub__card-icon {
  position: relative;
  width: auto;
  height: auto;
  border-radius: 0;
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
  color: var(--ihub-accent);
  background: none;
  z-index: 0;
}

.ihub__card-icon-glow {
  display: none;
}

.ihub__card-icon svg {
  position: relative;
  z-index: 1;
  width: 3.15rem;
  height: 3.15rem;
  filter: none;
}

.ihub__card-title {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
  line-height: 1.25;
}

.ihub__card-desc {
  margin: 0.55rem 0 0;
  flex: 1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #94a3b8;
  max-width: 16.5rem;
}

.ihub__card-metric {
  margin-top: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.ihub__card-metric strong {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ihub-accent);
}

.ihub__card-metric span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.ihub__card-btn {
  margin-top: 1.15rem;
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.25rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid #2563eb;
  background: transparent;
  color: #2563eb;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ihub__card:hover .ihub__card-btn {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: none;
}

.ihub__footnote {
  margin: 2.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

.ihub__footnote a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.15rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

@media (min-width: 641px) {
  .ihub__footnote a {
    white-space: nowrap;
  }
}

.ihub__footnote a:hover {
  gap: 0.5rem;
  text-decoration: underline;
}

.ihub__reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ihub__reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .ihub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ihub__hero {
    padding: 6.5rem 1.25rem 2.25rem;
  }

  .ihub__title {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 2.85rem);
  }

  .ihub__grid {
    grid-template-columns: 1fr;
  }

  .ihub__footnote a {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ihub__fade-in,
  .ihub__reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

