.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(34, 242, 247, 0.1),
    transparent 60%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
  gap: 48px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary);
}

.hero-title {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(90deg, #fff, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-subtitle-primary {
  color: var(--clr-primary);
}

.hero-subtitle-dim {
  color: rgba(255, 255, 255, 0.8);
}

.hero-desc {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--clr-text-dim);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--clr-glass-border);
  background: var(--clr-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-primary);
  fill: none;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-ring {
  display: none;
}

.hero-art-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: clamp(260px, 35vw, 340px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(34, 242, 247, 0.35))
    drop-shadow(0 0 60px rgba(34, 242, 247, 0.18));
  animation: float-logo 5s ease-in-out infinite;
  z-index: 1;
}

@keyframes float-logo {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

.hero-art-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 242, 247, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
}

.hero-dot-1 {
  width: 12px;
  height: 12px;
  right: 10%;
  top: 15%;
  background: rgba(34, 242, 247, 0.4);
  box-shadow: 0 0 12px rgba(34, 242, 247, 0.3);
  animation: float-dot 4s ease-in-out infinite;
}

.hero-dot-2 {
  width: 8px;
  height: 8px;
  bottom: 20%;
  left: 12%;
  background: rgba(0, 213, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 213, 255, 0.3);
  animation: float-dot 5s ease-in-out 1s infinite;
}

.hero-dot-3 {
  width: 6px;
  height: 6px;
  left: 20%;
  top: 25%;
  background: rgba(255, 255, 255, 0.3);
  animation: float-dot 3.5s ease-in-out 0.5s infinite;
}

@keyframes float-dot {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
