/* ── IndustriesPage.css ──────────────────────────────────── */

/* ── Root / layout ── */
.ind-root {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0a0a0a;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
}

.ind-container {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

/* ── HERO ── */
.ind-hero {
  min-height: 72vh;
  background: linear-gradient(155deg, #e8e8e6 0%, rgba(14,14,32,0.55) 45%, #ebebea 100%), url('https://theagentslayer.b-cdn.net/industries_banner.png') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 48px 80px;
  text-align: center;
}

.ind-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 100%);
}

.ind-hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(100,90,230,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.ind-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  border-radius: 28px;
  padding: 52px 60px;
  border: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.ind-hero-content:hover {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(255,255,255,0.08);
}

.ind-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: wai-fadeUp 0.6s ease both;
}

.wai-root .ind-hero-h1 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0 0 22px;
  animation: wai-fadeUp 0.7s 0.08s ease both;
}

.ind-hero-h1-dim {
  color: rgba(255,255,255,0.45);
}

.ind-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: wai-fadeUp 0.7s 0.16s ease both;
}

.ind-hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: wai-fadeUp 0.7s 0.24s ease both;
}

/* Pill nav buttons */
.ind-pill {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ind-pill--active {
  background: #fff;
  border: 1px solid #fff;
  color: #0a0a0a;
}

.ind-pill--inactive {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

.ind-pill--inactive:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.ind-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #f5ecdd);
}

/* ── STICKY SIDE NAV ── */
.ind-sidenav-wrap {
  position: relative;
}

.ind-sidenav {
  position: fixed;
  left: max(20px, calc(50% - 560px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ind-dot-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
  background: transparent;
}

.ind-dot-btn--active {
  border: 2px solid #fff;
  background: #fff;
}

.ind-dot-btn--inactive {
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
}

.ind-dot-btn--inactive:hover {
  border-color: rgba(255,255,255,0.5);
}

.ind-dot-inner--active {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a0a0a;
  transition: background 0.2s;
}

.ind-dot-inner--inactive {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s;
}

.ind-dot-tooltip {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── INDUSTRY SECTIONS ── */
.ind-section {
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.ind-section-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  pointer-events: none;
}

.ind-section-inner {
  position: relative;
  z-index: 1;
}

/* Industry header grid */
.ind-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

/* Badge */
.ind-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.ind-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.ind-badge-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Industry headings */
.ind-section-h2 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.ind-section-sub {
  font-size: 16px;
  line-height: 1.75;
  max-width: 380px;
}

/* Right column viz */
.ind-viz-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.ind-viz-card {
  border-radius: 16px;
  padding: 28px 28px 20px;
  overflow: hidden;
  position: relative;
}

.ind-bar-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 16px;
}

.ind-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 0.4s;
}

.ind-viz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ind-viz-label {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 2px;
}

.ind-viz-value {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.ind-viz-badge {
  background: #22c55e18;
  border: 1px solid #22c55e33;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

.ind-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ind-stat-card {
  border-radius: 12px;
  padding: 18px 20px;
}

.ind-stat-label {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
}

.ind-stat-value {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* Capabilities label */
.ind-cap-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Use cases grid */
.ind-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ind-use-card {
  border-radius: 16px;
  padding: 28px;
}

.ind-use-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ind-use-h3 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.ind-use-desc {
  font-size: 14px;
  line-height: 1.65;
}

/* CTA row */
.ind-cta-row {
  margin-top: 40px;
  display: flex;
  gap: 12px;
}

.ind-cta-primary {
  border: none;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ind-cta-primary:hover {
  opacity: 0.8;
}

.ind-cta-secondary {
  background: transparent;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Dark variant secondary CTA */
.ind-cta-secondary--dark {
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}

.ind-cta-secondary--dark:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* Light variant secondary CTA */
.ind-cta-secondary--light {
  color: #666;
  border: 1px solid #ddd;
}

.ind-cta-secondary--light:hover {
  color: #0a0a0a;
  border-color: #aaa;
}

/* Section divider */
.ind-section-divider {
  position: absolute;
  bottom: 0;
  left: 48px;
  right: 48px;
  height: 1px;
}

/* Smooth color transition into next section */
.ind-section-transition {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  z-index: 0;
}

/* ── PLATFORM FEATURES ── */
.ind-platform {
  background: #f5f5f3;
  padding: 96px 48px;
}

.ind-platform-header {
  text-align: center;
  margin-bottom: 64px;
}

.ind-platform-badge {
  display: inline-block;
  background: #0a0a0a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ind-platform-h2 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.ind-platform-sub {
  font-size: 17px;
  color: #888;
  max-width: 460px;
  margin: 0 auto;
}

.ind-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ind-plat-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px;
  border: 1px solid #eaeaea;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ind-plat-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  border-color: #d4d4d4;
}

.ind-plat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ind-plat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f0ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  flex-shrink: 0;
}

.ind-plat-h3 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
}

.ind-plat-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* ── Bespoke · Financial Services ── */
.ind-fin-gauge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 28px 22px;
  text-align: center;
  position: relative;
}
.ind-fin-gauge-svg { width: 100%; height: 110px; display: block; }
.ind-fin-gauge-val {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-top: -48px;
  letter-spacing: -0.5px;
}
.ind-fin-gauge-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}
.ind-fin-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ind-fin-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.3px;
}
.ind-fin-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}
.ind-fin-meta span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ind-fin-meta strong {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

/* ── Bespoke · Healthcare ── */
.ind-hc-ekg { border-radius: 16px; padding: 16px 20px 12px; }
.ind-hc-ekg-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
}
.ind-hc-pulse { width: 8px; height: 8px; border-radius: 50%; animation: ind-pulse 1.2s ease-in-out infinite; }
.ind-hc-ekg-svg { width: 100%; height: 60px; display: block; }
.ind-hc-journey {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 14px;
  padding: 16px 20px;
}
.ind-hc-stage { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.ind-hc-stage:last-child { flex: 0 0 auto; }
.ind-hc-stage span { font-size: 12px; color: #444; font-weight: 500; white-space: nowrap; }
.ind-hc-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.ind-hc-connector { flex: 1; height: 2px; margin: 0 6px; border-radius: 1px; }
.ind-hc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ind-hc-stat { background: #fff; border: 1px solid #ebebea; border-radius: 10px; padding: 12px 14px; }
.ind-hc-stat .ind-stat-label { font-size: 10px; margin-bottom: 4px; }
.ind-hc-stat .ind-stat-value { font-size: 17px; color: #0a0a0a; }

/* ── Bespoke · Retail ── */
.ind-rt-chart { border-radius: 16px; padding: 18px 22px 12px; }
.ind-rt-chart-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.ind-rt-chart-head .ind-stat-label { margin-bottom: 2px; }
.ind-rt-chart-head .ind-stat-value { font-size: 22px; color: #0a0a0a; }
.ind-rt-lift { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: 0.5px; }
.ind-rt-chart-svg { width: 100%; height: 72px; display: block; }
.ind-rt-funnel { background: #fff; border: 1px solid #ebebea; border-radius: 14px; padding: 14px 18px 16px; }
.ind-rt-funnel-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}
.ind-rt-funnel-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.ind-rt-funnel-row:first-of-type { margin-top: 0; }
.ind-rt-funnel-label { width: 72px; font-size: 12px; color: #555; font-weight: 500; }
.ind-rt-funnel-track { flex: 1; height: 8px; background: #f0f0ee; border-radius: 4px; overflow: hidden; }
.ind-rt-funnel-fill { height: 100%; border-radius: 4px; transition: width 0.4s; }
.ind-rt-funnel-val { width: 40px; text-align: right; font-size: 12px; font-weight: 700; color: #0a0a0a; }
.ind-use-grid--steps .ind-use-card { position: relative; padding-top: 34px; }
.ind-use-step {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  position: absolute;
  top: 18px;
  right: 24px;
}

/* ── Bespoke · Travel & Hospitality ── */
.ind-tv-card { border-radius: 16px; padding: 22px; }
.ind-tv-route { display: flex; align-items: center; margin-bottom: 18px; }
.ind-tv-stop { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; }
.ind-tv-stop--last { flex: 0 0 auto; }
.ind-tv-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ind-tv-label { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; }
.ind-tv-line { flex: 1; margin: 0 6px; border-top: 1px dashed; opacity: 0.4; }
.ind-tv-loyalty { padding-top: 14px; border-top: 1px solid #e8e8e6; }
.ind-tv-loyalty-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: 12px; color: #555; }
.ind-tv-loyalty-head strong { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 15px; font-weight: 700; }
.ind-tv-loyalty-bar { height: 8px; background: #f0f0ee; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.ind-tv-loyalty-fill { height: 100%; border-radius: 4px; transition: width 0.4s; }
.ind-tv-loyalty-tiers { display: flex; justify-content: space-between; font-size: 10px; color: #888; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }

/* ── Bespoke · Media ── */
.ind-md-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px 22px; }
.ind-md-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.ind-md-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}
.ind-md-live-dot { width: 6px; height: 6px; border-radius: 50%; animation: ind-pulse 1.2s ease-in-out infinite; }
.ind-md-head-val { text-align: right; }
.ind-md-head-val .ind-viz-label { margin-bottom: 2px; }
.ind-md-wave { width: 100%; height: 60px; display: block; }
.ind-md-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ind-md-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
}
.ind-md-stat span { font-size: 12px; color: rgba(255,255,255,0.45); }
.ind-md-stat strong { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 15px; color: #fff; font-weight: 700; }
.ind-md-stat--wide { grid-column: 1 / -1; }
.ind-md-stat--wide strong { font-size: 12px; letter-spacing: 0.5px; }

@keyframes ind-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

/* ── Responsive · bespoke viz ── */
@media (max-width: 900px) {
  .ind-fin-chips { grid-template-columns: 1fr 1fr; }
  .ind-hc-stats { grid-template-columns: repeat(3, 1fr); }
  .ind-hc-journey { flex-wrap: wrap; gap: 10px 0; }
  .ind-tv-route { flex-wrap: wrap; gap: 8px 0; }
  .ind-tv-line { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Server-rendered additions.

   IndustriesPage.jsx computed every color inline from the industry object and an
   isDark flag. Every industry had light: true, so only the light treatment is kept
   here; the palette arrives as --ind-accent / --ind-accent-light / --ind-accent-mid
   on each section element.
   ══════════════════════════════════════════════════════════════════════════ */

.ind-badge {
    background: var(--ind-accent-light);
    border: 1px solid var(--ind-accent-light);
}

.ind-badge-dot { background: var(--ind-accent-mid); }
.ind-badge-label { color: var(--ind-accent); }
.ind-section-h2 { color: #0a0a0a; }
.ind-section-sub { color: #666; }
.ind-cap-label { color: #bbb; }
.ind-use-step { color: var(--ind-accent-mid); }
.ind-use-card { background: #fff; border: 1px solid #e8e8e6; }
.ind-use-icon { background: var(--ind-accent-light); color: var(--ind-accent-mid); }
.ind-use-h3 { color: #0a0a0a; }
.ind-use-desc { color: #666; }
.ind-cta-primary { background: #0a0a0a; color: #fff; }

/* Cards faded up on mount via an inline animation with a per-index delay. Kept as a plain
   entrance animation so the content is never hidden when JS is unavailable. */
.js .ind-use-card { animation: wai-fadeUp 0.5s 0.1s ease both; }
.js .ind-use-card:nth-child(2) { animation-delay: 0.18s; }
.js .ind-use-card:nth-child(3) { animation-delay: 0.26s; }

/* ── Per-industry viz ── */

.ind-fin-gauge { background: #fff; border: 1px solid var(--ind-accent-light); }
.ind-fin-gauge-track { stroke: rgba(10,10,10,0.08); }
.ind-fin-gauge-fill { stroke: var(--ind-accent-mid); }
.ind-fin-gauge-val { color: #0a0a0a; }
.ind-fin-gauge-label { color: #888; }
.ind-fin-chip { background: #fff; border: 1px solid var(--ind-accent-light); color: var(--ind-accent); }
.ind-fin-chip-check { stroke: var(--ind-accent-mid); fill: none; stroke-width: 3; }
.ind-fin-meta { background: #fff; border: 1px solid var(--ind-accent-light); }
.ind-fin-meta span { color: #888; }
.ind-fin-meta strong { color: #0a0a0a; }

.ind-hc-ekg { background: color-mix(in srgb, var(--ind-accent-light) 50%, transparent); border: 1px solid var(--ind-accent-light); }
.ind-hc-pulse { background: var(--ind-accent-mid); }
.ind-hc-ekg-line { stroke: var(--ind-accent-mid); }
.ind-hc-dot { background: var(--ind-accent-mid); }
.ind-hc-connector { background: var(--ind-accent-light); }
.ind-stat-label { color: #aaa; }
.ind-stat-value--accent { color: var(--ind-accent); }

.ind-rt-chart { background: color-mix(in srgb, var(--ind-accent-light) 50%, transparent); border: 1px solid var(--ind-accent-light); }
.ind-rt-chart-head .ind-stat-label { color: #888; }
.ind-rt-lift { background: color-mix(in srgb, var(--ind-accent-mid) 13%, transparent); color: var(--ind-accent); }
.ind-rt-chart-area { fill: var(--ind-accent-mid); }
.ind-rt-chart-line { stroke: var(--ind-accent-mid); }
.ind-rt-funnel-fill { background: var(--ind-accent-mid); }

.ind-tv-card { background: color-mix(in srgb, var(--ind-accent-light) 50%, transparent); border: 1px solid var(--ind-accent-light); }
.ind-tv-icon { color: var(--ind-accent-mid); border: 1px solid var(--ind-accent-light); }
.ind-tv-label { color: var(--ind-accent); }
.ind-tv-line { border-color: var(--ind-accent-mid); }
.ind-tv-loyalty-head strong { color: var(--ind-accent); }
.ind-tv-loyalty-fill { width: 82%; background: linear-gradient(90deg, #9ca3af, var(--ind-accent-mid), var(--ind-accent)); }

.ind-md-card { background: #fff; border: 1px solid var(--ind-accent-light); }
.ind-md-live { background: color-mix(in srgb, var(--ind-accent-mid) 13%, transparent); color: var(--ind-accent-mid); }
.ind-md-live-dot { background: var(--ind-accent-mid); }
.ind-viz-label { color: #888; }
.ind-viz-value { color: #0a0a0a; }
.ind-md-wave-bar { fill: var(--ind-accent-mid); }
.ind-md-stat { background: #fff; border: 1px solid #ebebea; }
.ind-md-stat span { color: #888; }
.ind-md-stat strong { color: #0a0a0a; }
.ind-md-stat-accent { color: var(--ind-accent-mid); }

/* Pills and dot nav are anchors now (they work with JS off); strip the default link styling. */
.ind-pill, .ind-dot-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }

/* Tooltip was conditionally mounted on hover; CSS hover is equivalent and needs no JS. */
.ind-dot-tooltip { opacity: 0; pointer-events: none; transition: opacity 0.15s; }
.ind-dot-btn:hover .ind-dot-tooltip { opacity: 1; }

/* Replaces the inline style on the platform section heading. */
.ind-root .ind-platform-h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0 0 36px;
}

/* The stock scrim only darkens a mid band, which the taller three-line headline overruns on both ends.
   A consistent dark wash keeps white text legible across the whole hero and matches data-nav-theme="dark". */
.ind-hero { background: linear-gradient(155deg, rgba(12,14,26,0.78) 0%, rgba(12,14,26,0.86) 45%, rgba(12,14,26,0.78) 100%), url('https://theagentslayer.b-cdn.net/industries_banner.png') center / cover no-repeat; }
.ind-hero-fade { background: linear-gradient(to bottom, transparent, #fafafa); }

/* site.css resets .wai-root h1..h5 at (0,1,1); these heading classes are declared bare at (0,1,0) and lose
   font-size/font-weight to it. Re-declaring them under .wai-root restores the intended scale. */
.wai-root .ind-section-h2 { font-size: clamp(24px, 3.2vw, 40px); font-weight: 700; line-height: 1.1; }
.wai-root .ind-use-h3 { font-size: 16px; font-weight: 600; line-height: 1.3; }
.wai-root .ind-platform-h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; line-height: 1.1; }
.wai-root .ind-plat-h3 { font-size: 15px; font-weight: 600; }

/* The stock breakpoints only collapse the per-industry visuals the source page used; the structural grids
   stayed multi-column at every width and overflowed the viewport on phones. */
@media (max-width: 860px) {
    .ind-header-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 44px; }
    .ind-use-grid { grid-template-columns: 1fr; }
    .ind-platform-grid { grid-template-columns: 1fr; }
    .ind-section { padding: 64px 20px; }
    .ind-section-sub { max-width: none; }
    .ind-sidenav { display: none; }
    .ind-hero { padding: 120px 20px 64px; }
    .ind-platform { padding-left: 20px; padding-right: 20px; }
}
