* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #0b69cf;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background-image: url("../images/industrial-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(16px, 6vw, 80px);
}

.title {
  transform: translateY(-18vh);
  font-family: "Bebas Neue", Impact, "Arial Black", system-ui, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
  margin: 0;
  display: grid;
  gap: 0.24em;
  font-size: 120pt;
  max-width: 14ch;
  justify-self: start;
}

@media (max-width: 1200px) { .title { font-size: 100pt; } }
@media (max-width: 900px)  { .title { font-size: 80pt; } }
@media (max-width: 700px)  { .title { font-size: 60pt; } }
@media (max-width: 520px)  { .title { font-size: 40pt; } }
