.dt-hero {
  position: relative;
  background: linear-gradient(135deg, #070313 0%, #160a3d 50%, #05020d 100%);
  color: var(--dt-text-light);
  padding: 100px 0 100px 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Blur Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--dt-purple);
  top: -10%;
  right: -10%;
  animation: pulseOrb 12s infinite alternate ease-in-out;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--dt-blue);
  bottom: -10%;
  left: -10%;
  animation: pulseOrb 15s infinite alternate-reverse ease-in-out;
}

@keyframes pulseOrb {
  0% { transform: scale(1) translate(0, 0); opacity: 0.2; }
  100% { transform: scale(1.2) translate(50px, 30px); opacity: 0.35; }
}

/* Container & Grid layout */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 25px;
}

.text-highlight {
  background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--dt-text-light-muted);
  margin-bottom: 40px;
  max-width: 620px;
}

/* Actions (Buttons) */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.dt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(135deg, var(--dt-purple) 0%, var(--dt-blue) 100%);
  color: var(--dt-text-light);
  border: none;
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.3);
  gap: 10px;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(51, 12, 179, 0.5);
  background: linear-gradient(135deg, #4216e5 0%, #1e5cff 100%);
}

.primary-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dt-border-light);
  color: var(--dt-text-light);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Capability badge row */
.hero-capabilities-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.capability-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--dt-text-light-muted);
}

.capability-badge img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Particles Floating */
.hero-particle {
  position: absolute;
  background: rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp infinite linear;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-120px) scale(1.5); opacity: 0; }
}

/* Visual Dashboard Simulation Card */
.hero-visual {
  position: relative;
  z-index: 2;
}

.visual-card-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), transparent 50%, rgba(14, 76, 233, 0.4));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.visual-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.dashboard-mock {
  background: rgba(10, 6, 26, 0.95);
  border-radius: 23px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.mock-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #eab308; }
.mock-dots span:nth-child(3) { background: #22c55e; }

.mock-title {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--dt-text-light-muted);
}

.mock-body {
  padding: 25px;
}

.mock-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.mock-col-4 {
  flex: 1;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  text-align: left;
}

.stat-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--dt-text-light-muted);
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.stat-bar span {
  display: block;
  height: 100%;
  background: var(--dt-blue);
  border-radius: 10px;
}

.stat-bar.pass span {
  background: #10b981;
}

/* Code Editor */
.code-editor {
  background: rgba(5, 2, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  font-family: monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
}

.code-editor .line {
  display: flex;
}

.code-editor .line span:first-child {
  width: 25px;
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

.code-editor .keyword { color: #f43f5e; }
.code-editor .class { color: #38bdf8; }
.code-editor .string { color: #10b981; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-capabilities-row {
    justify-content: center;
  }
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dt-hero {
    padding: 80px 0 60px 0;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .dt-btn {
    width: 100%;
  }
  .stat-box {
    padding: 10px;
  }
  .stat-value {
    font-size: 1.1rem;
  }
}
