/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #fff4e6, #ffe1cc);
  color: #111;
}

/* Hero Wrapper */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

/* Background blobs */
.background-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.3;
  animation: float 25s ease-in-out infinite alternate;
  pointer-events: none; /* Fix for mobile */
}
.blob1 { width: 400px; height: 400px; background: #ff7b00; top: 5%; left: 5%; }
.blob2 { width: 350px; height: 350px; background: #ff9f1c; bottom: 10%; right: 10%; }
.blob3 { width: 500px; height: 500px; background: #ff6f61; top: 40%; left: 30%; }
@keyframes float {
  0% { transform: translate(0,0); }
  50% { transform: translate(30px, 50px); }
  100% { transform: translate(0,0); }
}

/* Container */
.hero-container {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Left Section */
.hero-left {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(to bottom right, #fff8f2, #ffeede);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logo-title {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.logo { width: 60px; }

.hero-left h2 { font-size: 2.5rem; line-height: 1.2; }
.highlight { color: #ff7b00; }

.features-list { list-style: none; margin-top: 1rem; }
.features-list li { margin: 0.5rem 0; }

.small-note { font-size: 0.85rem; color: #555; margin-top: auto; }

/* Right Section */
.hero-right {
  flex: 1;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #fff3eb);
}

.right-inner {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pre-heading { color: #ff6f61; font-weight: 600; }
.hero-right h3 { font-size: 2rem; font-weight: 700; line-height: 1.3; }

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.signup-form input,
.signup-form button {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  outline: none;
}

.signup-form button {
  border: none;
  background: #ff7b00;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.signup-form button:hover { background: #e66900; }

.message { min-height: 1.25rem; font-size: 0.9rem; margin-top: 0.5rem; }

.extra-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  margin-top: 1rem;
  align-items: center;
}

.badge { background: #ffe5cc; padding: 0.25rem 0.75rem; border-radius: 9999px; }

.footer-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  font-size: 0.75rem;
}

.footer-links a { text-decoration: underline; color: #555; }

/* Bottom Badge */
.bottom-badge {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container { flex-direction: column; }
  .hero-left, .hero-right { padding: 2rem; }
  .signup-form input, .signup-form button { width: 100%; }
}
