/* ===============================
   HOME / INDEX PAGE
   =============================== */

.hero {
  text-align: center;
  padding: 80px 20px 50px;
}

.hero h1 {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.hero p {
  font-size: 15px;
  color: #cbd5f5;
  opacity: 0.9;
}

/* START HERE */
.start-here {
  text-align: center;
  padding: 36px 20px;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 60px;
}

.start-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #94a3b8;
  display: block;
  margin-bottom: 6px;
}

.start-here h2 {
  color: #38bdf8;
  margin-bottom: 6px;
}

.start-here p {
  color: #e5e7eb;
  opacity: 0.9;
  margin-bottom: 10px;
}

.start-link {
  color: #38bdf8;
  text-decoration: none;
  font-size: 14px;
}

.start-link:hover {
  text-decoration: underline;
}

/* CARDS */
.cards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card h3 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.card p {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.5;
}

.card-link {
  text-decoration: none;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 26px;
  }
}
