:root{
  --bg:#0B1020;
  --text:#E5E7EB;
  --muted:#94A3B8;
  --primary1:#18C8FF;
  --primary2:#5865F2;
  --primary3:#8B5CF6;
  --accent:#22D3EE;
  --glow: 0 0 24px rgba(34,211,238,.25), 0 0 60px rgba(139,92,246,.15);
}

*{box-sizing:border-box}
html,body{height:100%;scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1600px 900px at 50% -25%, rgba(88,101,242,.28), transparent 72%),
    radial-gradient(1200px 800px at 0% 25%, rgba(24,200,255,.18), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 40%),
    var(--bg);
  background-repeat:no-repeat;
  overflow-x:hidden;
}

/* New Header Styling */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo img {
  height: 32px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #18c8ff;
}

.nav-divider {
  width: 1px;
  height: 32px;
  background: rgba(148, 163, 184, 0.2);
}

.auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-login {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  transition: color 0.2s;
}

.btn-login:hover {
  color: white;
}

.btn-signup {
  background: linear-gradient(135deg, #18C8FF, #5865F2);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(24, 200, 255, 0.3);
}

/* Mobile header */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .nav-divider {
    display: none;
  }
  
  .auth-buttons {
    margin-left: auto;
    gap: 8px;
  }
  
  .btn-login {
    display: block;
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .btn-signup {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* Keep old brand style for footer */
.brand{display:flex;align-items:center;gap:10px;font-weight:700;letter-spacing:.2px}
.brand img{width:28px;height:28px;border-radius:8px;box-shadow:var(--glow);object-fit:cover}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 16px;border-radius:12px;text-decoration:none;font-weight:600;letter-spacing:.2px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn.primary{
  color:#001018;background: linear-gradient(90deg,var(--primary1),var(--primary2),var(--primary3));
  box-shadow:var(--glow);
}
.btn.primary:hover{transform:translateY(-1px);box-shadow:0 0 32px rgba(34,211,238,.35), 0 0 70px rgba(139,92,246,.2)}
.btn.glow{
  color:#E9E9FF;background: linear-gradient(90deg,var(--primary2),var(--primary3));
  box-shadow:var(--glow)
}
.btn.glow:hover{transform:translateY(-1px)}
.btn.outline{
  color:var(--text);border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.03);
}
.btn.outline:hover{border-color:rgba(139,92,246,.45)}
.btn.ghost{
  color:var(--text);border:1px solid rgba(255,255,255,.12);background:transparent;
}
.btn.ghost:hover{background:rgba(255,255,255,.05)}
.btn.lg{padding:14px 22px;border-radius:14px;font-size:15px}

/* Hero Section */
.hero{position:relative;padding:100px 20px 80px;background:linear-gradient(180deg, #0B1020 0%, #0f172a 100%);min-height:100vh}
.hero-inner{max-width:1100px;margin:0 auto;text-align:center}

@media(max-width:768px){
  .hero{padding:80px 20px 60px}
}

.tagline{
  color:var(--primary1);font-size:13px;text-transform:uppercase;letter-spacing:1.5px;
  margin:60px 0 24px;font-weight:600;
}

@media(max-width:768px){
  .tagline{margin:40px 0 24px}
}

h1{
  margin:0 auto 16px;max-width:900px;
  font-weight:800;font-size:44px;line-height:1.05;
  color:var(--text);
}
.gradient-text{
  background: linear-gradient(90deg, var(--primary1), var(--primary2), var(--primary3));
  background-size: 200% 200%;
  -webkit-background-clip:text;background-clip:text;color:transparent;
  animation: gradient-shift 3s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media(min-width:900px){ h1{font-size:64px} }

.sub{
  max-width:900px;margin:0 auto 32px;color:var(--muted);font-size:18px;line-height:1.6;
}
.cta-row{margin-top:28px;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.cta-row.mid{margin-top:32px}

/* Dashboard Preview */
.dashboard-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-wrapper{
  position:relative;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  padding:8px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  display:block;
}

.dashboard-badge{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background: linear-gradient(90deg, #10B981, #059669);
  color:white;font-size:13px;font-weight:700;
  padding:8px 16px;border-radius:24px;
  box-shadow:0 6px 20px rgba(16,185,129,.4);
  white-space:nowrap;
  display:flex;align-items:center;gap:8px;
}
.check-icon{flex-shrink:0}

.dashboard-glow {
  position: absolute;inset: 0;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.15), rgba(139, 92, 246, 0.15));
  filter: blur(60px);z-index: -1;opacity: 0.6;
}

@media(max-width:768px){
  .dashboard-badge{font-size:11px;padding:6px 12px;top:-10px}
}

/* Smooth section transitions */
section {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

.why-blitz-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 30%, #0f172a 70%, #0B1020 100%);
  padding: 80px 20px;
  position: relative;
}

.what-you-get-section {
  background: linear-gradient(180deg, #0B1020 0%, #0f172a 30%, #1e293b 70%, #0f172a 100%);
  padding: 80px 20px;
  position: relative;
}

.how-it-works-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 80px 20px 40px;
  position: relative;
}

/* Sections */
.section{margin:0}
.section h2,
.why-blitz-section h2,
.how-it-works-section h2 {
  margin-top:0;
  text-align:center;
  margin-bottom:16px;
  font-size:48px !important;
  font-weight:bold;
  color:white;
  background:linear-gradient(90deg,#b7e9ff,#c4c8ff,#d0b7ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.section-subtitle{
  text-align:center;color:var(--muted);font-size:20px;margin:0 auto 40px;max-width:700px;
}

@media (max-width: 768px) {
  .why-blitz-section,
  .what-you-get-section {
    padding: 60px 20px;
  }
  
  .how-it-works-section {
    padding: 60px 20px 30px;
  }
  
  .section h2,
  .why-blitz-section h2,
  .how-it-works-section h2 {
    font-size: 32px !important;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
}

/* Why Blitz - 3 cards */
.grid.why-blitz{
  max-width:1100px;margin:0 auto;display:grid;gap:20px;
  grid-template-columns: repeat(1, minmax(0,1fr));
}
@media(min-width:900px){ .grid.why-blitz{grid-template-columns: repeat(3,1fr)} }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;padding:28px;
  box-shadow:0 6px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.03);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
}

/* Only apply hover effects on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .card:hover{
    transform:translateY(-2px);
    border-color:rgba(139,92,246,.45);
    box-shadow:var(--glow)
  }
}

.feature-card .card-icon{
  font-size:48px;margin-bottom:16px;
}
.card h3{margin:0 0 12px;font-size:20px}
.card p{margin:0 0 20px;color:var(--muted);line-height:1.6}

.card-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:20px;
  background:rgba(34,211,238,.1);border:1px solid rgba(34,211,238,.2);
}
.badge-value{color:var(--primary1);font-weight:700;font-size:15px}
.badge-label{color:var(--muted);font-size:13px}

/* How It Works - 3 steps */
.steps{
  counter-reset: step; list-style: none; padding-left: 0;
  max-width:1100px;margin:0 auto;display:grid;gap:20px;
  grid-template-columns: repeat(1, minmax(0,1fr));
}
@media(min-width:900px){ .steps{grid-template-columns: repeat(3,1fr)} }

.step{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1);border-radius:18px;padding:28px;
  box-shadow:0 6px 40px rgba(0,0,0,.25); position:relative;
}
.num{
  position:absolute;top:-14px;left:-14px;width:40px;height:40px;border-radius:50%;
  background:linear-gradient(90deg,var(--primary1),var(--primary2));display:grid;place-items:center;
  color:#001018;font-weight:800;font-size:18px;box-shadow:var(--glow)
}
.step h4{margin:12px 0 8px;font-size:18px}
.step p{margin:0 0 16px;color:var(--muted)}

.step-features{
  list-style:none;padding:0;margin:0;
}
.step-features li{
  color:var(--muted);font-size:14px;margin:6px 0;
  padding-left:18px;position:relative;
}
.step-features li::before{
  content:'•';position:absolute;left:0;color:var(--primary1);font-weight:700;
}

/* Footer */
.footer {
  background: #0B1020;
  padding: 60px 20px 30px;
  border: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .brand.mini img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.footer nav a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 12px;
  transition: color .2s;
}

.footer nav a:hover {
  color: var(--text);
}

.copy {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  /* Standardized mobile section spacing */
  .why-blitz-section,
  .what-you-get-section,
  .how-it-works-section {
    padding: 60px 20px;
  }
  
  .footer {
    padding: 40px 20px 20px;
    border: none;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .copy {
    font-size: 12px;
  }
}

/* Why Blitz Section */
.why-blitz-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, 
    #0f172a 0%, 
    #1e293b 40%,
    #1e293b 60%,
    #0f172a 100%
  );
  border: none !important;
}

/* What is Blitz Section */
.what-is-blitz-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, 
    #0f172a 0%,
    #1e293b 30%,
    #1e293b 70%,
    #0f172a 100%
  );
  position: relative;
  overflow: hidden;
  border: none !important;
}

/* Everything You Need Section */
.what-you-get-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, 
    #0f172a 0%, 
    #1e293b 30%,
    #1e293b 70%,
    #0f172a 100%
  );
  border: none !important;
}

/* IMPORTANT: Remove all borders globally */
section {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* Subtle background glow effect */
.what-is-blitz-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(24, 200, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.what-is-blitz-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Large Headline */
.what-is-blitz-headline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Body Copy */
.what-is-blitz-body {
  margin-bottom: 64px;
}

.large-text {
  font-size: 20px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 28px;
  font-weight: 400;
}

.large-text:last-child {
  margin-bottom: 0;
}

/* Inline stat highlights */
.stat-highlight {
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(24, 200, 255, 0.15), rgba(88, 101, 242, 0.15));
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid rgba(24, 200, 255, 0.2);
}

/* Only prevent wrapping on desktop */
@media (min-width: 769px) {
  .stat-highlight {
    white-space: nowrap;
  }
}

/* Stats Row */
.what-is-blitz-section .stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  margin-bottom: 48px;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #18c8ff, #5865f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(148, 163, 184, 0.2) 50%, 
    transparent 100%
  );
}

/* Bottom CTA */
.what-is-blitz-cta {
  display: flex;
  justify-content: center;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #18c8ff, #5865f2);
  color: white;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(24, 200, 255, 0.3);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(24, 200, 255, 0.4);
}

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

.cta-button-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .what-is-blitz-section {
    padding: 60px 20px;
  }
  
  .what-is-blitz-headline {
    font-size: 28px;
    margin-bottom: 32px;
    line-height: 1.4;
  }
  
  .large-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .stat-highlight {
    display: inline-block;
    margin: 2px 0;
    padding: 2px 8px;
    font-size: 16px;
  }
  
  .what-is-blitz-section .stats-row {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .cta-button-primary {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 32px;
  }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .what-is-blitz-headline {
    font-size: 36px;
  }
  
  .large-text {
    font-size: 18px;
  }
  
  .what-is-blitz-section .stats-row {
    gap: 32px;
  }
}

/* Particle canvas */
#bg-particles{
  position:fixed;
  top:0; left:0; right:0; bottom:0;
  width:100vw; height:100vh;
  z-index:-1;
  pointer-events:none;
  opacity:.35;
  display:block;
}

.hero, .section { position:relative; z-index:0 }
.grid.why-blitz, .steps { isolation:isolate }

/* Everything You Need to Succeed Section - already defined above with new gradients */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 48px !important;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #b7e9ff, #c4c8ff, #d0b7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  font-size: 20px;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid .feature-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.features-grid .feature-card:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(88, 101, 242, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(88, 101, 242, 0.2);
}

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

.features-grid .feature-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
}

.features-grid .feature-card p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: #18c8ff;
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Mobile optimization for features section */
@media (max-width: 768px) {
  .what-you-get-section {
    padding: 60px 20px;
  }
  
  .section-header h2 {
    font-size: 32px !important;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid .feature-card {
    padding: 24px;
  }
  
  .feature-icon {
    font-size: 36px;
  }
  
  .features-grid .feature-card h3 {
    font-size: 20px;
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, 
    #0f172a 0%, 
    #1e293b 50%, 
    #1e293b 100%
  );
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, 
    #1e293b 0%, 
    #0f172a 50%, 
    #0B1020 100%
  );
}

.faq-section h2 {
  font-size: 48px !important;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
  text-align: center;
  background: linear-gradient(90deg, #b7e9ff, #c4c8ff, #d0b7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(88, 101, 242, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.faq-icon {
  color: #18c8ff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Mobile FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
  
  .faq-section h2 {
    font-size: 32px !important;
  }
  
  .faq-question h3 {
    font-size: 16px;
    padding-right: 10px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* Scroll Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero animations */
.hero .tagline {
  animation: fadeIn 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 {
  animation: slideUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero .sub {
  animation: slideUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero .cta-row {
  animation: slideUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero .dashboard-container {
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

/* Why Blitz cards - staggered */
.why-blitz .card:nth-child(1) {
  animation: slideUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.why-blitz .card:nth-child(2) {
  animation: slideUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.why-blitz .card:nth-child(3) {
  animation: slideUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

/* How it works steps - staggered */
.steps .step:nth-child(1) {
  animation: slideUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.steps .step:nth-child(2) {
  animation: slideUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.steps .step:nth-child(3) {
  animation: slideUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

/* Scroll-triggered elements */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section headers */
.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature cards - alternating */
.features-grid .feature-card {
  opacity: 0;
  transition: all 0.6s ease;
}

.features-grid .feature-card:nth-child(odd) {
  transform: translateX(-30px);
}

.features-grid .feature-card:nth-child(even) {
  transform: translateX(30px);
}

.features-grid .feature-card.visible {
  opacity: 1;
  transform: translateX(0);
}

/* FAQ items */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* What is Blitz section scroll animations */
.what-is-blitz-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.what-is-blitz-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.what-is-blitz-section .stats-row {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.3s;
}

.what-is-blitz-section .stats-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
  .hero .tagline,
  .hero h1,
  .hero .sub,
  .hero .cta-row,
  .hero .dashboard-container,
  .why-blitz .card,
  .steps .step,
  .section-header,
  .features-grid .feature-card,
  .faq-item,
  .what-is-blitz-content,
  .what-is-blitz-section .stats-row {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #bg-particles{display:none}
  .btn:hover,.card:hover{transform:none}
  .gradient-text{animation:none}
  *{animation:none!important;transition:none!important}
}
