/* ============================================
   AUTOM O — DESIGN SYSTEM
   Deep purple / electric blue palette
   ============================================ */

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

:root {
  /* Palette — task-mandated values */
  --bg:            #0a0118;
  --bg2:           #0f0527;
  --bg3:           #150a30;
  --bg-card:       #150a30;

  --accent:        #7c3aed;   /* vibrant purple */
  --accent-2:      #2563eb;   /* electric blue */
  --accent-3:      #06b6d4;   /* cyan */
  --accent-4:      #f59e0b;   /* amber */

  /* Derived */
  --accent-glow:   rgba(124, 58, 237, 0.35);
  --accent-dim:    rgba(124, 58, 237, 0.12);
  --accent-dim-2:  rgba(37, 99, 235, 0.12);

  /* Text */
  --text:          #ffffff;
  --text-muted:    #a78bfa;   /* light purple */
  --text-dim:      #64748b;
  --text-inverse:  #1e1e1e;

  /* Borders */
  --border:        rgba(124, 58, 237, 0.18);
  --border-accent: rgba(124, 58, 237, 0.35);
  --border-amber:  rgba(245, 158, 11, 0.25);

  /* Fonts */
  --font-display:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-pill:   999px;
}

html { scroll-behavior: smooth; }

/* Scroll-reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.products-grid .product-card:nth-child(1) { transition-delay: 0ms; }
.products-grid .product-card:nth-child(2) { transition-delay: 80ms; }
.products-grid .product-card:nth-child(3) { transition-delay: 160ms; }
.products-grid .product-card:nth-child(4) { transition-delay: 240ms; }
.products-grid .product-card:nth-child(5) { transition-delay: 320ms; }
.products-grid .product-card:nth-child(6) { transition-delay: 400ms; }
.products-grid .product-card:nth-child(7) { transition-delay: 480ms; }
.products-grid .product-card:nth-child(8) { transition-delay: 560ms; }
.products-grid .product-card:nth-child(9) { transition-delay: 640ms; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 1, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(124, 58, 237, 0.12); }
.nav-links a.active { color: var(--accent-4); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}
.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0533 0%, #0f0527 40%, #0a1a3d 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 700px; height: 700px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 65%);
  animation: glow-pulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 65%);
  animation: glow-pulse 8s ease-in-out infinite 2s;
}
.hero-glow-3 {
  width: 400px; height: 400px;
  bottom: 20%; left: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 65%);
  animation: glow-pulse 10s ease-in-out infinite 1s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.hero-glow-2, .hero-glow-3 {
  animation-name: glow-pulse-alt;
}
@keyframes glow-pulse-alt {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-4);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--accent-4);
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
}

.headline-accent {
  background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.55);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-4), #d97706);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.45);
  color: #0a0a0a;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.trust-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.trust-sep {
  width: 1px; height: 44px;
  background: var(--border);
  margin-right: 32px;
  flex-shrink: 0;
}

/* Hero right image */
.hero-right {
  position: relative;
  animation: fade-up 0.8s 0.2s ease-out both;
}

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

.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 80px rgba(124, 58, 237, 0.15);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.02); }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 1, 24, 0.4) 100%);
  pointer-events: none;
}

.fchip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 5, 39, 0.92);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  backdrop-filter: blur(12px);
  animation: chip-float 4s ease-in-out infinite;
  white-space: nowrap;
}

.fchip-1 { bottom: 20px; left: 20px; animation-delay: 0s; }
.fchip-2 { top: 20px; right: 20px; animation-delay: 1s; }
.fchip-3 { bottom: 20px; right: 20px; animation-delay: 2s; }

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

.fchip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fchip-dot-green { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.fchip-dot-amber { background: var(--accent-4); box-shadow: 0 0 6px var(--accent-4); }
.fchip-dot-purple { background: var(--accent); box-shadow: 0 0 6px var(--accent); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-anim 2.5s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0.3; transform: scaleY(0.7); }
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section {
  padding: 100px 24px;
}

.section-dark { background: var(--bg); }
.section-purple { background: linear-gradient(135deg, var(--bg2), var(--bg)); }
.section-blue { background: linear-gradient(135deg, #0a1a3d, var(--bg)); }
.section-card { background: var(--bg3); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-4);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin: 0 auto;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(37, 99, 235, 0.12));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-section {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.product-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.08);
}
.product-card:hover::before { opacity: 1; }

.product-card-featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg3), rgba(124, 58, 237, 0.08));
}

.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent-4);
  padding: 3px 8px;
  border-radius: 100px;
}

.product-icon { margin-bottom: 8px; }

.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.product-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.product-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}
.product-card:hover .product-links { gap: 10px; }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}

.feature-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.f-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  transition: background 0.3s;
}
.feature-item:hover .f-icon { background: rgba(124, 58, 237, 0.2); }

.f-icon-purple { background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(124,58,237,0.05)); }
.f-icon-blue   { background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(37,99,235,0.05)); }
.f-icon-cyan   { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(6,182,212,0.05)); }
.f-icon-amber  { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05)); }

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.how-step {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.how-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.social-proof {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-label {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card-center {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg3), rgba(124, 58, 237, 0.04));
}

.testimonial-stars { display: flex; gap: 3px; }

.testimonial-quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-preview {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.pricing-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--bg3), rgba(124, 58, 237, 0.06));
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.2);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-dim);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-feature span { color: var(--text); }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
}
.pricing-cta:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

.pricing-cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.pricing-cta-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #1d4ed8);
  color: #fff;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5);
}

.pricing-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.pricing-full-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.pricing-full-link:hover { color: var(--accent); }

.pricing-demo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.pricing-demo-link:hover { color: var(--accent-3); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   DEMO FORM
   ============================================ */
.demo-section {
  padding: 80px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.demo-inner {
  max-width: 600px;
  margin: 0 auto;
}

.demo-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}

.demo-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.demo-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.fg { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.fg label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--accent);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-dim); }
.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.fg textarea { resize: vertical; min-height: 80px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.f-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.f-submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45); }
.f-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.f-success { display: none; text-align: center; padding: 48px 20px; }
.f-success.show { display: block; }
.f-success h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.f-success p { font-size: 14px; color: var(--text-muted); }

.f-err { display: none; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.25); border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #f87171; margin-bottom: 16px; }
.f-err.show { display: block; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.06));
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 900;
  color: rgba(124, 58, 237, 0.04);
  letter-spacing: -5px;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-cta {
  position: relative;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
  position: relative;
  z-index: 1;
}
.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.55);
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px 0 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-head {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================
   MANIFESTO / COMPARISON
   ============================================ */
.manifesto {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-4);
  font-weight: 700;
  margin-bottom: 20px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 60px;
}

.manifesto-comparison {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.compare-item { flex: 1; }

.compare-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 600;
}
.compare-label.accent { color: var(--accent-4); }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-list li { font-size: 14px; color: var(--text-muted); padding-left: 16px; position: relative; }
.compare-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-dim); font-size: 12px; }
.compare-new .compare-list li { color: var(--text); }
.compare-new .compare-list li::before { content: '→'; color: var(--accent-4); }

.compare-divider { padding-top: 8px; flex-shrink: 0; }

.close-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.close-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.close-proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.close-proof-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.close-proof-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

.close-note {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.05);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section { padding: 100px 24px; border-top: 1px solid var(--border); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.service-icon { margin-bottom: 20px; }
.service-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -0.3px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.service-cases { display: flex; flex-wrap: wrap; gap: 8px; }
.service-cases span {
  font-size: 11px;
  background: var(--accent-dim);
  color: var(--accent-4);
  border: 1px solid var(--border-amber);
  border-radius: 100px;
  padding: 4px 12px;
  font-weight: 500;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries { padding: 100px 24px; border-top: 1px solid var(--border); }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industries-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 16px; margin-top: 48px; }

.ind-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ind-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.ind-card-primary { background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), var(--bg3)); border-color: var(--border-amber); }
.ind-icon { margin-bottom: 16px; }
.ind-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.2px; }
.ind-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CLOSING SECTION
   ============================================ */
.closing { padding: 100px 24px; background: var(--bg2); border-top: 1px solid var(--border); }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; color: var(--text); margin-bottom: 20px; }
.closing-sub { font-size: 16px; color: var(--text-muted); line-height: 1.8; max-width: 600px; margin: 0 auto 48px; }

/* ============================================
   INTEGRATIONS
   ============================================ */
.integrations-label { text-align: center; font-size: 11px; color: var(--text-dim); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.integrations-row { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; margin-bottom: 80px; }
.integration-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.integration-logo:hover { color: var(--text); }
.integration-logo:last-child { border-right: none; }

/* ============================================
   HOW IT WORKS — HORIZONTAL
   ============================================ */
.how-it-works { display: flex; align-items: flex-start; gap: 0; justify-content: center; }
.how-step-h { display: flex; align-items: flex-start; gap: 20px; padding: 0 48px; max-width: 320px; }
.how-step-h-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--accent); opacity: 0.2; line-height: 1; flex-shrink: 0; }
.how-step-h-body h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.how-step-h-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.how-arrow { display: flex; align-items: center; padding-top: 16px; flex-shrink: 0; }

/* ============================================
   PRODUCT LANDING PAGES
   ============================================ */
.product-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0533 0%, #0f0527 40%, #0a1a3d 100%);
}

.product-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
}

.product-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.product-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.product-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid var(--border-accent);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.5px; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.product-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.product-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.product-hero-img {
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,0,0,0.5), 0 0 40px rgba(124, 58, 237, 0.15);
  overflow: hidden;
}
.product-hero-img img { width: 100%; height: auto; display: block; }

/* ============================================
   ADMIN DASHBOARD (dark panels)
   ============================================ */
.admin-body { background: var(--bg); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero { min-height: auto; padding: 120px 24px 60px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
  .pricing-card-featured { transform: scale(1); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { display: none; }
  .how-it-works { flex-direction: column; align-items: center; gap: 24px; }
  .how-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .product-hero-right { display: none; }
  .manifesto-comparison { flex-direction: column; gap: 32px; }
  .compare-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; gap: 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 36px; letter-spacing: -1.5px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-amber { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { display: flex; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-footer { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 60px 20px; }
  .cta-banner { padding: 60px 20px; }
  .cta-banner-bg-text { font-size: 80px; }
  .fg-row { grid-template-columns: 1fr; }
  .demo-card { padding: 32px 24px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: 60px 20px; }
  .services-section { padding: 60px 20px; }
  .industries { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .social-proof { padding: 60px 20px; }
  .pricing-preview { padding: 60px 20px; }
  .product-hero { padding: 100px 20px 60px; }
  .product-hero-headline { font-size: 32px; }
  .product-hero-ctas { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 28px; letter-spacing: -1px; }
  .hero-new-headline { font-size: 28px; }
  .section-title { font-size: 26px; }
  .price-amount { font-size: 36px; }
  .products-grid { gap: 12px; }
  .pricing-card { padding: 28px 24px; }
  .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}