/* ===== FONT ===== */
@font-face {
  font-family: 'VCR';
  src: url('/fonts/toxigenesis.otf') format('truetype');
}

@font-face {
  font-family: 'OriginTech';
  src: url('/fonts/OriginTech.ttf') format('truetype');
}

/* ===== HERO BASE ===== */
.hero {
  position: relative;
  overflow: hidden;
}

/* 🎯 CANVAS BACKGROUND */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* 🧱 CONTENT ABOVE */
.hero-inner,
.hero-left {
  position: relative;
  z-index: 2;
}

/* ===== HERO TITLE ===== */
.hero-title {
  font-family: 'OriginTech', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.25;
  letter-spacing: 0.6px;
  text-align: center;

  /* 🔥 better contrast for dark */
  background: linear-gradient(90deg, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* glow */
  filter: drop-shadow(0 0 10px rgba(192,132,252,0.35));
  text-shadow: 0 0 30px rgba(56,189,248,0.25);
}

/* ===== HERO SUBTEXT ===== */
.hero-sub {
  font-family: 'VCR', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 26px;

  /* 🔥 better readable color */
  color: #cbd5f5;

  padding: 14px 18px;
  border-radius: 10px;

  /* glass effect */
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #00ffcc;

  text-shadow: 0 0 10px rgba(0,255,204,0.12);
  transition: all 0.3s ease;
}

/* hover */
.hero-sub:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 25px rgba(0,255,204,0.2);
  transform: translateY(-2px);
}

/* highlighted words */
.hero-sub span {
  color: #00ffc3;
  font-weight: 600;
}

/* badges */
.hero-sub .highlight {
  display: inline-block; /* 🔥 important */
  white-space: nowrap;   /* 🔥 word break rokega */

  background: rgba(0,255,195,0.08);
  border: 1px solid rgba(0,255,195,0.25);
  padding: 4px 8px;
  border-radius: 6px;

  margin: 4px 4px; /* 🔥 spacing for wrap */
}

/* ===== HERO FEATURES ===== */
.hero-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 22px;
  justify-content: center;
}

.hero-features span {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(0, 255, 204, 0.06);
  color: #9ca3af;

  border: 1px solid rgba(0, 255, 204, 0.15);
  transition: 0.25s ease;
}

.hero-features span:hover {
  color: #00ffcc;
  border-color: #00ffcc;
  transform: translateY(-2px);
}

/* ===== DESKTOP ===== */
@media (min-width: 901px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

  .hero-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 14px;
    padding: 12px 14px;
    margin-bottom: 20px;
  }

  .hero-features {
    gap: 8px;
  }

  .hero-features span {
    font-size: 11px;
    padding: 5px 8px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  .hero-cta a {
    width: 90%;
    text-align: center;
  }
}