/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  background: linear-gradient(to right, #450a0a, #0f172a, #172554);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.emoji {
  font-size: 1.5rem;
}

.emoji-large {
  font-size: 2.5rem;
}

.emoji-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.nav {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f97316;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #d1d5db;
  transition: color 0.3s;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.nav-link:hover {
  color: #ffffff;
}

.launch-btn {
  background: #f97316;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.launch-btn:hover {
  background: #ea580c;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-emojis {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

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

.text-orange {
  color: #f97316;
}

.hero-description {
  font-size: 1.125rem;
  color: #d1d5db;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: bold;
  color: #f97316;
}

.stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: #f97316;
  color: white;
}

.btn-primary:hover {
  background: #ea580c;
}

.btn-secondary {
  border: 2px solid #a855f7;
  background: transparent;
  color: white;
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.1);
}

.btn-yellow {
  background: #eab308;
  color: #1e293b;
}

.btn-yellow:hover {
  background: #ca8a04;
}

.btn-outline-orange {
  border: 2px solid #f97316;
  background: transparent;
  color: white;
}

.btn-outline-orange:hover {
  background: rgba(249, 115, 22, 0.1);
}

.btn-fee {
  background: #f97316;
  color: white;
  width: 100%;
}

.btn-fee:hover {
  background: #ea580c;
}

.btn-trial {
  background: #f97316;
  color: white;
  padding: 0.25rem 1.5rem;
  font-size: 0.875rem;
}

.btn-trial:hover {
  background: #ea580c;
}

.features-list {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.feature-item,
.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkmark {
  color: #22c55e;
}

/* Dashboard Widget */
.dashboard-widget {
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .dashboard-widget {
    padding-top: 2rem;
  }
}

.widget-border {
  height: 4px;
  background: #f97316;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.widget-card {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.title-text {
  font-weight: bold;
  font-size: 1.125rem;
}

.status-badge {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.widget-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.widget-stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.widget-stat-item:last-child {
  border-bottom: none;
}

.stat-key {
  color: #9ca3af;
}

.stat-value-large {
  font-weight: bold;
  font-size: 1.25rem;
}

.stat-status-ready {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ade80;
  font-weight: 600;
}

.stat-status-enabled {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f97316;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 5rem 0;
}

/* Features Section */
.features-section {
  background: rgba(0, 0, 0, 0.2);
}

.feature-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

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

.bundle-card {
  border: 2px solid #f97316;
  border-radius: 0.5rem;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  max-width: 28rem;
}

.bundle-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bundle-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.bundle-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bundle-stat {
  background: rgba(30, 41, 59, 0.5);
  padding: 1rem;
  border-radius: 0.25rem;
}

.bundle-label {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.bundle-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fb923c;
}

.feature-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.description-text {
  color: #d1d5db;
  font-size: 1.125rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Advanced Capabilities */
.advanced-section {
  margin-top: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .section-title-center {
    font-size: 3rem;
  }
}

.icon-zap {
  font-size: 2rem;
  color: #f97316;
}

.section-subtitle {
  color: #d1d5db;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.capability-card {
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}

.capability-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
}

.capability-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.capability-content {
  margin-bottom: 1.5rem;
}

.capability-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.capability-text {
  color: #d1d5db;
  font-size: 0.875rem;
}

.capability-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.capability-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bullet {
  color: #fb923c;
}

/* Pricing Section */
.pricing-section {
  background: rgba(0, 0, 0, 0.3);
}

.popular-badge {
  display: inline-block;
  background: rgba(234, 179, 8, 0.2);
  border: 1px solid #eab308;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fde047;
  margin-top: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  border-radius: 0.5rem;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-free {
  border: 2px solid #f97316;
}

.pricing-card-pro {
  border: 2px solid #eab308;
}

.pricing-card-lifetime {
  border: 2px solid #eab308;
}

.most-popular {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #eab308;
  color: #1e293b;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 0.875rem;
}

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

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: bold;
  color: #f97316;
}

.pricing-price-yellow {
  color: #facc15;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #d1d5db;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

.pricing-trial {
  text-align: center;
  margin-top: 3rem;
}

.trial-text {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.trial-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #eab308;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* About Section */
.about-section {
  background: rgba(0, 0, 0, 0.2);
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-size: 2.25rem;
  font-weight: bold;
  color: #f97316;
}

.about-stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

.divider {
  height: 1px;
  background: #334155;
  margin: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-item-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.about-item-text {
  color: #d1d5db;
  line-height: 1.6;
}

.vision-card {
  border: 2px solid #334155;
  border-radius: 0.5rem;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vision-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #facc15;
}

.vision-text {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.vision-stats {
  padding-top: 1rem;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vision-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vision-stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: #f97316;
}

.vision-stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
