.gen-page-wrapper {
  --gen-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gen-gradient-secondary: linear-gradient(135deg, #667eea 0%, #4f46e5 100%);
  --gen-color-purple-500: #667eea;
  --gen-color-purple-600: #764ba2;
  --gen-color-blue-500: #4f46e5;
  --gen-color-success: #10b981;
  --gen-color-error: #ef4444;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  width: 100%;
}

/* Hero Section */
.gen-page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  padding: 8rem 2rem;
}

.gen-page-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gen-page-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: gen-page-float 25s ease-in-out infinite;
  pointer-events: none;
}

.gen-page-orb-1 {
  top: 10%;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.5) 0%, transparent 70%);
}

.gen-page-orb-2 {
  top: 40%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.4) 0%, transparent 70%);
  animation-delay: -8s;
}

.gen-page-orb-3 {
  bottom: 15%;
  left: 45%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.35) 0%, transparent 70%);
  animation-delay: -16s;
}

@keyframes gen-page-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(60px, -60px) scale(1.15);
  }

  50% {
    transform: translate(-40px, 40px) scale(0.9);
  }

  75% {
    transform: translate(50px, 25px) scale(1.08);
  }
}

.gen-page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.gen-page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: rgba(102, 126, 234, 0.15);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(102, 126, 234, 0.4);
  border-radius: 50px;
  color: #e9d5ff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.gen-page-hero-badge svg {
  color: #fbbf24;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.gen-page-hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  margin: 0 0 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gen-page-gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #c4b5fd 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gen-page-gradient-shift 6s ease infinite;
}

@keyframes gen-page-gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.gen-page-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #cbd5e1;
  margin: 0 0 3rem;
  line-height: 1.7;
}

/* Prompt Container */
.gen-page-prompt-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(102, 126, 234, 0.1);
}

.gen-page-prompt-box {
  margin-bottom: 1.5rem;
}

.gen-page-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.gen-page-label svg {
  color: var(--gen-color-purple-500);
}

.gen-page-textarea {
  width: 100%;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  line-height: 1.6;
  resize: vertical;
  min-height: 140px;
  transition: all 0.3s ease;
}

.gen-page-textarea:focus {
  outline: none;
  border-color: var(--gen-color-purple-500);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.gen-page-textarea::placeholder {
  color: #94a3b8;
}

.gen-page-demo-note {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: #fbbf24;
  font-weight: 600;
  text-align: center;
}

.gen-page-char-count {
  text-align: right;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.gen-page-generate-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 3rem;
  background: var(--gen-gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.gen-page-generate-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.7s, height 0.7s;
}

.gen-page-generate-btn:hover::before {
  width: 400px;
  height: 400px;
}

.gen-page-generate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(102, 126, 234, 0.6);
}

.gen-page-generate-btn:active {
  transform: translateY(-1px);
}

.gen-page-generate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.gen-page-generate-btn svg,
.gen-page-generate-btn span {
  position: relative;
  z-index: 1;
}

/* Example Tags */
.gen-page-examples {
  margin-top: 2rem;
}



.gen-page-examples-label {
  color: #cbd5e1;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.gen-page-example-tags {
  display: grid;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.gen-page-example-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.25);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gen-page-example-tag svg {
  flex-shrink: 0;
  color: rgba(102, 126, 234, 0.8);
  transition: all 0.25s ease;
}

.gen-page-example-tag:hover {
  background: rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.gen-page-example-tag:hover svg {
  color: #667eea;
}

/* Trust Items */
.gen-page-trust-items {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gen-page-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.9375rem;
  font-weight: 500;
}

.gen-page-trust-item svg {
  color: var(--gen-color-success);
  flex-shrink: 0;
}

.gen-page-created-with {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: #94a3b8;
  opacity: 0.5;
  font-style: normal;
  letter-spacing: 0;
  text-shadow: none;
  padding: 0.5rem;
  background: transparent;
  border-radius: 0;
  border: none;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons in Hero */
.gen-page-cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}

.gen-page-cta-primary,
.gen-page-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gen-page-cta-primary {
  background: var(--gen-gradient-primary);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.4);
}

.gen-page-cta-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.7s, height 0.7s;
}

.gen-page-cta-primary:hover::before {
  width: 400px;
  height: 400px;
}

.gen-page-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(102, 126, 234, 0.6);
}

.gen-page-cta-primary svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.gen-page-cta-primary:hover svg {
  transform: translateY(-2px);
}

.gen-page-cta-primary span {
  position: relative;
  z-index: 1;
}

.gen-page-cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  color: #ffffff;
  border: 2px solid rgba(102, 126, 234, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.gen-page-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(102, 126, 234, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.3);
}

.gen-page-cta-secondary svg {
  transition: transform 0.3s ease;
}

.gen-page-cta-secondary:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.gen-page-cta-primary:active,
.gen-page-cta-secondary:active {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .gen-page-cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .gen-page-cta-primary,
  .gen-page-cta-secondary {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1rem;
  }
}

/* Features Section */
.gen-page-features {
  padding: 8rem 2rem;
  background: #ffffff;
}

.gen-page-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.gen-page-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.gen-page-section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #64748b;
  margin: 0;
}

.gen-page-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.gen-page-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gen-page-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.gen-page-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gen-gradient-primary);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.gen-page-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
}

.gen-page-feature-desc {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* How It Works Section */
.gen-page-how-it-works {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.gen-page-workflow-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.gen-page-workflow-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.gen-page-workflow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gen-page-workflow-large {
  width: 100%;
}

.gen-page-step-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  letter-spacing: 0.5px;
}

.gen-page-workflow-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(102, 126, 234, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem;
}

.gen-page-workflow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.gen-page-workflow-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 72px rgba(102, 126, 234, 0.3), 0 0 0 2px rgba(102, 126, 234, 0.4);
  border-color: rgba(102, 126, 234, 0.4);
}

.gen-page-workflow-card:hover::before {
  opacity: 1;
}

.gen-page-workflow-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.gen-page-workflow-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.gen-page-step-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .gen-page-workflow-container {
    gap: 2rem;
  }
  
  .gen-page-workflow-row {
    gap: 2rem;
  }
  
  .gen-page-step-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .gen-page-workflow-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .gen-page-workflow-container {
    gap: 2rem;
  }
  
  .gen-page-workflow-card {
    padding: 0.75rem;
  }
  
  .gen-page-step-badge {
    font-size: 0.8125rem;
    padding: 0.5rem 1.25rem;
  }
  
  .gen-page-step-title {
    font-size: 1rem;
  }
}

/* Plugin Benefits Section */
.gen-page-plugin-benefits {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.gen-page-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gen-page-benefit-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gen-page-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
}

.gen-page-benefit-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gen-gradient-primary);
  border-radius: 24px;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.gen-page-benefit-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1rem;
}

.gen-page-benefit-desc {
  font-size: 1.0625rem;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* Use Cases Section */
.gen-page-use-cases {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Full-Stack Section */
.gen-page-fullstack {
  padding: 8rem 2rem;
  background: #ffffff;
}

.gen-page-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gen-page-tech-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.gen-page-tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.4);
}

.gen-page-tech-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gen-gradient-primary);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.gen-page-tech-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.gen-page-tech-desc {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.gen-page-tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.gen-page-tech-list li {
  padding: 0.5rem 0;
  color: #475569;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gen-page-tech-list li::before {
  content: '→';
  color: var(--gen-color-purple-500);
  font-weight: 700;
}

.gen-page-fullstack-tagline {
  text-align: center;
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pricing Section */
.gen-page-pricing {
  padding: 8rem 2rem;
  background: #ffffff;
}

/* New Pricing Grid - Two Columns */
.gen-page-pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gen-page-pricing-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gen-page-pricing-card-new {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.gen-page-pricing-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.4);
}

.gen-page-pricing-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: rgba(102, 126, 234, 0.6);
  transform: scale(1.05);
  box-shadow: 0 24px 64px rgba(102, 126, 234, 0.35);
}

.gen-page-pricing-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 28px 72px rgba(102, 126, 234, 0.45);
}

.gen-page-pricing-featured .gen-page-pricing-name-new,
.gen-page-pricing-featured .gen-page-pricing-desc,
.gen-page-pricing-featured .gen-page-price-amount-new,
.gen-page-pricing-featured .gen-page-price-period-new,
.gen-page-pricing-featured .gen-page-pricing-features-new li span {
  color: #ffffff;
}

.gen-page-pricing-featured .gen-page-pricing-features-new svg {
  color: #ffffff;
}

.gen-page-pricing-featured .gen-page-tier-label {
  color: rgba(255, 255, 255, 0.95);
}

.gen-page-popular-badge-new {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #0f172a;
  padding: 0.625rem 1.75rem;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
  letter-spacing: 0.5px;
}

.gen-page-pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.gen-page-pricing-name-new {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.gen-page-pricing-desc {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* Tier Selector */
.gen-page-tier-selector {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.gen-page-tier-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.gen-page-tier-label svg {
  width: 16px;
  height: 16px;
}

.gen-page-tier-dropdown {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.gen-page-tier-dropdown:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.gen-page-tier-dropdown:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.gen-page-pricing-price-new {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.gen-page-pricing-billing {
  text-align: center;
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.gen-page-pricing-featured .gen-page-pricing-price-new {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.gen-page-pricing-featured .gen-page-pricing-billing {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.gen-page-price-amount-new {
  font-size: 4rem;
  font-weight: 900;
  color: #0f172a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.03em;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.gen-page-price-period-new {
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 600;
}

.gen-page-pricing-features-new {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.gen-page-pricing-features-new li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0;
  color: #475569;
  font-size: 1.0625rem;
  font-weight: 500;
}

.gen-page-pricing-features-new li strong {
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.gen-page-pricing-features-new svg {
  flex-shrink: 0;
  color: var(--gen-color-success);
}

.gen-page-pricing-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gen-gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  margin-top: auto;
}

.gen-page-pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.gen-page-pricing-button-featured {
  background: #ffffff;
  color: #667eea;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.gen-page-pricing-button-featured:hover {
  background: #f8fafc;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.5);
}

.gen-page-pricing-note-new {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gen-page-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gen-page-use-case {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.gen-page-use-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
}

.gen-page-use-case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gen-page-use-case-header svg {
  color: var(--gen-color-purple-500);
  flex-shrink: 0;
}

.gen-page-use-case-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.gen-page-use-case p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* CTA Section */
.gen-page-cta {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.gen-page-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(118, 75, 162, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.gen-page-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.gen-page-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 3rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.gen-page-cta-buttons-bottom {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gen-page-cta-button-main,
.gen-page-cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.5rem 3rem;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gen-page-cta-button-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 16px 56px rgba(102, 126, 234, 0.5);
}

.gen-page-cta-button-main::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.7s, height 0.7s;
}

.gen-page-cta-button-main:hover::before {
  width: 500px;
  height: 500px;
}

.gen-page-cta-button-main:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 72px rgba(102, 126, 234, 0.7);
}

.gen-page-cta-button-main svg,
.gen-page-cta-button-main span {
  position: relative;
  z-index: 1;
}

.gen-page-cta-button-main svg {
  transition: transform 0.3s ease;
}

.gen-page-cta-button-main:hover svg {
  transform: translateY(-3px);
}

.gen-page-cta-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  color: #ffffff;
  border: 2px solid rgba(102, 126, 234, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gen-page-cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(102, 126, 234, 0.8);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 56px rgba(102, 126, 234, 0.4);
}

.gen-page-cta-button-secondary svg {
  transition: transform 0.3s ease;
}

.gen-page-cta-button-secondary:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.gen-page-cta-button-main:active,
.gen-page-cta-button-secondary:active {
  transform: translateY(-2px) scale(1);
}

.gen-page-cta-note {
  text-align: center;
  color: #cbd5e1;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}

.gen-page-cta-note strong {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modal Styles */
.gen-page-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gen-page-modal.active {
  display: flex;
  opacity: 1;
}

.gen-page-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
}

.gen-page-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0f172a;
}

.gen-page-modal-header {
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(102, 126, 234, 0.15);
}

.gen-page-modal-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gen-page-modal-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gen-gradient-primary);
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.gen-page-modal-title h2 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gen-page-stage-text {
  margin: 0;
  color: #94a3b8;
  font-size: 1rem;
}

.gen-page-modal-body {
  flex: 1;
  overflow: hidden;
  padding: 1.5rem;
}

.gen-page-split-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  height: 100%;
}

.gen-page-code-panel,
.gen-page-preview-panel {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.gen-page-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(102, 126, 234, 0.08);
  border-bottom: 1px solid rgba(102, 126, 234, 0.15);
}

.gen-page-panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
}

.gen-page-panel-title svg {
  color: var(--gen-color-purple-500);
}

.gen-page-panel-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gen-color-success);
  font-size: 0.875rem;
  font-weight: 500;
}

.gen-page-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gen-color-success);
  border-radius: 50%;
  animation: gen-page-pulse 2s ease-in-out infinite;
}

@keyframes gen-page-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.gen-page-code-content {
  flex: 1;
  overflow: auto;
  padding: 1.5rem;
  background: #1e293b;
}

#genPageCodeStream {
  margin: 0;
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #e2e8f0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

#genPageCodeStream code {
  display: block;
}

.gen-page-preview-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.gen-page-preview-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #1e293b;
}

.gen-page-preview-loading.hidden {
  display: none;
}

.gen-page-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(102, 126, 234, 0.2);
  border-top-color: var(--gen-color-purple-500);
  border-radius: 50%;
  animation: gen-page-spin 1s linear infinite;
}

@keyframes gen-page-spin {
  to {
    transform: rotate(360deg);
  }
}

.gen-page-preview-loading p {
  color: #94a3b8;
  font-size: 0.9375rem;
  font-weight: 500;
}

.gen-page-preview-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #ffffff;
  display: none;
}

.gen-page-preview-frame.visible {
  display: block;
}

.gen-page-preview-status {
  color: #94a3b8;
  font-size: 0.875rem;
}

.gen-page-modal-footer {
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(102, 126, 234, 0.15);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.gen-page-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gen-page-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.gen-page-btn-secondary:hover {
  background: rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

.gen-page-btn-primary {
  background: var(--gen-gradient-primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.gen-page-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

/* Toast */
.gen-page-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  max-width: 400px;
}

.gen-page-toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gen-page-toast-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.gen-page-toast-error svg {
  color: var(--gen-color-error);
  flex-shrink: 0;
}

.gen-page-toast-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.gen-page-toast-success svg {
  color: var(--gen-color-success);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .gen-page-split-view {
    grid-template-columns: 1fr;
  }

  .gen-page-code-panel {
    max-height: 300px;
  }

}

@media (max-width: 768px) {
  .gen-page-hero {
    padding: 4rem 1rem;
    min-height: auto;
  }

  .gen-page-orb {
    filter: blur(60px);
  }

  .gen-page-orb-1 {
    width: 300px;
    height: 300px;
  }

  .gen-page-orb-2 {
    width: 250px;
    height: 250px;
  }

  .gen-page-orb-3 {
    width: 350px;
    height: 350px;
  }

  .gen-page-hero-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }

  .gen-page-hero-badge svg {
    width: 14px;
    height: 14px;
  }


  .gen-page-hero-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
  }

  .gen-page-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .gen-page-prompt-container {
    padding: 1.5rem 0.75rem;
    margin-bottom: 1.5rem;
  }

  .gen-page-prompt-box {
    margin-bottom: 1rem;
    padding: 0 0.25rem;
  }

  .gen-page-label {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }

  .gen-page-textarea {
    padding: 0.875rem;
    font-size: 0.9375rem;
    min-height: 160px;
  }

  .gen-page-demo-note {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }

  .gen-page-char-count {
    font-size: 0.8125rem;
    margin-top: 0.375rem;
  }

  .cf-turnstile {
    margin: 1rem auto;
    transform: scale(0.9);
    transform-origin: center;
  }

  .gen-page-generate-btn {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }

  .gen-page-generate-btn svg {
    width: 18px;
    height: 18px;
  }

  .gen-page-examples {
    margin-top: 1.5rem;
  }

  .gen-page-examples-label {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .gen-page-example-tags {
    gap: 0.5rem;
  }

  .gen-page-example-tag {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }

  .gen-page-example-tag svg {
    width: 16px;
    height: 16px;
  }



  .gen-page-trust-items {
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
    margin-top: 1.5rem !important;
  }

  .gen-page-trust-item {
    font-size: 0.875rem;
  }

  .gen-page-trust-item svg {
    width: 18px;
    height: 18px;
  }

  .gen-page-created-with {
    margin-top: 2rem;
    font-size: 0.8125rem;
    padding: 0.375rem;
  }

  .gen-page-features,
  .gen-page-how-it-works,
  .gen-page-use-cases,
  .gen-page-plugin-benefits,
  .gen-page-fullstack,
  .gen-page-pricing,
  .gen-page-cta {
    padding: 4rem 1rem;
  }

  .gen-page-benefits-grid {
    grid-template-columns: 1fr;
  }

  .gen-page-features-grid,
  .gen-page-use-cases-grid {
    grid-template-columns: 1fr;
  }

  .gen-page-modal-header {
    padding: 1.25rem 1rem;
  }

  .gen-page-modal-title h2 {
    font-size: 1.25rem;
  }

  .gen-page-modal-body {
    padding: 1rem;
  }

  .gen-page-modal-footer {
    padding: 1rem;
    flex-direction: column;
  }

  .gen-page-btn {
    width: 100%;
    justify-content: center;
  }

  .gen-page-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .gen-page-cta-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .gen-page-cta-buttons-bottom {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .gen-page-cta-button-main,
  .gen-page-cta-button-secondary {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
  }

  .gen-page-cta-note {
    font-size: 1rem;
  }
}