/* ============================================
   MEEDRO AI - LANDING PAGE STYLES
   Dark theme with purple accents
   Font: Host Grotesk
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors */
  --primary: #A855F7;
  --primary-dark: #9333EA;
  --primary-light: #C084FC;
  --primary-glow: rgba(168, 85, 247, 0.4);
  
  --secondary: #22C55E;
  --secondary-dark: #16A34A;
  
  /* Dark Theme */
  --bg-dark: #09090B;
  --bg-card: #18181B;
  --bg-card-hover: #1F1F23;
  --bg-elevated: #27272A;
  
  /* Text Colors */
  --text-primary: #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  
  /* Danger/Error */
  --danger: #EF4444;
  
  /* Typography */
  --font-main: "Host Grotesk", Arial, sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px var(--primary-glow);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #F472B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple {
  color: var(--primary);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--bg-elevated);
}

.btn-outline:hover {
  background: var(--bg-elevated);
  border-color: var(--primary);
  color: var(--text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
  padding: 14px 20px;
}

.btn-ghost:hover {
  color: var(--primary);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ---------- Section Utilities ---------- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-label.success {
  color: var(--secondary);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(9, 9, 11, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at 30% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 2;
  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: 10px;
  padding: 8px 16px 8px 10px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 32px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
}

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

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

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 3px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: white;
  margin-left: -12px;
}

.proof-number {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.proof-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.dashboard-preview {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.preview-dots {
  display: flex;
  gap: 8px;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-elevated);
}

.preview-dots span:first-child { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:nth-child(3) { background: #22C55E; }

.preview-title {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.preview-content {
  padding: 24px;
}

.agent-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 24px;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

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

.status-dot.active {
  box-shadow: 0 0 10px var(--secondary);
}

.agent-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.agent-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.agent-stats .stat {
  text-align: center;
  padding: 16px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.agent-progress {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.progress-bar {
  height: 6px;
  background: var(--bg-card);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 3px;
  transition: width 1s ease;
}

.progress-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary);
}

.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.card-1 i {
  color: var(--secondary);
}

.card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   PLATFORM SECTION
   ============================================ */
.platform-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.platform-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.platform-badge i {
  font-size: 1.25rem;
}

.platform-badge:hover {
  color: var(--primary);
}

/* ============================================
   PROBLEM/SOLUTION SECTION
   ============================================ */
.problem-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.problem-content,
.solution-content {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.problem-content {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-content {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.problem-content .section-label {
  color: var(--danger);
}

.problem-content h2,
.solution-content h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.problem-list,
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item,
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.problem-item i {
  color: var(--danger);
  margin-top: 4px;
}

.solution-item i {
  color: var(--secondary);
  margin-top: 4px;
}

/* ============================================
   AI AGENT SECTION
   ============================================ */
.agent-section {
  background: var(--bg-dark);
  overflow: hidden;
}

.new-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.agent-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.agent-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.agent-feature {
  display: flex;
  gap: 20px;
}

.agent-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.agent-feature-icon i {
  font-size: 1.25rem;
  color: var(--primary);
}

.agent-feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.agent-feature-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Agent Dashboard Mockup */
.agent-dashboard {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--secondary);
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
}

.dash-stat {
  text-align: center;
  padding: 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
}

.dash-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.dash-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-stat-value.purple {
  color: var(--primary);
}

.dash-agent {
  margin: 0 24px 24px;
  padding: 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-agent-name {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dash-agent-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.dash-agent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-badge {
  padding: 6px 12px;
  background: rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.dash-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-card);
  color: var(--text-primary);
}

.dash-btn.run {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.dash-btn.stop {
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: var(--bg-dark);
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-showcase:last-child {
  margin-bottom: 0;
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.feature-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-content > p {
  font-size: 1.0625rem;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.feature-list i {
  color: var(--secondary);
  font-size: 0.875rem;
}

.credit-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.credit-badge {
  padding: 8px 14px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.credit-badge.highlight {
  background: rgba(168, 85, 247, 0.2);
  color: var(--primary);
}

.credit-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-tag {
  padding: 8px 14px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.cat-tag.more {
  color: var(--primary);
}

/* Feature Mockups */
.feature-visual {
  position: relative;
}

/* Screenshot Styles */
.screenshot-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.screenshot-wrapper:hover {
  box-shadow: var(--shadow-lg), 0 0 80px rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.feature-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.feature-mockup,
.library-mockup,
.scripts-mockup,
.ideas-mockup,
.bulk-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mockup-tabs {
  display: flex;
  gap: 8px;
}

.mockup-tabs .tab {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-tabs .tab.active {
  background: var(--primary);
  color: white;
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #F472B6 100%);
}

.profile-info {
  flex: 1;
}

.profile-name {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.profile-handle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.watchlist-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
}

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

.m-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.m-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Library Mockup */
.library-header {
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.library-categories {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  overflow-x: auto;
}

.lib-cat {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-elevated);
  white-space: nowrap;
}

.lib-cat.active {
  background: var(--primary);
  color: white;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 24px 24px;
}

.lib-video {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 8px;
}

.lib-views {
  padding: 4px 8px;
  background: rgba(0,0,0,0.6);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Scripts Mockup */
.scripts-header {
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.scripts-step {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.scripts-step:last-child {
  border-bottom: none;
}

.step-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-input {
  padding: 14px 18px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.hooks-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hook-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.hook-type {
  padding: 4px 10px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hook-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hook-views {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Ideas Mockup */
.ideas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ideas-platforms {
  display: flex;
  gap: 16px;
}

.ideas-platforms i {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.ideas-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ideas-input span {
  padding: 12px 18px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  flex: 1;
  margin-right: 12px;
}

.research-btn {
  padding: 12px 20px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.ideas-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
}

.ideas-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.ideas-title.purple {
  color: var(--primary);
}

.idea-item {
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Bulk Mockup */
.bulk-header {
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bulk-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
}

.bulk-tab {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
}

.bulk-tab.active {
  background: var(--primary);
  color: white;
}

.bulk-input {
  margin: 0 24px;
  padding: 40px 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255,255,255,0.2);
  text-align: center;
}

.bulk-input .placeholder {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.analyze-btn {
  display: block;
  margin: 16px 24px 24px;
  padding: 14px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  width: calc(100% - 48px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step-card {
  flex: 1;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  position: relative;
}

.step-connector {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.3;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.step-visual {
  padding: 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
}

.mock-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.mock-input i {
  color: var(--primary);
}

.add-icon {
  margin-left: auto;
  color: var(--secondary) !important;
}

.processing-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.process-step {
  padding: 8px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.process-step.active {
  background: var(--primary);
  color: white;
}

.process-arrow {
  color: var(--text-muted);
  font-size: 0.625rem;
}

.script-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.script-line {
  padding: 10px 14px;
  background: var(--bg-card);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  background: var(--bg-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, var(--bg-card) 50%);
  border-color: var(--primary);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: var(--primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--secondary);
  font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.testimonial-metric {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.metric-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg-card);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 24px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item p {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.3;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content > p {
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.cta-form-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 32px;
}

.cta-form .form-row {
  display: flex;
  gap: 12px;
}

.cta-form input {
  flex: 1;
  padding: 18px 24px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.cta-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badges .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-badges .trust-item i {
  color: var(--secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-img {
  height: 28px;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-social-proof {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .agent-showcase {
    grid-template-columns: 1fr;
  }
  
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-showcase.reverse {
    direction: ltr;
  }
  
  .steps-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .step-connector {
    display: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  
  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: none;
    padding: 20px;
  }
  
  .nav.active {
    display: block;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-social-proof {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Platform */
  .platform-badges {
    gap: 24px;
  }
  
  /* Agent Dashboard */
  .dash-stats {
    grid-template-columns: 1fr;
  }
  
  .dash-agent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Library */
  .library-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* CTA Form */
  .cta-form .form-row {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
