:root {
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --text-main: #1F2937;
  --text-light: #6B7280;
  --bg-color: #F9FAFB;
  --surface-color: #FFFFFF;
  --accent-red: #EF4444;
  --accent-red-light: #FEF2F2;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Blobs */
.background-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
}

.top-right {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, #3B82F6 0%, rgba(59, 130, 246, 0) 70%);
}

.bottom-left {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, #8B5CF6 0%, rgba(139, 92, 246, 0) 70%);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
}

.btn-secondary {
  border: 1px solid #E5E7EB;
  padding: 8px 16px;
  border-radius: 8px;
  background: white;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #F3F4F6;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #EFF6FF;
  color: #2563EB;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(90deg, #2563EB, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 480px;
}

/* Email Form */
.email-capture {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.email-capture input {
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 16px;
  flex: 1;
  max-width: 300px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.small-text {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

/* Mockup */
.browser-mockup {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  border: 1px solid #E5E7EB;
  overflow: hidden;
}

.mockup-header {
  background: #F3F4F6;
  padding: 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
}

.url-bar {
  background: white;
  flex: 1;
  margin: 0 20px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

.mockup-body {
  padding: 24px;
  background: #FFF;
  min-height: 200px;
  position: relative;
}

.chat-bubble {
  background: #F3F4F6;
  padding: 12px 16px;
  border-radius: 12px 12px 12px 0;
  max-width: 80%;
  margin-bottom: 24px;
  font-size: 14px;
}

.chat-input-area {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px;
  color: var(--text-main);
  position: relative;
  font-size: 14px;
}

.highlight-redact {
  background-color: var(--accent-red-light);
  color: var(--accent-red);
  padding: 0 4px;
  border-radius: 4px;
  text-decoration: underline;
  text-decoration-style: wavy;
}

.warning-tooltip {
  position: absolute;
  top: -60px;
  right: 0;
  background: white;
  border: 1px solid #FECACA;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  animation: float 2s ease-in-out infinite;
}

.tooltip-header {
  background: #FEF2F2;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #991B1B;
}

.tooltip-body {
  padding: 8px 12px;
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-xs {
  background: #2563EB;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  cursor: pointer;
}

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

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

.features h2 {
  font-size: 32px;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  padding: 24px;
}

.icon-bg {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* Pricing */
.pricing {
  padding: 80px 24px;
  background: var(--bg-color);
  text-align: center;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.pricing-subtitle {
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}

.pricing-header h3 {
  font-size: 20px;
  margin: 0 0 8px 0;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-main);
}

.price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
}

.price-period {
  font-size: 14px;
  color: var(--text-light);
  margin: 4px 0 0 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-main);
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 600;
}

.pricing-features li strong {
  font-weight: 600;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.pricing-card .btn-secondary {
  color: var(--text-main);
}

.trial-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    order: -1;
  }
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-subtitle {
    margin: 0 auto 40px;
  }
  
  .email-capture {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto 16px;
  }
  
  .nav-links {
    display: none;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-color);
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  z-index: 9999;
}

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

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

.cookie-content a {
  color: var(--primary);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cookie-decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid #D1D5DB;
}

.cookie-decline:hover {
  background: #F3F4F6;
}

.cookie-accept {
  background: var(--primary);
  color: white;
}

.cookie-accept:hover {
  background: var(--primary-hover);
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
