html {
  --bg: #0b0f14;
  --text: #e6edf3;
  --muted: #8b949e;
  --primary: #2ee6c6;
  --card: #11161d;
  --border: #1f2630;
  scroll-behavior: smooth;
}

/* RESET */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-top: -240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

/* HERO */
.hero {
  min-height: 85vh;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 20, 0.6);
}

/* GRID */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 230, 198, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 230, 198, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* SCAN */
.scan {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  animation: scan 8s linear infinite;
  top: 0;
}

@keyframes scan {
  0% {
    top: -10px;
  }

  100% {
    top: 100%;
  }
}

.badge {
  display: inline-block;
  border: 1px solid rgba(46, 230, 198, 0.2);
  background: rgba(46, 230, 198, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary);
}

h1 {
  font-family: 'Space Grotesk';
  font-size: 3.5rem;
  margin: 0;
}

.glow {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(46, 230, 198, 0.5);
}

.desc {
  color: var(--muted);
  margin: 20px 0;
}

.btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 0;
}

.btn-learn-more {
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn-learn-more {
  background: transparent;
  border: 1px solid;
  color: var(--muted);
}

.btn-learn-more:hover {
  color: white;
  border: 1px solid white;
}

/* STATS */
.stats {
  position: relative;
  margin-top: -240px;
  display: flex;
  justify-content: center;
  gap: 30px;
  z-index: 20;
}

.stat {
  width: 180px;
  padding: 25px;
  border-radius: 12px;
  background: rgba(17, 22, 29, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: 0.3s;

  box-shadow:
    0 0 20px rgba(46, 230, 198, 0.08),
    inset 0 0 20px rgba(46, 230, 198, 0.03);
}

.stat b {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.stat small {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(46, 230, 198, 0.15);
}

/* SERVICES */
.services {
  padding: 120px 20px;
  text-align: center;
}

.services h2 {
  font-family: 'Space Grotesk';
}

.cards {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: rgba(17, 22, 29, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  width: 260px;
  text-align: left;
  transition: 0.3s;
  margin: 0;
}

.card:hover {
  border: 1px solid rgba(46, 230, 198, 0.3);
  background: rgba(17, 22, 29, 0.9);
  transform: translateY(-5px);
}

/* CARD TEXT */
.card b {
  display: block;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  color: #D1D5DB;
  margin-bottom: 12px;
}

.card p {
  font-size: 12px;
  color: #94A3B8;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

/* ICONS */
.icon {
  margin-bottom: 8px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(46, 230, 198, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 18px;
  color: var(--primary);
}

.icon-box img {
  width: 20px;
  height: 20px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}