/* ==========================================================
   VEDAAY SKILLS — Home / Hero
   Ported from main_vedaay_site.html (.hero and friends)
   The header sits transparent over this dark hero on the home page.
   ========================================================== */

.hero {
  position: relative;
  padding: 170px 0 100px;
  background: radial-gradient(
    ellipse at 30% 0%,
    var(--navy-soft) 0%,
    var(--navy) 55%,
    #001433 100%
  );
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 5%, transparent 65%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.hero .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-size: clamp(36px, 5.8vw, 72px);
  color: var(--white);
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto 38px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.float-cards {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  height: 100px;
}
.fcard {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 13px 17px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: floatCard 5s ease-in-out infinite;
}
.fcard .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.fcard.c1 {
  left: 0;
  top: 6px;
  animation-delay: 0s;
}
.fcard.c2 {
  left: 250px;
  top: 50px;
  animation-delay: 0.8s;
}
.fcard.c3 {
  right: 250px;
  top: 0;
  animation-delay: 1.4s;
}
.fcard.c4 {
  right: 0;
  top: 46px;
  animation-delay: 2s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ===== TRUST / STATS ===== */
.trust {
  background: var(--navy-soft);
  padding: 52px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-num {
  font-family: "JetBrains Mono";
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
}
.trust-num .plus {
  color: var(--orange);
}
.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}
