/* Import the same fonts as the extension */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=Nunito:wght@600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Varela Round', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d3d3d;
  background: #faf9f7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Coming Soon Banner */
.coming-soon-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 700px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  border: 3px solid #3d3d3d;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease-out;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.coming-soon-banner.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: white;
}

.banner-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.banner-close {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.2s;
  flex-shrink: 0;
}

.banner-close:hover {
  background: white;
  color: #4caf50;
  transform: scale(1.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: #fff;
  border-bottom: 3px solid #3d3d3d;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #3d3d3d;
  font-family: 'Nunito', sans-serif;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #4caf50;
}

.install-btn {
  background: #3d3d3d;
  color: #faf9f7 !important;
  padding: 6px 14px;
  border-radius: 8px;
  border: 2px solid #3d3d3d;
  transition: all 0.2s;
  font-size: 13px;
}

.install-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

/* Buttons */
.primary-btn {
  background: #3d3d3d;
  color: #faf9f7;
  padding: 14px 32px;
  border-radius: 16px;
  border: 3px solid #3d3d3d;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Varela Round', sans-serif;
}

.primary-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-btn.large {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 18px;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f2ef 0%, #faf9f7 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Nunito', sans-serif;
  color: #3d3d3d;
}

.highlight {
  color: #4caf50;
  position: relative;
}

.hero-subtitle {
  font-size: 20px;
  color: #6b6359;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.trust-badge {
  font-size: 14px;
  color: #9c8f85;
  font-weight: 600;
}

.browser-mockup {
  background: #fff;
  border: 3px solid #3d3d3d;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1100px;
}

.browser-header {
  background: #f5f2ef;
  padding: 12px 16px;
  border-bottom: 3px solid #3d3d3d;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3d3d3d;
}

.browser-content {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.extension-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-placeholder {
  color: #9c8f85;
  font-size: 18px;
  text-align: center;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #fff;
}

.features h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  font-family: 'Nunito', sans-serif;
  color: #3d3d3d;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #faf9f7;
  padding: 32px;
  border-radius: 20px;
  border: 3px solid #e8e4e0;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #3d3d3d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Nunito', sans-serif;
  color: #3d3d3d;
}

.feature-card p {
  color: #6b6359;
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: #f5f2ef;
}

.how-it-works h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  font-family: 'Nunito', sans-serif;
  color: #3d3d3d;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.step {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #3d3d3d;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #3d3d3d;
  color: #faf9f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  font-family: 'Nunito', sans-serif;
}

.step h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Nunito', sans-serif;
  color: #3d3d3d;
}

.step p {
  color: #6b6359;
  line-height: 1.6;
}

.step-arrow {
  font-size: 32px;
  color: #3d3d3d;
  font-weight: 800;
}

/* Install Section */
.install-section {
  padding: 100px 0;
  background: #fff;
}

.install-card {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  padding: 60px;
  border-radius: 24px;
  border: 3px solid #3d3d3d;
  text-align: center;
  color: #fff;
}

.install-card h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
}

.install-card > p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.install-options {
  margin-bottom: 50px;
}

.chrome-btn {
  background: #fff;
  color: #3d3d3d !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.chrome-btn:hover {
  background: #faf9f7;
}

.chrome-icon {
  width: 24px;
  height: 24px;
}

.install-note {
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
}

.email-signup {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 32px;
}

.signup-label {
  margin-bottom: 16px;
  font-size: 16px;
  color: #fff;
  opacity: 0.95;
}

.signup-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 3px solid #3d3d3d;
  font-size: 16px;
  font-family: 'Varela Round', sans-serif;
}

.signup-form button {
  background: #3d3d3d;
  border-color: #3d3d3d;
}

/* Footer */
footer {
  background: #3d3d3d;
  color: #faf9f7;
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #e8e4e0;
  margin-top: 12px;
}

.footer-brand .logo-text {
  color: #faf9f7;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
}

.footer-column a {
  display: block;
  color: #e8e4e0;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #4caf50;
}

.footer-bottom {
  border-top: 2px solid rgba(250, 249, 247, 0.2);
  padding-top: 24px;
  text-align: center;
  color: #e8e4e0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 60px 0;
  }

  .features h2 {
    font-size: 32px;
  }

  .how-it-works {
    padding: 60px 0;
  }

  .how-it-works h2 {
    font-size: 32px;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 16px 0;
  }

  .install-section {
    padding: 60px 0;
  }

  .install-card {
    padding: 40px 24px;
  }

  .install-card h2 {
    font-size: 32px;
  }

  .install-card > p {
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav-links {
    gap: 12px;
    font-size: 14px;
  }

  .nav-links a {
    display: none;
  }

  .nav-links .install-btn {
    display: inline-block;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .signup-form {
    flex-direction: column;
  }

  .browser-mockup {
    display: none;
  }
}
