

html, body {
    margin: 0;
    padding: 0;
    background: #f8f8fb;
    color: #25222e;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

    box-sizing: border-box;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main{
  padding-left:10px;
  padding-right:10px;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
    background: #fff;
    border-bottom: 1px solid #eee;
    min-height: 58px;
    font-family: inherit;
    position: sticky;
    top: 0;
    z-index: 99;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-svg { height: 36px; width: 36px; display: inline-block; vertical-align: middle; }
.nav-brand { font-size: 1.19em; font-weight: 700; color: #a21caf; letter-spacing: -0.5px; }
.nav-links { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.nav-links a { color: #443059; text-decoration: none; font-weight: 500; padding: 7px 18px; border-radius: 22px; transition: background 0.13s, color 0.13s; }
.nav-links a:hover, .nav-links a:focus { background: #f6ecfb; color: #a21caf; }
.nav-toggle, .nav-toggle-label { display: none; }

.chat-hero-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 50vh;
    padding-top: 32px;
}
.hero-logo-svg {
    height: 58px;
    width: 58px;
    margin-bottom: 12px;
    display: block;
}
.hero-title {
    font-size: 1.52rem;
    font-weight: 700;
    color: #a21caf;
    margin-bottom: 6px;
    letter-spacing: -.5px;
    text-align: center;
}
.hero-desc {
    color: #4e4364;
    font-size: 1.13rem;
    margin-bottom: 50px;
    text-align: center;
    max-width: 420px;
}
 
#chat-container {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 1px 12px #e7e7e844;

    padding: 18px 13px 14px 13px;

    margin: 0 auto 25px auto;

    min-height: 120px;
    display: flex;
    flex-direction: column;
    
    gap: 10px;

    box-sizing: border-box;
}

#messages {
    font-size: 1.10rem;
    line-height: 1.55;
    min-height: 40px;
    margin-bottom: 6px;
}

#user-input {
  flex: 1;
  border-radius: 9px;
  border: 1px solid #ded9ea;
  font-size: 1.05em;
  padding: 11px 12px;
  background: #faf7ff;
  color: #4d4458;
  resize: none;
  transition: border 0.13s;
  min-height: 40px;
}
#user-input:focus {
    border: 1.3px solid #a21caf;
    outline: none;
    background: #fff;
}


.disclaimer {
    color: #8d8497;
    font-size: 0.8em;
    margin-top: 9px;
    text-align: center;   
}
.info-section {
    max-width: 430px;
    margin: 38px auto 0 auto;
    /* padding: 0 3vw; */
}
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 6px 0;
    justify-content: center;
}
.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f4eafd;
    border-radius: 9px;
    padding: 10px 13px;
    font-size: 1.01em;
    color: #492454;
    min-width: 130px;
}
.feature-icon { font-size: 1.2em; color: #a21caf; }



/*
.faq-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: #f8f8fb;
    border-radius: 8px;
    padding: 9px 10px;
    color: #3a3350;
}
.faq-item strong { color: #a21caf; font-size: 1em; display:block;}
.faq-item p { margin: 0; color: #4a4459; font-size: 1em;}

.faq-item > strong {
  display: block;
  margin-bottom: 0.3em;  
}

.faq-item p,
.faq-item ul {
  margin-top: 0 !important;
}

.faq-item ul {
  margin-bottom: 0.7em;  
  padding-left: 1.4em;  
}

*/



.faq-list .faq-item > strong {
  display: block;
  margin-top: 1.1em;
  margin-bottom: 0.49em;
  font-size: 1.15em;
  font-weight: 600;
  color: #7b257c;
  text-align: left;
  letter-spacing: -0.2px;
}
.faq-list .faq-item > strong:first-child {
  margin-top: 0.6em;
}
.faq-list .faq-item {
  background: #f8f8fb;
  border-radius: 8px;
  padding: 13px 16px;
  margin-bottom: 13px;
  color: #3a3350;
  border: 1px solid #f4eafd;
  box-sizing: border-box;
}
.faq-list .faq-item:last-child {
  margin-bottom: 0;
}
.faq-list .faq-item ul, .faq-list .faq-item p {
  margin-top: 0;
  margin-bottom: 0;
}
.faq-list .faq-item ul {
  padding-left: 1.15em;
  margin-top: 0.14em;
}
/* Special styling for the last note */
.faq-list .faq-item.special-note {
  background: #f9f6fb;
  border: 1.2px solid #ecd6f4;
  color: #8a5199;
  font-size: 0.99em;
  margin-top: 22px;
  text-align: left;
}


footer {
    text-align: center;
    color: #a093bb;
    padding: 22px 8px 14px 8px;
    font-size: 1em;
    background: none;
    margin-top: 36px;
}



.footer-link {
    background: none;
    border: none;
    color: #a21caf;
    text-decoration: underline dotted;
    cursor: pointer;
    font-size: 1em;
    margin: 8px 0 0 0;
    padding: 0;
}





#messages {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto 18px auto;
  width: 100%;
  max-width: 440px;
  min-height: 120px;
  padding: 4px 0;
}

.msg {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.msg.ai {
  justify-content: flex-start;
}

.msg.user {
  justify-content: flex-end;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: transparent;
  border: none;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}

.bubble {
  position: relative;
  z-index: 1;
  background: #f4eafd;
  color: #492454;
  border-radius: 16px;
  padding: 12px 16px;
  max-width: 78vw;
  word-break: break-word;
  box-shadow: 0 2px 12px #d8b8eb15;
  font-size: 1.05em;

}

.bubble-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 70px;
}

.msg.user .bubble {
  background: #fff;
  color: #5a416e;
  border: 1.2px solid #ecd6f4;
  margin-left: 32px;
}
.msg.ai .bubble {
  margin-right: 32px;
  padding-bottom: 32px; /* adjust as needed for button height + gap */
}








#chat-form {
  display: flex;
  align-items: flex-end;   /* Anchor children to the bottom */
  gap: 8px;
  margin-top: 0;
  position: relative;
}
.send-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #a21caf;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  box-shadow: 0 2px 8px #a21caf1a;
  cursor: pointer;
  padding: 0;
}

.send-btn:focus,
.send-btn:hover {
  background: #851b8a;
}

.send-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}












.copy-btn {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 2;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.13s;
  margin-left: 6px;
  margin-top: 2px;
  box-shadow: none;
}

.copy-btn:hover {
  opacity: 1;
  transform: scale(1.12);
}
.copy-icon {
  vertical-align: middle;
  transition: filter 0.16s;
  filter: drop-shadow(0 1px 2px #18121b44);
}
.copy-btn.copied .copy-icon {
  filter: drop-shadow(0 0 5px #e3adc9) brightness(1.7);
}








.ai-typing-indicator {
  display: flex;
  align-items: center;
  color: #a21caf;    /* Strong purple text */
  font-size: 1.03em;
  margin-left: 36px;
  opacity: 0.96;
  letter-spacing: .6px;
  gap: 8px;
}

.typing-dots {
  display: inline-block;
  min-width: 16px;
  margin-left: 2px;
}

.typing-dots span {
  display: inline-block;
  font-weight: 700;
  font-size: 1.23em;
  opacity: 0.38;
  color: #a21caf;        /* Strong purple */
  text-shadow: 0 1px 2px #fff, 0 0 4px #e3adc9;
  animation: blink 1.1s infinite;
  margin-right: 1.5px;
}

.typing-dots span:nth-child(2) { animation-delay: .16s; }
.typing-dots span:nth-child(3) { animation-delay: .33s; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.38; }
  40% { opacity: 1; }
}




.usecases-section {
  margin-top: 28px;
}

.usecases-title {
  text-align: center;
  font-weight: 600;
  color: #a21caf;
  margin-bottom: 8px;
  font-size: 1.09em;
  letter-spacing: -0.2px;
}

.usecase-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 8px;
  justify-content: center;
}

.usecase-bubble {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8f0fc;
  color: #7c468f;
  border: 1px solid #e6c5f6;
  border-radius: 18px;
  font-size: 0.99em;
  font-weight: 500;
  padding: 6px 15px 6px 9px;
  cursor: pointer;
  box-shadow: 0 1px 7px #e9cdf61a;
  transition: background 0.13s, color 0.13s, border 0.13s;
  outline: none;
  margin-bottom: 2px;
  white-space: nowrap;
}
.usecase-bubble:hover, .usecase-bubble:focus {
  background: #f1d7f9;
  border-color: #b568bb;
  color: #a21caf;
}
.usecase-emoji {
  font-size: 1.15em;
  margin-right: 2px;
}






.age-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(44, 13, 56, 0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-modal-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px #a21caf25;
  padding: 34px 24px 22px 24px;
  max-width: 96vw;
  width: 340px;
  text-align: center;
  color: #3a3350;
}
.age-modal-box h2 {
  color: #a21caf;
  margin-bottom: 10px;
  font-size: 1.27em;
}
.age-modal-box p {
  margin-bottom: 20px;
  color: #4e4364;
  font-size: 1.07em;
}
.age-modal-box button {
  margin: 0 9px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.06em;
  border: none;
  cursor: pointer;
  background: #f4eafd;
  color: #a21caf;
  transition: background 0.13s, color 0.13s;
}
#age-yes {
  background: #a21caf;
  color: #fff;
}
#age-yes:hover, #age-no:hover {
  background: #e3adc9;
  color: #fff;
}








/* Modal background */
.modal-bg {
  background: rgba(36, 14, 37, 0.42);
  position: fixed;
  z-index: 2222;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #fff;
  color: #492454;         /* Match your main text color */
  border-radius: 15px;
  padding: 34px 28px 22px 28px;
  max-width: 370px;
  min-width: 250px;
  box-shadow: 0 6px 38px #7e58a11a;
  position: relative;
  font-family: inherit;
  font-size: 1.06em;
}

.modal-box h2 {
  color: #a21caf;
  margin-top: 0;
  text-align: center;
}

.modal-box a,
#legal-content a {
  color: #a21caf;                 /* Your brand color */
  text-decoration: underline dotted;
  font-weight: 500;
  transition: color 0.18s;
}
.modal-box a:hover,
#legal-content a:hover {
  color: #e3adc9;
  text-decoration: underline;
}

.modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  color: #a093bb;
  font-size: 1.7em;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.modal-close:hover {
  color: #a21caf;
}






/* For the headline/title on legal page */
.legal-hero-title, .legal-main-title, .legal-headline, .legal-header, h1.legal-title {
  margin-bottom: 0.55em !important;
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
  color: #a21caf;
}

/* For the first section/subsection title */
.legal-section-title, .faq-list .faq-item strong {
  margin-top: 0.55em !important;
  margin-bottom: 0.33em !important;
  font-size: 1.18em;
  font-weight: 600;
  color: #7b257c;
}

/* Remove top margin from the first FAQ or info block, so it sticks to the main title */
.legal-main-content > .faq-list:first-child, 
.legal-main-content > .info-section:first-child {
  margin-top: 0 !important;
}


.nav-link-disabled {
  position: relative;
  color: #b174c6 !important;
  background: none !important; /* No background */
  opacity: 0.82;
  cursor: not-allowed;
  border-radius: 0;
  text-decoration: underline dotted;
  outline: none;
}

.nav-link-disabled::after {
  content: "⏳ Soon";
  position: absolute;
  left: 50%;
  top: 150%; /* BELOW the link */
  transform: translateX(-50%);
  font-size: 0.8em;
  color: #a21caf;
  background: none;          /* No background! */
  padding: 0;
  border-radius: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.16s;
  white-space: nowrap;
  box-shadow: none;
  z-index: 15;
}

.nav-link-disabled:hover::after,
.nav-link-disabled:focus::after {
  opacity: 1;
}






.content-main-title {
  margin-top: 36px;
  margin-bottom: 0.56em;
  font-size: 1.63em;
  font-weight: 700;
  text-align: center;
  color: #a21caf;
  letter-spacing: -0.5px;
}
.content-main-desc {
  font-size: 1.08rem;
  color: #4e4364;
  text-align: center;
  margin-bottom: 1.8em;
  margin-top: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  /* From 700px */
  .nav-link-disabled::after {
    top: auto;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.94em;
  }

  /* From 650px */
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100vw;
    background: #fff;
    position: absolute;
    top: 56px;
    left: 0;
    display: none;
    border-top: 1px solid #eee;
    box-shadow: 0 3px 24px #c7b8de24;
    z-index: 99;
  }
  .nav-links li { border-bottom: 1px solid #f4eafd; }
  .nav-links a { display: block; padding: 14px 22px; font-size: 1.05em; }
  .nav-toggle:checked + .nav-toggle-label + .nav-links { display: flex; }
  .nav-toggle-label {
    display: block;
    font-size: 2em;
    color: #a21caf;
    cursor: pointer;
    margin-left: auto;
    user-select: none;
    padding: 0 12px;
  }

  /* From 600px */
  .content-main-title { font-size: 1.15em; }
  .content-main-desc { font-size: 1em; }
  .faq-list .faq-item { padding: 10px 7px; }
  .bubble { max-width: 95vw; padding: 10px 11px; }
  .chat-avatar { width: 24px; height: 24px; }

  /* From 500px */
  .usecase-bubbles { gap: 6px 4px; }
  .usecase-bubble { font-size: 0.97em; padding: 5px 10px 5px 8px; }

}

