/* ================================================================
   HERO.CSS — Enhanced Immersive Hero Section Styles
   Synapse · Product of Synaptix Technologies · Built by Gurnoor Singh
   ================================================================ */

/* ── Hero Container ── */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.04) 0%, #020408 85%);
}

/* ── Clean Deep-Space Background Auras ── */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(14, 165, 233, 0.03) 0%, transparent 60%),
              radial-gradient(circle at 50% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── Hero Canvas ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ── Hero Inner Wrapper ── */
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

/* ── Hero Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--text-secondary);
  animation: fadeUp 0.8s ease both;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
  box-shadow: none;
}

/* ── Hero Title ── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
  animation: fadeUp 1s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  text-transform: uppercase;
}

/* ── Hero Subtitle ── */
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.5vw, 22px);
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 20px 0 16px;
  text-shadow: none;
  animation: fadeUp 0.8s 0.4s ease both;
}

/* ── Hero Description ── */
.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: none;
  animation: fadeUp 0.8s 0.6s ease both;
}

/* ── Hero Buttons ── */
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s ease both;
}

/* ── Hero Credit ── */
.hero-credit {
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--dim);
  animation: fadeUp 0.8s 1s ease both;
}

.hero-credit span {
  color: #ffffff;
  font-weight: 600;
  text-shadow: none;
}

/* ── Hero Scroll Indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2.2s infinite;
  z-index: 10;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  margin: 0 auto;
  box-shadow: none;
}

.hero-scroll p {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--dim);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ── Floating Cybernetic HUD Widget ── */
.hero-hud-preview {
  margin: 36px auto 44px;
  max-width: 640px;
  background: rgba(6, 12, 20, 0.45);
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 16px;
  padding: 18px 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 200, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  animation: fadeUp 0.8s 0.7s ease both, floatCard 6s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero-hud-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.6), transparent);
  animation: barShimmer 4s infinite linear;
}

.hud-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.18);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.hud-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

.status-pulse {
  animation: pulse 1.8s infinite;
}

.hud-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
}

.hud-latency {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--dim);
  margin-left: auto;
}

.hud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 14px;
}

.hud-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.stat-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hud-mini-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.hud-mini-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 2px;
}

.hud-footer-bar {
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  padding-top: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.hud-scanner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
  animation: barShimmer 6s infinite linear;
}

.hud-terminal-text {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--purple);
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.2);
}
