:root {
  --bg-1: #0B1220;
  --bg-2: #141d2e;
  --accent: #9eff00;
  --accent-2: #4ade80;
  --accent-hover: #b3ff33;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --line: #1e293b;
  --danger: #ff4757;
  --warning: #ffa502;
  --font-base: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-1);
  color: var(--text-main);
  font-family: var(--font-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 9999; transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent);
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(158,255,0,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s; opacity: 0;
  mix-blend-mode: screen;
}
@media (hover:hover) { .cursor-glow { opacity: 1; } }

/* === ANIMATED GRID BG === */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(158,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  animation: grid-drift 30s linear infinite;
}
@keyframes grid-drift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* === PARTICLES === */
.particles-canvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(11, 18, 32, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000; padding: 16px 24px;
  transition: padding 0.3s, background 0.3s;
}
.navbar.scrolled { padding: 10px 24px; background: rgba(11, 18, 32, 0.85); }
.nav-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-title); font-size: 24px; font-weight: 900; letter-spacing: -0.5px; }
.logo-icon { width: 40px; height: 40px; background: var(--accent); color: var(--bg-1); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 25px rgba(158,255,0,0.4); animation: logo-pulse 3s ease-in-out infinite; }
.logo-icon.small { width: 32px; height: 32px; }
.logo-icon svg { width: 20px; height: 20px; }
@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(158,255,0,0.4); }
  50% { box-shadow: 0 0 40px rgba(158,255,0,0.7); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: none;
  position: relative; overflow: hidden;
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-primary { background: var(--accent); color: var(--bg-1); box-shadow: 0 4px 20px rgba(158, 255, 0, 0.3); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(158, 255, 0, 0.6); }
.btn-secondary { background: rgba(255,255,255,0.05); color: var(--text-main); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid rgba(158, 255, 0, 0.5); }
.btn-outline:hover { background: rgba(158, 255, 0, 0.1); border-color: var(--accent); box-shadow: 0 0 20px rgba(158,255,0,0.3); }
.full-width { width: 100%; }

/* Shimmer effect on primary buttons */
.shimmer::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.shimmer:hover::before { left: 100%; }

/* === GLOW EFFECTS === */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15; z-index: 0; pointer-events: none; }
.glow-orb.top-left { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -200px; }
.glow-orb.center { width: 800px; height: 800px; background: var(--accent); top: 20%; left: 50%; transform: translateX(-50%); opacity: 0.1; }
.glow-orb.bottom-right { width: 500px; height: 500px; background: #4ade80; bottom: -100px; right: -100px; opacity: 0.08; }
.glow-orb.small { width: 300px; height: 300px; }

.float-slow { animation: float-slow 20s ease-in-out infinite; }
.float-slow-rev { animation: float-slow 24s ease-in-out infinite reverse; }
.pulse { animation: pulse-orb 6s ease-in-out infinite; }
@keyframes float-slow {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(80px, 60px); }
}
@keyframes pulse-orb {
  0%, 100% { opacity: 0.08; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.15; transform: translateX(-50%) scale(1.1); }
}

/* === HERO SECTION === */
.hero { padding: 160px 24px 100px; text-align: center; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.hero-content { max-width: 850px; margin: 0 auto; z-index: 10; position: relative; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(158, 255, 0, 0.08); color: var(--accent);
  border: 1px solid rgba(158, 255, 0, 0.25);
  padding: 8px 18px; border-radius: 100px; font-size: 12px; font-weight: 600;
  margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1.5px;
}
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent); animation: dot-pulse 1.5s ease-in-out infinite; }
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.glow-badge { box-shadow: 0 0 30px rgba(158,255,0,0.15); }

.hero-title { font-family: var(--font-title); font-size: clamp(44px, 6vw, 78px); font-weight: 900; line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #4ade80 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-slide 4s linear infinite;
  text-shadow: 0 0 60px rgba(158,255,0,0.25);
}
@keyframes gradient-slide {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.typed-wrap { display: inline-block; min-width: 1ch; color: var(--accent); }
.typed-cursor { display: inline-block; color: var(--accent); animation: blink-cursor 0.8s steps(2) infinite; margin-left: 2px; font-weight: 300; }
@keyframes blink-cursor { 50% { opacity: 0; } }

.hero-subtitle { font-size: clamp(17px, 2vw, 21px); color: var(--text-muted); margin-bottom: 40px; max-width: 650px; margin-inline: auto; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 56px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; justify-content: center; margin-bottom: 80px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num { font-family: var(--font-title); font-size: 32px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
.hero-stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); }

/* === HTML MOCKUP === */
.mockup-wrapper { width: 100%; max-width: 1100px; margin: 0 auto; perspective: 2000px; z-index: 10; position: relative; }
.mockup-glow { position: absolute; inset: -40px; background: radial-gradient(ellipse at center, rgba(158,255,0,0.18), transparent 60%); filter: blur(50px); z-index: -1; animation: glow-breath 4s ease-in-out infinite; }
@keyframes glow-breath {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.app-window { background: var(--bg-1); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; display: flex; height: 500px; box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), 0 0 100px rgba(158,255,0,0.15); transform: rotateX(8deg) translateY(-20px); transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.app-window:hover { transform: rotateX(0deg) translateY(0); }
.app-sidebar { width: 240px; background: rgba(20, 29, 46, 0.8); border-right: 1px solid rgba(255,255,255,0.05); padding: 24px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.app-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-title); font-size: 18px; margin-bottom: 32px; color: #fff; }
.mock-icon { width: 24px; height: 24px; background: var(--accent); border-radius: 6px; }
.mock-icon-sm { width: 16px; height: 16px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.nav-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; color: var(--text-muted); font-size: 14px; border-radius: 8px; transition: all 0.3s; cursor: pointer; }
.nav-item:hover { background: rgba(255,255,255,0.03); color: var(--text-main); }
.nav-item.active { background: rgba(158, 255, 0, 0.1); color: var(--accent); }
.nav-item.active .mock-icon-sm { background: var(--accent); }
.mt-auto { margin-top: auto; }
.app-main { flex: 1; display: flex; flex-direction: column; background: var(--bg-1); }
.app-header { height: 70px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; padding: 0 32px; }
.search-bar { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 8px; color: var(--text-muted); font-size: 13px; width: 250px; text-align: left; }
.blink { color: var(--accent); animation: blink-cursor 0.8s steps(2) infinite; margin-right: 4px; }
.mock-btn { background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 6px; font-size: 13px; color: #fff; }
.mock-btn.primary { background: var(--accent); color: var(--bg-1); font-weight: 600; box-shadow: 0 0 20px rgba(158,255,0,0.3); }
.app-content { padding: 24px 32px; flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 20px; text-align: left; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mock-stat-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; gap: 6px; transition: all 0.3s; }
.mock-stat-card:hover { border-color: rgba(158,255,0,0.3); background: rgba(158,255,0,0.03); }
.mock-stat-card span:first-child { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.mock-stat-card strong { font-size: 26px; font-family: var(--font-title); font-weight: 800; color: #fff; }
.mock-trend { font-size: 11px; font-weight: 600; }
.mock-trend.up { color: var(--accent); }
.mock-table-area { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 20px; flex: 1; }
.mock-table-header { display: grid; grid-template-columns: 2fr 1fr 1fr; color: var(--text-muted); font-size: 11px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.mock-table-row { display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.02); font-size: 13px; color: #fff; }
.mock-pill { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; width: fit-content; }
.mock-pill.active { background: rgba(158,255,0,0.1); color: var(--accent); }
.mock-pill.warning { background: rgba(255,165,2,0.1); color: var(--warning); }
.mock-pill.danger { background: rgba(255,71,87,0.1); color: var(--danger); }

/* Floating cards */
.floating-card {
  position: absolute; background: rgba(20,29,46,0.95); border: 1px solid rgba(158,255,0,0.25);
  backdrop-filter: blur(20px); border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(158,255,0,0.2);
  z-index: 11;
}
.floating-card strong { display: block; font-size: 13px; color: #fff; margin-bottom: 2px; }
.floating-card span { font-size: 11px; color: var(--text-muted); }
.fc-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: var(--bg-1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon svg { width: 18px; height: 18px; }
.fc-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#8b5cf6,#ec4899); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.card-1 { top: 60px; left: -30px; }
.card-2 { bottom: 60px; right: -30px; }
.float-bob { animation: float-bob 4s ease-in-out infinite; }
.float-bob-rev { animation: float-bob 4.5s ease-in-out infinite reverse; }
@keyframes float-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* === MARQUEE === */
.marquee-section { padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); background: rgba(0,0,0,0.15); position: relative; z-index: 2; }
.marquee-label { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 2px; }
.marquee-label strong { color: var(--accent); }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 40px; white-space: nowrap; animation: marquee-scroll 40s linear infinite; }
.marquee-track span { font-family: var(--font-title); font-weight: 800; font-size: 22px; color: var(--text-muted); opacity: 0.6; transition: opacity 0.3s; letter-spacing: 1px; }
.marquee-track span:hover { opacity: 1; color: var(--accent); }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === PROBLEM SECTION === */
.problem-section { padding: 100px 24px; background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); position: relative; z-index: 2; }
.problem-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.problem-desc { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto 64px; line-height: 1.6; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.metric-card { background: var(--bg-2); padding: 48px 28px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; transition: all 0.4s; }
.metric-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(158,255,0,0.3), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.metric-card:hover { transform: translateY(-8px); }
.metric-card:hover::before { opacity: 1; }
.metric-glow { position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; background: var(--accent); filter: blur(60px); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.metric-card:hover .metric-glow { opacity: 0.2; }
.metric-number { font-family: var(--font-title); font-size: 56px; color: var(--accent); margin-bottom: 16px; line-height: 1; font-weight: 900; letter-spacing: -2px; text-shadow: 0 0 40px rgba(158,255,0,0.3); }
.metric-card p { color: var(--text-muted); font-size: 15px; position: relative; z-index: 2; }

/* === FEATURES === */
.section-title { text-align: center; font-family: var(--font-title); font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; letter-spacing: -1.5px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 18px; margin-bottom: 56px; max-width: 600px; margin-inline: auto; }
.features { padding: 120px 24px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; padding: 36px 28px;
  backdrop-filter: blur(10px); transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.3s; }
.feature-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(158,255,0,0.08), transparent 40%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(158, 255, 0, 0.25); background: rgba(255,255,255,0.04); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }
.feature-icon { width: 60px; height: 60px; background: rgba(158, 255, 0, 0.1); color: var(--accent); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: inset 0 0 20px rgba(158,255,0,0.1); transition: all 0.4s; }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); box-shadow: inset 0 0 30px rgba(158,255,0,0.2), 0 0 30px rgba(158,255,0,0.2); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 21px; font-family: var(--font-title); margin-bottom: 12px; font-weight: 800; }
.feature-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-tags span { font-size: 11px; padding: 4px 10px; border-radius: 100px; background: rgba(158,255,0,0.08); color: var(--accent); border: 1px solid rgba(158,255,0,0.15); }

/* === TESTIMONIALS === */
.testimonials { padding: 120px 24px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; overflow: hidden; }
.testimonials-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(158,255,0,0.05), transparent 70%); pointer-events: none; }
.testimonial-rating { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; color: var(--text-muted); }
.stars { color: #fbbf24; font-size: 24px; letter-spacing: 4px; text-shadow: 0 0 20px rgba(251,191,36,0.4); }
.testimonial-rating strong { color: var(--text-main); font-size: 18px; }

.testimonials-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 20px 4px 40px; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 380px; scroll-snap-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 32px;
  backdrop-filter: blur(10px); transition: all 0.4s;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(158,255,0,0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.testimonial-card.featured { background: linear-gradient(135deg, rgba(158,255,0,0.08), rgba(255,255,255,0.02)); border-color: rgba(158,255,0,0.25); }
.t-badge { position: absolute; top: -12px; left: 24px; background: var(--accent); color: var(--bg-1); font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: 100px; box-shadow: 0 4px 20px rgba(158,255,0,0.4); }
.t-stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; }
.t-quote { font-size: 16px; line-height: 1.7; color: var(--text-main); flex: 1; }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 16px; flex-shrink: 0; }
.t-author strong { display: block; color: var(--text-main); font-size: 15px; }
.t-author span { font-size: 13px; color: var(--text-muted); }

.testimonial-controls { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.t-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-main); font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; font-family: var(--font-title);
}
.t-arrow:hover { background: var(--accent); color: var(--bg-1); border-color: var(--accent); transform: scale(1.1); box-shadow: 0 0 30px rgba(158,255,0,0.4); }

/* === PRICING === */
.pricing { padding: 80px 24px 120px; max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
.pricing-subtitle { text-align: center; color: var(--text-muted); font-size: 18px; margin-bottom: 48px; }
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.toggle-label { font-weight: 600; color: var(--text-muted); transition: color 0.3s; position: relative; cursor: pointer; }
.toggle-label.active { color: var(--text-main); }
.discount-badge { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg-1); font-size: 11px; padding: 4px 8px; border-radius: 100px; white-space: nowrap; font-weight: 800; box-shadow: 0 4px 15px rgba(158,255,0,0.4); }
.toggle-switch { width: 56px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 100px; position: relative; cursor: pointer; transition: background 0.3s; }
.toggle-switch.annual { background: var(--accent); box-shadow: 0 0 20px rgba(158,255,0,0.4); }
.toggle-knob { width: 24px; height: 24px; background: #fff; border-radius: 50%; position: absolute; top: 4px; left: 4px; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.toggle-switch.annual .toggle-knob { transform: translateX(24px); }
.pricing-card { background: rgba(20, 29, 46, 0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 28px; padding: 48px; position: relative; overflow: hidden; backdrop-filter: blur(20px); }
.pricing-card.premium { border: 1px solid rgba(158, 255, 0, 0.3); box-shadow: 0 30px 80px rgba(158, 255, 0, 0.1), inset 0 0 80px rgba(158,255,0,0.02); }
.popular-tag { position: absolute; top: 20px; right: 20px; background: var(--accent); color: var(--bg-1); font-size: 10px; font-weight: 800; padding: 5px 10px; border-radius: 100px; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(158,255,0,0.4); }
.card-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(158,255,0,0.05), transparent); animation: card-shine 6s linear infinite; pointer-events: none; }
@keyframes card-shine { 0% { left: -100%; } 100% { left: 100%; } }
.pricing-header { text-align: center; margin-bottom: 32px; position: relative; z-index: 2; }
.pricing-header h3 { font-family: var(--font-title); font-size: 24px; color: var(--text-main); margin-bottom: 16px; }
.price { display: flex; justify-content: center; align-items: flex-start; gap: 4px; color: var(--accent); }
.currency { font-size: 24px; font-weight: 600; margin-top: 8px; }
.amount { font-family: var(--font-mono); font-size: 72px; font-weight: 900; line-height: 1; letter-spacing: -2px; text-shadow: 0 0 40px rgba(158,255,0,0.3); transition: all 0.3s; }
.period { font-size: 16px; color: var(--text-muted); align-self: flex-end; margin-bottom: 12px; }
.old-price { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.pricing-setup { text-align: center; background: rgba(255,255,255,0.03); padding: 14px; border-radius: 10px; margin-bottom: 20px; font-size: 15px; border: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 2; }
.pricing-promo { text-align: center; background: rgba(158, 255, 0, 0.1); color: var(--accent); padding: 14px; border-radius: 10px; margin-bottom: 24px; font-weight: 700; border: 1px dashed var(--accent); position: relative; z-index: 2; animation: promo-pulse 2s ease-in-out infinite; }
@keyframes promo-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(158,255,0,0); }
  50% { box-shadow: 0 0 30px rgba(158,255,0,0.3); }
}
.pricing-features { list-style: none; margin-bottom: 32px; position: relative; z-index: 2; }
.pricing-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 16px; }
.pricing-features li svg { color: var(--accent); width: 20px; height: 20px; flex-shrink: 0; background: rgba(158,255,0,0.1); border-radius: 50%; padding: 3px; }
.pricing-features li.addon { color: var(--text-muted); font-size: 14px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.pricing-features li.addon strong { color: var(--text-main); }
.pricing-card .btn { position: relative; z-index: 2; }
.pricing-guarantee { text-align: center; color: var(--text-muted); font-size: 12px; margin-top: 16px; position: relative; z-index: 2; }

/* === FAQ SECTION === */
.faq-section { padding: 100px 24px; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(158,255,0,0.15); }
.faq-item.active { border-color: rgba(158,255,0,0.3); background: rgba(158,255,0,0.03); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; color: var(--text-main); font-size: 17px; font-weight: 600; font-family: var(--font-base); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question::after { content: '+'; font-size: 28px; color: var(--accent); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); flex-shrink: 0; line-height: 1; }
.faq-item.active .faq-question::after { transform: rotate(135deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.7; }

/* === CTA BOTTOM === */
.cta-section { padding: 120px 24px; text-align: center; background: radial-gradient(circle at center, rgba(158,255,0,0.12) 0%, transparent 60%); border-top: 1px solid rgba(255,255,255,0.02); position: relative; overflow: hidden; z-index: 2; }
.cta-particles { position: absolute; inset: 0; background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.06; animation: grid-drift 20s linear infinite; }
.cta-section h2 { font-family: var(--font-title); font-size: clamp(36px, 5vw, 52px); font-weight: 900; margin-bottom: 24px; letter-spacing: -1.5px; position: relative; z-index: 2; }
.cta-section p { color: var(--text-muted); font-size: 20px; max-width: 600px; margin: 0 auto 40px; position: relative; z-index: 2; }
.cta-section .btn { position: relative; z-index: 2; }

/* === FOOTER === */
footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 48px 24px; text-align: center; background: var(--bg-1); position: relative; z-index: 2; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }
footer p { color: var(--text-muted); font-size: 14px; }
footer a { color: var(--accent); font-weight: 600; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* === REVEAL ANIMATIONS === */
.reveal, .reveal-up, .fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal { transform: translateY(30px); }
.reveal-up { transform: translateY(50px) scale(0.96); }
.fade-in { transform: none; }
.is-visible { opacity: 1 !important; transform: translateY(0) scale(1) !important; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* ================================
   FORJA / REAL SYSTEM MOCKUP
   ================================ */
.forja-app {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #050505;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  height: 580px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 100px rgba(158,255,0,0.15);
  transform: rotateX(6deg) translateY(-10px);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #EDEDED;
  text-align: left;
}
.forja-app:hover { transform: rotateX(0) translateY(0); }

/* Sidebar */
.forja-sidebar {
  background: #0A0A0A;
  border-right: 1px solid #222;
  display: flex;
  flex-direction: column;
}
.forja-brand {
  padding: 18px 20px 14px;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.forja-brand-mark {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EDEDED;
}
.forja-brand-mark span { color: #9eff00; text-shadow: 0 0 15px rgba(158,255,0,0.4); }
.forja-brand-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  color: #71717A;
  letter-spacing: 0.15em;
  border: 1px solid #222;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: auto;
}
.forja-nav { flex: 1; padding: 12px 8px; display: flex; flex-direction: column; gap: 2px; }
.forja-nav-section {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #71717A;
  padding: 12px 10px 6px;
}
.forja-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #A1A1AA;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.12s;
  position: relative;
}
.forja-nav-item svg { width: 16px; height: 16px; opacity: 0.8; flex-shrink: 0; }
.forja-nav-item:hover { background: #141414; color: #EDEDED; }
.forja-nav-item.active { background: #141414; color: #EDEDED; }
.forja-nav-item.active::before {
  content: '';
  position: absolute; left: -8px; top: 6px; bottom: 6px;
  width: 3px; background: #9eff00; border-radius: 2px;
  box-shadow: 0 0 10px #9eff00;
}
.forja-nav-item.active svg { color: #9eff00; opacity: 1; }
.forja-badge {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  background: #1F1F1F;
  padding: 2px 6px;
  border-radius: 3px;
  color: #A1A1AA;
}
.forja-sidebar-foot {
  padding: 12px 14px;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  gap: 10px;
}
.forja-user-chip {
  width: 30px; height: 30px; border-radius: 50%;
  background: #9eff00; color: #000;
  font-weight: 800; font-size: 12px;
  font-family: 'Outfit', sans-serif;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px rgba(158,255,0,0.3);
}
.forja-user-meta { display: flex; flex-direction: column; line-height: 1.1; }
.forja-user-meta .n { font-size: 11px; font-weight: 600; color: #EDEDED; }
.forja-user-meta .r { font-size: 9px; color: #71717A; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.12em; }

/* Main */
.forja-main { display: flex; flex-direction: column; min-width: 0; background: #050505; }
.forja-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-bottom: 1px solid #222;
  background: #050505;
}
.forja-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #EDEDED;
}
.forja-clock {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #A1A1AA;
  display: flex; gap: 8px; align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.forja-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #9eff00; box-shadow: 0 0 8px #9eff00;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
.forja-checkin-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: #9eff00; color: #000;
  border: none; border-radius: 8px;
  font-weight: 800; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em;
  cursor: pointer; font-family: 'Inter', sans-serif;
  box-shadow: 0 0 15px rgba(158,255,0,0.3);
}

.forja-content { padding: 18px; flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 14px; }

/* Headline grid */
.forja-headline { display: grid; grid-template-columns: 1.1fr 1fr; gap: 14px; }

/* Hero card */
.forja-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #000 100%);
  border: 1px solid #222;
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.forja-hero::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158,255,0,0.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.forja-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9eff00;
  margin-bottom: 8px;
}
.forja-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: #EDEDED;
}
.forja-accent-txt { color: #9eff00; text-shadow: 0 0 15px rgba(158,255,0,0.3); }
.forja-hero p { color: #A1A1AA; font-size: 11px; margin: 0 0 14px; line-height: 1.5; }
.forja-hero-meta {
  display: flex; gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #222;
}
.forja-meta-item { display: flex; flex-direction: column; gap: 2px; }
.forja-meta-item .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #71717A;
}
.forja-meta-item .v {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #EDEDED;
}
.forja-meta-item .v small { font-size: 9px; color: #71717A; font-family: 'JetBrains Mono', monospace; margin-left: 2px; }

/* KPI grid */
.forja-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.forja-kpi {
  background: #0A0A0A;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}
.forja-kpi-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.forja-kpi-accent .forja-kpi-bar { background: #9eff00; box-shadow: 0 0 8px #9eff00; }
.forja-kpi-warn .forja-kpi-bar { background: #F59E0B; }
.forja-kpi-bad .forja-kpi-bar { background: #EF4444; }
.forja-kpi-ghost .forja-kpi-bar { background: #52525B; }
.forja-kpi-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #71717A;
  margin-bottom: 6px;
}
.forja-kpi-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: #EDEDED;
  margin-bottom: 4px;
}
.forja-kpi-accent .forja-kpi-value { color: #9eff00; }
.forja-kpi-warn .forja-kpi-value { color: #F59E0B; }
.forja-kpi-bad .forja-kpi-value { color: #EF4444; }
.forja-kpi-delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #71717A;
}

/* Panels */
.forja-panels { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; flex: 1; min-height: 0; }
.forja-right { display: flex; flex-direction: column; gap: 14px; min-height: 0; }
.forja-panel {
  background: #0A0A0A;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.forja-panel-head {
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #222;
}
.forja-panel-head h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #EDEDED;
  margin: 0;
}
.forja-count {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #71717A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.forja-panel-body { display: flex; flex-direction: column; }

.forja-alert-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid #141414;
  transition: background 0.2s;
}
.forja-alert-row:hover { background: #0F0F0F; }
.forja-alert-row:last-child { border-bottom: none; }
.forja-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 10px;
  flex-shrink: 0;
}
.forja-alert-meta { flex: 1; min-width: 0; }
.forja-alert-meta .n { font-size: 12px; font-weight: 600; color: #EDEDED; }
.forja-alert-meta .s {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  margin-top: 2px;
}
.forja-alert-meta .s.warn { color: #F59E0B; }
.forja-alert-meta .s.bad { color: #EF4444; }
.forja-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.forja-pill.warn { background: rgba(245,158,11,0.12); color: #F59E0B; border: 1px solid rgba(245,158,11,0.25); }
.forja-pill.bad { background: rgba(239,68,68,0.12); color: #EF4444; border: 1px solid rgba(239,68,68,0.25); }

/* Weekly bars */
.forja-bars {
  display: flex; align-items: flex-end; gap: 6px;
  padding: 14px;
  height: 110px;
}
.forja-bar-col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.forja-bar-col .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  color: #A1A1AA;
}
.forja-bar-col .b {
  width: 100%;
  background: #1F1F1F;
  border-radius: 3px;
  min-height: 4px;
  transition: height 0.3s;
}
.forja-bar-col .d {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #71717A;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.forja-bar-col.today .n { color: #9eff00; }
.forja-bar-col.today .b { background: #9eff00; box-shadow: 0 0 12px rgba(158,255,0,0.5); }
.forja-bar-col.today .d { color: #EDEDED; font-weight: 700; }

/* Leaderboard */
.forja-lb-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid #141414;
}
.forja-lb-row:last-child { border-bottom: none; }
.forja-rank {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: #1F1F1F; color: #A1A1AA;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
}
.forja-lb-row.top1 .forja-rank { background: #9eff00; color: #000; box-shadow: 0 0 12px rgba(158,255,0,0.4); }
.forja-lb-row.top2 .forja-rank { background: #A1A1AA; color: #000; }
.forja-lb-row.top3 .forja-rank { background: #92400E; color: #FDE68A; }
.forja-lb-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.forja-lb-meta .n { font-size: 12px; font-weight: 600; color: #EDEDED; }
.forja-lb-meta .s { font-size: 9px; color: #71717A; font-family: 'JetBrains Mono', monospace; }
.forja-streak {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #9eff00;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .floating-card { display: none; }
}
@media (max-width: 1024px) {
  .forja-app { height: 540px; }
  .forja-headline { grid-template-columns: 1fr; }
  .forja-panels { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 130px 16px 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 26px; }
  .pricing-card { padding: 32px 24px; }
  .amount { font-size: 56px; }
  .cta-section h2 { font-size: 36px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 88vw; padding: 24px; }
  .cursor-glow { display: none; }
  .marquee-track span { font-size: 16px; }
  /* Forja mockup mobile */
  .forja-app { grid-template-columns: 1fr; height: auto; transform: none; }
  .forja-sidebar { display: none; }
  .forja-headline { grid-template-columns: 1fr; }
  .forja-kpi-grid { grid-template-columns: 1fr 1fr; }
  .forja-panels { grid-template-columns: 1fr; }
  .forja-hero-meta { flex-wrap: wrap; gap: 12px; }
  .forja-meta-item .v { font-size: 16px; }
  .forja-bars { height: 90px; gap: 4px; }
}
