*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #060a14;
  --bg-card: rgba(15,23,42,0.6);
  --bg-card-solid: #0f172a;
  --blue-primary: #1e88e5;
  --blue-light: #42a5f5;
  --cyan-accent: #4dd0e1;
  --cyan-bright: #00e5ff;
  --navy: #0d1b3e;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gradient-accent: linear-gradient(135deg, #1e88e5, #4dd0e1);
  --gradient-accent-warm: linear-gradient(135deg, #1e88e5, #4dd0e1, #00e5ff);
  --glow-blue: rgba(30,136,229,0.4);
  --glow-cyan: rgba(77,208,225,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================== GRAIN TEXTURE ===================== */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,10,20,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(30,136,229,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(6,10,20,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; transition: transform 0.3s; }
.nav-logo:hover { transform: scale(1.02); }
.nav-logo-mark {
  height: 110px; width: 110px; object-fit: contain;
  margin: -35px -18px -35px -24px;
  filter: drop-shadow(0 0 12px rgba(30,136,229,0.3));
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .logo-main {
  font-size: 1.15rem; font-weight: 800; color: var(--text-primary);
  letter-spacing: 0.1em; text-transform: uppercase; display: block;
}
.nav-logo-text .logo-sub {
  font-size: 0.6rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.22em; text-transform: uppercase; display: block;
  margin-top: 0px;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a, .nav-links .nav-dropdown-trigger {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-links a:not(.nav-cta)::after, .nav-links .nav-dropdown-trigger::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-accent); transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after, .nav-links .nav-dropdown-trigger:hover::after { width: 100%; }
.nav-links a:hover, .nav-links .nav-dropdown-trigger:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gradient-accent); color: #fff !important; padding: 0.55rem 1.5rem;
  border-radius: 10px; font-weight: 600 !important; font-size: 0.85rem !important;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--glow-blue);
}
.nav-cta::after { display: none !important; }

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-trigger svg { transition: transform 0.3s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: rgba(6,10,20,0.95); backdrop-filter: blur(24px);
  border: 1px solid rgba(30,136,229,0.15); border-radius: 12px;
  padding: 0.75rem 0; min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 10000;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.75rem 1.5rem; font-size: 0.85rem;
  color: var(--text-secondary); transition: all 0.2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--text-primary); background: rgba(30,136,229,0.08); }

/* Mobile menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 10px;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-secondary);
  transition: all 0.3s; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(6,10,20,0.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: var(--text-primary); text-decoration: none; font-size: 1.5rem; font-weight: 600;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--cyan-accent); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero--subpage {
  min-height: 50vh; padding: 8rem 2rem 4rem;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(30,136,229,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(77,208,225,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(30,136,229,0.08) 0%, transparent 50%);
}
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 300px; z-index: 2;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
}
.hero-content { position: relative; z-index: 3; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(30,136,229,0.1); border: 1px solid rgba(30,136,229,0.25);
  padding: 0.5rem 1.25rem; border-radius: 100px; font-size: 0.8rem; color: var(--cyan-accent);
  font-weight: 600; margin-bottom: 2rem; letter-spacing: 0.08em; text-transform: uppercase;
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(77,208,225,0.1); }
  50% { box-shadow: 0 0 30px rgba(77,208,225,0.2); }
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2ecc71;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.75rem); font-weight: 900; line-height: 1.08;
  margin-bottom: 1.5rem; letter-spacing: -0.03em;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #42a5f5, #4dd0e1, #00e5ff, #4dd0e1, #42a5f5);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-sub {
  font-size: 1.3rem; color: var(--text-secondary); max-width: 650px;
  margin: 0 auto 1.5rem; line-height: 1.8;
}
.hero-proof {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.hero-proof-item { display: flex; align-items: center; gap: 0.4rem; }
.hero-proof-item svg { color: #2ecc71; flex-shrink: 0; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  position: relative; background: var(--gradient-accent); color: #fff;
  padding: 1rem 2.5rem; border-radius: 12px; text-decoration: none;
  font-weight: 700; font-size: 1.05rem; border: none; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--glow-blue), 0 0 80px rgba(77,208,225,0.15);
}
.btn-secondary {
  background: rgba(255,255,255,0.04); color: var(--text-primary);
  padding: 1rem 2.5rem; border-radius: 12px; text-decoration: none;
  font-weight: 700; font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(77,208,225,0.3);
  box-shadow: 0 0 30px rgba(77,208,225,0.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-indicator span {
  font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scroll-arrow {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px; position: relative;
}
.scroll-arrow::after {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: var(--cyan-accent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* ===================== SECTION COMMON ===================== */
section { padding: 7rem 2rem; position: relative; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  color: var(--cyan-accent); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--gradient-accent);
}
.section-label--centered {
  justify-content: center;
}
.section-label--centered::after {
  content: ''; width: 24px; height: 2px; background: var(--gradient-accent);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900;
  margin-bottom: 1rem; letter-spacing: -0.02em; line-height: 1.15;
}
.section-subtitle {
  color: var(--text-secondary); font-size: 1.1rem; max-width: 600px;
  margin-bottom: 3.5rem; line-height: 1.8;
}
.section-divider {
  max-width: 1140px; margin: 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,136,229,0.2), transparent);
}

/* ===================== TRUST BAR ===================== */
.trust-bar { padding: 5rem 2rem; position: relative; overflow: hidden; }
.trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(30,136,229,0.03), transparent);
}
.trust-numbers {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem;
  max-width: 1140px; margin: 0 auto; text-align: center; position: relative;
}
.trust-item { padding: 1.5rem; }
.trust-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900;
  background: var(--gradient-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1; margin-bottom: 0.5rem;
}
.trust-label { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; }
.trust-sublabel { color: var(--text-muted); font-size: 0.75rem; margin-top: 0.25rem; }

/* ===================== PAIN CARDS ===================== */
.pain-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1140px; margin: 0 auto;
}
.pain-card {
  padding: 2.5rem 2rem; border-radius: 20px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s;
}
.pain-card:hover {
  border-color: rgba(30,136,229,0.2);
  transform: translateY(-4px);
}
.pain-stat {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900;
  margin-bottom: 0.75rem; line-height: 1.1;
}
.pain-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.pain-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===================== ABOUT ===================== */
.about { background: transparent; position: relative; }
.about::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-shield { text-align: center; position: relative; }
.about-shield img {
  width: 300px; max-width: 80%; position: relative; z-index: 2;
  filter: drop-shadow(0 0 60px rgba(30,136,229,0.5)) drop-shadow(0 0 120px rgba(77,208,225,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.shield-rings {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 350px; height: 350px; z-index: 1;
}
.shield-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(30,136,229,0.1);
  animation: ring-pulse 4s ease-in-out infinite;
}
.shield-ring:nth-child(2) { inset: -25px; animation-delay: 0.5s; border-color: rgba(77,208,225,0.08); }
.shield-ring:nth-child(3) { inset: -50px; animation-delay: 1s; border-color: rgba(30,136,229,0.05); }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 1.25rem; font-weight: 900; letter-spacing: -0.02em; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.8; }
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-item .stat-number {
  font-size: 2.25rem; font-weight: 900;
  background: var(--gradient-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-item .stat-label {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===================== PRODUCTS ===================== */
.products { background: transparent; }
.product-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--bg-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-accent); opacity: 0; transition: opacity 0.4s;
}
.product-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,136,229,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30,136,229,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(30,136,229,0.1);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover::after { opacity: 1; }
.product-card > * { position: relative; z-index: 1; }
.product-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,136,229,0.15), rgba(77,208,225,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.6rem;
  border: 1px solid rgba(30,136,229,0.15); color: var(--cyan-accent);
}
.product-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.75rem; }
.product-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
.product-features {
  list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.product-features li {
  font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem;
}
.product-features li svg { color: #2ecc71; flex-shrink: 0; }
.product-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem; padding: 0.35rem 0.85rem;
  border-radius: 8px; font-size: 0.75rem; font-weight: 600;
}
.tag-live { background: rgba(46,204,113,0.1); color: #2ecc71; border: 1px solid rgba(46,204,113,0.2); }
.tag-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2ecc71;
  animation: pulse 2s ease-in-out infinite;
}
.tag-building { background: rgba(30,136,229,0.1); color: var(--blue-light); border: 1px solid rgba(30,136,229,0.2); }
a.product-tag { text-decoration: none; transition: all 0.3s; cursor: pointer; }
a.product-tag:hover { box-shadow: 0 0 20px rgba(46,204,113,0.2); transform: translateY(-1px); }
.product-card .learn-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.85rem; font-weight: 600;
  color: var(--cyan-accent); transition: gap 0.3s;
}
.product-card:hover .learn-more { gap: 0.75rem; }

/* ===================== DEEP DIVE GRID ===================== */
.deep-dive { background: transparent; }
.dd-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.dd-item {
  padding: 1.5rem; border-radius: 14px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
  text-align: center;
}
.dd-item:hover {
  border-color: rgba(30,136,229,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.dd-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.dd-item h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; }
.dd-item p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* ===================== EXPERIENCE SCREENS ===================== */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.exp-card {
  padding: 2rem 1.5rem; border-radius: 16px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s;
  text-align: center; position: relative; overflow: hidden;
}
.exp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-accent); opacity: 0; transition: opacity 0.3s;
}
.exp-card:hover { border-color: rgba(30,136,229,0.2); transform: translateY(-4px); }
.exp-card:hover::before { opacity: 1; }
.exp-icon { font-size: 2rem; margin-bottom: 1rem; }
.exp-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.exp-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===================== PRICING ===================== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.price-card {
  padding: 2.5rem 2rem; border-radius: 20px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.price-card.featured {
  border-color: rgba(30,136,229,0.4);
  box-shadow: 0 0 40px rgba(30,136,229,0.1);
}
.price-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-accent);
}
.price-card .popular-badge {
  display: inline-block; background: var(--gradient-accent); color: #fff;
  font-size: 0.65rem; font-weight: 700; padding: 0.3rem 0.85rem;
  border-radius: 6px; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.price-card:hover {
  border-color: rgba(30,136,229,0.25);
  transform: translateY(-4px);
}
.price-tier {
  font-size: 0.75rem; color: var(--cyan-accent); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; margin-bottom: 0.5rem;
}
.price-card h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.price-amount {
  font-size: 2.5rem; font-weight: 900; margin-bottom: 0.25rem;
  background: var(--gradient-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.price-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.price-features li {
  font-size: 0.8rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 0.5rem;
}
.price-features li svg { color: #2ecc71; flex-shrink: 0; margin-top: 2px; }

/* ===================== METRICS TICKER ===================== */
.metrics { padding: 4rem 2rem; overflow: hidden; position: relative; }
.metrics::before, .metrics::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.metrics::before { left: 0; background: linear-gradient(to right, var(--bg-deep), transparent); }
.metrics::after { right: 0; background: linear-gradient(to left, var(--bg-deep), transparent); }
.metrics-track {
  display: flex; gap: 3rem; animation: scroll-left 35s linear infinite;
  width: max-content;
}
.metrics-track:hover { animation-play-state: paused; }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.metric-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.75rem; border-radius: 14px;
  background: var(--bg-card); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap; flex-shrink: 0;
}
.metric-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(30,136,229,0.15), rgba(77,208,225,0.1));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  color: var(--cyan-accent);
}
.metric-text .metric-value { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
.metric-text .metric-label { font-size: 0.75rem; color: var(--text-muted); }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { background: transparent; position: relative; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.step {
  text-align: center; padding: 2.5rem 2rem; border-radius: 20px;
  background: var(--bg-card); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s; position: relative;
}
.step:hover {
  border-color: rgba(30,136,229,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}
.step-number {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--gradient-accent); display: flex; align-items: center;
  justify-content: center; font-weight: 900; font-size: 1.3rem;
  margin: 0 auto 1.5rem; color: #fff;
  box-shadow: 0 8px 30px var(--glow-blue);
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===================== INTEGRATIONS ===================== */
.integrations-bar {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  padding: 2rem 0; margin-top: 2rem;
}
.integration-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.integration-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.dot-live { background: #2ecc71; }
.dot-ready { background: var(--blue-light); }

/* ===================== VISION ===================== */
.vision { background: transparent; }
.vision-timeline { position: relative; padding-left: 3rem; }
.vision-timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--blue-primary), var(--cyan-accent), transparent);
}
.vision-item { position: relative; margin-bottom: 3rem; padding-left: 2rem; }
.vision-item:last-child { margin-bottom: 0; }
.vision-dot {
  position: absolute; left: -2.45rem; top: 0.5rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 20px var(--glow-blue);
}
.vision-dot::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(30,136,229,0.2);
}
.vision-phase {
  font-size: 0.75rem; color: var(--cyan-accent); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; margin-bottom: 0.5rem;
}
.vision-item h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.5rem; }
.vision-item p { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; max-width: 600px; }

/* ===================== SOCIAL PROOF ===================== */
.proof { padding: 5rem 2rem; text-align: center; }
.proof-inner { max-width: 800px; margin: 0 auto; }
.proof-quote {
  font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600; line-height: 1.6;
  font-style: italic; margin-bottom: 2rem; position: relative;
  color: var(--text-primary);
}
.proof-quote::before {
  content: '\201C'; font-size: 5rem; position: absolute; top: -2rem; left: -1rem;
  color: rgba(30,136,229,0.2); font-style: normal; font-weight: 900;
}
.proof-author { color: var(--text-muted); font-size: 0.9rem; }
.proof-author strong { color: var(--text-secondary); font-weight: 600; }

/* ===================== FAQ ===================== */
.faq { background: transparent; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; margin-bottom: 0.75rem;
  background: var(--bg-card); backdrop-filter: blur(10px);
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(30,136,229,0.15); }
.faq-item.open { border-color: rgba(30,136,229,0.25); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 1.02rem;
  color: var(--text-primary); background: none; border: none; width: 100%;
  text-align: left; font-family: inherit; padding: 1.25rem 1.5rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--cyan-accent); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(30,136,229,0.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all 0.3s;
  font-size: 1rem; color: var(--text-muted);
}
.faq-item.open .faq-icon {
  background: var(--gradient-accent); color: #fff; transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.5rem; }

/* ===================== CTA ===================== */
.cta-section {
  padding: 8rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(30,136,229,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(77,208,225,0.06) 0%, transparent 40%);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,0.08) 0%, transparent 60%);
  animation: cta-pulse 6s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}
.cta-content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-content p { color: var(--text-secondary); font-size: 1.15rem; margin-bottom: 2.5rem; line-height: 1.8; }
.cta-trust {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.cta-trust-item svg { color: var(--cyan-accent); }

/* ===================== FOOTER ===================== */
footer {
  padding: 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-deep);
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-left { display: flex; align-items: center; gap: 1.25rem; }
.footer-left img { height: 28px; opacity: 0.7; }
.footer-left span { color: var(--text-muted); font-size: 0.8rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cyan-accent); }

/* ===================== BACKGROUND CANVAS ===================== */
#bg-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
header, section, footer, .trust-bar, .section-divider,
.metrics, .deep-dive, .how-it-works {
  position: relative; z-index: 1;
}
.cursor-glow {
  position: fixed; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,0.04) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%); transition: opacity 0.3s;
}

::selection { background: rgba(30,136,229,0.3); color: #fff; }

/* ===================== INLINE GRID HELPERS ===================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .dd-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-numbers { grid-template-columns: repeat(3, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .dd-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-mark { height: 80px; width: 80px; margin: -24px -12px -24px -16px; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-stats { justify-content: center; }
  .about-shield { margin-bottom: 1rem; }
  .shield-rings { width: 280px; height: 280px; }
  .hero { min-height: auto; padding: 7rem 1.5rem 5rem; }
  .hero--subpage { padding: 7rem 1.5rem 3rem; }
  section { padding: 5rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .vision-timeline { padding-left: 2.5rem; }
  .scroll-indicator { display: none; }
  .trust-numbers { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .dd-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 6rem 1rem 4rem; }
  .hero--subpage { padding: 6rem 1rem 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; text-align: center; }
  section { padding: 3.5rem 1rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-subtitle { font-size: 0.95rem; }
  .trust-numbers { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .trust-number { font-size: clamp(2rem, 8vw, 2.5rem); }
  .product-card { padding: 2rem 1.5rem; }
  .price-card { padding: 2rem 1.5rem; }
  .step { padding: 2rem 1.5rem; }
  .mobile-menu a { font-size: 1.25rem; }
  .footer-links { gap: 1.25rem; }
  .cta-section { padding: 5rem 1rem; }
  .nav-logo-mark { height: 70px; width: 70px; margin: -20px -10px -20px -12px; }
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
