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

:root {
  --bg-color: #0b0f19;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(26, 36, 57, 0.8);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  /* Primary Theme Gradients */
  --primary-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
  --accent-color: #6366f1;
  --accent-color-hover: #4f46e5;
  --gradient-text: linear-gradient(135deg, #a5b4fc 0%, #c084fc 50%, #f472b6 100%);
  --gradient-btn: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(99, 102, 241, 0.4);

  /* Badge Colors */
  --color-trust: #10b981;
  --color-scam: #ef4444;
  --color-sus: #f59e0b;
  --color-prop: #8b5cf6;
  --color-idiot: #ec4899;
  --color-neutral: #6b7280;
  --color-unknown: #4b5563;
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Background Gradients */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background: var(--primary-glow);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-container::before {
  content: '';
  position: absolute;
  top: 200px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  filter: blur(80px);
}

.bg-glow-container::after {
  content: '';
  position: absolute;
  top: 400px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  filter: blur(80px);
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  background: var(--gradient-btn);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
  -webkit-text-fill-color: white; /* Prevent text clip from overriding icon */
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

nav a:hover, nav a.active {
  color: var(--text-main);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--gradient-btn);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
}

/* Sections General */
section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero-badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 800px;
}

.hero p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-ctas .btn {
  padding: 14px 28px;
  font-size: 16px;
}

/* Interactive Demo / Twitter Mockup */
.demo-container {
  width: 100%;
  max-width: 640px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: visible;
  margin-top: 20px;
}

.demo-title {
  font-size: 14px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-instruction {
  font-size: 12px;
  color: #a5b4fc;
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Simulated Tweet styling */
.tweet {
  display: flex;
  gap: 14px;
  text-align: left;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.tweet:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.avatar.scammer-av {
  background: #dc2626;
}

.avatar.suspicious-av {
  background: #d97706;
}

.tweet-body {
  flex-grow: 1;
}

.tweet-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.display-name {
  font-weight: 700;
  color: var(--text-main);
  font-size: 15px;
}

.verified-icon {
  width: 16px;
  height: 16px;
  fill: #1d9bf0;
  display: inline-block;
}

.username {
  color: var(--text-muted);
  font-size: 14px;
}

.dot-separator {
  color: var(--text-dim);
  font-size: 14px;
}

.time {
  color: var(--text-dim);
  font-size: 14px;
}

/* Dynamic Badge */
.vax-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  margin-left: 2px;
}

.vax-badge::after {
  content: '▼';
  font-size: 8px;
  opacity: 0.7;
}

/* Badge specific styles matching Chrome Ext */
.badge-trust {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-trust);
  border-color: rgba(16, 185, 129, 0.3);
}
.badge-trust:hover {
  background: rgba(16, 185, 129, 0.2);
}

.badge-scam {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-scam);
  border-color: rgba(239, 68, 68, 0.3);
}
.badge-scam:hover {
  background: rgba(239, 68, 68, 0.2);
}

.badge-sus {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-sus);
  border-color: rgba(245, 158, 11, 0.3);
}
.badge-sus:hover {
  background: rgba(245, 158, 11, 0.2);
}

.badge-prop {
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-prop);
  border-color: rgba(139, 92, 246, 0.3);
}
.badge-prop:hover {
  background: rgba(139, 92, 246, 0.2);
}

.badge-idiot {
  background: rgba(236, 72, 153, 0.1);
  color: var(--color-idiot);
  border-color: rgba(236, 72, 153, 0.3);
}
.badge-idiot:hover {
  background: rgba(236, 72, 153, 0.2);
}

.badge-neutral {
  background: rgba(107, 114, 128, 0.1);
  color: var(--color-neutral);
  border-color: rgba(107, 114, 128, 0.3);
}
.badge-neutral:hover {
  background: rgba(107, 114, 128, 0.2);
}

.badge-unknown {
  background: rgba(75, 85, 99, 0.1);
  color: var(--color-unknown);
  border-color: rgba(75, 85, 99, 0.3);
}
.badge-unknown:hover {
  background: rgba(75, 85, 99, 0.2);
}

.tweet-content {
  font-size: 15px;
  color: #e5e7eb;
  margin-top: 6px;
  white-space: pre-line;
}

.tweet-actions {
  display: flex;
  gap: 30px;
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 13px;
}

.tweet-action-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.tweet-action-item:hover {
  color: var(--text-muted);
}

/* Simulated Tweet Badging Popup Menu */
.sim-popup {
  position: absolute;
  background: #151e2e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px;
  width: 140px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 50;
  display: none;
}

.sim-popup-option {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-popup-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.option-trust { color: var(--color-trust); }
.option-scam { color: var(--color-scam); }
.option-sus { color: var(--color-sus); }
.option-prop { color: var(--color-prop); }
.option-idiot { color: var(--color-idiot); }
.option-neutral { color: var(--color-neutral); }

/* Features Grid */
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: var(--bg-card-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Steps Section */
.steps {
  background: rgba(17, 24, 39, 0.3);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step {
  position: relative;
  padding-left: 20px;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
}

/* CTA Banner Section */
.cta-banner-wrapper {
  padding: 60px 24px;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* FAQs and Support specifics */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-family: 'Outfit', sans-serif;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 14px;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer code {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  color: #a5b4fc;
}

.faq-answer ol, .faq-answer ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.faq-answer li {
  margin-bottom: 6px;
}

.tech-docs {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  margin-top: 40px;
}

.tech-docs h3 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 20px;
  font-size: 22px;
}

.tech-docs pre {
  background: #060913;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: Courier, monospace;
  font-size: 13px;
  color: #818cf8;
  margin: 16px 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 24px;
  background: #060913;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-muted);
}

/* Privacy Page Specifics */
.privacy-content {
  max-width: 800px;
  margin: 40px auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
}

.privacy-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.privacy-meta {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.privacy-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.privacy-content p, .privacy-content ul {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 8px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }
  
  nav {
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-banner {
    padding: 40px 20px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .privacy-content {
    padding: 24px;
  }
}
