/* ══════════════════════════════════════════════════════════════════════
   NEODUSTRIA INDUSTRIES DESIGN SYSTEM
   Reusable across: Automotive, Railway, Construction, Naval, Aviation, Aerospace
   All classes prefixed ind- for namespace isolation
   ══════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────────── */
:root {
  --ind-bg:        #02050A;
  --ind-surface:   #040C1A;
  --ind-surface-2: #061222;
  --ind-blue:      #168BFF;
  --ind-cyan:      #005dba;
  --ind-green:     #00D68F;
  --ind-red:       #FF3D3D;
  --ind-amber:     #FFB800;
  --ind-muted:     #A9B8C8;
  --ind-muted-dim: rgba(169,184,200,0.52);
  --ind-border:    rgba(22,139,255,0.14);
  --ind-border-hi: rgba(22,139,255,0.28);
  --ind-glow:      rgba(22,139,255,0.18);
  --ind-glow-cyan: rgba(0,93,186,0.18);
  --ind-font:      'Space Grotesk', 'Instrument Sans', sans-serif;
}

/* ── Base page ─────────────────────────────────────────────────────── */
.ind-page {
  background: var(--ind-bg);
  color: #fff;
  font-family: var(--ind-font);
}

/* ── Reusable reveal animation ─────────────────────────────────────── */
.ind-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.ind-reveal.ind-visible {
  opacity: 1;
  transform: none;
}
.ind-reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.ind-reveal-left.ind-visible { opacity: 1; transform: none; }
.ind-reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.ind-reveal-right.ind-visible { opacity: 1; transform: none; }

/* ── Section chrome ────────────────────────────────────────────────── */
.ind-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ind-section--dark   { background: var(--ind-bg); }
.ind-section--surface{ background: var(--ind-surface); }
.ind-section--surface-2{ background: var(--ind-surface-2); }

.ind-section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ind-cyan);
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
}
.ind-section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1.5px;
  background: var(--ind-cyan);
}

.ind-section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.ind-section-title em { color: var(--ind-blue); font-style: normal; }

.ind-section-sub {
  font-size: 15px;
  color: var(--ind-muted-dim);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}

/* ══ 1. HERO ════════════════════════════════════════════════════════ */
.ind-hero {
  position: relative;
  padding: 0;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--ind-bg);
  overflow: hidden;
}

.ind-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ind-hero-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  gap: 0;
  min-height: 720px;
  position: relative;
  z-index: 1;
}

.ind-hero-text {
  padding: 160px 48px 80px 0;
}

.ind-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #005dba;
  text-shadow: 0 0 14px rgba(0,93,186,0.45);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.ind-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1px;
  background: linear-gradient(90deg, #005dba, transparent);
}
.ind-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ind-cyan);
  animation: indDotPulse 2s ease-in-out infinite;
}
@keyframes indDotPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 6px var(--ind-cyan); }
  50%      { opacity: 0.4; box-shadow: none; }
}

.ind-hero-h1 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.ind-hero-sub {
  font-size: 15.5px;
  color: rgba(169,184,200,0.72);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 480px;
}

.ind-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ── Buttons ── */
.ind-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #168BFF 0%, #0B5CFF 100%);
  border: 1px solid rgba(22,139,255,0.4);
  border-radius: 10px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 0 24px rgba(22,139,255,0.28);
  transition: box-shadow 0.3s, transform 0.2s, opacity 0.2s;
}
.ind-btn-primary:hover {
  box-shadow: 0 0 38px rgba(22,139,255,0.45);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.ind-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(22,139,255,0.25);
  border-radius: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  font-weight: 550;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.ind-btn-ghost:hover {
  border-color: rgba(22,139,255,0.5);
  color: #fff;
  text-decoration: none;
}

/* ── Hero stats strip ── */
.ind-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(22,139,255,0.10);
  padding-top: 28px;
}
.ind-stat-item {
  flex: 1;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(22,139,255,0.10);
}
.ind-stat-item:last-child { border-right: none; padding-right: 0; }
.ind-stat-item:first-child { padding-left: 0; }
.ind-stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--ind-blue);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.ind-stat-lbl {
  display: block;
  font-size: 10.5px;
  color: var(--ind-muted-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* ── Hero visual panel ── */
.ind-hero-visual {
  position: relative;
  height: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: visible;
}
.ind-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 30%;
  display: block;
  /* Soft radial masking — image bleeds naturally into the dark background */
  -webkit-mask-image:
    radial-gradient(ellipse 88% 80% at 62% 45%, black 18%, rgba(0,0,0,0.88) 42%, rgba(0,0,0,0.45) 68%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 14%, black 38%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 88% 80% at 62% 45%, black 18%, rgba(0,0,0,0.88) 42%, rgba(0,0,0,0.45) 68%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 14%, black 38%);
  mask-composite: intersect;
}
/* Atmospheric depth overlay on hero visual */
.ind-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--ind-bg) 0%, rgba(2,5,10,0.45) 18%, transparent 45%),
    radial-gradient(ellipse at 75% 30%, rgba(22,139,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(0,93,186,0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* ── Telemetry HUD cards ── */
.ind-telemetry-card {
  position: absolute;
  background: linear-gradient(145deg, rgba(3,11,28,0.94), rgba(2,8,20,0.96));
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(22,139,255,0.26);
  border-radius: 14px;
  padding: 14px 18px 12px;
  min-width: 190px;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(22,139,255,0.06),
    0 0 32px rgba(22,139,255,0.16),
    0 12px 48px rgba(0,0,0,0.7);
  animation: indTelFloat 4s ease-in-out infinite;
}
.ind-telemetry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,139,255,0.5), transparent);
}
.ind-tel--tl { top: 30%; left: -6%; animation-delay: 0s; }
.ind-tel--tr { top: 22%; right: 4%; animation-delay: 1.4s; }
.ind-tel--br { bottom: 16%; right: 2%; animation-delay: 0.7s; }
.ind-tel--bl { bottom: 22%; left: -4%; animation-delay: 2.1s; }

@keyframes indTelFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.ind-tel-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(169,184,200,0.65);
  margin-bottom: 5px;
}
.ind-tel-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 3px;
}
.ind-tel-value.ind-positive { color: var(--ind-green); }
.ind-tel-value.ind-negative { color: var(--ind-cyan); }
.ind-tel-value.ind-neutral  { color: var(--ind-blue); }
.ind-tel-sub {
  display: block;
  font-size: 10px;
  color: rgba(169,184,200,0.5);
  letter-spacing: 0.02em;
}
.ind-tel-data-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid rgba(22,139,255,0.10);
  gap: 8px;
}
.ind-tel-data-item {
  font-size: 8px;
  color: rgba(169,184,200,0.50);
  letter-spacing: 0.06em;
  font-weight: 600;
  flex: 1;
}
.ind-tel-data-item span {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(22,139,255,0.85);
  margin-top: 1px;
}
.ind-tel-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: 8px;
  height: 20px;
}
.ind-tel-bar {
  flex: 1;
  background: rgba(22,139,255,0.35);
  border-radius: 2px;
  animation: indBarPulse 2s ease-in-out infinite;
}
.ind-tel-bar:nth-child(even) { animation-delay: 0.3s; }
.ind-tel-bar:last-child { background: var(--ind-blue); }
@keyframes indBarPulse {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* HUD frame (reuse from existing system) */
.ind-hero-visual .nd-hud-frame { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

/* ══ 2. PRESSURE ZONES ══════════════════════════════════════════════ */
.ind-pressure-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}

/* Pressure diagnostic cards */
.ind-pressure-card {
  min-height: 300px;
  background:
    linear-gradient(160deg, rgba(4,10,24,0.98), rgba(2,7,18,0.96)),
    radial-gradient(ellipse at 20% 0%, rgba(22,139,255,0.12), transparent 52%);
  border: 1px solid rgba(22,139,255,0.18);
  border-radius: 16px;
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
/* Grid noise overlay */
.ind-pressure-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,139,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,139,255,0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* Top edge glow line */
.ind-pressure-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,139,255,0.45), transparent);
  z-index: 1;
}
.ind-pressure-card:hover {
  border-color: rgba(22,139,255,0.38);
  box-shadow: 0 0 36px rgba(22,139,255,0.14), 0 0 0 1px rgba(22,139,255,0.06);
  transform: translateY(-4px);
}
/* Hover inner scanline */
.ind-pressure-card:hover .ind-pressure-card-inner::after {
  opacity: 1;
}

.ind-pressure-card-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ind-pressure-card-inner::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,93,186,0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  animation: indPressureScan 5s linear infinite;
  pointer-events: none;
}
@keyframes indPressureScan {
  0%   { top: 10%; opacity: 0; }
  5%   { opacity: 0.45; }
  90%  { opacity: 0.1; }
  100% { top: 95%; opacity: 0; }
}

.ind-pressure-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22,139,255,0.16), rgba(0,93,186,0.08));
  border: 1px solid rgba(22,139,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ind-blue);
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 0 20px rgba(22,139,255,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: box-shadow 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.ind-pressure-card:hover .ind-pressure-icon {
  border-color: rgba(0,93,186,0.50);
  box-shadow: 0 0 28px rgba(0,93,186,0.25);
  color: var(--ind-cyan);
  animation: indIconPulse 1.4s ease-in-out infinite;
}
@keyframes indIconPulse {
  0%,100% { box-shadow: 0 0 20px rgba(0,93,186,0.22); }
  50%      { box-shadow: 0 0 36px rgba(0,93,186,0.45); }
}
.ind-pressure-icon svg { width: 22px; height: 22px; }

.ind-pressure-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.ind-pressure-desc {
  font-size: 12px;
  color: var(--ind-muted-dim);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* Diagnostic bottom (replaces gauge) */
.ind-pressure-diagnostic {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(22,139,255,0.09);
}
/* Horizontal meter rail */
.ind-pressure-meter {
  height: 5px;
  border-radius: 999px;
  background: rgba(22,139,255,0.08);
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.ind-pressure-meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ind-blue), var(--ind-cyan));
  box-shadow: 0 0 14px rgba(0,93,186,0.38);
  width: 0;
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
}
.ind-pressure-card.ind-visible .ind-pressure-meter-fill {
  width: var(--pressure-level, 82%);
}
/* Meter shimmer */
.ind-pressure-meter-fill::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 24px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35));
  border-radius: 999px;
}
/* Meta label row */
.ind-pressure-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ind-pressure-meta-label {
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(169,184,200,0.45);
}
.ind-pressure-meta-level {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ind-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ind-pressure-meta-level::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ind-blue);
  box-shadow: 0 0 6px var(--ind-blue);
  animation: indBluePulse 1.4s ease-in-out infinite;
}

@keyframes indBluePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--ind-blue); }
  50%      { opacity: 0.3; box-shadow: none; }
}

/* Remove old gauge styles (keep the arc animation for other uses) */
.ind-gauge-wrap { display: none; }

/* ══ 3. INTELLIGENCE LAYER ══════════════════════════════════════════ */
.ind-layer-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.ind-layer-header .ind-section-sub { max-width: none; text-align: center; }

.ind-layer-diagram {
  display: grid;
  grid-template-columns: 190px 1fr 210px 170px;
  gap: 0;
  align-items: center;
  position: relative;
  min-height: 480px;
  overflow: visible;
}

/* Data source and output columns */
.ind-layer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px;
}
.ind-layer-col--sources { padding-left: 0; }
.ind-layer-col--impact  { padding-right: 0; }

.ind-layer-col-title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(169,184,200,0.45);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(22,139,255,0.1);
}

.ind-layer-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(22,139,255,0.12);
  background: rgba(5,12,26,0.7);
  font-size: 11.5px;
  color: rgba(235,242,255,0.75);
  letter-spacing: 0.01em;
  transition: border-color 0.25s, background 0.25s;
  cursor: default;
  position: relative;
}
.ind-layer-item:hover {
  border-color: rgba(22,139,255,0.28);
  background: rgba(22,139,255,0.06);
  color: rgba(235,242,255,0.95);
}
.ind-layer-item-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--ind-blue);
  opacity: 0.7;
  flex-shrink: 0;
}
.ind-layer-item--output .ind-layer-item-dot { background: var(--ind-cyan); }
.ind-layer-item--impact .ind-layer-item-dot  { background: var(--ind-green); }
.ind-layer-item--impact {
  border-color: rgba(0,214,143,0.12);
  font-size: 11px;
}
.ind-layer-item--impact:hover { border-color: rgba(0,214,143,0.28); }
.ind-layer-item-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 6px;
  background: rgba(22,139,255,0.1);
  border: 1px solid rgba(22,139,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ind-blue);
  flex-shrink: 0;
}
.ind-layer-item-icon svg { width: 13px; height: 13px; }

/* Core center section */
.ind-layer-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  overflow: visible;
}
.ind-layer-core-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22,139,255,0.9);
  text-align: center;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(22,139,255,0.2);
  border-radius: 20px;
  background: rgba(22,139,255,0.06);
}
.ind-layer-core-img-wrap {
  position: relative;
width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}
.ind-layer-core-img {
  /* Positioned absolute so it grows beyond the wrap without affecting ring/glow sizes */
  position: absolute;
  width: 620px !important;
  height: 620px !important;
  max-width: none !important;
  max-height: none !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(22,139,255,0.45));
  animation: indCorePulse 5s ease-in-out infinite;
}
@keyframes indCorePulse {
  0%,100% { filter: drop-shadow(0 0 28px rgba(22,139,255,0.38)); }
  50%      { filter: drop-shadow(0 0 56px rgba(22,139,255,0.65)) drop-shadow(0 0 100px rgba(0,93,186,0.28)); }
}
.ind-layer-core-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,139,255,0.18) 0%, rgba(0,93,186,0.06) 45%, transparent 70%);
  animation: indCoreGlow 5s ease-in-out infinite;
}
@keyframes indCoreGlow {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.18); opacity: 1; }
}
/* Orbiting rings */
.ind-layer-core-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(22,139,255,0.18);
  border-top-color: rgba(22,139,255,0.55);
  animation: indRingSpin 8s linear infinite;
}
.ind-layer-core-ring-2 {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(0,93,186,0.10);
  border-right-color: rgba(0,93,186,0.38);
  animation: indRingSpin 14s linear infinite reverse;
}
@keyframes indRingSpin {
  to { transform: rotate(360deg); }
}

/* Connection SVG overlay */
.ind-layer-svg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.ind-conn-path {
  fill: none;
  stroke: rgba(22,139,255,0.22);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}
.ind-conn-path--cyan { stroke: rgba(0,93,186,0.22); }
.ind-conn-path--green { stroke: rgba(0,214,143,0.18); }
.ind-conn-dot {
  fill: var(--ind-blue);
  filter: drop-shadow(0 0 4px rgba(22,139,255,0.9));
}
.ind-conn-dot--cyan { fill: var(--ind-cyan); filter: drop-shadow(0 0 4px rgba(0,93,186,0.9)); }
.ind-conn-node {
  fill: none;
  stroke: rgba(22,139,255,0.45);
  stroke-width: 1;
  r: 5;
}
.ind-conn-node-inner { fill: rgba(22,139,255,0.7); r: 2.5; }
@keyframes indFlowDot {
  0%   { offset-distance: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.ind-flow-particle {
  offset-rotate: 0deg;
  animation: indFlowDot 2.8s linear infinite;
}
.ind-flow-particle-2 { animation-delay: 0.9s; }
.ind-flow-particle-3 { animation-delay: 1.8s; }

.ind-layer-pillars {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  border: 1px solid rgba(22,139,255,0.15);
  border-radius: 8px;
  overflow: hidden;
}
.ind-layer-pillar {
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 650;
  color: rgba(169,184,200,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-right: 1px solid rgba(22,139,255,0.10);
  white-space: nowrap;
  background: rgba(5,12,26,0.6);
}
.ind-layer-pillar:last-child { border-right: none; }
.ind-layer-pillar--active { color: var(--ind-blue); background: rgba(22,139,255,0.06); }

/* Intelligence Layer SVG connections overlay */
.ind-layer-svg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Trust / Governance Rail */
.ind-layer-trust {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 96px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(5,12,26,0.88), rgba(2,7,18,0.97)),
    radial-gradient(ellipse at 50% 0%, rgba(22,139,255,0.10), transparent 60%);
  border: 1px solid rgba(22,139,255,0.18);
  overflow: hidden;
  margin-top: 40px;
}
/* Animated light sweep across the bar */
.ind-trust-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,93,186,0.10) 50%, transparent 100%);
  background-size: 60% 100%;
  background-repeat: no-repeat;
  animation: indTrustSweep 5s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes indTrustSweep {
  0%   { background-position: -60% 0; }
  100% { background-position: 160% 0; }
}
/* Horizontal rail line through the center */
.ind-trust-rail-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(22,139,255,0.40) 15%,
    rgba(0,93,186,0.60) 50%,
    rgba(22,139,255,0.40) 85%,
    transparent);
  box-shadow: 0 0 14px rgba(0,93,186,0.20);
  pointer-events: none;
  z-index: 0;
}
/* Individual trust item */
.ind-layer-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(22,139,255,0.10);
}
.ind-layer-trust-item:last-child { border-right: none; }
/* Icon node */
.ind-trust-node {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22,139,255,0.16), rgba(0,93,186,0.08));
  border: 1px solid rgba(22,139,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ind-blue);
  box-shadow: 0 0 18px rgba(22,139,255,0.16), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ind-layer-trust-item:hover .ind-trust-node {
  border-color: rgba(0,93,186,0.55);
  box-shadow: 0 0 28px rgba(0,93,186,0.30);
  color: var(--ind-cyan);
}
.ind-trust-node svg { width: 16px; height: 16px; }
/* Pulsing indicator dot on node */
.ind-trust-node-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ind-cyan);
  box-shadow: 0 0 6px var(--ind-cyan);
  animation: indTrustPulse 2s ease-in-out infinite;
}
@keyframes indTrustPulse {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px rgba(0,93,186,0.8); }
  50%      { opacity: 0.25; transform: scale(0.7); box-shadow: none; }
}
/* Text copy */
.ind-trust-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.ind-trust-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(235,242,255,0.88);
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}
.ind-trust-sub {
  font-size: 9px;
  font-weight: 600;
  color: rgba(0,93,186,0.60);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* ══ 4. ENGINEERING WORKFLOWS ═══════════════════════════════════════ */
.ind-workflow-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.ind-flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line spanning all steps */
.ind-flow-connector {
  position: absolute;
  top: 36px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 1px;
  background: linear-gradient(90deg, var(--ind-blue), var(--ind-cyan), var(--ind-blue));
  z-index: 0;
  opacity: 0.35;
}
.ind-flow-connector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(22,139,255,0.8), rgba(0,93,186,0.8), rgba(22,139,255,0.8), transparent);
  animation: indFlowSweep 3s linear infinite;
  background-size: 60% 100%;
  background-repeat: no-repeat;
}
@keyframes indFlowSweep {
  0%   { background-position: -60% 0; }
  100% { background-position: 160% 0; }
}

.ind-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.ind-flow-num-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(22,139,255,0.22);
  background: rgba(5,12,26,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ind-flow-step:hover .ind-flow-num-wrap {
  border-color: rgba(22,139,255,0.45);
  box-shadow: 0 0 20px rgba(22,139,255,0.2);
}
.ind-flow-num-wrap::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22,139,255,0.12), rgba(0,93,186,0.06));
}
.ind-flow-icon {
  position: relative;
  z-index: 1;
  color: var(--ind-blue);
}
.ind-flow-icon svg { width: 24px; height: 24px; }
.ind-flow-step-num {
  position: absolute;
  bottom: -6px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ind-blue);
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 8px rgba(22,139,255,0.5);
}

.ind-flow-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ind-cyan);
  margin-bottom: 6px;
}
.ind-flow-title {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(235,242,255,0.9);
  margin: 0 0 8px;
  line-height: 1.3;
}
.ind-flow-desc {
  font-size: 11.5px;
  color: var(--ind-muted-dim);
  line-height: 1.55;
}

/* ══ 5. USE CASES ═══════════════════════════════════════════════════ */
.ind-uc-header {
  max-width: 560px;
  margin-bottom: 48px;
}

.ind-uc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ind-uc-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid rgba(22,139,255,0.14);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.3s;
}
.ind-uc-card:hover {
  border-color: rgba(22,139,255,0.32);
  box-shadow: 0 0 40px rgba(22,139,255,0.14);
  transform: translateY(-4px);
}

.ind-uc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.ind-uc-card:hover .ind-uc-img { transform: scale(1.04); }

.ind-uc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,5,10,0.2) 0%, rgba(2,5,10,0.75) 55%, rgba(2,5,10,0.97) 100%);
}

.ind-uc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
}

.ind-uc-category {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ind-cyan);
  margin-bottom: 8px;
}

.ind-uc-title {
  font-size: 15px;
  font-weight: 750;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 14px;
}

.ind-uc-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.ind-uc-metric-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ind-uc-metric-val--positive { color: var(--ind-green); }
.ind-uc-metric-val--negative { color: var(--ind-cyan); }
.ind-uc-metric-val--neutral  { color: var(--ind-blue); }
.ind-uc-metric-lbl {
  font-size: 11px;
  color: rgba(169,184,200,0.65);
  line-height: 1.35;
}

/* Mini sparkline in use case cards */
.ind-uc-spark {
  margin-top: 10px;
  height: 24px;
  opacity: 0.8;
}

/* ══ 6. MEASURABLE IMPACTS ══════════════════════════════════════════ */
.ind-impacts-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}
.ind-impacts-header .ind-section-title {
  font-size: clamp(22px, 2.4vw, 36px);
  white-space: nowrap;
}

.ind-kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: stretch;
}

/* ── Aerospace analytics console card ── */
.ind-kpi-card {
  background: linear-gradient(180deg, rgba(4,11,26,0.99) 0%, rgba(2,7,18,0.99) 100%);
  border: 1px solid rgba(22,139,255,0.14);
  border-radius: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: border-color 0.32s, box-shadow 0.32s, transform 0.28s;
  min-height: 310px;
}
.ind-kpi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,139,255,0.55), transparent);
}
/* Inner ambient glow */
.ind-kpi-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 56px;
  background: linear-gradient(to top, rgba(22,139,255,0.05), transparent);
  pointer-events: none;
}
.ind-kpi-card:hover {
  border-color: rgba(22,139,255,0.32);
  box-shadow: 0 0 40px rgba(22,139,255,0.12), 0 20px 60px rgba(0,0,0,0.65);
  transform: translateY(-4px);
}

/* Grid scanline overlay on card */
.ind-kpi-card-inner {
  padding: 20px 20px 16px;
  min-height: 170px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.ind-kpi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.ind-kpi-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(22,139,255,0.10);
  border: 1px solid rgba(22,139,255,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--ind-blue);
  transition: background 0.3s, border-color 0.3s;
}
.ind-kpi-card:hover .ind-kpi-icon {
  background: rgba(22,139,255,0.16);
  border-color: rgba(22,139,255,0.38);
}
.ind-kpi-icon svg { width: 14px; height: 14px; }

.ind-kpi-badge {
  display: flex; align-items: center; gap: 4px;
  font-size: 7px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,214,143,0.80);
}
.ind-kpi-badge-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #00D68F; box-shadow: 0 0 5px #00D68F;
  animation: indKpiBadge 1.6s ease-in-out infinite;
}
@keyframes indKpiBadge {
  0%,100% { opacity: 1; box-shadow: 0 0 5px #00D68F; }
  50% { opacity: 0.15; box-shadow: none; }
}

.ind-kpi-num {
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  color: var(--ind-blue);
}
.ind-kpi-num--negative { color: var(--ind-cyan); }
.ind-kpi-num--positive { color: var(--ind-green); }

.ind-kpi-label-main {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(200,215,235,0.68);
  margin-bottom: 2px;
}
.ind-kpi-label-sub {
  display: block;
  font-size: 10px;
  color: rgba(169,184,200,0.42);
  margin-bottom: 10px;
  line-height: 1.4;
}
.ind-kpi-trend {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 20px;
}
.ind-kpi-trend--down    { color: var(--ind-cyan);  background: rgba(0,93,186,0.09);  border: 1px solid rgba(0,93,186,0.18); }
.ind-kpi-trend--up      { color: var(--ind-green); background: rgba(0,214,143,0.09);  border: 1px solid rgba(0,214,143,0.18); }
.ind-kpi-trend--neutral { color: var(--ind-blue);  background: rgba(22,139,255,0.09); border: 1px solid rgba(22,139,255,0.18); }

/* Bottom embedded analytics visualization */
.ind-kpi-viz {
  height: 128px;
  flex-shrink: 0;
  position: relative;
  border-top: 1px solid rgba(22,139,255,0.08);
  overflow: visible;
  z-index: 1;
}
.ind-kpi-viz-svg {
  width: 100%; height: 100%;
  display: block;
  overflow: visible;
}

/* Bar animation on scroll-reveal */
.ind-kpi-bar {
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.ind-kpi-card.ind-visible .ind-kpi-bar { transform: scaleY(1); }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(1) { transition-delay: 0.05s; }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(2) { transition-delay: 0.10s; }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(3) { transition-delay: 0.15s; }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(4) { transition-delay: 0.20s; }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(5) { transition-delay: 0.25s; }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(6) { transition-delay: 0.30s; }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(7) { transition-delay: 0.35s; }
.ind-kpi-card.ind-visible .ind-kpi-bar:nth-child(8) { transition-delay: 0.40s; }

/* Horizontal bar animation (for before/after comparison) */
.ind-kpi-hbar {
  transform-box: fill-box;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.ind-kpi-card.ind-visible .ind-kpi-hbar { transform: scaleX(1); }

/* Arc/ring gauge animation (for accuracy % metrics) */
.ind-kpi-arcpath {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 312 999;
  stroke-dashoffset: 312;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22,1,0.36,1) 0.1s;
}
.ind-kpi-card.ind-visible .ind-kpi-arcpath { stroke-dashoffset: 0; }

/* Waveform path animation */
.ind-kpi-wavepath {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 2s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.ind-kpi-card.ind-visible .ind-kpi-wavepath { stroke-dashoffset: 0; }

/* Hide old chart canvases / arc wraps */
.ind-kpi-chart { display: none; }
.ind-kpi-arc-wrap { display: none; }
.ind-kpi-divider { display: none; }

/* ══ 7. BUILT FOR EUROPE ════════════════════════════════════════════ */
.ind-europe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ind-europe-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.ind-europe-sub {
  font-size: 15px;
  color: var(--ind-muted-dim);
  line-height: 1.65;
  margin: 0 0 36px;
}

.ind-europe-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ind-europe-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(22,139,255,0.12);
  background: rgba(5,12,26,0.6);
  transition: border-color 0.25s;
}
.ind-europe-pillar:hover { border-color: rgba(22,139,255,0.25); }
.ind-europe-pillar-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: rgba(22,139,255,0.10);
  border: 1px solid rgba(22,139,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ind-blue);
}
.ind-europe-pillar-icon svg { width: 18px; height: 18px; }
.ind-europe-pillar-title {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(235,242,255,0.88);
  margin: 0 0 3px;
}
.ind-europe-pillar-desc {
  font-size: 11.5px;
  color: var(--ind-muted-dim);
  line-height: 1.45;
}

.ind-europe-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(22,139,255,0.14);
}
.ind-europe-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.ind-europe-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,139,255,0.06), transparent);
  pointer-events: none;
}

/* ══ 8. INDUSTRIES CTA ══════════════════════════════════════════════ */
.ind-cta {
  padding: 80px 0;
  background: var(--ind-surface);
  position: relative;
  overflow: hidden;
}
.ind-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(22,139,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ind-cta-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ind-cta-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ind-cyan);
  display: block;
  margin-bottom: 14px;
}
.ind-cta-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.ind-cta-desc {
  font-size: 14.5px;
  color: var(--ind-muted-dim);
  line-height: 1.65;
  margin: 0 0 28px;
}
.ind-cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.ind-cta-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(22,139,255,0.16);
  box-shadow: 0 0 40px rgba(22,139,255,0.10), 0 24px 64px rgba(0,0,0,0.5);
}
.ind-cta-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.ind-cta-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,139,255,0.5), transparent);
  z-index: 2;
}

/* ══ RESPONSIVE ═════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .ind-pressure-grid { grid-template-columns: repeat(3, 1fr); }
  .ind-kpi-grid       { grid-template-columns: repeat(3, 1fr); }
  .ind-uc-grid        { grid-template-columns: repeat(2, 1fr); }
  .ind-flow-steps     { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .ind-flow-connector { display: none; }
  .ind-layer-diagram  { grid-template-columns: 160px 1fr 190px; }
  .ind-layer-col--impact { display: none; }
  .ind-layer-core-img { width: 520px !important; height: 520px!important;max-width: none !important; }
  .ind-impacts-header .ind-section-title { white-space: normal; }
}

@media (max-width: 1024px) {
  .ind-hero-grid        { grid-template-columns: 1fr; min-height: auto; }
  .ind-hero-text        { padding: 80px 0 40px; }
  .ind-hero-visual      { min-height: 400px; }
  .ind-europe-grid      { grid-template-columns: 1fr; gap: 40px; }
  .ind-cta-inner        { grid-template-columns: 1fr; }
  .ind-cta-visual       { max-width: 480px; }
  .ind-layer-diagram    { grid-template-columns: 1fr; gap: 24px; }
  .ind-pressure-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ind-section          { padding: 64px 0; }
  .ind-pressure-grid    { grid-template-columns: 1fr; }
  .ind-kpi-grid         { grid-template-columns: repeat(2, 1fr); }
  .ind-flow-steps       { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ind-uc-grid          { grid-template-columns: 1fr; }
  .ind-hero-stats       { flex-wrap: wrap; gap: 20px; }
  .ind-stat-item        { flex: 1 0 40%; border-right: none; padding: 0; }
  .ind-europe-pillars   { grid-template-columns: 1fr; }
}

/* ══ HERO ATMOSPHERIC OVERLAYS ══════════════════════════════════════ */
.ind-hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Perspective grid */
.ind-hero-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,139,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,139,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 55%, rgba(0,0,0,0.6) 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 55%, rgba(0,0,0,0.6) 0%, transparent 75%);
}
/* Volumetric energy sweep */
.ind-hero-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(22,139,255,0.04) 35%,
    rgba(0,93,186,0.06) 50%,
    rgba(22,139,255,0.04) 65%,
    transparent 100%);
  animation: indHeroEnergyPulse 7s ease-in-out infinite;
}
@keyframes indHeroEnergyPulse {
  0%,100% { opacity: 0.6; transform: translateX(-4%) scaleX(1); }
  50%      { opacity: 1;   transform: translateX( 4%) scaleX(1.04); }
}
/* Horizontal scanline */
.ind-hero-scanline {
  position: absolute;
  left: 40%; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,139,255,0.35), rgba(0,93,186,0.25), transparent);
  z-index: 1;
  pointer-events: none;
  animation: indHeroScan 6s linear infinite;
  opacity: 0;
}
@keyframes indHeroScan {
  0%   { top: 15%; opacity: 0; }
  5%   { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { top: 88%; opacity: 0; }
}

/* ══ USE CASE — TELEMETRY OVERLAY ═══════════════════════════════════ */
.ind-uc-tel-wrap {
  position: absolute;
  left: 0; right: 0;
  top: 22%;
  padding: 10px 16px 6px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(2,5,10,0.65) 14%,
    rgba(2,5,10,0.55) 80%,
    transparent 100%);
}
.ind-uc-tel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.ind-uc-tel-lbl {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,93,186,0.75);
}
.ind-uc-tel-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,214,143,0.8);
}
.ind-uc-tel-live-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #00D68F;
  box-shadow: 0 0 5px #00D68F;
  animation: indLiveDot 1.4s ease-in-out infinite;
}
@keyframes indLiveDot {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
.ind-uc-tel-svg {
  width: 100%;
  height: 64px;
  overflow: visible;
  display: block;
}
/* Animated draw-on effect */
.ind-uc-tel-path {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: indTelPathDraw 2.2s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
@keyframes indTelPathDraw { to { stroke-dashoffset: 0; } }

.ind-uc-tel-path--cyan  { stroke: #005dba; filter: drop-shadow(0 0 4px rgba(0,93,186,0.8)); }
.ind-uc-tel-path--green { stroke: #00D68F; filter: drop-shadow(0 0 4px rgba(0,214,143,0.8)); }
.ind-uc-tel-path--blue  { stroke: #168BFF; filter: drop-shadow(0 0 4px rgba(22,139,255,0.8)); }

.ind-uc-tel-area--cyan  { fill: url(#telFillCyan);  }
.ind-uc-tel-area--green { fill: url(#telFillGreen); }
.ind-uc-tel-area--blue  { fill: url(#telFillBlue);  }

.ind-uc-tel-endpoint {
  animation: indEndDot 2s ease-in-out 2.6s infinite;
}
@keyframes indEndDot {
  0%,100% { opacity: 1; r: 3; }
  50%      { opacity: 0.35; r: 1.8; }
}
/* Scanline sweep per card */
.ind-uc-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  top: 25%;
  background: linear-gradient(90deg, transparent, rgba(0,93,186,0.45), transparent);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  animation: indCardScan 6s linear 3s infinite;
}
@keyframes indCardScan {
  0%   { top: 25%; opacity: 0; }
  4%   { opacity: 0.55; }
  95%  { opacity: 0.15; }
  100% { top: 80%; opacity: 0; }
}

/* ══ KPI CARD — ARC RING ════════════════════════════════════════════ */
.ind-kpi-arc-wrap {
  position: absolute;
  top: 14px; right: 14px;
  width: 46px; height: 46px;
  pointer-events: none;
}
.ind-kpi-arc-svg {
  width: 46px; height: 46px;
  transform: rotate(-90deg);
}
.ind-kpi-arc-bg {
  fill: none;
  stroke: rgba(22,139,255,0.08);
  stroke-width: 2;
}
.ind-kpi-arc-prog {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 119.4;   /* 2π × 19 */
  stroke-dashoffset: 119.4;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22,1,0.36,1);
}
.ind-kpi-arc-prog--cyan  { stroke: rgba(0,93,186,0.75);  filter: drop-shadow(0 0 3px rgba(0,93,186,0.6)); }
.ind-kpi-arc-prog--blue  { stroke: rgba(22,139,255,0.75); filter: drop-shadow(0 0 3px rgba(22,139,255,0.6)); }
.ind-kpi-arc-prog--green { stroke: rgba(0,214,143,0.75);  filter: drop-shadow(0 0 3px rgba(0,214,143,0.6)); }

/* Animated border trace on hover */
.ind-kpi-card {
  --border-trace: rgba(22,139,255,0);
}
.ind-kpi-card:hover {
  --border-trace: rgba(22,139,255,0.5);
}

/* ══ CTA SEPARATOR — alias of .nd-sep (defined in style.css) ════════ */
/* Industry pages use .ind-cta-sep; all other pages use .nd-sep.
   Both produce the same animated sweep via ndSepSweep keyframes. */
.ind-cta-sep {
  position: relative;
  height: 2px;
  background: rgba(22,139,255,0.04);
  overflow: hidden;
  flex-shrink: 0;
}
.ind-cta-sep::before {
  content: '';
  position: absolute;
  inset: -1px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(22,139,255,0.65) 40%,
    rgba(0,93,186,0.72) 50%,
    rgba(22,139,255,0.65) 60%,
    transparent 100%);
  background-size: 38% 100%;
  background-repeat: no-repeat;
  animation: ndSepSweep 2.6s cubic-bezier(0.45,0,0.55,1) infinite;
}
.ind-cta-sep::after {
  content: '';
  position: absolute;
  inset: -3px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(22,139,255,0.18) 40%,
    rgba(0,93,186,0.24) 50%,
    rgba(22,139,255,0.18) 60%,
    transparent 100%);
  background-size: 38% 100%;
  background-repeat: no-repeat;
  animation: ndSepSweep 2.6s cubic-bezier(0.45,0,0.55,1) 0.35s infinite;
  filter: blur(4px);
}
