/* ===============================
   THE LEADERS · Landing Page
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12%;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  color: #ffffff;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-content h2 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.8;
}

.tagline {
  margin: 32px 0;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #fff;
  color: #030303;
}

.btn.primary:hover {
  background: #ffffff;
}

.btn.ghost {
  border: 1px solid rgb(255, 255, 255);
  color: #fff;
}

.btn.ghost:hover {
  background: rgb(253, 253, 251);
}

/* RIGHT VISUAL */
.hero-visual img {
  max-height: 78vh;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 5px;
  }

  .hero-visual img {
    max-height: 60vh;
  }
}
