/* ============================================
   LANDING PAGE STYLES
   ============================================ */

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 100px 60px 60px;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid var(--accent-green-dim);
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.title-line.accent-text {
  color: var(--accent-green);
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.3), 0 0 80px rgba(0, 255, 136, 0.1);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

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

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-green);
  text-shadow: 0 0 20px var(--accent-green-glow);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Terminal Window */
.hero-visual {
  flex: 1;
  max-width: 550px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.terminal-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-green-strong);
  animation: float 6s ease infinite;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
}

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

.terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 20px;
  min-height: 300px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
}

.terminal-line {
  color: var(--text-primary);
}

.prompt {
  color: var(--accent-green);
  margin-right: 8px;
}

.typing {
  color: var(--accent-cyan);
}

.cursor {
  color: var(--accent-green);
  animation: blink 1s step-end infinite;
}

.terminal-output {
  color: var(--text-secondary);
  margin-top: 4px;
}

.terminal-output.success {
  color: var(--accent-green);
}

/* Features Section */
.features-section {
  padding: 80px 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  animation: fadeInUp 0.6s ease calc(var(--delay) * 0.15s) both;
}
.feature-card:hover {
  border-color: var(--accent-green);
  box-shadow: var(--shadow-green-strong);
  transform: translateY(-8px);
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-green);
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--accent-green-glow);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 100px 30px;
  }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 100%; }
  .features-section { padding: 60px 30px; }
}
