/* ============================================================
   Broker Genius — industries.css
   Industries page: one card per desk that files declarations.
   Follows the same rules as full-brokerage-service.css.
   ============================================================ */

/* ---------- Hero ---------- */
.ind-hero {
  border-bottom: 2px solid var(--ink);
  padding: 72px 28px 0;
  background: var(--paper-2);
}

.ind-hero__inner { max-width: 1280px; margin: 0 auto; }

.ind-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 11.5px var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 7px 12px;
}
.ind-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: bg-blink 1.8s ease-in-out infinite;
}

.ind-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-top: 28px;
}

.ind-hero__title {
  font-size: 74px;
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 700;
  font-stretch: 96%;
  text-wrap: balance;
}
.ind-hero__title-mark {
  display: inline-block;
  line-height: 1;
  padding: 4px 12px 8px;
  background: var(--accent);
}

.ind-hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
  text-wrap: pretty;
}

.ind-hero__ctas { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Fact strip along the foot of the hero, ruled like the stats band. */
.ind-hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 2px solid var(--ink);
}
.ind-hero__strip-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px 22px 0;
}
.ind-hero__strip-item:not(:last-child) { border-right: 1px solid var(--line); }
.ind-hero__strip-item + .ind-hero__strip-item { padding-left: 24px; }
.ind-hero__strip-k { font: 600 10.5px var(--font-mono); letter-spacing: 0.14em; color: var(--sand); }
.ind-hero__strip-v { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Industry grid ---------- */
.ind-sectors { border-bottom: 2px solid var(--ink); padding: 80px 28px; background: var(--tint); }
.ind-sectors__title { margin-top: 18px; max-width: 16ch; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ind-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  background: var(--card);
  padding: 32px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.ind-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.ind-card--accent { background: var(--accent); }

/* The number sits in a small ruled box, as on the Our Uniqueness values
   grid, so the industry name is the first thing read. */
.ind-card__tag {
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 13px var(--font-mono);
}
.ind-card--accent .ind-card__tag { background: var(--card); }

/* The industry name is the card's headline. */
.ind-card__title {
  font-size: 34px;
  line-height: 1.02;
  font-weight: 700;
  font-stretch: 92%;
  letter-spacing: -0.04em;
  margin-top: 22px;
  text-wrap: balance;
}
.ind-card__lead { font-size: 16.5px; line-height: 1.35; font-weight: 700; letter-spacing: -0.02em; margin-top: 14px; }
.ind-card__body { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 10px 0 22px; }
.ind-card--accent .ind-card__body { color: #4A3A10; }

.ind-card__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.ind-card--accent .ind-card__list { border-top-color: rgba(11, 11, 11, 0.25); }
.ind-card__list-item { padding: 12px 0; font-size: 14.5px; }
.ind-card__list-item:not(:last-child) { border-bottom: 1px solid var(--line); }
.ind-card--accent .ind-card__list-item:not(:last-child) { border-bottom-color: rgba(11, 11, 11, 0.25); }

/* Pinned to the foot so the links line up across a row. */
.ind-card__link { display: inline-block; margin-top: auto; padding-top: 24px; font-size: 15px; font-weight: 700; color: var(--brown); }
.ind-card__link:hover { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.ind-card--accent .ind-card__link { color: var(--ink); }

/* "Don't see your desk?" panel: a grid item spanning the two columns left
   over in the last row, so ten cards do not leave a lone tile. */
.ind-more {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 2px solid var(--ink);
  background: var(--card);
}
.ind-more__label { font: 600 10.5px var(--font-mono); letter-spacing: 0.14em; color: var(--sand); }
.ind-more__text { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin-top: 12px; max-width: 60ch; text-wrap: pretty; }
.ind-more .btn { align-self: flex-start; }

/* ---------- Quote + included ---------- */
/* Plain paper: the grid above is tinted, so this reads as its own band. */
.ind-quote { border-bottom: 2px solid var(--ink); padding: 80px 28px; }

.ind-quote__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.ind-quote__text {
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-top: 22px;
  text-wrap: pretty;
}
.ind-quote__attribution { margin-top: 26px; font-size: 15px; color: var(--muted); }
.ind-quote__name { font-weight: 700; color: var(--ink); }

.ind-included {
  border: 2px solid var(--ink);
  background: var(--card);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 36px;
}
.ind-included__label { font: 600 10.5px var(--font-mono); letter-spacing: 0.14em; color: var(--sand); }
.ind-included__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-top: 20px; }
.ind-included__item { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }

/* ---------- CTA band ---------- */
/* Single column: the band on this page carries no plan list. */
.ind-band__grid { grid-template-columns: minmax(0, 1fr); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .ind-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .ind-hero__title { font-size: 58px; }
  .ind-hero__strip { grid-template-columns: repeat(2, 1fr); }
  .ind-hero__strip-item:nth-child(2n) { border-right: 0; }
  .ind-hero__strip-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ind-hero__strip-item:nth-child(odd) { padding-left: 0; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-quote__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .ind-hero__title { font-size: 44px; }
  .ind-hero__strip { grid-template-columns: minmax(0, 1fr); }
  .ind-hero__strip-item { border-right: 0; padding-left: 0; }
  .ind-hero__strip-item:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .ind-grid { grid-template-columns: minmax(0, 1fr); }
  .ind-card { padding: 26px; }
  .ind-card__title { font-size: 30px; }
  .ind-quote__text { font-size: 26px; }
  .ind-more { grid-column: auto; padding: 26px; }
}
