/* V3 design: WhatsApp-style prelander. Dark app backdrop, light chat cards,
   WhatsApp green accents and call-to-action. Loaded last on every page, after
   style.css / site.css and home-polish.css or pages.css. Interactions for
   the homepage (quiz, counters, steps) live in js/v3.js. */
:root {
  --v3-bg: #0b141a;
  --v3-bg2: #111b21;
  --v3-card: #f7f5f1;
  --v3-white: #fff;
  --v3-ink: #111b21;
  --v3-muted: #54656f;
  --v3-line: #e0dbd3;
  --v3-accent: #00a884;
  --v3-accent-dark: #008069;
  --v3-gold: #3ee07f;
  --v3-gold-dark: #1faa59;
  --v3-cream-text: #e9edef;
  --v3-link: #0b57d0;
}
body {
  background: var(--v3-bg);
  color: var(--v3-ink);
  font-family: "Montserrat", Arial, sans-serif;
}

/* ---------- Header: pinned, so GET STARTED is always one tap away ---------- */
.navbar.bg-black {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgb(11 20 26 / 94%) !important;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  box-shadow: 0 6px 20px rgb(0 0 0 / 35%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.main-nav .nav-item .nav-link {
  color: var(--v3-cream-text);
  font-size: 16px;
  font-weight: 700;
}
.main-nav .nav-item .nav-link::after {
  background: var(--v3-gold) !important;
}
.main-nav .nav-item .nav-link.nav-cta,
.main-nav .nav-item .nav-link.nav-cta:hover {
  background: linear-gradient(var(--v3-gold), var(--v3-gold-dark));
  border-radius: 999px;
  color: var(--v3-ink);
  font-weight: 800;
  box-shadow: 0 4px 14px rgb(62 224 127 / 35%);
}
@media (max-width: 992px) {
  .mobileMenu {
    background: var(--v3-bg);
  }
  .main-nav .nav-item .nav-link {
    border-bottom-color: rgb(255 255 255 / 12%);
  }
  .main-nav .nav-item .nav-link.active {
    color: var(--v3-gold);
  }
}

/* ---------- Buttons: gold pill with a light sweep ---------- */
.btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(var(--v3-gold), var(--v3-gold-dark)) !important;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 6px 0 #0d7a3e, 0 12px 24px rgb(0 0 0 / 30%);
  color: var(--v3-ink) !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgb(255 255 255 / 55%), transparent);
  transform: skewX(-20deg);
  animation: v3-sweep 3.2s ease-in-out infinite;
}
.btn:hover {
  background: linear-gradient(#6cf09c, var(--v3-gold)) !important;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #0d7a3e, 0 6px 12px rgb(0 0 0 / 30%);
}
@keyframes v3-sweep {
  0%, 55% { left: -60%; }
  100% { left: 130%; }
}
.btn:focus-visible,
.banner-btn-grp button:focus-visible,
.faq-item summary:focus-visible,
.chat-out:focus-visible,
.quiz-step:focus-visible {
  outline: 3px solid #7cc4ff;
  outline-offset: 4px;
}

/* ---------- First screen: collage + quiz form ---------- */
.v3-first {
  padding: 26px 0 44px;
  background: var(--v3-bg);
  /* The zooming collage must not spill past the section edge. */
  overflow: hidden;
}
.v3-first .hookup-bg {
  z-index: -2;
  opacity: 1;
  animation: v3-zoom 24s ease-in-out infinite alternate;
}
@keyframes v3-zoom {
  to { transform: scale(1.12); }
}
.v3-first::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center 40%, rgb(11 20 26 / 35%), rgb(11 20 26 / 92%) 75%),
    linear-gradient(rgb(11 20 26 / 30%), rgb(11 20 26 / 90%));
}
.v3-first .hookup-content h1 {
  margin: 0;
  color: var(--v3-gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgb(0 0 0 / 70%);
}
.v3-first .hookup-form {
  margin-top: 18px;
}
@media (min-width: 992px) {
  .v3-first {
    padding: 44px 0 72px;
  }
  .v3-first .hookup-content h1 {
    font-size: 17px;
  }
}

.hookup-form .banner-form-center {
  max-width: 580px;
  border: 0;
  border-radius: 24px;
  background: var(--v3-card);
  box-shadow: 0 24px 60px rgb(0 0 0 / 60%), 0 0 0 6px rgb(255 255 255 / 8%);
  overflow: hidden;
}
.hookup-form .banner-form-heading {
  justify-content: center;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-dark));
  border-radius: 0;
  text-align: left;
}
.form-avatar {
  position: relative;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 60%);
}
/* Green "online" dot on the avatar. */
.form-avatar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #25d366;
}
.hookup-form .banner-form-heading h2 {
  font-size: 24px;
  font-weight: 900;
}
.hookup-form .banner-form-heading p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.hookup-form .form-item-wrp,
.form-chat .form-item-wrp {
  padding: 22px 20px 26px;
  background: var(--v3-card);
  background-image: none;
  border-radius: 0;
}
.form-chat .banner-form-item:not(:last-child) {
  margin-bottom: 22px;
}
.form-chat .banner-form-item label {
  display: block;
  margin: 0 0 14px;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--v3-ink);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  text-transform: none;
}
.form-chat .banner-form-item label::before {
  content: none;
}
.form-chat .banner-btn-grp button {
  min-height: 58px;
  border: 2px solid var(--v3-line);
  border-radius: 14px;
  background: var(--v3-white);
  color: var(--v3-ink);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 3px 0 var(--v3-line);
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.form-chat .banner-btn-grp button:hover {
  border-color: var(--v3-accent);
  background: #e7fbe9;
  color: var(--v3-ink);
  transform: translateY(-2px);
}
.form-chat .banner-btn-grp button.active {
  border-color: var(--v3-accent-dark);
  background: var(--v3-accent);
  color: #fff;
  box-shadow: 0 3px 0 var(--v3-accent-dark);
  animation: v3-pop 0.25s ease;
}
.form-chat .banner-btn-grp button.active::before {
  color: #fff;
}
@keyframes v3-pop {
  50% { transform: scale(1.06); }
}
.hookup-form .banner-btn {
  padding-top: 26px;
}
.hookup-form .btn-small {
  max-width: none;
  min-height: 66px;
  font-size: 22px;
}
@media (max-width: 575px) {
  .hookup-form .pref-toggle button {
    font-size: 17px;
  }
}

/* Quiz mode (added by js/v3.js): one question at a time with a progress bar.
   Without JS every question stays visible. */
.quiz-progress {
  display: flex;
  gap: 6px;
  margin: 0 0 20px;
}
.quiz-step {
  flex: 1;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--v3-line);
  cursor: default;
  transition: background 0.3s ease;
}
.quiz-step.is-done {
  background: var(--v3-accent);
  cursor: pointer;
}
.quiz-step.is-current {
  background: linear-gradient(90deg, var(--v3-accent) 50%, var(--v3-line) 50%);
}
.is-quiz .banner-form-item {
  display: none;
}
.is-quiz .banner-form-item.is-current {
  display: block;
  margin-bottom: 0;
  animation: v3-slide 0.35s ease;
}
.is-quiz .banner-btn {
  display: none;
}
.is-quiz.is-finished .banner-btn {
  display: block;
  padding-top: 8px;
  animation: v3-slide 0.35s ease;
}
.is-quiz.is-finished .btn-small {
  animation: v3-pulse 1.6s ease-in-out infinite;
}
@keyframes v3-slide {
  from { opacity: 0; transform: translateX(30px); }
}
@keyframes v3-pulse {
  50% { transform: scale(1.04); }
}

/* ---------- Members right now: notification cards ---------- */
.activities-chat {
  background: var(--v3-bg2);
  background-image: radial-gradient(rgb(255 255 255 / 5%) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  padding: 34px 0 40px;
}
.activities-chat-thread {
  align-items: stretch;
  gap: 12px;
  font-family: "Montserrat", Arial, sans-serif;
}
.chat-pill.chat-date {
  margin-bottom: 4px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  color: var(--v3-cream-text);
  font-size: 14px;
  box-shadow: none;
}
.chat-bubble {
  max-width: none;
  padding: 16px 18px 16px 70px;
  border: 0;
  border-radius: 18px;
  background: var(--v3-card);
  color: var(--v3-ink);
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}
/* App-icon square on each card (the site icon, no new images). */
.chat-bubble.chat-in::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 12px;
  background: var(--v3-accent) url("../images/2625.webp") center / 24px no-repeat;
}
.chat-in.chat-first {
  border-top-left-radius: 18px;
}
.chat-in.chat-first::before,
.chat-out.chat-first::before {
  content: none;
}
.chat-bubble strong {
  color: var(--v3-accent);
  font-variant-numeric: tabular-nums;
  font-size: 1.4em;
  font-weight: 900;
}
.chat-online::before {
  position: absolute;
  left: 46px;
  top: 50%;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin: 4px 0 0;
  border: 2px solid var(--v3-card);
  background: #25d366;
  animation: v3-blink 1.4s ease-in-out infinite;
}
@keyframes v3-blink {
  50% { opacity: 0.35; }
}
.chat-out,
.chat-out:hover {
  align-self: stretch;
  justify-content: center;
  margin-top: 14px;
  padding: 18px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(var(--v3-gold), var(--v3-gold-dark));
  box-shadow: 0 6px 0 #0d7a3e, 0 12px 24px rgb(0 0 0 / 30%);
  color: var(--v3-ink);
  font-size: 21px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.chat-out:hover {
  background: linear-gradient(#6cf09c, var(--v3-gold));
  color: var(--v3-ink);
}
.chat-out.chat-first {
  border-top-right-radius: 999px;
}
.chat-ticks {
  color: var(--v3-ink);
}
.chat-pill.chat-notice {
  margin-top: 6px;
  padding: 0;
  background: none;
  box-shadow: none;
  color: rgb(233 237 239 / 70%);
  font-size: 15px;
}
.activities-chat-thread.is-waiting > * {
  transform: translateX(40px);
}
@media (min-width: 992px) {
  .chat-bubble {
    font-size: 22px;
  }
}

/* ---------- About: intro text next to the floating phones ---------- */
.v3-about {
  background: var(--v3-bg);
  padding: 44px 0 48px;
}
.v3-about-container {
  display: grid;
  gap: 30px;
  align-items: center;
  max-width: 1080px;
  padding-inline: 16px;
}
.v3-about-text {
  text-align: center;
}
.v3-about-text a {
  margin-bottom: 18px;
  border-bottom: 4px solid var(--v3-accent);
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}
.v3-about-text a:hover {
  color: var(--v3-gold);
}
.v3-about-text p,
.v3-about-text p:first-of-type {
  margin: 0 auto 14px;
  max-width: 640px;
  color: var(--v3-cream-text);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
}
.v3-about-text p:first-of-type {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}
.v3-about .phone-hero {
  padding: 0;
  gap: 22px;
  background: radial-gradient(circle at center 40%, rgb(0 168 132 / 35%), transparent 65%);
  animation: none;
  overflow: visible;
}
.v3-about .phone-hero img {
  height: 380px;
  animation: v3-float 5s ease-in-out infinite;
}
@keyframes v3-float {
  50% { transform: translateY(-12px); }
}
.phone-hero-btn {
  max-width: 320px;
  min-height: 62px;
  font-size: 21px;
}
@media (min-width: 900px) {
  .v3-about {
    padding: 72px 0;
  }
  .v3-about-container {
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
  }
  .v3-about-text,
  .v3-about-text p,
  .v3-about-text p:first-of-type {
    margin-left: 0;
    text-align: left;
  }
  .v3-about-text a {
    font-size: 46px;
  }
  .v3-about .phone-hero img {
    height: 440px;
  }
}
@media (max-width: 600px) {
  .v3-about .phone-hero img {
    width: 230px;
    height: auto;
  }
}

/* ---------- How it works: steps light up one by one (js/v3.js adds is-on) ---------- */
.how-work-ticks {
  background: var(--v3-card);
  background-image: none;
  color: var(--v3-ink);
}
.how-work-ticks h2 {
  font-weight: 900;
}
.tick-intro {
  color: var(--v3-muted);
  font-size: 20px;
}
.tick-row::before {
  background: var(--v3-line);
}
.tick-step img {
  box-shadow: 0 0 0 6px var(--v3-card);
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.tick-status,
.tick-read .tick-status {
  background: var(--v3-line);
  color: var(--v3-muted);
  transition: background 0.5s ease, color 0.5s ease;
}
.tick-step.is-on img {
  filter: none;
  transform: scale(1.05);
}
.tick-step.is-on .tick-status {
  background: var(--v3-accent);
  color: #fff;
}
.tick-step h3 {
  font-size: 23px;
  font-weight: 900;
}
.tick-body > p:last-child {
  color: var(--v3-muted);
  font-size: 19px;
}
.how-work-ticks .register-btn {
  max-width: 460px;
  min-height: 70px;
  font-size: 23px;
}
@media (min-width: 900px) {
  .tick-step img {
    box-shadow: 0 0 0 10px var(--v3-card);
  }
  .tick-body > p:last-child {
    font-size: 20px;
  }
}

/* ---------- FAQ ---------- */
.faq-wrp {
  background: var(--v3-white);
  color: var(--v3-ink);
}
.faq-wrp h2 {
  font-weight: 900;
}
.faq-intro {
  color: var(--v3-muted);
  font-size: 19px;
}
.faq-item {
  border: 2px solid var(--v3-line);
  border-radius: 16px;
  background: var(--v3-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: var(--v3-accent);
  background: var(--v3-white);
  box-shadow: 0 8px 24px rgb(0 168 132 / 12%);
}
.faq-item summary::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--v3-accent);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.faq-item h3 {
  color: var(--v3-ink);
  font-size: 21px;
}
.faq-item p {
  color: var(--v3-muted);
  font-size: 19px;
}
.faq-item a {
  color: var(--v3-link);
}

/* ---------- Footer ---------- */
.footer-wrp {
  background: #070d11;
  border-top: 3px solid var(--v3-accent);
}
.footer-right-content .footer-menu li a {
  color: var(--v3-cream-text);
  font-size: 16px;
}
.footer-right-content .footer-menu li a:hover,
.footer-right-content p a {
  color: var(--v3-gold);
}
.footer-right-content p {
  color: rgb(233 237 239 / 60%);
}

/* ---------- Inner pages (join, contact, DMCA, 2257) ---------- */
.page-wrap,
.join-wrap.page-wrap {
  background-color: var(--v3-bg);
  background-image:
    radial-gradient(ellipse at center 40%, rgb(11 20 26 / 55%), rgb(11 20 26 / 94%) 75%),
    url("../images/girls-collage-1320x1170.webp");
}
.page-card,
.contact-wrap form.page-card {
  border: 0;
  border-radius: 24px;
  background: var(--v3-card);
  box-shadow: 0 24px 60px rgb(0 0 0 / 60%), 0 0 0 6px rgb(255 255 255 / 8%);
}
.page-heading {
  justify-content: center;
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-dark));
}
.page-heading h1 {
  font-weight: 900;
}
.page-heading p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.page-body,
.legal-body {
  background: var(--v3-card);
  color: var(--v3-muted);
}
.legal-body {
  font-size: 19px;
}
.legal-body h2,
.legal-body strong {
  color: var(--v3-ink);
}
.legal-body h2 {
  font-weight: 900;
}
.legal-body a {
  color: var(--v3-link);
}
.join-wrap.page-wrap .join-content h1 {
  color: var(--v3-gold);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.join-wrap.page-wrap .join-content .site-link {
  border-bottom: 4px solid var(--v3-accent);
  color: #fff;
  font-weight: 900;
}
.join-wrap.page-wrap .join-content .site-link:hover {
  color: var(--v3-gold);
}
.join-wrap.page-wrap .join-content p {
  color: var(--v3-cream-text);
  text-shadow: 0 1px 4px rgb(0 0 0 / 80%);
}
.join-wrap.page-wrap .join-btn {
  animation: v3-pulse 1.8s ease-in-out infinite;
}
.contact-body {
  background: var(--v3-card);
  background-image: none;
}
.contact-body .form-group label {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  background: none;
  box-shadow: none;
  color: var(--v3-ink);
  font-size: 18px;
  font-weight: 700;
}
.contact-body .form-group label::before {
  content: none;
}
.contact-body .form-group input,
.contact-body .form-group textarea {
  border: 2px solid var(--v3-line);
  border-radius: 14px;
  background: #fff;
  font-size: 18px;
}
.contact-body .form-group input:focus,
.contact-body .form-group textarea:focus {
  border-color: var(--v3-accent);
  outline: 3px solid rgb(0 168 132 / 25%);
}
.sent-popup {
  border-radius: 20px;
  background: var(--v3-card);
}
.sent-popup-icon,
.sent-popup-timer {
  background: var(--v3-accent);
}

/* ---------- Reduced motion: keep everything still ---------- */
@media (prefers-reduced-motion: reduce) {
  .btn::before,
  .v3-first .hookup-bg,
  .v3-about .phone-hero img,
  .chat-online::before,
  .is-quiz.is-finished .btn-small,
  .join-wrap.page-wrap .join-btn {
    animation: none;
  }
}

/* =====================================================================
   WhatsApp layer: phone frame around the form, chat-style quiz,
   notifications, emoji stickers and the chat preview phone.
   ===================================================================== */
:root {
  --wa-head: #008069;
  --wa-wall: #efeae2;
  --wa-in: #fff;
  --wa-out: #d9fdd3;
  --wa-tick: #53bdeb;
  --wa-time: #667781;
}
/* WhatsApp doodle-like wallpaper, pure CSS. */
.wa-wallpaper,
.form-chat .form-item-wrp,
.wa-chat {
  background-color: var(--wa-wall);
  background-image:
    radial-gradient(circle at 20% 30%, rgb(0 0 0 / 5%) 2px, transparent 2.5px),
    radial-gradient(circle at 70% 80%, rgb(0 0 0 / 4%) 3px, transparent 3.5px),
    radial-gradient(circle at 80% 20%, rgb(0 128 105 / 6%) 5px, transparent 5.5px);
  background-size: 46px 46px, 64px 64px, 90px 90px;
}

/* ---------- Emoji stickers: white outline like WhatsApp stickers ---------- */
.wa-sticker {
  position: absolute;
  z-index: 0;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 64px;
  line-height: 1;
  filter:
    drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff)
    drop-shadow(0 8px 10px rgb(0 0 0 / 45%));
  animation: wa-bob 4s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
@keyframes wa-bob {
  0%, 100% { transform: translateY(0) rotate(var(--r, -8deg)); }
  50% { transform: translateY(-14px) rotate(calc(var(--r, -8deg) * -1)); }
}

/* ---------- First screen decoration ---------- */
.v3-first .hookup-form,
.v3-first .hookup-container {
  position: relative;
  z-index: 1;
}
.v3-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.wa-sticker-1 { top: 16%; left: 7%; --r: -12deg; }
.wa-sticker-2 { top: 58%; left: 12%; font-size: 54px; --r: 10deg; animation-delay: -1s; }
.wa-sticker-3 { top: 12%; right: 9%; --r: 8deg; animation-delay: -2s; }
.wa-sticker-4 { top: 66%; right: 7%; font-size: 72px; --r: -6deg; animation-delay: -3s; }
.wa-sticker-5 { top: 38%; left: 3%; font-size: 50px; --r: 18deg; animation-delay: -1.5s; }
.wa-sticker-6 { top: 40%; right: 3%; font-size: 50px; --r: -14deg; animation-delay: -2.5s; }
@media (max-width: 767px) {
  .v3-first .wa-sticker { font-size: 38px; }
  .wa-sticker-1 { top: 64px; left: 4px; }
  .wa-sticker-3 { top: 64px; right: 4px; }
  .wa-sticker-2, .wa-sticker-4, .wa-sticker-5, .wa-sticker-6 { display: none; }
}

/* Message notifications popping in beside the form (wide screens only). */
.wa-toast {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 290px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 12px 30px rgb(0 0 0 / 45%);
  color: var(--v3-ink);
  font-size: 16px;
  line-height: 1.3;
  opacity: 0;
  animation: wa-toast 16s ease-in-out infinite;
}
.wa-toast b {
  display: block;
  font-size: 15px;
}
.wa-toast-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #25d366 url("../images/2625.webp") center / 26px no-repeat;
}
.wa-toast-1 { top: 22%; left: calc(50% - 620px); animation-delay: 1s; }
.wa-toast-2 { top: 50%; right: calc(50% - 620px); animation-delay: 5s; }
.wa-toast-3 { top: 70%; left: calc(50% - 600px); animation-delay: 9s; }
.wa-toast-4 { top: 26%; right: calc(50% - 600px); animation-delay: 13s; }
@keyframes wa-toast {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  3%, 22% { opacity: 1; transform: none; }
  26%, 100% { opacity: 0; transform: translateY(-10px); }
}


/* ---------- The form as a WhatsApp chat on a phone ---------- */
.hookup-form .banner-form-center {
  max-width: 460px;
  border-radius: 24px;
  background: var(--wa-wall);
}
@media (min-width: 768px) {
  .hookup-form .banner-form-center {
    border: 12px solid #1c1c1e;
    border-radius: 46px;
    box-shadow: 0 0 0 2px #3a3a3c, 0 30px 70px rgb(0 0 0 / 65%);
  }
  /* Status bar with a notch. */
  .hookup-form .banner-form-center::before {
    content: "9:41";
    display: block;
    padding: 9px 26px 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    background:
      radial-gradient(ellipse 64px 13px at 50% 0, #1c1c1e 98%, transparent 100%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='12'%3E%3Cg fill='white'%3E%3Crect x='0' y='8' width='3' height='4' rx='1'/%3E%3Crect x='5' y='5' width='3' height='7' rx='1'/%3E%3Crect x='10' y='2' width='3' height='10' rx='1'/%3E%3Crect x='15' y='0' width='3' height='12' rx='1' opacity='.45'/%3E%3Crect x='24.6' y='.6' width='22' height='10.8' rx='3' fill='none' stroke='white' stroke-width='1.2'/%3E%3Crect x='26.5' y='2.5' width='15' height='7' rx='1.5'/%3E%3Crect x='48' y='4' width='2' height='4' rx='1'/%3E%3C/g%3E%3C/svg%3E") right 24px center / 52px 12px no-repeat,
      var(--wa-head);
  }
}
.hookup-form .banner-form-heading {
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--wa-head);
}
.hookup-form .banner-form-heading::before {
  content: "\2039";
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.hookup-form .banner-form-heading::after {
  content: "📹  📞";
  margin-left: auto;
  font-size: 18px;
  filter: grayscale(1) brightness(3);
}
.hookup-form .banner-form-heading h2 {
  font-size: 20px;
}
.hookup-form .banner-form-heading p {
  font-size: 15px;
  opacity: 0.9;
}
.form-avatar {
  width: 44px;
  height: 44px;
}

.hookup-form .form-item-wrp,
.form-chat .form-item-wrp {
  padding: 16px 14px 22px;
}
/* Questions arrive as incoming messages. */
.form-chat .banner-form-item label {
  position: relative;
  display: inline-block;
  max-width: 92%;
  margin: 0 0 12px 8px;
  padding: 10px 14px 12px;
  border-radius: 0 12px 12px 12px;
  background: var(--wa-in);
  box-shadow: 0 1px 1px rgb(11 20 26 / 13%);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.form-chat .banner-form-item label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  border-top: 10px solid var(--wa-in);
  border-left: 8px solid transparent;
}
/* Answers as quick-reply chips. */
.form-chat .banner-btn-grp button {
  min-height: 54px;
  border: 1px solid #d1d7db;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 1px rgb(11 20 26 / 10%);
  color: var(--wa-head);
  font-size: 17px;
  font-weight: 800;
}
.form-chat .banner-btn-grp button:hover {
  border-color: var(--wa-head);
  background: #f0fdf4;
  color: var(--wa-head);
}
.form-chat .banner-btn-grp button.active {
  border-color: var(--wa-head);
  background: var(--wa-head);
  box-shadow: none;
  color: #fff;
}

/* Chat quiz (js/v3.js): answered questions stay as history with the answer
   as an outgoing bubble; the next question arrives after "typing". */
.is-quiz .banner-form-item.is-answered {
  display: block;
  margin-bottom: 4px;
}
.is-answered .banner-btn-grp {
  display: none;
}
.quiz-answer {
  display: none;
}
.is-answered .quiz-answer {
  position: relative;
  display: table;
  margin: 0 8px 14px auto;
  padding: 9px 14px 10px;
  border-radius: 12px 0 12px 12px;
  background: var(--wa-out);
  box-shadow: 0 1px 1px rgb(11 20 26 / 13%);
  color: var(--v3-ink);
  font-size: 19px;
  font-weight: 700;
  animation: wa-in 0.3s ease;
}
.is-answered .quiz-answer::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  border-top: 10px solid var(--wa-out);
  border-right: 8px solid transparent;
}
.is-answered .quiz-answer::after {
  content: "\2713\2713";
  margin-left: 8px;
  color: var(--wa-tick);
  font-size: 14px;
  letter-spacing: -3px;
}
.quiz-typing,
.quiz-sticker {
  display: none;
}
.is-typing .quiz-typing {
  display: inline-flex;
}
.is-finished .quiz-sticker {
  display: block;
  margin: 0 0 6px 8px;
  font-size: 64px;
  line-height: 1;
  animation: wa-pop 0.4s ease;
  filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff);
}
@keyframes wa-in {
  from { opacity: 0; transform: translateY(8px); }
}
@keyframes wa-pop {
  0% { transform: scale(0.3); }
  70% { transform: scale(1.15); }
}
.quiz-progress {
  margin-bottom: 14px;
}
.quiz-step {
  height: 6px;
  background: rgb(0 0 0 / 10%);
}
.quiz-step.is-done {
  background: var(--wa-head);
}
.quiz-step.is-current {
  background: linear-gradient(90deg, var(--wa-head) 50%, rgb(0 0 0 / 10%) 50%);
}
.is-quiz .banner-form-item.is-current {
  animation: wa-in 0.3s ease;
}

/* Typing indicator (three bouncing dots), shared by the quiz and the chat preview. */
.quiz-typing,
.wa-typing {
  gap: 5px;
  margin: 0 0 12px 8px;
  padding: 14px 16px;
  border-radius: 0 12px 12px 12px;
  background: var(--wa-in);
  box-shadow: 0 1px 1px rgb(11 20 26 / 13%);
}
.quiz-typing span,
.wa-typing span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8696a0;
  animation: wa-dots 1.2s ease-in-out infinite;
}
.quiz-typing span:nth-child(2),
.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.quiz-typing span:nth-child(3),
.wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes wa-dots {
  0%, 60%, 100% { transform: none; opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* ---------- Chat preview phone ---------- */
.v3-chat-demo {
  position: relative;
  overflow: hidden;
  padding: 48px 16px 56px;
  background:
    radial-gradient(circle at 50% 45%, rgb(0 168 132 / 30%), transparent 60%),
    var(--v3-bg);
}
.wa-sticker-7 { top: 18%; left: calc(50% - 300px); font-size: 80px; --r: -10deg; }
.wa-sticker-8 { bottom: 16%; right: calc(50% - 300px); font-size: 72px; --r: 12deg; animation-delay: -2s; }
@media (max-width: 640px) {
  .wa-sticker-7 { top: 16px; left: 8px; font-size: 48px; }
  .wa-sticker-8 { bottom: 16px; right: 8px; font-size: 48px; }
}
.wa-phone {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 0 auto;
  border: 12px solid #1c1c1e;
  border-radius: 46px;
  overflow: hidden;
  background: var(--wa-wall);
  box-shadow: 0 0 0 2px #3a3a3c, 0 30px 70px rgb(0 0 0 / 65%);
  animation: v3-float 6s ease-in-out infinite;
}
.wa-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 8px 22px 4px;
  background:
    radial-gradient(ellipse 64px 13px at 50% 0, #1c1c1e 98%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='12'%3E%3Cg fill='white'%3E%3Crect x='0' y='8' width='3' height='4' rx='1'/%3E%3Crect x='5' y='5' width='3' height='7' rx='1'/%3E%3Crect x='10' y='2' width='3' height='10' rx='1'/%3E%3Crect x='15' y='0' width='3' height='12' rx='1' opacity='.45'/%3E%3Crect x='24.6' y='.6' width='22' height='10.8' rx='3' fill='none' stroke='white' stroke-width='1.2'/%3E%3Crect x='26.5' y='2.5' width='15' height='7' rx='1.5'/%3E%3Crect x='48' y='4' width='2' height='4' rx='1'/%3E%3C/g%3E%3C/svg%3E") right 22px center / 52px 12px no-repeat,
    var(--wa-head);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 10px;
  background: var(--wa-head);
  color: #fff;
}
.wa-back {
  font-size: 30px;
  line-height: 1;
}
.wa-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7aa2, #e0245e);
  font-weight: 800;
}
.wa-contact {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.wa-contact b {
  font-size: 17px;
}
.wa-contact small {
  font-size: 13px;
  opacity: 0.85;
}
.wa-icons {
  margin-left: auto;
  font-size: 17px;
  filter: grayscale(1) brightness(3);
}
.wa-chat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 460px;
  padding: 12px 12px 6px;
  overflow: hidden;
}
.wa-day {
  align-self: center;
  margin: 0 0 10px;
  padding: 4px 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--wa-time);
  font-size: 13px;
  font-weight: 600;
}
.wa-msg {
  position: relative;
  max-width: 82%;
  margin: 0 0 6px;
  padding: 7px 10px 8px;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgb(11 20 26 / 13%);
  color: var(--v3-ink);
  font-size: 17px;
  line-height: 1.35;
}
.wa-msg small {
  float: right;
  margin: 8px 0 -4px 10px;
  color: var(--wa-time);
  font-size: 11px;
}
.wa-msg small i {
  color: var(--wa-tick);
  font-style: normal;
  letter-spacing: -2px;
}
.wa-in {
  align-self: flex-start;
  background: var(--wa-in);
}
.wa-out {
  align-self: flex-end;
  background: var(--wa-out);
}
.wa-sticker-msg {
  padding: 0;
  background: none;
  box-shadow: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff);
}
.wa-photo {
  padding: 4px;
}
.wa-photo-blur {
  display: block;
  width: 200px;
  height: 130px;
  border-radius: 8px;
  background: url("../images/img01.webp") center / cover;
  filter: blur(9px);
}
.wa-photo small {
  position: absolute;
  right: 10px;
  bottom: 8px;
  margin: 0;
  color: #fff;
}
.wa-typing {
  display: inline-flex;
  align-self: flex-start;
}
.wa-inputbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 14px;
  background: var(--wa-wall);
}
.wa-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #8696a0;
  font-size: 16px;
}
.wa-mic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wa-head);
  font-size: 18px;
}
/* Playing (js/v3.js): messages appear one by one. */
.wa-chat.is-playing .wa-msg:not(.is-shown) {
  display: none;
}
.wa-chat .wa-msg.is-shown {
  animation: wa-in 0.3s ease;
}
.wa-chat .wa-sticker-msg.is-shown {
  animation: wa-pop 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .wa-sticker,
  .wa-toast,
  .wa-phone {
    animation: none;
  }
  .wa-toast {
    display: none;
  }
}
@media (max-width: 480px) {
  .hookup-form .banner-form-heading::after {
    content: none;
  }
}

/* ---------- Mobile menu fix ----------
   backdrop-filter on the pinned header turns it into the containing block of
   the fixed off-canvas menu, so the menu opened inside the header. Keep the
   blur on desktop only; on phones the header is solid. */
@media (max-width: 992px) {
  .navbar.bg-black {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--v3-bg) !important;
  }
  .mobileMenu {
    top: 0;
    bottom: auto;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    width: 280px;
    background: var(--v3-bg2);
    box-shadow: 8px 0 30px rgb(0 0 0 / 50%);
  }
  .mobileMenu .navbar-nav {
    padding: 28px 18px;
  }
  .main-nav .nav-item .nav-link {
    padding: 16px 8px;
    font-size: 18px;
  }
  .main-nav .nav-item .nav-link.nav-cta {
    margin-top: 20px;
    padding: 14px 20px;
  }
  .overlay.open {
    background: rgb(0 0 0 / 60%);
  }
}

/* ---------- Inner pages in the same WhatsApp look ---------- */
.page-wrap {
  position: relative;
  overflow: hidden;
}
/* Emoji stickers in the page corners. */
.page-wrap::before,
.page-wrap::after {
  position: absolute;
  z-index: 0;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 64px;
  line-height: 1;
  filter:
    drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff)
    drop-shadow(0 8px 10px rgb(0 0 0 / 45%));
  animation: wa-bob 4s ease-in-out infinite;
  pointer-events: none;
}
.page-wrap::before {
  content: "🍑";
  top: 40px;
  left: calc(50% - 480px);
  --r: -12deg;
}
.page-wrap::after {
  content: "😈";
  top: 180px;
  right: calc(50% - 480px);
  --r: 10deg;
  animation-delay: -2s;
}
.page-wrap > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-wrap::before,
  .page-wrap::after {
    font-size: 40px;
  }
  .page-wrap::before { top: 12px; left: 8px; }
  .page-wrap::after { top: 12px; right: 8px; }
}

/* Card = a WhatsApp chat: green header, wallpaper body, text in a message bubble. */
.page-card,
.contact-wrap form.page-card {
  max-width: 780px;
  border-radius: 24px;
  background: var(--wa-wall);
}
.page-heading {
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 18px;
  background: var(--wa-head);
}
.page-heading::before {
  content: "\2039";
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.page-heading::after {
  content: "📹  📞";
  margin-left: auto;
  font-size: 18px;
  filter: grayscale(1) brightness(3);
}
@media (max-width: 480px) {
  .page-heading::after {
    content: none;
  }
}
.page-body,
.legal-body,
.contact-body {
  background-color: var(--wa-wall);
  background-image:
    radial-gradient(circle at 20% 30%, rgb(0 0 0 / 5%) 2px, transparent 2.5px),
    radial-gradient(circle at 70% 80%, rgb(0 0 0 / 4%) 3px, transparent 3.5px),
    radial-gradient(circle at 80% 20%, rgb(0 128 105 / 6%) 5px, transparent 5.5px);
  background-size: 46px 46px, 64px 64px, 90px 90px;
  color: var(--v3-ink);
}
/* Long text reads as one big incoming message. */
.legal-body > * {
  position: relative;
  margin-right: 8%;
  margin-left: 8px;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  background: var(--wa-in);
  box-shadow: 0 1px 1px rgb(11 20 26 / 13%);
}
.legal-body > h2 {
  display: table;
  margin-top: 18px;
  padding: 8px 14px;
  background: var(--wa-out);
  border-radius: 12px 0 12px 12px;
  margin-left: auto;
  margin-right: 8px;
}
.legal-body > ul,
.legal-body > ol {
  padding-left: 38px;
}
.legal-body > :first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  border-top: 10px solid var(--wa-in);
  border-left: 8px solid transparent;
}
.legal-body a {
  color: var(--v3-link);
}
.contact-body .form-group label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 0 12px 12px 12px;
  background: var(--wa-in);
  box-shadow: 0 1px 1px rgb(11 20 26 / 13%);
}
.contact-body .form-group input,
.contact-body .form-group textarea {
  border: 1px solid #d1d7db;
  border-radius: 22px;
}
.contact-body .form-group input:focus,
.contact-body .form-group textarea:focus {
  border-color: var(--wa-head);
  outline: 3px solid rgb(0 128 105 / 25%);
}
.join-wrap.page-wrap .join-content .site-link {
  border-bottom-color: var(--v3-gold);
}
.sent-popup-icon,
.sent-popup-timer {
  background: var(--wa-head);
}

@media (prefers-reduced-motion: reduce) {
  .page-wrap::before,
  .page-wrap::after {
    animation: none;
  }
}

/* ---------- Notification avatars: faces cropped from the site's own collage ----------
   One 1320x1170 image, six 440x585 tiles; each avatar shows ~180px around a face. */
.wa-toast-icon,
.wa-avatar {
  background: #25d366 url("../images/girls-collage-1320x1170.webp") no-repeat;
  background-size: 352px 312px;
}
.wa-toast-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
/* Green "online" dot. */
.wa-toast-icon::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #25d366;
}
.wa-toast-1 .wa-toast-icon { background-position: -29px -8px; }
.wa-toast-2 .wa-toast-icon { background-position: -150px -37px; }
.wa-toast-3 .wa-toast-icon { background-position: -264px -45px; }
.wa-toast-4 .wa-toast-icon { background-position: -251px -158px; }
.wa-avatar {
  color: transparent;
  background-size: 293px 260px;
  background-position: -220px -38px;
}

/* On phones and tablets the notifications pop up one by one at the bottom of the screen. */
@media (max-width: 1239px) {
  .wa-toast {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: 14px;
    left: 12px;
    z-index: 1020;
    display: flex;
    width: auto;
    max-width: 420px;
    margin: 0 auto;
  }
}
