
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
  color: #eaeaea;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

section {
  padding: 100px 0;
}

/* HERO */

.hero {
  height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
    url("assets/hero-bg.webp") center/cover no-repeat;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.subline {
  opacity: 0.85;
  margin-bottom: 15px;
}

.micro {
  font-size: 0.75rem;
  letter-spacing: 3px;
  opacity: 0.6;
  position: relative;
}

.micro::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin: 12px auto 0;
  background: rgba(0,200,83,0.5);
}

/* ENVIRONMENTS */

.environments {
  background: #020a06;
  padding-bottom: 140px;
}

.env-sub {
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0.75;
}

.pillars {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pillar {
  max-width: 300px;
}

.pillar h3 {
  color: #00C853;
  transition: 0.15s ease;
}

.pillar:hover h3 {
  opacity: 0.8;
}

/* LOG */

.log {
  margin-top: 0;
}

.log-sub {
  opacity: 0.6;
  margin-bottom: 50px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #0a0a0a;
  padding: 30px;
  border-radius: 12px;
  width: 280px;
  border: 1px solid transparent;
  transition: 0.15s ease;
}

.card:hover {
  border-color: #00C853;
  transform: translateY(-4px);
}

/* VISION BLOCK (CALM VERSION) */

.vision {
  background: #000;
}


.vision-text {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
  color: #eaeaea;
}








.log {
  padding-top: 140px;
}
