.dr1060hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
  color: #fff;
  background: #050814;
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, #1b6cff55, transparent 40%),
              radial-gradient(circle at 80% 30%, #8a2be255, transparent 45%),
              radial-gradient(circle at 50% 80%, #00ffd055, transparent 50%);
  filter: blur(40px);
  animation: bgMove 12s infinite alternate ease-in-out;
}

@keyframes bgMove {
  from { transform: scale(1); }
  to { transform: scale(1.2) rotate(5deg); }
}

.hero-container {
  position: relative;
  width: min(1200px, 92%);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  z-index: 2;
}

/* TEXT */
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff, #7dd3fc, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  margin-top: 15px;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* BUTTONS */
.hero-cta {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  box-shadow: 0 10px 30px #4f46e544;
}

.btn.secondary {
  border: 1px solid #ffffff33;
  color: white;
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-3px);
}

/* TAGS */
.hero-tags {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

/* RIGHT VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: conic-gradient(from 180deg, #00f5ff, #8b5cf6, #00f5ff);
  filter: blur(15px);
  opacity: 0.4;
  z-index: -1;
}

.ecosystem {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.node {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid #7dd3fc;
}

.node.chip { border-color: #a78bfa; }
.node.future { border-color: #34d399; }

.small-text {
  margin-top: 15px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  filter: contrast(1.1) saturate(1.2);
}

/* glowing border */
.image-glow {
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, #00f5ff, #8b5cf6, #00f5ff);
  filter: blur(18px);
  opacity: 0.35;
  z-index: -1;
  border-radius: 22px;
}

/* text overlay */
.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.image-overlay-text h3 {
  margin: 0;
  font-size: 1rem;
}

.image-overlay-text p {
  margin: 5px 0 0;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}