:root {
  --bg: #0a0a0f;
  --bg-card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.06);
  --text: #f0f0f5;
  --text-dim: #888899;
  --accent: #3b82f6;
  --accent-glow: rgba(59,130,246,0.4);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --purple: #8b5cf6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }

.mesh-bg { position: fixed; inset: 0; z-index: -2; background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59,130,246,0.08), transparent), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,0.06), transparent), radial-gradient(ellipse 50% 30% at 50% 100%, rgba(16,185,129,0.05), transparent); }
.noise { position: fixed; inset: 0; z-index: -1; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; pointer-events: none; }
.orb { position: fixed; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: 0.4; animation: orbFloat 20s ease-in-out infinite; }
.orb-1 { width: 400px; height: 400px; background: var(--accent); top: -10%; left: -5%; }
.orb-2 { width: 300px; height: 300px; background: var(--purple); bottom: 10%; right: -5%; animation-delay: -7s; }
.orb-3 { width: 250px; height: 250px; background: var(--success); top: 40%; left: 50%; animation-delay: -14s; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0)scale(1)}33%{transform:translate(30px,-30px)scale(1.1)}66%{transform:translate(-20px,20px)scale(0.95)} }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 16px 40px; background: rgba(10,10,15,0.7); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg,var(--accent),var(--purple)); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px var(--accent-glow); }
.logo-icon svg { width: 18px; height: 18px; }
nav a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500; margin-left: 32px; transition: color 0.2s; }
nav a:hover { color: var(--text); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg,var(--accent),var(--purple)); color: #fff; box-shadow: 0 4px 20px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background: var(--bg-card); border-color: rgba(255,255,255,0.15); }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 40px 80px; text-align: center; position: relative; }
.hero-content { max-width: 780px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 20px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--success); font-size: 12px; font-weight: 600; margin-bottom: 24px; animation: pulseBadge 3s ease-in-out infinite; }
@keyframes pulseBadge { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,0.2)}50%{box-shadow:0 0 0 8px rgba(16,185,129,0)} }
.hero h1 { font-size: clamp(40px,6vw,64px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; background: linear-gradient(135deg,#fff 0%,#a5b4fc 50%,#fff 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 4s linear infinite; }
@keyframes shimmer { 0%{background-position:0% center}100%{background-position:200% center} }
.hero p { font-size: clamp(16px,2vw,20px); color: var(--text-dim); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; justify-content: center; margin-top: 60px; flex-wrap: wrap; }
.stat { text-align: center; } .stat-num { font-size: 32px; font-weight: 700; color: var(--text); display: block; line-height: 1; } .stat-label { font-size: 13px; color: var(--text-dim); margin-top: 4px; }

.section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(28px,4vw,42px); font-weight: 700; letter-spacing: -1px; margin-bottom: 12px; }
.section-head p { color: var(--text-dim); font-size: 18px; max-width: 560px; margin: 0 auto; }
.problems { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.problem-card { padding: 32px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.3s; }
.problem-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.problem-card .icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.problem-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.feature-row:nth-child(even) .feature-visual { order: 2; }
.feature-text h3 { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
.feature-text p { color: var(--text-dim); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.feature-list { list-style: none; } .feature-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--text-dim); }
.feature-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: rgba(16,185,129,0.15); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.feature-visual { position: relative; border-radius: 20px; background: linear-gradient(135deg,rgba(59,130,246,0.08),rgba(139,92,246,0.08)); border: 1px solid var(--border); padding: 40px; min-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.browser-mockup { width: 100%; max-width: 480px; border-radius: 12px; overflow: hidden; background: #121212; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.mockup-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.05); }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; } .mockup-dot.r { background: #ef4444; } .mockup-dot.y { background: #f59e0b; } .mockup-dot.g { background: #10b981; }
.mockup-url { flex: 1; background: rgba(255,255,255,0.04); border-radius: 6px; padding: 5px 10px; font-size: 11px; color: #555; margin-left: 4px; }
.mockup-body { padding: 20px; }
.tracker-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 12px; color: #888; animation: slideIn 0.5s ease-out both; }
.tracker-row:nth-child(1) { animation-delay: 0.1s; } .tracker-row:nth-child(2) { animation-delay: 0.2s; } .tracker-row:nth-child(3) { animation-delay: 0.3s; } .tracker-row:nth-child(4) { animation-delay: 0.4s; } .tracker-row:nth-child(5) { animation-delay: 0.5s; }
.tracker-row.blocked { color: #ef4444; text-decoration: line-through; opacity: 0.5; }
.tracker-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; flex-shrink: 0; } .tracker-row.blocked .tracker-dot { background: #10b981; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }

.compare-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.compare-table th, .compare-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { font-size: 13px; color: var(--text-dim); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.compare-table td { font-size: 15px; } .compare-table td:first-child { font-weight: 500; }
.check { color: var(--success); font-weight: 700; } .cross { color: var(--danger); font-weight: 700; } .na { color: var(--text-dim); }
.highlight-row td { background: rgba(59,130,246,0.05); } .highlight-row td:first-child { color: var(--accent); }

.cta { text-align: center; padding: 120px 40px; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59,130,246,0.1), transparent); }
.cta h2 { font-size: clamp(32px,5vw,48px); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta p { color: var(--text-dim); font-size: 18px; margin-bottom: 32px; position: relative; }
.platforms { display: flex; gap: 16px; justify-content: center; margin-top: 24px; flex-wrap: wrap; position: relative; }
.platform-tag { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }

footer { padding: 40px; text-align: center; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 13px; }

@media (max-width: 768px) { nav { padding: 14px 20px; } nav a { display: none; } .section { padding: 60px 20px; } .feature-row { grid-template-columns: 1fr; gap: 40px; } .feature-row:nth-child(even) .feature-visual { order: 0; } .hero { padding: 120px 20px 60px; } .hero-stats { gap: 24px; } .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13px; } }
