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

:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --background: #0a0a0a;
  --surface: #111111;
  --surface-light: #1a1a1a;
  --text: #ffffff;
  --text-secondary: #a1a1a1;
  --border: #2a2a2a;
  --accent: #3b82f6;
  --success: #10b981;
  --danger: #ef4444;
  --terminal-bg: #000000;
  --terminal-text: #00ff00;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

.glitch-text {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.glitch-text .line {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  animation: fadeInUp 1s ease-out;
}

.cta-group {
  animation: fadeInUp 1.2s ease-out;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.5);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.cta-subtitle {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Telegram Bot Section */
.terminal-section {
  padding: 4rem 0;
}

.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal.telegram-bot {
  max-width: 600px;
  margin: 0 auto;
}

.terminal-header {
  background: var(--surface-light);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.telegram-icon {
  font-size: 1.5rem;
}

.terminal-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
  font-family: 'Inter', sans-serif;
}

.telegram-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.status-text {
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 500;
}

.terminal-body.telegram-messages {
  padding: 1.5rem;
  min-height: 400px;
  max-height: 600px;
  overflow-y: auto;
  font-family: 'Inter', sans-serif;
}

.telegram-message {
  margin-bottom: 1.25rem;
  animation: slideIn 0.3s ease;
}

.telegram-message.bot .message-content {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  max-width: 85%;
}

.telegram-message.user {
  display: flex;
  justify-content: flex-end;
}

.telegram-message.user .message-content {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--primary);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  max-width: 70%;
  font-size: 0.9rem;
}

.telegram-message.user .message-content.success {
  color: var(--success);
  font-weight: 500;
}

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

.message-header strong {
  color: var(--primary);
  font-size: 0.875rem;
}

.message-time {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.message-content {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.message-action {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-family: 'JetBrains Mono', monospace;
}

.typing-indicator {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem 0;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--surface);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
  padding: 6rem 0;
}

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

.testimonial {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.testimonial-text {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text);
}

.testimonial-author {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: var(--surface);
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--surface-light);
  border: 2px solid var(--primary);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.2);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}

.price-currency {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.price-amount {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}

.price-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-secondary);
}

.spots-left {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--surface);
}

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

.faq-item {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 6rem 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-cta > p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-guarantee {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .features-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .terminal-body {
    font-size: 0.75rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .price-amount {
    font-size: 4rem;
  }
}
