body {
  margin: 0;
  background: #050508;
  color: #f2f2f5;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: white;
  text-decoration: none;
}

/* TOP NAVIGATION */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 84%;
  padding: 30px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 3px;
}

.nav nav {
  display: flex;
  gap: 30px;
}

.nav nav a {
  color: #aaaab5;
}

/* HERO */

.hero {
 background:
  linear-gradient(
    90deg,
    rgba(5, 5, 8, 0.92) 0%,
    rgba(5, 5, 8, 0.55) 50%,
    rgba(5, 5, 8, 0.20) 100%
  ),
  url("aroviaq-bg.png") center / cover no-repeat;
padding: 140px 8% 80px
}

.hero-content {
  max-width: 1000px;
}

.eyebrow,
.section-label {
  color: #8585aa;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 80px;
  line-height: 1;
  letter-spacing: -3px;
  margin: 20px 0;
}

.hero h1 span {
  display: block;
  color: #888894;
}

.hero-description {
  color: #9999a5;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

/* BUTTONS */

.hero-buttons {
  margin-top: 35px;
}

.button {
  display: inline-block;
  padding: 14px 25px;
  margin-right: 10px;
  border: 1px solid #555560;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.button.primary {
  background: white;
  color: #050508;
}

/* MAIN SECTIONS */

.section {
  padding: 120px 8%;
  border-top: 1px solid #222229;
}

.section h2 {
  font-size: 55px;
  line-height: 1.05;
  margin: 25px 0;
}

.section p {
  color: #9999a5;
  font-size: 17px;
  line-height: 1.7;
  max-width: 650px;
}

/* PROJECT AREA */

.project-art {
  height: 300px;
  margin-top: 60px;
  border: 1px solid #22222a;

  background:
    radial-gradient(
      circle at center,
      rgba(100, 80, 220, 0.2),
      transparent 40%
    ),
    #08080c;
}

/* THREE PILLARS */

.pillars {
  display: flex;
  gap: 60px;
}

.pillar {
  flex: 1;
  border-top: 1px solid #44444d;
  padding-top: 25px;
}

.pillar span {
  color: #666675;
  font-size: 12px;
}

.pillar h3 {
  font-size: 25px;
  margin: 20px 0 10px;
}

.pillar p {
  color: #888895;
}

/* CONTACT */

.contact {
  min-height: 500px;
}

.contact a {
  display: inline-block;
  margin-top: 25px;
  color: #aaaaff;
  font-size: 22px;
}

/* FOOTER */

footer {
  padding: 40px 8%;
  border-top: 1px solid #222229;
  display: flex;
  justify-content: space-between;
  color: #666675;
  font-size: 12px;
}

footer nav {
  display: flex;
  gap: 25px;
}

/* SMALL SCREENS */

@media (max-width: 700px) {
  .hero h1 {
    font-size: 50px;
  }

  .pillars {
    flex-direction: column;
  }

  .nav nav {
    display: none;
  }
}