/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border2), transparent);
}
.hero-badge {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent2);
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: .8;
  animation: fadeUp .6s ease .1s both;
}
.hero-title {
  font-size: clamp(56px, 11vw, 110px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 16px;
  animation: fadeUp .6s ease .2s both;
}
.title-line {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-sub {
  display: block;
  font-size: .36em;
  letter-spacing: 8px;
  color: var(--accent2);
  -webkit-text-fill-color: var(--accent2);
  opacity: .7;
  margin-top: 8px;
}
.hero-desc {
  font-size: 15px;
  color: var(--t2);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeUp .6s ease .3s both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  animation: fadeUp .6s ease .4s both;
}
.hstat { text-align: center; }
.hstat-num {
  display: block;
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent2);
  line-height: 1;
}
.hstat-lbl {
  display: block;
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 1px;
  margin-top: 4px;
}
.hstat-sep { width: 1px; height: 44px; background: var(--border2); }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .6s ease .5s both;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(59,130,246,.3);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,.45);
}
.btn-primary.full { width: 100%; justify-content: center; }
.btn-ghost {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--border2);
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent2); }
.btn-sm { padding: 7px 14px; font-size: 12px; border-radius: 8px; }
.btn-danger { background: var(--red); color: #fff; border: none; padding: 7px 14px; border-radius: 8px; font-size: 12px; transition: all .2s; }
.btn-danger:hover { opacity: .85; }
.btn-outline { background: transparent; border: 1px solid var(--border2); color: var(--t2); padding: 7px 14px; border-radius: 8px; font-size: 12px; transition: all .2s; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent2); }
.center-btn { display: block; margin: 32px auto 0; }

/* ── SECTIONS ── */
