* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f7faff;
  scroll-behavior: smooth;
}


body {
  overflow-x: hidden;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}


.logo-container {
  position: fixed;
  top: 16px;
  left: 36px;
  height: 64px;
  display: flex;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.logo {
  height: 34px;
  width: auto;
}

.logo-container.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero {
  height: 100vh;  /* exactly full viewport height */
  min-height: 100vh; /* just in case */
  display: flex;
  flex-direction: column;  /* stack children vertically */
  justify-content: center; /* center vertically */
  align-items: center;     /* center horizontally */
  text-align: center;
  position: relative;
}

.privacy-note {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  color: #2d2d2d;
  font-size: 14px;
  gap: 6px;
}

.privacy-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(0%) saturate(0%) hue-rotate(181deg) brightness(96%) contrast(94%);
}



body {
  overflow-x: hidden;
}

.what-we-do {
  position: relative; 
  overflow: hidden;   /* Prevent the blob from spilling out */
  z-index: 1;
  font-size: 42px;
  font-weight: bold;
  color: #2d2d2d;
  text-align: center;
}

/* Nav container */
.navbar {
  position: fixed;
  top: 16px;
  right: 16px;
  max-width: 900px;
  height: 64px;
  background: linear-gradient(to right, rgba(253, 253, 255, 0.62), rgba(252, 251, 255, 0.62));
  backdrop-filter: blur(25px);
  border-radius: 14px;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.11);
  display: flex;
  align-items: center;
  padding: 0 14px 0 38px;
  z-index: 999;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.nav-buttons {
  display: flex;
  gap: 42px;                /* Space between nav buttons */
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;    /* Firefox scrollbar hidden */
  height: 64px;
}

/* Hide scrollbar in Webkit browsers */
.nav-buttons::-webkit-scrollbar {
  display: none;
}

.nav-text-button,
.nav-text-button:hover,
.nav-text-button:focus {
  text-decoration: none;
}

/* Nav text buttons */
.nav-text-button {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #4D4D4D;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.2s ease;
}

.nav-text-button:hover {
  color: #7315FF;
}

/* Mobile menu base (hidden by default) */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, rgba(253, 253, 255, 0.62), rgba(252, 251, 255, 0.62));
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 9999;

  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* Prevent clicks when hidden */
}

/* Visible state */
#mobile-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Links inside the menu */
#mobile-menu a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 1rem;
}

#mobile-menu a:hover {
  color: #7315FF;
}

/* Get Started button inside the menu */
#mobile-menu .get-started-button {
  font-size: 1rem;
}

/* Hamburger button */
.hamburger {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Close button inside menu */
#close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

#close-menu:hover svg {
  stroke: #7315FF; /* Add hover effect */
  transform: scale(1.1);
}



.hero-title {
  position: relative;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.hero-subtitle {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
}

/* Shadow layer */
.hero-shadow {
  color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

/* Gradient text layer */
.hero-fill {
  background: linear-gradient(to right, #7315FF, #4891FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.hero-subhead {
  font-weight: 300;
  font-size: 18px;
  line-height: 40px;
  color: #a1a1a1;
  max-width: 800px;
  margin: 0 auto;
  margin-right: 40px;
  margin-left: 40px;
}

/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to hero elements */
.hero-title,
.hero-subhead,
.hero-subtitle {
  opacity: 0; /* Start hidden */
  animation: fadeInUp 1.4s ease-out forwards;
}

.robot-svg {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

.robot-svg.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.monthly-fee {
  color: #666;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}


.hero-title {
  animation-delay: 0.3s;
}

.hero-subtitle {
  animation-delay: 0.4s;
}

.hero-subhead {
  animation-delay: 0.5s;
}

.get-started-button {
  animation-delay: 1.4s;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subhead {
    font-size: 16px;
    line-height: 32px;
  }
}

.animate-on-load {
  opacity: 0;
  animation: fadeInUp 1.6s ease-out forwards;
  animation-play-state: paused;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subhead {
    font-size: 18px;
    line-height: 28px;
  }
}

.hero .get-started-button {
  width: 124px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #7315FF, #5C12CB);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  margin-top: 42px;
}

.get-started-button {
  width: 124px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #7315FF, #5C12CB);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.get-started-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.privacy-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 12px;
  gap: 0.5rem;
  color: #a1a1a1;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* Icon color via filter */
.privacy-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(179deg) brightness(96%) contrast(85%);
}

/* Stack vertically on small screens */
@media (max-width: 640px) {
  .privacy-message {
    flex-direction: column;
  }
}



.hero,
.what-we-do,
.why-use-chatbot,
.pricing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center content */
  align-items: center;     /* horizontally center content if needed */
  padding: 4rem 1rem;       /* optional: ensure spacing on smaller screens */
}


.what-we-do {
  text-align: center; /* center inline elements inside */
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 26px;
  font-weight: bold;
  color: #2d2d2d;
}

.tiles-container {
  display: inline-grid; /* makes container shrink-wrap */
  grid-template-columns: repeat(2, 350px);
  gap: 30px;
  position: relative;
  z-index: 2;
  margin-top: 90px;
  /* no margin needed here */
}


.tile {
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 232px;
  background: linear-gradient(to right, rgba(253, 253, 255, 0.62), rgba(252, 251, 255, 0.62));
  backdrop-filter: blur(100%);
  border-radius: 26px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  z-index: 1;
}


.tile h3 {
  font-size: 18px;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.tile p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #808080;
  position: relative;
  z-index: 2;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: #4D4D4D;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 900px) {
  .navbar {
    width: 56px;
    height: 56px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
  }

  .hamburger {
    display: block;
    padding: 8px;
  }

  .nav-buttons {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 64px;
    right: 0;
    background-color: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.11);
  }

  .nav-buttons.open {
    display: flex;
  }
}


@keyframes floatBlob {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes blobMove {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    transform: translate(-40%, -55%) scale(1.1);
  }
  66% {
    transform: translate(-60%, -45%) scale(0.9);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.tile-blob {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 250px;   /* smaller than tile */
  height: 250px;  /* smaller than tile */
  background: radial-gradient(circle, rgba(219, 203, 245, 0.55), rgba(204, 218, 250, 0.5));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(90px);
  animation: blobMove 2s infinite ease-in-out;
  pointer-events: none;
}

.why-use-chatbot {
  text-align: center; /* center the button inside this section */
}

.why-get-started {
  margin-top: 100px; /* space above the button */
  display: inline-block; /* shrink to button size */
}

/* Container for the two tiles with gap */
.why-use-chatbot .tiles-container {
  display: flex;
  justify-content: flex-start;
  gap: 40px; /* 40px gap between tiles */
  
}

/* Add a wrapper inside each tile */
.tile-content {
  max-width: 360px;   /* or whatever width fits nicely */
  margin: 0 auto;     /* centers the content horizontally */
  text-align: left; 
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px ){
  .tile-content {
  max-width: 360px;   /* or whatever width fits nicely */
  margin: 0 auto;     /* centers the content horizontally */
  text-align: left; 
  padding-left: 20px;
  padding-right: 20px;
}
}


/* Center the section header */
.why-use-chatbot h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2d2d2d;
}

/* Tile content alignment: center the tile, but left-align content */
.why-use-chatbot .tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;  /* center tile content horizontally */
  text-align: left;     /* left-align text inside */
  width: 450px;
  height: 500px;
  background: linear-gradient(to right, rgba(253, 253, 255, 0.62), rgba(252, 251, 255, 0.62));
  backdrop-filter: blur(35px);
  border-radius: 30px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.11);
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;

}

/* Headers inside tiles should be left-aligned, but block-level */
.why-use-chatbot .tile h3 {
  font-family: 'Inter', sans-serif;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 20px;
  text-align: left;
}

/* Bullet list styling */
.why-use-chatbot .tile ul {
  font-family: 'Inter', sans-serif;
  margin-left: 18px;
  color: #808080;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
}

/* Border and glow for right tile */
.why-use-chatbot .tile.with-tuscan-chatbot {
  border: 3px solid #7315ff;
  box-shadow:
    0 4px 28px 4px rgba(115, 21, 255, 0.25),
    2px 2px 7px rgba(0, 0, 0, 0.11);
}

/* Responsive: stack tiles vertically with spacing */
@media (max-width: 768px) {

  .why-use-chatbot h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 80px;
  }

  .why-use-chatbot .tile h3 {
    padding-top: 18px;  
  }

  .why-use-chatbot .tile ul {
    font-size: 14px;
    padding-bottom: 26px;
  }

  .why-use-chatbot .tiles-container {
    flex-direction: column;
    gap: 30px;
  }

  .tiles-container {
    grid-template-columns: 1fr; /* Stack tiles vertically */
    gap: 20px;
    padding: 0 16px;
    justify-items: center;      /* Center tiles horizontally */
    transition: all 0.4s ease;  /* Smooth transition */
  }

  .tile {
    width: 100%;
    max-width: 450px;           /* Keep max size for readability */
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .tile:hover {
    transform: translateY(-4px);
    opacity: 0.95;
  }
  
  .why-use-chatbot .tiles-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;          /* Make container full width */
    max-width: none;      /* Remove any max-width if set */
    margin: 0 auto;       /* Center container horizontally */
  }
  
  .why-use-chatbot .tile {
    width: 100%;        
    max-width: 450px;
    height: auto;
    border-radius: 26px;
  }
}


/* Pricing Section Heading */
.pricing h2 {
  font-size: 36px;
  color: #2d2d2d;
  text-align: center;
}

.pricing .tile h3,
.pricing .price,
.pricing .features-list {
  text-align: left;
  align-self: flex-start;
  width: 100%;
}


/* Container reuse */
.pricing-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
}

/* Pricing Tile Structure using .tile base */
.pricing .tile {
  width: 412px;
  height: 534px;
  padding: 32px;
  background: linear-gradient(to right, rgba(253, 253, 255, 0.62), rgba(252, 251, 255, 0.62));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

/* Price tile heading */
.pricing .tile h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 20px;
  margin-left: 24px;
}

/* Price amount */
.price {
  font-size: 32px;
  font-weight: bold;
  color: #7315FF;
  margin-bottom: 24px;
  margin-left: 24px;
}

/* Features list */
.features-list {
  list-style-type: disc;
  text-align: left;
  margin-bottom: 32px;
  margin-left: 16px;
}

.features-list li {
  font-size: 16px;
  font-weight: 300;
  color: #808080;
  margin-bottom: 12px;
  margin-left: 24px;
  letter-spacing: 0.4px;
  margin-right: 40px;
}

.pricing .tile .get-started-button {
  margin-top: auto;
  margin-bottom: 22px;
}

/* Border and glow for right tile */
.pricing .tile.featured {
  border: 3px solid #7315ff;
  box-shadow:
    0 4px 28px 4px rgba(115, 21, 255, 0.25),
    2px 2px 7px rgba(0, 0, 0, 0.11);
}

/* Pill next to the featured tile title */
.pricing .tile.featured h3 {
  display: flex;
  align-items: center;
  gap: 14px; /* spacing between title and pill */
}

.recommended-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 24px;
  border-radius: 100px;
  background-color: #ede2ff;
  color: #5b0fcd;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 12px; /* optional horizontal padding */
}

.pricing-info-text {
  text-align: center;
  margin-top: 74px; /* spacing above the text */
}

.pricing-info-text p {
  font-size: 16px;
  color: #808080;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.4px;
}

.l1 {
  font-weight: 600;
}

.l2 {
  font-weight: 300;
  margin-top: 10px; /* small space between the two lines */
}

.interest {
  height: 100vh; /* full viewport height */
  display: flex;
  justify-content: center;
  align-items: center; /* vertical center */
  text-align: center;
  padding: 0 20px; /* some horizontal padding */
  box-sizing: border-box;
  background: #f7faff;
  position: relative;

}

.interest-content {
  max-width: 1300px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.blob-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle at center, #a56ff655 0%, #ede2ff00 70%);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  z-index: 0;
}

.interest h2 {
  font-size: 42px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.interest p {
  font-size: 18px;
  font-weight: 300;;
  line-height: 40px;
  color: #7e7e7e;
  margin-bottom: 30px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
  background-color: transparent;
  font-size: 12px;
  color: #7e7e7e;
  gap: 20px;
  text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-link {
  color: #7e7e7e;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #7315FF;
}

.footer-contact-label {
  font-weight: 500;
  margin-bottom: 2px;
}

.footer-contact-email {
  color: #7e7e7e;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-email:hover {
  color: #7315FF;
}

/* Desktop layout */
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-left {
    align-items: flex-start;
  }

  .footer-center {
    align-items: center;
    text-align: center;
    order: 2;
    flex: 1;
  }

  .footer-right {
    align-items: flex-end;
    text-align: right;
    order: 3;
  }
}


/* Container for top row */
.policy-header {
  display: flex;
  align-items: right;
  padding: 40px;
}

/* Title next to button */
.policy-title {
  font-size: 24px;
  color: #2d2d2d;
  font-weight: bold;
  margin-left: 80px;
  margin-top: 2px;
}

.policy-text h2 {
  font-size: 18px;
  margin-right: 80px;
  color: #2d2d2d;
  font-weight: 600;
  margin-left: 120px;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Policy text section */
.policy-text p {
  margin-left: 120px;
  margin-right: 80px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 1.6;
  max-width: 1200px;
  text-align: left;
  line-height: 1.6;

}

.policy-text ul {
  margin-left: 132px;
  margin-bottom: 20px;
  margin-right: 80px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 1.6;
  max-width: 1200px;
  text-align: left;
  line-height: 1.6;
}


.back-button {
  position: absolute;
  top: 40px;
  left: 32px;
  font-size: 14px;
  color: #7e7e7e;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.3s, background-color 0.3s;
  background-color: transparent;
  font-weight: 500;
  border: none;
}

.back-button:hover {
  color: #7315FF;
  background-color: #efecf4;
}


/* Responsive layout */
@media (max-width: 768px) {
  .pricing-tiles {
    flex-direction: column;
    align-items: center;
  }
}


.eye {
  transform-origin: center;
  animation: blink 3s infinite ease-in-out;
}

@keyframes blink {
  0%, 97%, 100% {
    transform: scaleY(1);
  }
  98% {
    transform: scaleY(0.1);
  }
}
