/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0 50px;
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.intro-badge i {
  font-size: 0.75rem;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-text .subtitle {
  font-size: 1.75rem;
  color: #64748b;
  margin-bottom: 24px;
  font-weight: 400;
  font-family: 'JetBrains Mono', monospace;
}

.hero-text p {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 4px;
}

.stat .label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease-out;
  position: relative;
}

.profile-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
  overflow: hidden;
  position: relative;
  padding: 5px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-info h3 {
  color: var(--slate-100);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-info p {
  color: var(--slate-400);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Floating Stats Box */
.floating-stats-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-stat-box {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  width: 100px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: float 4s ease-in-out infinite;
  pointer-events: auto;
}

/* Position boxes around the profile */
.floating-stat-box:nth-child(1) {
  top: 10%;
  right: -15px;
  animation-delay: 0s;
}

.floating-stat-box:nth-child(2) {
  top: 50%;
  left: -110px;
  transform: translateY(-50%);
  animation-delay: -1.3s;
}

.floating-stat-box:nth-child(3) {
  bottom: 10%;
  right: -35px;
  animation-delay: -2.6s;
}

.floating-stat-box:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.stat-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 1rem;
  color: white;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.stat-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-100);
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 0.7rem;
  color: var(--slate-400);
  font-weight: 400;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .profile-card {
    max-width: 350px;
  }
  
  .profile-image {
    width: 250px;
    height: 250px;
  }
  
  .hero-stats {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .floating-stats-container {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 40px 0 0;
    gap: 20px;
    height: auto;
    width: auto;
  }
  
  .floating-stat-box {
    position: static;
    transform: none !important;
    width: 120px;
    padding: 16px;
  }
  
  .connecting-lines {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
    min-height: 90vh;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text .subtitle {
    font-size: 1.25rem;
  }
  
  .profile-card {
    max-width: 300px;
    padding: 30px;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .floating-stats-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .floating-stat-box {
    width: 100px;
    padding: 12px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .stat-title {
    font-size: 0.9rem;
  }
  
  .stat-desc {
    font-size: 0.7rem;
  }
}