:root {
  --black: #050505;
  --ink: #111111;
  --muted: #7d7d7d;
  --line: rgba(255, 255, 255, 0.2);
  --white: #ffffff;
  --red: #d72724;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background: transparent;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}

.animation-shell {
  height: 100svh;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.industrial-hero {
  align-items: stretch;
  display: grid;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.industrial-hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 9.09vw 9.09vw;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-animation {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

#industrialCanvas {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.hero-glass {
  background:
    radial-gradient(circle at 54% 48%, rgba(255, 255, 255, 0.08), transparent 18%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.industry-section {
  display: none;
}

@media (max-width: 860px) {
  .industry-section {
    min-height: 112svh;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
