/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/landing/landing.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
/* Landing Page Styles with Brand Colors */
:root {
  --primary-blue: #00aeff;
  --primary-green: #00ff7f;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #1a1a1a;
  --text-gray: #6b7280;
  --border-gray: #e5e7eb;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

.landing-page {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gray);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-gray);
}

.logo-icon {
  font-size: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary-blue);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid var(--border-gray);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 174, 255, 0.1);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark-gray);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.play-icon {
  font-size: 14px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

/* Trading Bot Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trading-bot-container {
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.trading-bot-container:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.laptop-screen {
  width: 400px;
  height: 250px;
  background: var(--dark-gray);
  border-radius: 12px 12px 0 0;
  border: 3px solid #333;
  position: relative;
  overflow: hidden;
}

.screen-header {
  background: #2a2a2a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #444;
}

.screen-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.screen-title {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.screen-content {
  padding: 16px;
  height: calc(100% - 45px);
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  overflow: hidden;
}

.bot-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 500;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
  position: relative;
}

.pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.trading-dashboard {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dashboard-header h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-green);
  font-size: 10px;
  font-weight: 600;
}

.live-indicator .pulse {
  width: 6px;
  height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.signals-list {
  min-height: 60px;
}

.signal-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 11px;
}

.signal-symbol {
  color: var(--white);
  font-weight: 600;
}

.signal-direction {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.signal-direction.long {
  background: rgba(0, 255, 127, 0.2);
  color: var(--primary-green);
}

.signal-direction.short {
  background: rgba(255, 0, 0, 0.2);
  color: #ff6b6b;
}

.signal-score {
  color: var(--primary-blue);
  font-weight: 600;
}

.signal-price {
  color: var(--white);
  font-weight: 500;
}

.signal-change {
  font-weight: 600;
}

.signal-change.positive {
  color: var(--primary-green);
}

.signal-change.negative {
  color: #ff6b6b;
}

.profit-display {
  display: flex;
  gap: 16px;
}

.profit-item {
  flex: 1;
  text-align: center;
}

.profit-label {
  display: block;
  color: var(--text-gray);
  font-size: 10px;
  margin-bottom: 4px;
}

.profit-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.profit-value.positive {
  color: var(--primary-green);
}

.laptop-base {
  width: 450px;
  height: 20px;
  background: linear-gradient(to bottom, #333, #222);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
}

.laptop-base::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #444;
  border-radius: 2px;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  color: var(--text-gray);
  font-size: 14px;
  border-bottom: 1px solid var(--border-gray);
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Demo Section */
.demo {
  padding: 100px 0;
  background: var(--light-gray);
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.demo-text p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.demo-visual {
  display: flex;
  justify-content: center;
}

.demo-screen {
  width: 350px;
  height: 220px;
  background: var(--dark-gray);
  border-radius: 12px;
  border: 3px solid #333;
  overflow: hidden;
}

.demo-header {
  background: #2a2a2a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #444;
  color: var(--white);
  font-size: 12px;
}

.demo-dots {
  display: flex;
  gap: 4px;
}

.demo-content-area {
  padding: 12px;
  height: calc(100% - 40px);
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.demo-chart {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 8px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 10px;
  color: var(--white);
}

.chart-status.positive {
  color: var(--primary-green);
  font-weight: 600;
}

.chart-area {
  height: 40px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.chart-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  transform: translateY(-50%);
}

.chart-signals {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.signal-marker {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 600;
}

.signal-marker.long {
  background: rgba(0, 255, 127, 0.3);
  color: var(--primary-green);
  left: 20%;
}

.signal-marker.short {
  background: rgba(255, 0, 0, 0.3);
  color: #ff6b6b;
  right: 20%;
}

.demo-alerts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alert-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 9px;
}

.alert-time {
  color: var(--text-gray);
}

.alert-symbol {
  color: var(--white);
  font-weight: 600;
}

.alert-action {
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 8px;
  font-weight: 600;
}

.alert-action.long {
  background: rgba(0, 255, 127, 0.2);
  color: var(--primary-green);
}

.alert-action.short {
  background: rgba(255, 0, 0, 0.2);
  color: #ff6b6b;
}

.alert-score {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-badge.popular {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 30px;
}

.price-original {
  font-size: 18px;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-right: 8px;
}

.price-currency {
  font-size: 24px;
  color: var(--text-gray);
  font-weight: 600;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-gray);
}

.price-period {
  font-size: 18px;
  color: var(--text-gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-gray);
  font-size: 16px;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background: var(--light-gray);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partner-logo {
  font-size: 24px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 2px solid var(--border-gray);
}

.partner-logo.binance {
  color: #f0b90b;
  border-color: #f0b90b;
}

.partner-logo.gate {
  color: #1c68f3;
  border-color: #1c68f3;
}

.partner-logo.cmc {
  color: #3861fb;
  border-color: #3861fb;
}

.partner-item span {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

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

.cta .btn-primary:hover {
  background: var(--light-gray);
}

.cta .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  opacity: 0.9;
}

.guarantee-icon {
  font-size: 20px;
}

/* Pricing Note */
.pricing-note {
  text-align: center;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  border: 1px solid var(--border-gray);
}

.pricing-note p {
  color: var(--text-gray);
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .demo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .laptop-screen {
    width: 300px;
    height: 200px;
  }
  
  .demo-screen {
    width: 280px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .laptop-screen {
    width: 250px;
    height: 160px;
  }
  
  .demo-screen {
    width: 240px;
    height: 150px;
  }
}







