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

:root {
  --teal: #0bbfbf;
  --blue: #1a3a6b;
  --bg: #0a1628;
  --bg2: #0e1f3d;
  --surface: #111f3a;
  --text: #e8f4f8;
  --muted: #7a9ab5;
  --accent: #00e5ff;
}

html { scroll-behavior: smooth; }

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,229,255,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: white; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,229,255,0.3); }

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo img { width: 28px; border-radius: 6px; }
.footer-logo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

footer p { font-size: 13px; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 40px rgba(0,229,255,0.2);
}
.btn-primary:hover { background: white; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,229,255,0.35); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: rgba(0,229,255,0.4); background: rgba(0,229,255,0.06); }

/* SECTION LABELS */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 64px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* SECTION */
.section { padding: 100px 24px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.screenshot-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.screenshot-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,229,255,0.12), 0 40px 100px rgba(0,0,0,0.5);
}
.screenshot-wrap img { width: 100%; display: block; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  border: 2px solid rgba(0,229,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
  position: relative;
}
.feature-card:hover { background: #162340; }
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: rgba(0,229,255,0.1);
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

.speed-showcase { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 64px; }
.speed-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.speed-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 10px 24px;
  border-radius: 8px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--accent);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}
.speed-chip:hover, .speed-chip.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: scale(1.08);
}

/* STATS */
.hero-stats { display: flex; gap: 48px; justify-content: center; margin-top: 72px; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

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

/* CTA */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,180,180,0.15) 0%, transparent 70%),
    var(--bg);
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 90px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 32px;
}

.cta-sub { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto 48px; line-height: 1.65; }

/* PRIVACY PAGE */
.privacy-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,180,180,0.15) 0%, transparent 70%), var(--bg);
}

.privacy-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 80px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.privacy-hero p { font-size: 15px; color: var(--muted); }

.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.privacy-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,229,255,0.15);
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.privacy-content ul li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.privacy-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.privacy-content a { color: var(--accent); text-decoration: none; }
.privacy-content a:hover { text-decoration: underline; }

.privacy-highlight {
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}

.privacy-highlight p { margin: 0; color: var(--text); font-size: 15px; }

@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .hero-stats { gap: 28px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
