.hero {
  padding: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 85vh;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.hero-designation {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

.hero-hook {
  color: var(--slate-400);
  margin-top: 1.5rem;
  line-height: 1.7;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(255, 77, 55, 0.4);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-right {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-right {
    margin-left: auto;
  }
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.orb-indigo {
  width: 16rem;
  height: 16rem;
  top: -2.5rem;
  left: -2.5rem;
  background: rgba(99, 102, 241, 0.2);
}

.orb-accent {
  width: 12rem;
  height: 12rem;
  bottom: -2.5rem;
  right: -2.5rem;
  background: rgba(255, 77, 55, 0.1);
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .orb {
    animation: none;
  }
}

.hero-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 80px rgba(99, 102, 241, 0.15);
  background: linear-gradient(to bottom right, var(--surface), var(--void));
  aspect-ratio: 3 / 4;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
