/* INDUSTRIES BENTO GRID */
.ind-bento { padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 3rem); max-width: 1480px; margin: 0 auto; }
.ind-bento__head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.ind-bento__head .cap-overview__kicker { display: block; margin-bottom: 0.75rem; }
.ind-bento__head .cap-overview__title { max-width: 720px; }
.ind-bento__lede { max-width: 640px; margin-top: 1rem; color: rgba(15, 13, 11, 0.62); font-size: 1.05rem; line-height: 1.6; }
:root[data-theme="dark"] .ind-bento__lede, body.is-dark .ind-bento__lede { color: rgba(245,242,234,0.72); }

.ind-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
.ind-bento__card { grid-column: span 1; grid-row: span 1; }
.ind-bento__card--featured { grid-column: span 2; grid-row: span 2; }
.ind-bento__card--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .ind-bento__grid { grid-template-columns: repeat(2, 1fr); }
  .ind-bento__card--featured { grid-column: span 2; grid-row: span 1; }
  .ind-bento__card--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .ind-bento__grid { grid-template-columns: 1fr; }
  .ind-bento__card, .ind-bento__card--featured, .ind-bento__card--wide { grid-column: span 1; grid-row: span 1; }
}

.ind-bento__card a {
  display: flex; flex-direction: column;
  height: 100%; padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #FAF8F2;
  border: 1px solid rgba(15, 13, 11, 0.08);
  border-radius: 18px;
  text-decoration: none; color: #0F0D0B;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1),
              border-color 0.4s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.4s cubic-bezier(.2,.7,.2,1);
  position: relative; overflow: hidden;
}
.ind-bento__card a:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 36, 60, 0.35);
  box-shadow: 0 24px 60px -20px rgba(15,13,11,0.18),
              0 0 0 1px rgba(255, 36, 60, 0.08);
}
.ind-bento__card a:hover .ind-bento__title { color: #FF243C; }
.ind-bento__card a:hover .ind-bento__arrow { transform: translateX(6px); }
:root[lang="ar"] .ind-bento__card a:hover .ind-bento__arrow { transform: translateX(-6px); }

.ind-bento__cat {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #FF243C;
  margin-bottom: 0.75rem;
}
.ind-bento__title {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.2; font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #0F0D0B;
  transition: color 0.3s cubic-bezier(.2,.7,.2,1);
}
.ind-bento__card--featured .ind-bento__title {
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
}
.ind-bento__desc {
  font-size: 0.95rem; line-height: 1.55;
  color: rgba(15, 13, 11, 0.62);
  margin: 0 0 auto 0;
}
.ind-bento__card--featured .ind-bento__desc { font-size: 1.05rem; max-width: 540px; }
.ind-bento__foot {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0F0D0B;
}
.ind-bento__arrow {
  display: inline-flex; transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
:root[lang="ar"] .ind-bento__arrow svg { transform: scaleX(-1); }
.ind-bento__card--featured a::after {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle at center, rgba(255,36,60,0.10), transparent 65%);
  pointer-events: none;
}
.ind-bento__badge {
  display: inline-block; align-self: flex-start;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(255, 36, 60, 0.10);
  color: #FF243C;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ind-bento__icon{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:12px;background:rgba(255,36,60,0.08);color:#FF243C;margin-bottom:1rem}
.ind-bento__icon svg{width:26px;height:26px}
.ind-bento__card--featured .ind-bento__icon{width:56px;height:56px}
.ind-bento__card--featured .ind-bento__icon svg{width:30px;height:30px}
.ind-bento__card a:hover .ind-bento__icon{background:rgba(255,36,60,0.16)}

/* overview-hero-clearance: keep first section's eyebrow clear of the fixed header on mobile */
@media (max-width: 800px) { main > .ind-bento:first-of-type { padding-top: clamp(6.5rem, 22vw, 8.5rem); } }
