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

:root {
  --bg: #050810;
  --surface: #0c1120;
  --card: #111827;
  --border: rgba(255,255,255,0.06);
  --neon: #00d4ff;
  --purple: #a855f7;
  --pink: #ec4899;
  --text: #e8eaf0;
  --dim: #6b7394;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: var(--neon); text-decoration: none; }

/* Nav */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 8, 16, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 8px; }

.logo-badge {
  background: linear-gradient(135deg, var(--neon), var(--purple));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 8px;
  letter-spacing: 1px;
}

.logo-badge.sm { font-size: 10px; padding: 3px 6px; border-radius: 6px; }

.logo-text { font-size: 16px; font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--dim); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, var(--neon), var(--purple)) !important;
  color: #fff !important;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--neon);
  background: rgba(0, 212, 255, 0.05);
}

.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 14px; }

.gradient-text {
  background: linear-gradient(135deg, var(--neon), var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero */
.hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), rgba(168, 85, 247, 0.05), transparent 70%);
  pointer-events: none;
}

.hero-content { max-width: 700px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--neon);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 17px;
  color: var(--dim);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto 30px;
}

.hero-buttons { margin-bottom: 24px; }
.hero-note { display: block; margin-top: 10px; font-size: 13px; color: var(--dim); }

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--dim);
}

.hero-stats strong { color: var(--text); }
.stat-sep { width: 1px; height: 16px; background: var(--border); }

/* Preview */
.hero-preview {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: flex-start;
}

.preview-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 320px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.pw-header { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: rgba(0,0,0,0.3); }
.pw-logo { background: linear-gradient(135deg, var(--neon), var(--purple)); color: #fff; font-size: 9px; font-weight: 900; padding: 2px 5px; border-radius: 4px; }
.pw-title { font-size: 11px; font-weight: 700; }
.pw-v { font-size: 8px; color: var(--neon); opacity: 0.7; }
.pw-count { margin-left: auto; background: rgba(0,212,255,0.1); color: var(--neon); font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 8px; }

.pw-search { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(0,0,0,0.2); border-bottom: 1px solid var(--border); }
.pw-search-icon { font-size: 12px; opacity: 0.4; }
.pw-search-text { font-size: 11px; color: var(--dim); flex: 1; }
.pw-ai { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; font-size: 8px; font-weight: 900; padding: 2px 6px; border-radius: 4px; }

.pw-filters { display: flex; gap: 4px; padding: 6px 10px; border-bottom: 1px solid var(--border); }
.pw-filter { font-size: 9px; color: var(--dim); padding: 2px 6px; border-radius: 8px; font-weight: 600; }
.pw-filter.active { background: linear-gradient(135deg, var(--neon), var(--purple)); color: #fff; }

.pw-clips { padding: 6px; }
.pw-clip { background: rgba(20,28,58,0.7); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; margin-bottom: 4px; }
.pw-clip-text { font-size: 11px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pw-clip-text.code { font-family: 'Consolas', monospace; color: #e67e22; }
.pw-clip-meta { display: flex; align-items: center; gap: 6px; font-size: 9px; }
.pw-badge { color: #fff; padding: 0px 5px; border-radius: 3px; font-size: 7px; font-weight: 800; letter-spacing: 0.5px; }
.pw-time { color: var(--dim); }
.pw-color-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.pw-swatch { width: 24px; height: 24px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); }

.preview-lens {
  background: var(--surface);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 14px;
  padding: 10px;
  width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,212,255,0.05);
  animation: lensFloat 3s ease-in-out infinite;
  margin-top: 40px;
}

@keyframes lensFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pl-header { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.pl-icon { font-size: 12px; }
.pl-type { font-size: 9px; font-weight: 800; letter-spacing: 1px; background: linear-gradient(135deg, var(--neon), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pl-tag { font-size: 8px; color: var(--dim); margin-left: auto; }
.pl-color-row { display: flex; gap: 10px; align-items: center; padding: 6px; background: rgba(0,0,0,0.2); border-radius: 8px; margin-bottom: 6px; }
.pl-swatch { width: 36px; height: 36px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.15); box-shadow: 0 2px 12px rgba(255,107,107,0.3); }
.pl-hex { font-family: 'Consolas', monospace; font-weight: 700; font-size: 13px; }
.pl-detail { font-size: 9px; color: var(--dim); }
.pl-palette { display: flex; gap: 3px; margin-top: 4px; }
.pl-ps { width: 14px; height: 14px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); }
.pl-actions { display: flex; gap: 3px; flex-wrap: wrap; }
.pl-btn { font-size: 9px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 3px 8px; border-radius: 6px; color: var(--text); }
.pl-btn.primary { background: linear-gradient(135deg, var(--neon), var(--purple)); border: none; color: #fff; font-weight: 700; }

/* Features */
.features {
  padding: 100px 24px;
  text-align: center;
}

.features h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: left;
  transition: all 0.25s;
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--dim); line-height: 1.5; }

/* Clip Lens Section */
.clip-lens-section {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cl-content {
  max-width: 700px;
  margin: 0 auto;
}

.cl-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.cl-content h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cl-content > p {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cl-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cl-example {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}

.cl-example:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateX(4px);
}

.cl-copy {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 130px;
}

.cl-copy code {
  background: rgba(0,212,255,0.1);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--neon);
}

.cl-arrow { color: var(--dim); font-size: 16px; }

.cl-result {
  font-size: 13px;
  color: var(--dim);
}

/* Providers */
.providers {
  padding: 80px 24px;
  text-align: center;
}

.providers h2 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.providers-sub { color: var(--dim); font-size: 15px; margin-bottom: 36px; }

.providers-grid {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.providers-grid.two {
  max-width: 560px;
  grid-template-columns: 1fr 1fr;
}

.providers-grid.two .provider { padding: 24px 18px; }
.providers-grid.two .p-desc { line-height: 1.5; margin-top: 4px; }

.provider {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.p-icon { font-size: 24px; }
.p-name { font-size: 13px; font-weight: 700; }
.p-price { font-size: 10px; color: var(--dim); font-weight: 600; }
.p-price.free { color: var(--neon); }
.p-desc { font-size: 10px; color: var(--dim); }

/* Pricing */
.pricing {
  padding: 100px 24px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing h2 { font-size: 32px; font-weight: 900; margin-bottom: 40px; }

.pricing-grid {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: left;
  position: relative;
}

.price-card.pro {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.05);
}

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon), var(--purple));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 10px;
}

.price-name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }

.price-amount {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}

.price-amount span { font-size: 14px; color: var(--dim); font-weight: 500; }

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.price-card li {
  font-size: 13px;
  color: var(--dim);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}

.price-card .btn { width: 100%; justify-content: center; }

/* Download */
.download {
  padding: 100px 24px;
  text-align: center;
  position: relative;
}

.download-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.download h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.download p { color: var(--dim); font-size: 16px; margin-bottom: 28px; }
.dl-info { display: block; margin-top: 14px; font-size: 12px; color: var(--dim); }

.smartscreen-note {
  max-width: 440px;
  margin: 18px auto 0;
  padding: 12px 16px;
  background: rgba(124,110,240,0.06);
  border: 1px solid rgba(124,110,240,0.15);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--dim);
  text-align: left;
}

.smartscreen-note strong { color: var(--text); }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--dim);
}

.footer-left { display: flex; align-items: center; gap: 8px; }
.footer-right { display: flex; gap: 20px; }
.footer-right a { color: var(--dim); transition: color 0.2s; }
.footer-right a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-preview { flex-direction: column; align-items: center; }
  .preview-lens { margin-top: 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .cl-example { flex-direction: column; gap: 4px; text-align: center; }
  .cl-copy { min-width: auto; }
  .cl-arrow { display: none; }
}
