@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #00ffcc;
  --primary-glow: rgba(0, 255, 204, 0.5);
  --secondary: #6e00ff;
  --secondary-glow: rgba(110, 0, 255, 0.5);
  --bg-dark: #0a0a0a;
  --bg-card: rgba(20, 20, 20, 0.7);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 15% 50%, rgba(0, 255, 204, 0.08), transparent 25%),
                    radial-gradient(circle at 85% 30%, rgba(110, 0, 255, 0.08), transparent 25%);
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--primary-glow);
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--secondary-glow);
  color: #fff;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 5%;
  min-height: 85vh;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

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

/* Features Section & Products */
.features {
  padding: 5rem 5%;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-main);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* Product Specific Additions */
.product-card {
  display: block;
  color: var(--text-main);
  text-decoration: none;
}
.product-card:hover h3 {
  color: var(--primary);
}
.product-badge {
  background: rgba(0, 255, 204, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  border: 1px solid rgba(0, 255, 204, 0.3);
}
.coming-soon {
  opacity: 0.6;
  pointer-events: none;
  border-style: dashed;
}

/* Privacy Section */
.privacy-highlight {
  padding: 5rem 5%;
  text-align: center;
}

.privacy-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 4rem 2rem;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.privacy-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

/* FAQ Section */
.faq {
  padding: 5rem 5%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 1.5rem;
}

.faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.faq-item p {
  color: var(--text-muted);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 5%;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  margin: 0 0.5rem;
}

/* Privacy Policy Page specific */
.legal-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.legal-content h1 {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--text-main);
}

.legal-content p, .legal-content ul {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Extension Mockup */
.extension-mockup {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  width: 320px;
  backdrop-filter: blur(25px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 30px rgba(0, 255, 204, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.extension-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.mockup-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.8rem;
}

.mockup-header-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-input-bar {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--primary);
  font-size: 0.85rem;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.mockup-qr-container {
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px var(--primary-glow);
}

.mockup-qr-inner {
  width: 100%;
  height: 100%;
  background: 
      linear-gradient(45deg, #050505 25%, transparent 25%, transparent 75%, #050505 75%, #050505), 
      linear-gradient(45deg, #050505 25%, transparent 25%, transparent 75%, #050505 75%, #050505);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  border-radius: 4px;
  position: relative;
}

.mockup-qr-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  border: 2px solid var(--primary);
  border-radius: 10px;
  box-shadow: 0 0 15px var(--primary-glow);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 0.5rem;
}

.mockup-btn {
  flex: 1;
  background: var(--primary);
  color: #000;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.mockup-btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 3rem !important; /* Force override for inline styles */
  }
  
  .nav-links {
    display: none;
  }
}
