/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  z-index: 1;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--purple-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}
.hero-badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--purple);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero-title .gradient {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-dim);
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-handle a {
  color: var(--purple-light);
  text-decoration: none;
  transition: color 0.3s;
}
.hero-handle a:hover { color: var(--purple); }

/* ===== HERO VISUAL (Shield) ===== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease 0.3s both;
}
.shield-container {
  position: relative;
  width: 320px;
  height: 320px;
}
.shield-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(124, 92, 252, 0.15);
  border-radius: 50%;
  animation: rotate-slow 30s linear infinite;
}
.shield-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple-glow);
}
.shield-ring-2 {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(124, 92, 252, 0.1);
  border-radius: 50%;
  animation: rotate-slow 25s linear infinite reverse;
}
.shield-ring-2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 30%;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
}
.shield-ring-3 {
  position: absolute;
  inset: 60px;
  border: 1px dashed rgba(124, 92, 252, 0.08);
  border-radius: 50%;
  animation: rotate-slow 20s linear infinite;
}
.shield-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-icon svg {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 30px var(--purple-glow));
  animation: pulse-shield 3s ease-in-out infinite;
}
.shield-status {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 1rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--green);
  white-space: nowrap;
}
.shield-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}
