/* -----------------------
   RESET & BASE
------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #f7f9fc;
  color: #0f172a;
  line-height: 1.6;
}

/* -----------------------
   NAVBAR
------------------------ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.navbar nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
}

.navbar a:hover {
  color: #4f46e5;
}

/* -----------------------
   BUTTONS
------------------------ */
.btn {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #2e00fd, #8b6cff);
  color: white;
}

.btn.secondary {
  background: #0f172a;
  color: white;
}

.btn.outline {
  background: transparent;
  border: 1px solid #c7d2fe;
  color: #0d00ff;
}

/* -----------------------
   HERO SECTION
------------------------ */
.waitlist-hero {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8vw;
  gap: 80px;
}

.hero-text {
  max-width: 480px;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #475569;
}

.cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

/* -----------------------
   IDEA → EMAIL FLOW
------------------------ */
.idea-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Business Idea Card */
.idea-card {
  width: 360px;
  padding: 26px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(109, 76, 255, 0.15);
  position: relative;
}

.idea-card h3 {
  margin: 10px 0 6px;
}

.idea-card p {
  font-size: 0.95rem;
  color: #475569;
}

.badge {
  font-size: 12px;
  background: #ede9fe;
  color: #2f00ff;
  padding: 6px 10px;
  border-radius: 999px;
}

/* -----------------------
   FLOATING EMAIL QUEUE
------------------------ */
.queue {
  position: relative;
  width: 360px;
  height: 320px;
  perspective: 1200px;
}

.queue-card {
  position: absolute;
  left: 50%;
  width: 340px;
  height: 64px;
  padding: 14px 18px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}


/* -----------------------
   GENERIC SECTIONS
------------------------ */
.section {
  padding: 100px 8%;
  text-align: center;
}

.section h2 {
  font-size: 2.2rem;
}

.section p {
  margin-top: 10px;
  color: #475569;
}

.muted {
  background: #eef2f7;
}

/* -----------------------
   GRID CARDS
------------------------ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* -----------------------
   INTEGRATIONS
------------------------ */
.integration-flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.integration-flow span {
  padding: 14px 24px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

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

.chart {
  background: white;
  padding: 80px;
  border-radius: 16px;
}

/* -----------------------
   PRICING
------------------------ */
.pricing {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.price-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 300px;
}

.price-card ul {
  margin: 20px 0;
  text-align: left;
}

.featured {
  border: 2px solid #2e00fb;
}

/* -----------------------
   FAQ
------------------------ */
.faq details {
  background: white;
  padding: 20px;
  margin: 12px auto;
  max-width: 700px;
  border-radius: 12px;
}

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

/* -----------------------
   CTA FOOTER HERO
------------------------ */
.hero {
  padding: 120px 20px;
  text-align: center;
}

.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -----------------------
   FOOTER
------------------------ */
footer {
  text-align: center;
  padding: 40px;
  color: #64748b;
}

/* -----------------------
   MOBILE
------------------------ */
@media (max-width: 900px) {
  .waitlist-hero {
    flex-direction: column;
    text-align: center;
  }
}

/* -----------------------
   BUSINESS IDEA LABEL
------------------------ */
.idea-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #4f46e5;
  font-size: 1.05rem;
  animation: floatIdea 3s ease-in-out infinite;
}

.idea-dot {
  width: 10px;
  height: 10px;
  background: #2e01f6;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(109,76,255,0.6);
  animation: pulseDot 2s infinite;
}

.idea-text {
  background: linear-gradient(135deg, #6d4cff, #8b6cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating motion */
@keyframes floatIdea {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Dot pulse */
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(109,76,255,0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(109,76,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(109,76,255,0);
  }
}
/* -----------------------
   BUSINESS IDEA BULB
------------------------ */
.idea-bulb {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulb-img {
  width: 120px;
  z-index: 2;
  animation: bulbFloat 3s ease-in-out infinite;
}

.idea-text {
  position: absolute;
  bottom: -32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #4f46e5;
}

/* Floating bulb */
@keyframes bulbFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* -----------------------
   GLOWING RAYS
------------------------ */
.rays {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(109,76,255,0.5) 0deg 4deg,
      transparent 4deg 14deg
    );
  animation: spinRays 12s linear infinite,
             pulseRays 2.5s ease-in-out infinite;
  z-index: 1;
  opacity: 0.4;
}

@keyframes spinRays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseRays {
  0% { opacity: 0.25; }
  50% { opacity: 0.55; }
  100% { opacity: 0.25; }
}

.queue {
  position: relative;
  width: 360px;
  height: 340px;
}


/* -----------------------
   BULB ZOOM IN / OUT
------------------------ */
.rays {
  display: none !important;
}

.bulb-img {
  width: 120px;
  z-index: 2;
  transform-origin: center;
  animation: bulbZoom 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Stronger, obvious zoom */
@keyframes bulbZoom {
  0% {
    transform: scale(0.9);
  }
  40% {
    transform: scale(1.15);
  }
  55% {
    transform: scale(1.18);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes bulbZoom {
  0% {
    transform: scale(0.9);
    filter: drop-shadow(0 0 0 rgba(109,76,255,0));
  }
  50% {
    transform: scale(1.18);
    filter: drop-shadow(0 0 30px rgba(109,76,255,0.45));
  }
  100% {
    transform: scale(0.9);
    filter: drop-shadow(0 0 0 rgba(109,76,255,0));
  }
}
.bulb-img {
  width: 120px;
  z-index: 2;
  transform-origin: center;
  animation: bulbZoomBig 3s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

/* VERY NOTICEABLE ZOOM */
@keyframes bulbZoomBig {
  0% {
    transform: scale(2.35);
    filter: drop-shadow(0 0 0 rgba(109,76,255,0));
  }

  35% {
    transform: scale(2.70);
    filter: drop-shadow(0 0 35px rgba(109,76,255,0.45));
  }

  50% {
    transform: scale(3.0);
    filter: drop-shadow(0 0 55px rgba(109,76,255,0.6));
  }

  70% {
    transform: scale(2.70);
    filter: drop-shadow(0 0 30px rgba(109,76,255,0.35));
  }

  100% {
    transform: scale(2.35);
    filter: drop-shadow(0 0 0 rgba(109,76,255,0));
  }
}
/* -----------------------
   HAMBURGER MENU
------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
}

/* -----------------------
   MOBILE NAV
------------------------ */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    right: 8%;
    background: white;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .navbar nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}
.section-subtext {
  margin-top: 12px;
  color: #475569;
  font-size: 1rem;
}

/* Marquee wrapper */
.integration-wrapper {
  overflow: hidden;
  margin-top: 50px;
}

/* Moving row */
.integration-flow {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollIntegrations 22s linear infinite;
}

/* Logo + name pill */
.integration-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  white-space: nowrap;
  font-weight: 500;
}

.integration-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Animation */
@keyframes scrollIntegrations {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Optional polish */
.integration-flow:hover {
  animation-play-state: paused;
}
/* -----------------------
   BRAND (LOGO + TEXT)
------------------------ */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
}

/* -----------------------
   MOBILE BEHAVIOR
------------------------ */
@media (max-width: 900px) {
  .brand-text {
    display: none;
  }
}
/* -----------------------
   HOW IT WORKS
------------------------ */
.how-it-works {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-step {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-number {
  display: inline-block;
  font-weight: 700;
  color: #6d4cff;
  margin-bottom: 8px;
}

.how-step h3 {
  margin-bottom: 8px;
}

.how-step p {
  color: #475569;
}

/* VIDEO */
.how-video {
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.how-video video,
.how-video iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .how-it-works {
    grid-template-columns: 1fr;
  }

  .how-video video,
  .how-video iframe {
    min-height: 240px;
  }
}
/* -----------------------
   TESTIMONIALS (TRUST)
------------------------ */
.testimonials {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.quote {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.6;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d4cff, #8b6cff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author span {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
}
