body {
  margin: 0;
  background: #05070d;
  color: white;
  font-family: Arial, sans-serif;
}

/* HERO STRUCTURE */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
}

.hero-top {
  text-align: left;
  margin-bottom: 40px;
}

.hero-top h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero-top p {
  font-size: 1.15rem;
  color: #cfcfcf;
}

/* HORSE + RIGHT COLUMN */
.hero-bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Horse centered under heading */
.horse-wrap {
  flex: 2;
  position: relative;
  overflow: hidden; /* needed for fade */
}

/* HORSE IMAGE */
.horse {
  width: 100%;
  height: auto;
  border-radius: 10px;

  /* fade edges */
  mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);

  /* scroll fade */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}

.horse.visible {
  opacity: 1;
  transform: translateY(0);
}

/* bottom fade blend */
.horse-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, #05070d 100%);
  pointer-events: none;
}

/* Right column */
.right-column {
  flex: 1;
  text-align: center;
}

.app {
  width: 250px;
  margin-bottom: 20px;
}

.gplay {
  width: 180px;
  cursor: pointer;
  transition: 0.2s;
}

.gplay:hover {
  transform: scale(1.05);
}

/* AGENTS */
.agents {
  padding: 70px 20px;
  text-align: center;
}

.agent-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.agent-card {
  background: #0b0f1a;
  padding: 25px;
  width: 280px;
  border-radius: 14px;
  border: 1px solid #1e2230;
}

/* WHY SECTION */
.why {
  padding: 60px 20px;
  text-align: center;
}

.why ul {
  list-style: none;
  padding: 0;
}

.why li {
  margin: 12px 0;
  color: #c8c8c8;
}

footer {
  margin-top: 20px;
  color: #777;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-bottom {
    flex-direction: column;
    text-align: center;
  }

  .app {
    width: 210px;
  }

  .gplay {
    width: 160px;
  }
}
