.page-de-index {
  --bg: #080b10;
  --surface: #0d121c;
  --border: rgba(255, 255, 255, .14);
  --text: #f3f6f8;
  --muted: #b3bdc7;
  background: var(--bg);
}

.page-de-index .hero-industrial {
  --hero-ink: #f3f6f8;
  --hero-muted: #b3bdc7;
  --hero-line: rgba(255, 255, 255, .16);
  --hero-surface: rgba(255, 255, 255, .05);
  position: relative;
  isolation: isolate;
  min-height: max(720px, calc(100svh - var(--header-h, 72px)));
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(213, 223, 231, .12);
  background: #080b10;
  color: var(--hero-ink);
}

.page-de-index .hero-industrial::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 12, 22, .98) 0%, rgba(9, 12, 22, .92) 28%, rgba(9, 12, 22, .58) 49%, rgba(9, 12, 22, .08) 76%),
    linear-gradient(0deg, rgba(9, 12, 22, .72) 0%, transparent 38%);
}

.page-de-index .hero-industrial::after {
  content: none;
}

.industrial-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.industrial-scene img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  animation: industrial-camera-in 1.6s cubic-bezier(.22, 1, .36, 1) both;
}

.page-de-index .hero-industrial .container {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  width: 100%;
  max-width: 1280px;
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 88px) 24px clamp(46px, 7vh, 72px);
  text-align: left;
}

.page-de-index .hero-industrial .hero-title {
  max-width: 15ch;
  margin: 0;
  color: var(--hero-ink);
  font-family: inherit;
  font-size: clamp(3.1rem, 5.2vw, 5.4rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 12px 38px rgba(0, 0, 0, .48);
}

.page-de-index .hero-industrial .hero-sub {
  order: -1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid var(--hero-line);
  border-radius: 6px;
  background: var(--hero-surface);
  color: #fff;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.page-de-index .hero-industrial .hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 820px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.page-de-index .hero-industrial .hero-audience li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--hero-line);
  border-radius: 6px;
  background: var(--hero-surface);
  color: #e6ebef;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.page-de-index .hero-industrial .accent-divider {
  width: min(100%, 820px);
  max-width: 820px;
  height: 1px;
  margin: 34px 0 26px;
  opacity: 1;
  background: linear-gradient(90deg, rgba(122, 60, 255, .8), rgba(34, 211, 238, .5), transparent);
}

.page-de-index .hero-industrial .hero-promise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 820px);
}

.page-de-index .hero-industrial .hero-promise-text {
  min-width: 0;
}

.page-de-index .hero-industrial .hero-kicker {
  margin: 0 0 10px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: .08em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .55);
}

.page-de-index .hero-industrial .hero-promise-text p {
  max-width: 46ch;
  margin: 0;
  color: var(--hero-muted);
  font-size: clamp(.88rem, 1.05vw, .98rem);
  line-height: 1.55;
}

.page-de-index .hero-industrial a[aria-label="X-ERP"] {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 8px 14px;
  border: 1px solid var(--hero-line);
  border-radius: 6px;
  background: var(--hero-surface);
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.page-de-index .hero-industrial a[aria-label="X-ERP"]:hover {
  border-color: rgba(122, 60, 255, .72);
  background: rgba(17, 21, 31, .92);
  text-decoration: none;
  transform: translateY(-2px);
}

.page-de-index .hero-industrial a[aria-label="X-ERP"]:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 4px;
}

.page-de-index .hero-industrial .logo-hero {
  width: auto;
  height: 38px;
  filter: none;
}

@keyframes industrial-camera-in {
  from { opacity: .15; transform: scale(1.025) translate3d(12px, 6px, 0); }
  to { opacity: 1; transform: scale(1) translate3d(0, 0, 0); }
}

@media (max-width: 980px) {
  .page-de-index .hero-industrial::before {
    background:
      linear-gradient(90deg, rgba(5, 8, 13, .97) 0%, rgba(5, 8, 13, .86) 39%, rgba(5, 8, 13, .22) 72%),
      linear-gradient(0deg, rgba(5, 8, 13, .68) 0%, transparent 36%);
  }

  .page-de-index .hero-industrial .container {
    padding-inline: 24px;
  }

  .page-de-index .hero-industrial .hero-title {
    font-size: clamp(3rem, 7vw, 4.7rem);
  }
}

@media (max-width: 700px) {
  .page-de-index .hero-industrial {
    --industrial-header-clearance: 97px;
    min-height: 820px;
  }

  .page-de-index .hero-industrial::before {
    background:
      linear-gradient(180deg, rgba(5, 8, 13, .98) 0%, rgba(5, 8, 13, .92) 42%, rgba(5, 8, 13, .5) 63%, rgba(5, 8, 13, .08) 82%),
      linear-gradient(0deg, rgba(5, 8, 13, .45), transparent 28%);
  }

  .industrial-scene img {
    object-fit: contain;
    object-position: center bottom;
  }

  .page-de-index .hero-industrial .container {
    align-content: start;
    width: 100%;
    min-height: 820px;
    padding: calc(28px + var(--industrial-header-clearance, 0px)) 18px 44px;
  }

  .page-de-index .hero-industrial .hero-title {
    width: 100%;
    max-width: none;
    font-size: clamp(2.4rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  .page-de-index .hero-industrial .hero-sub {
    margin-bottom: 16px;
  }

  .page-de-index .hero-industrial .hero-audience {
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
    gap: 6px;
  }

  .page-de-index .hero-industrial .hero-audience li {
    min-height: 32px;
    padding-inline: 9px;
    font-size: .75rem;
  }

  .page-de-index .hero-industrial .accent-divider {
    margin: 25px 0 22px;
  }

  .page-de-index .hero-industrial .hero-kicker {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    line-height: 1.1;
  }

  .page-de-index .hero-industrial .hero-promise {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .page-de-index .hero-industrial .hero-promise-text p {
    width: 100%;
    max-width: 100%;
    font-size: .86rem;
  }

  .page-de-index .hero-industrial .hero-promise-text {
    width: 100%;
  }

  .page-de-index .hero-industrial .logo-hero {
    height: 32px;
  }
}

@media (max-width: 640px) {
  .page-de-index .hero-industrial {
    --industrial-header-clearance: 137px;
  }
}

@media (max-width: 380px) {
  .page-de-index .hero-industrial {
    min-height: 840px;
  }

  .page-de-index .hero-industrial .container {
    min-height: 840px;
    padding-inline: 14px;
  }

  .page-de-index .hero-industrial .hero-title { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .industrial-scene img,
  .page-de-index .hero-industrial a[aria-label="X-ERP"] {
    animation: none;
    transition: none;
  }
}