/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(to bottom, #dbeafe 0%, #93c5fd 40%, #3b82f6 80%, #2563eb 100%);
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}


/* HERO SECTION */
.hero {
  background: transparent;
  color: #1e293b;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  transform: translateX(-10px); /* Shift left slightly */
}


.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;      
  color: #000000;        
  margin-bottom: 18px;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}


.subtitle {
  font-size: 1.6rem;
  font-weight: 800; 
  color: #000000;    
  margin-bottom: 14px;
}

.tagline {
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  font-weight: 600; /* 👈 added boldness */
}

/* Email Form */
.email-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.email-form input {
  padding: 14px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  width: 280px;
  background-color: #f8fafc;
  color: #1e293b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}

.email-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35); /* soft green focus ring */
}

.email-form button {
  background-color: #d1fae5;
  color: #047857;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease;
}

.email-form button:hover {
  background-color: #a7f3d0;
}

/* FEATURES */
.features {
  padding: 80px 20px;
  background: transparent;
  text-align: center;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 60px;
  color: #000000; /* black */
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background-color: white;
  padding: 30px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box h3 {
  font-size: 1.6rem;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 1rem;
  color: #334155;
}

/* CTA */
.cta {
  background: transparent;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #000000; /* black */
  margin-bottom: 18px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 600;
}

.benefits {
  list-style: none;
  display: inline-block;
  margin: 0 auto 50px;
  padding-left: 0;
  text-align: left;
}

.benefits li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 1rem;
  margin-bottom: 10px;
}

.benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

/* FOOTER */
footer {
  background-color: #e0e7ff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
  color: #1e3a8a;
}

footer p {
  margin: 8px 0;
}

footer a {
  color: #1e3a8a;
  text-decoration: underline;
}

footer a:visited {
  color: #1e3a8a;
}

footer .disclaimer {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 600px;
  margin: 12px auto 0;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* TRUST SECTION */
.trust {
  background: transparent;
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.trust h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.trust p {
  font-size: 1.1rem;
  color: #334155;
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.connect-etsy-button {
  display: inline-block;
  background-color: #ec4899;
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.connect-etsy-button:hover {
  background-color: #db2777;
}

/* Logo & Visual Accessibility */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 80px;
  width: auto;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.hero-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  height: 180px;
  width: auto;
  z-index: 10;
  pointer-events: none;
  animation: whitePulseGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(59, 130, 246, 1))
          drop-shadow(0 0 45px rgba(59, 130, 246, 0.9))
          drop-shadow(0 0 70px rgba(59, 130, 246, 0.8));
}

@keyframes whitePulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1))
            drop-shadow(0 0 45px rgba(255, 255, 255, 0.9))
            drop-shadow(0 0 70px rgba(255, 255, 255, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 1))
            drop-shadow(0 0 100px rgba(255, 255, 255, 0.95))
            drop-shadow(0 0 140px rgba(255, 255, 255, 0.9));
  }
}

/* Trust Card Section */
.trust-card-wrapper {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.trust-card {
  background-color: #d1fae5;
  border-radius: 18px;
  max-width: 960px;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 10px solid gold; /* 🔥 Thicker gold outline */
}

.trust-card:hover {
  transform: translateY(-4px);
}

.trust-card h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #000000; /* black */
  margin-bottom: 18px;
}
.trust-card p {
  font-size: 1.1rem;
  color: #334155;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.connect-etsy-button {
  display: inline-block;
  background-color: #ec4899;
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 40px;
  transition: background-color 0.3s ease;
}

.connect-etsy-button:hover {
  background-color: #db2777;
}

/* Coming Soon Section */
.coming-soon {
  margin-top: 40px;
}

.coming-soon-box h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 12px;
  transform: translateX(-10px); 
}

.coming-soon p {
  font-size: 1.1rem;
  color: #1e293b;
  opacity: 0.95;
  margin: 0 auto;
  max-width: 640px;
}

/* Footer link color fix */
footer a {
  color: #1e3a8a;
  text-decoration: underline;
}

footer a:visited {
  color: #1e3a8a;
}
/* Mobile Optimization for iPhone 12 and similar */
@media (max-width: 767px) {
  .hero {
    padding: 80px 16px 60px;
  }

  .hero-content {
    transform: none;
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    white-space: normal;
    line-height: 1.3;
    padding: 0 10px;
  }

  .subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .tagline {
    font-size: 1rem;
    padding: 0 12px;
    max-width: 90%;
  }

  .hero-logo {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    width: auto;
    animation: none !important;
    filter: none !important;
  }

  .email-form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .email-form input,
  .email-form button {
    width: 90%;
    max-width: 320px;
  }

  .section-heading {
    font-size: 1.8rem;
    padding: 0 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .feature-box {
    padding: 20px 16px;
  }

  .cta {
    padding: 60px 16px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
    padding: 0 12px;
  }

  .trust-card {
    padding: 40px 20px;
    margin: 0 12px;
  }

  .trust-card h2,
  .coming-soon-box h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .trust-card p,
  .coming-soon p {
    font-size: 1rem;
    padding: 0 12px;
  }

  .connect-etsy-button {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .coming-soon-box {
    padding-top: 30px;
  }

  footer {
    font-size: 0.85rem;
    padding: 20px;
  }
}
