
.hero[data-v-fcd00b16] {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Particle Canvas */
.particle-canvas[data-v-fcd00b16] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Background Effects */
.hero-bg[data-v-fcd00b16] {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neon-orb[data-v-fcd00b16] {
  position: absolute;
  border-radius: 50%;
}
.orb-1[data-v-fcd00b16] {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  animation: float1-fcd00b16 8s ease-in-out infinite;
}
.orb-1 .orb-glow[data-v-fcd00b16] {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 60%);
  filter: blur(30px);
  animation: pulse-glow-fcd00b16 4s ease-in-out infinite;
}
.orb-2[data-v-fcd00b16] {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
  animation: float2-fcd00b16 10s ease-in-out infinite;
}
.orb-2 .orb-glow[data-v-fcd00b16] {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 60%);
  filter: blur(25px);
  animation: pulse-glow-fcd00b16 5s ease-in-out infinite reverse;
}
.orb-3[data-v-fcd00b16] {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
  animation: float3-fcd00b16 12s ease-in-out infinite;
}
.orb-3 .orb-glow[data-v-fcd00b16] {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
  filter: blur(20px);
  animation: pulse-glow-fcd00b16 6s ease-in-out infinite;
}
@keyframes float1-fcd00b16 {
0%, 100% { transform: translate(0, 0) scale(1);
}
50% { transform: translate(-30px, 30px) scale(1.1);
}
}
@keyframes float2-fcd00b16 {
0%, 100% { transform: translate(0, 0) scale(1);
}
50% { transform: translate(20px, -20px) scale(1.05);
}
}
@keyframes float3-fcd00b16 {
0%, 100% { transform: translate(0, 0);
}
25% { transform: translate(40px, -40px);
}
50% { transform: translate(-20px, 20px);
}
75% { transform: translate(30px, 30px);
}
}
@keyframes pulse-glow-fcd00b16 {
0%, 100% { opacity: 0.5; transform: scale(1);
}
50% { opacity: 1; transform: scale(1.2);
}
}
.grid-pattern[data-v-fcd00b16] {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.scan-line[data-v-fcd00b16] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  animation: scan-fcd00b16 8s linear infinite;
}
@keyframes scan-fcd00b16 {
0% { top: 0; opacity: 0;
}
10% { opacity: 1;
}
90% { opacity: 1;
}
100% { top: 100%; opacity: 0;
}
}

/* Floating Elements */
.floating-element[data-v-fcd00b16] {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(99, 102, 241, 0.4);
  animation: floatIcon-fcd00b16 6s ease-in-out infinite;
  z-index: 1;
}
.floating-element svg[data-v-fcd00b16] {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px currentColor);
}
@keyframes floatIcon-fcd00b16 {
0%, 100% { transform: translateY(0) rotate(0deg);
}
50% { transform: translateY(-20px) rotate(10deg);
}
}

/* Content */
.hero-content[data-v-fcd00b16] {
  position: relative;
  z-index: 2;
}
.badge-container[data-v-fcd00b16] {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.badge-pulse[data-v-fcd00b16] {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: linear-gradient(135deg, #6366F1, #22C55E);
  opacity: 0.3;
  filter: blur(8px);
  animation: badge-pulse-fcd00b16 2s ease-in-out infinite;
}
@keyframes badge-pulse-fcd00b16 {
0%, 100% { transform: scale(1); opacity: 0.3;
}
50% { transform: scale(1.1); opacity: 0.5;
}
}
.badge[data-v-fcd00b16] {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.5);
  border-radius: 100px;
  color: #6366F1;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.badge-icon[data-v-fcd00b16] {
  width: 16px;
  height: 16px;
}
.hero-title[data-v-fcd00b16] {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.gradient-text[data-v-fcd00b16] {
  display: inline-block;
  background: linear-gradient(135deg, #6366F1, #EC4899, #22C55E);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift-fcd00b16 5s ease infinite;
}
@keyframes gradient-shift-fcd00b16 {
0%, 100% { background-position: 0% 50%;
}
50% { background-position: 100% 50%;
}
}
.text-shimmer[data-v-fcd00b16] {
  position: relative;
}
.text-shimmer[data-v-fcd00b16]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer-fcd00b16 3s ease-in-out infinite;
}
@keyframes shimmer-fcd00b16 {
0% { left: -100%;
}
100% { left: 100%;
}
}
.hero-description[data-v-fcd00b16] {
  font-size: 1.25rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}
.highlight[data-v-fcd00b16] {
  color: #F1F5F9;
  position: relative;
}
.highlight[data-v-fcd00b16]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6366F1, #22C55E);
}

/* Buttons */
.hero-actions[data-v-fcd00b16] {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
.btn-primary[data-v-fcd00b16] {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6366F1, #EC4899);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-primary[data-v-fcd00b16]:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 10px 40px rgba(99, 102, 241, 0.4),
    0 0 60px rgba(99, 102, 241, 0.2);
}
.btn-glow[data-v-fcd00b16] {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover .btn-glow[data-v-fcd00b16] {
  transform: translateX(100%);
}
.btn-icon[data-v-fcd00b16] {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.btn-primary:hover .btn-icon[data-v-fcd00b16] {
  transform: translateX(5px);
}
.btn-secondary[data-v-fcd00b16] {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-border[data-v-fcd00b16] {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: linear-gradient(#1E293B, #1E293B) padding-box,
              linear-gradient(135deg, #6366F1, #22C55E) border-box;
}
.btn-secondary[data-v-fcd00b16]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

/* Stats */
.hero-stats[data-v-fcd00b16] {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.stat[data-v-fcd00b16] {
  position: relative;
  display: flex;
  flex-direction: column;
}
.stat-value[data-v-fcd00b16] {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #fff, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label[data-v-fcd00b16] {
  font-size: 0.875rem;
  color: #64748B;
}
.stat-glow[data-v-fcd00b16] {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #6366F1, transparent);
  border-radius: 2px;
}

/* Visual Section */
.hero-visual[data-v-fcd00b16] {
  position: relative;
  z-index: 2;
}
.code-window[data-v-fcd00b16] {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.window-header[data-v-fcd00b16] {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}
.window-dots[data-v-fcd00b16] {
  display: flex;
  gap: 0.5rem;
}
.dot[data-v-fcd00b16] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.2);
}
.dot-red[data-v-fcd00b16] { background: #EF4444;
}
.dot-yellow[data-v-fcd00b16] { background: #F59E0B;
}
.dot-green[data-v-fcd00b16] { background: #22C55E;
}
.window-title[data-v-fcd00b16] {
  font-size: 0.875rem;
  color: #94A3B8;
  font-family: 'Inter', monospace;
}
.ai-indicator[data-v-fcd00b16] {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  color: #22C55E;
  font-size: 0.75rem;
  font-weight: 500;
}
.ai-dot[data-v-fcd00b16] {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: blink-fcd00b16 1.5s ease-in-out infinite;
}
@keyframes blink-fcd00b16 {
0%, 100% { opacity: 1;
}
50% { opacity: 0.3;
}
}
.window-content[data-v-fcd00b16] {
  padding: 1.5rem;
}
.prompt-section[data-v-fcd00b16] {
  margin-bottom: 1.5rem;
}
.prompt-label[data-v-fcd00b16] {
  display: block;
  color: #22C55E;
  font-family: 'Inter', monospace;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.prompt-input-wrapper[data-v-fcd00b16] {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  min-height: 48px;
}
.prompt-text[data-v-fcd00b16] {
  color: #F1F5F9;
  font-family: 'Inter', monospace;
  font-size: 0.9375rem;
}
.prompt-cursor[data-v-fcd00b16] {
  color: #6366F1;
  font-weight: bold;
  animation: cursor-blink-fcd00b16 0.8s ease-in-out infinite;
}
@keyframes cursor-blink-fcd00b16 {
0%, 100% { opacity: 1;
}
50% { opacity: 0;
}
}
.generate-btn[data-v-fcd00b16] {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.generate-btn[data-v-fcd00b16]:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}
.zap-icon[data-v-fcd00b16] {
  width: 18px;
  height: 18px;
}
.generate-particles[data-v-fcd00b16] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.particle[data-v-fcd00b16] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: particle-fly-fcd00b16 1.5s ease-out infinite;
  animation-delay: calc(var(--i) * 0.15s);
}
@keyframes particle-fly-fcd00b16 {
0% { 
    transform: translate(0, 0) scale(1);
    opacity: 1;
}
100% { 
    transform: translate(calc((var(--i) - 3) * 30px), -40px) scale(0);
    opacity: 0;
}
}

/* Preview Card */
.preview-card[data-v-fcd00b16] {
  position: relative;
  background: linear-gradient(135deg, #6366F1, #EC4899);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(99, 102, 241, 0.3);
}
.preview-glow[data-v-fcd00b16] {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6366F1, #EC4899, #22C55E);
  border-radius: 18px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
  animation: preview-glow-pulse-fcd00b16 3s ease-in-out infinite;
}
@keyframes preview-glow-pulse-fcd00b16 {
0%, 100% { opacity: 0.3; transform: scale(1);
}
50% { opacity: 0.6; transform: scale(1.05);
}
}
.preview-header[data-v-fcd00b16] {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.preview-dots[data-v-fcd00b16] {
  display: flex;
  gap: 0.5rem;
}
.preview-dots span[data-v-fcd00b16] {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}
.preview-badge[data-v-fcd00b16] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.badge-pulse-sm[data-v-fcd00b16] {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: blink-fcd00b16 1s ease-in-out infinite;
}
.preview-content[data-v-fcd00b16] {
  padding: 2rem;
}
.preview-hero[data-v-fcd00b16] {
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}
.preview-hero h3[data-v-fcd00b16] {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.preview-hero p[data-v-fcd00b16] {
  font-size: 0.875rem;
  opacity: 0.9;
}
.preview-elements[data-v-fcd00b16] {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.element[data-v-fcd00b16] {
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  animation: element-pulse-fcd00b16 2s ease-in-out infinite;
}
.el-1[data-v-fcd00b16] { width: 60px; height: 40px; animation-delay: 0s;
}
.el-2[data-v-fcd00b16] { width: 80px; height: 50px; animation-delay: 0.3s;
}
.el-3[data-v-fcd00b16] { width: 50px; height: 35px; animation-delay: 0.6s;
}
@keyframes element-pulse-fcd00b16 {
0%, 100% { opacity: 0.5; transform: scale(1);
}
50% { opacity: 0.8; transform: scale(1.05);
}
}
.preview-footer[data-v-fcd00b16] {
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.875rem;
}
.live-indicator[data-v-fcd00b16] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
}
.live-dot[data-v-fcd00b16] {
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
  animation: blink-fcd00b16 1s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
.hero[data-v-fcd00b16] {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
}
.hero-title[data-v-fcd00b16] {
    font-size: 2.5rem;
}
.hero-description[data-v-fcd00b16] {
    max-width: 100%;
}
.hero-actions[data-v-fcd00b16] {
    justify-content: center;
}
.hero-stats[data-v-fcd00b16] {
    justify-content: center;
}
.floating-element[data-v-fcd00b16] {
    display: none;
}
}
