:root {
  --neo-primary: #2563ff;
  --neo-primary-2: #00b8ff;
  --neo-purple: #8b5cf6;
  --neo-gold: #ffd84d;
  --neo-coral: #ff6b7a;
  --neo-cyan: #13c6b8;
  --neo-bg: #eef4ff;
  --neo-panel: rgba(255,255,255,0.74);
  --neo-panel-strong: rgba(255,255,255,0.9);
  --neo-border: rgba(28, 43, 78, 0.1);
  --neo-text: #12172a;
  --neo-muted: #66728a;
  --neo-shadow: 0 30px 80px rgba(35, 55, 110, 0.16);
  --neo-shadow-soft: 0 16px 40px rgba(35, 55, 110, 0.1);
}

body.neo-landing-active {
  background:
    radial-gradient(circle at 8% 10%, rgba(37,99,255,0.16), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(139,92,246,0.16), transparent 26%),
    radial-gradient(circle at 80% 72%, rgba(19,198,184,0.14), transparent 28%),
    linear-gradient(180deg, #f5f8ff 0%, #eaf1fb 100%) !important;
  color: var(--neo-text);
}

body.neo-landing-active #root {
  display: none;
}

.vt-free-mode .vt-language-picker,
.vt-free-mode .vt-voice-picker {
  display: none !important;
}

.vt-free-mode {
  gap: 28px !important;
}

#neo-landing {
  display: none;
}

body.neo-landing-active #neo-landing {
  display: block;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: var(--neo-text);
  padding: 30px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.neo-landing__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.34) 1px, transparent 1px),
    radial-gradient(circle at 16% 20%, rgba(37,99,255,0.13), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(139,92,246,0.14), transparent 22%),
    radial-gradient(circle at 70% 86%, rgba(19,198,184,0.12), transparent 28%),
    linear-gradient(180deg, #f6f9ff 0%, #eaf1fb 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto, auto;
  z-index: 0;
}

.neo-landing__bg::before,
.neo-landing__bg::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.45;
}

.neo-landing__bg::before {
  left: -120px;
  top: 90px;
  background: rgba(37, 99, 255, 0.18);
  animation: neo-float-glow 12s ease-in-out infinite alternate;
}

.neo-landing__bg::after {
  right: -110px;
  top: 220px;
  background: rgba(139, 92, 246, 0.18);
  animation: neo-float-glow 14s ease-in-out infinite alternate-reverse;
}

.neo-landing__header,
.neo-landing__hero,
.neo-features,
.neo-how,
.neo-modes,
.neo-final-cta,
.neo-footer {
  position: relative;
  z-index: 2;
}

.neo-landing__header {
  max-width: 1240px;
  margin: 0 auto 28px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: neo-slide-down .7s ease both;
}

.neo-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.neo-brand__logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  padding: 8px;
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.32);
  animation: neo-logo-pulse 3.6s ease-in-out infinite;
}

/* Mic-icon variant of the brand logo (used on the public landing header). */
.neo-brand__logo--mic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.neo-brand__logo--mic svg {
  width: 60%;
  height: 60%;
}

/* Image variant of the brand logo (PNG file fills the rounded square). */
.neo-brand__logo--img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.neo-brand__logo--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.neo-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.neo-brand__text strong {
  font-size: 1.15rem;
  color: var(--neo-text);
}

.neo-brand__text span {
  font-size: 0.92rem;
  color: var(--neo-muted);
}

.neo-landing__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.neo-nav-link {
  color: #536079;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 10px;
  transition: color .18s ease;
}

.neo-nav-link:hover {
  color: var(--neo-primary);
}

.neo-btn {
  border: 1px solid var(--neo-border);
  background: rgba(255,255,255,0.64);
  color: var(--neo-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  min-height: 54px;
  padding: 0 24px;
  font-weight: 800;
  box-shadow: var(--neo-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.neo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(37,99,255,0.16);
}

.neo-btn--primary {
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 20px 42px rgba(72, 92, 255, 0.3);
}

.neo-btn--ghost,
.neo-btn--secondary {
  background: rgba(255,255,255,0.76);
}

.neo-btn--large {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 20px;
}

.neo-landing__hero {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 38px;
  box-shadow: var(--neo-shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 22px;
  animation: neo-fade-up .85s ease .1s both;
}

.neo-hero-copy {
  background:
    radial-gradient(circle at 18% 12%, rgba(37,99,255,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,247,253,0.94));
  border: 1px solid rgba(32,54,102,0.06);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  animation: neo-soft-reveal .9s ease .2s both;
}

.neo-badge,
.neo-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(37,99,255,0.1);
  color: #1f6fff;
  font-weight: 800;
  border: 1px solid rgba(37,99,255,0.13);
  animation: neo-badge-in .75s ease .35s both;
}

.neo-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #15c47e;
  box-shadow: 0 0 0 6px rgba(21,196,126,0.12);
  animation: neo-live-dot 1.8s ease-in-out infinite;
}

.neo-hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #151a2b;
  max-width: 780px;
  animation: neo-fade-up .9s ease .42s both;
}

.neo-hero-copy p {
  margin: 0;
  max-width: 680px;
  font-size: 1.14rem;
  line-height: 1.78;
  color: #657189;
  animation: neo-fade-up .9s ease .52s both;
}

.neo-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: neo-fade-up .9s ease .62s both;
}

.neo-hero-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  animation: neo-fade-up .9s ease .72s both;
}

.neo-hero-metrics div {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(28,43,78,0.08);
  box-shadow: 0 10px 28px rgba(35,55,110,0.07);
  transition: transform .22s ease, box-shadow .22s ease;
}

.neo-hero-metrics div:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(35,55,110,0.12);
}

.neo-hero-metrics strong,
.neo-hero-metrics span {
  display: block;
}

.neo-hero-metrics strong {
  font-size: 1.35rem;
  color: #151a2b;
}

.neo-hero-metrics span {
  margin-top: 3px;
  font-size: 0.9rem;
  color: #7a879f;
}

.neo-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 24px;
  color: #536079;
  font-size: 0.96rem;
  font-weight: 700;
  animation: neo-fade-up .9s ease .82s both;
}

.neo-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.neo-point span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple));
  box-shadow: 0 0 0 4px rgba(37,99,255,0.08);
}

.neo-hero-visual {
  min-width: 0;
  display: flex;
}

.neo-phone-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 32px;
  padding: 26px;
  background:
    radial-gradient(circle at 15% 18%, rgba(37,99,255,0.18), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(139,92,246,0.22), transparent 23%),
    radial-gradient(circle at 70% 78%, rgba(19,198,184,0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(242,246,253,0.96));
  border: 1px solid rgba(32,54,102,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88);
  overflow: hidden;
  animation: neo-float-card 6s ease-in-out infinite;
}

.neo-phone-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 108px;
  width: 63%;
  bottom: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(233,237,247,0.9), rgba(226,233,245,0.9));
  z-index: 0;
}

.neo-phone-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(37,99,255,0.1);
  filter: blur(26px);
  animation: neo-orbit-soft 10s ease-in-out infinite alternate;
}

.neo-phone-card__top,
.neo-phone-card__body {
  position: relative;
  z-index: 1;
}

.neo-phone-card__top {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.neo-orb {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}
.neo-orb--blue { background: #5c8fff; }
.neo-orb--green { background: #44cc8f; }
.neo-orb--orange { background: #ffb84d; }

.neo-phone-card__body {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: start;
}

.neo-phone-card__body > h3,
.neo-phone-card__body > p,
.neo-mini-badge,
.neo-session-card {
  grid-column: 1 / 2;
}

.neo-mini-badge {
  min-height: 38px;
  margin-bottom: 8px;
}

.neo-phone-card__body h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.06;
  color: #172033;
  letter-spacing: -0.04em;
}

.neo-phone-card__body p {
  margin: 0 0 18px;
  color: #7c889d;
  line-height: 1.7;
  max-width: 420px;
}

.neo-session-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 8px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(28,43,78,0.08);
  box-shadow: 0 12px 28px rgba(35,55,110,0.08);
  animation: neo-fade-up .8s ease .72s both;
}

.neo-session-card strong,
.neo-session-card span {
  display: block;
}

.neo-session-card strong {
  color: #172033;
  font-size: 0.98rem;
}

.neo-session-card span {
  margin-top: 3px;
  color: #7c889d;
  font-size: 0.86rem;
}

.neo-wave {
  width: 58px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,99,255,0.16), rgba(139,92,246,0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.neo-wave i {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--neo-primary), var(--neo-purple));
  animation: neo-wave 1.1s ease-in-out infinite;
}

.neo-wave i:nth-child(1) { height: 12px; animation-delay: 0s; }
.neo-wave i:nth-child(2) { height: 22px; animation-delay: .08s; }
.neo-wave i:nth-child(3) { height: 30px; animation-delay: .16s; }
.neo-wave i:nth-child(4) { height: 20px; animation-delay: .24s; }
.neo-wave i:nth-child(5) { height: 14px; animation-delay: .32s; }

@keyframes neo-wave {
  0%, 100% { transform: scaleY(.72); opacity: .72; }
  50% { transform: scaleY(1); opacity: 1; }
}

.neo-stat-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 10px;
  padding-left: min(18px, 2vw);
}

.neo-stat-card {
  min-height: 126px;
  border-radius: 25px;
  padding: 20px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(40, 56, 108, 0.16);
  animation: neo-stat-pop .7s ease both;
  transition: transform .22s ease, box-shadow .22s ease;
}

.neo-stat-card:nth-child(1) { animation-delay: .72s; }
.neo-stat-card:nth-child(2) { animation-delay: .82s; }
.neo-stat-card:nth-child(3) { animation-delay: .92s; }
.neo-stat-card:nth-child(4) { animation-delay: 1.02s; }

.neo-stat-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 24px 46px rgba(40, 56, 108, 0.2);
}

.neo-stat-card::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
  animation: neo-progress-shimmer 2.4s ease-in-out infinite;
}

.neo-stat-card strong {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 10px;
}

.neo-stat-card span {
  font-size: 0.98rem;
  opacity: 0.96;
}

.neo-stat-card:nth-child(1) { background: linear-gradient(135deg, #2563ff, #3ca0ff); }
.neo-stat-card:nth-child(2) { background: linear-gradient(135deg, #8b5cf6, #d66cff); }
.neo-stat-card:nth-child(3) { background: linear-gradient(135deg, #ffd84d, #fff08e); color: #252223; }
.neo-stat-card:nth-child(3)::before { background: rgba(0,0,0,0.14); }
.neo-stat-card:nth-child(4) { background: linear-gradient(135deg, #ff6b7a, #ff9d76); }

.neo-features,
.neo-how,
.neo-modes,
.neo-final-cta,
.neo-footer {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.neo-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  animation: neo-fade-up .9s ease .2s both;
}

.neo-feature-card {
  min-height: 214px;
  border-radius: 30px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--neo-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease;
  animation: neo-card-rise .75s ease both;
}

.neo-feature-card:nth-child(1) { animation-delay: .08s; }
.neo-feature-card:nth-child(2) { animation-delay: .14s; }
.neo-feature-card:nth-child(3) { animation-delay: .2s; }
.neo-feature-card:nth-child(4) { animation-delay: .26s; }
.neo-feature-card:nth-child(5) { animation-delay: .32s; }
.neo-feature-card:nth-child(6) { animation-delay: .38s; }

.neo-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(35,55,110,0.13);
}

.neo-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(57,84,161,0.13);
  transition: transform .22s ease;
}

.neo-feature-card:hover .neo-feature-icon {
  transform: rotate(-4deg) scale(1.06);
}

.neo-feature-icon--blue { background: linear-gradient(135deg, #2563ff, #3ca0ff); }
.neo-feature-icon--green { background: linear-gradient(135deg, #13c67a, #52dca4); }
.neo-feature-icon--orange { background: linear-gradient(135deg, #ffb020, #ffd84d); color: #2b2b2b; }
.neo-feature-icon--purple { background: linear-gradient(135deg, #8b5cf6, #d66cff); }
.neo-feature-icon--cyan { background: linear-gradient(135deg, #13c6b8, #4fd8ef); }
.neo-feature-icon--rose { background: linear-gradient(135deg, #ff6b7a, #ff9d76); }

.neo-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  color: #172033;
  letter-spacing: -0.02em;
}

.neo-feature-card p {
  margin: 0;
  color: #6d7890;
  line-height: 1.68;
}

.neo-how {
  margin-top: 28px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow: var(--neo-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: neo-fade-up .85s ease both;
}

.neo-section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.neo-section-heading span,
.neo-mode-card > span,
.neo-final-cta span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--neo-primary);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.neo-section-heading h2,
.neo-final-cta h2,
.neo-mode-card h2 {
  margin: 0;
  color: #151a2b;
  letter-spacing: -0.04em;
}

.neo-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.neo-section-heading p,
.neo-final-cta p,
.neo-mode-card p {
  color: #6d7890;
  line-height: 1.7;
}

.neo-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.neo-step-grid article {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(246,249,255,0.96), rgba(239,245,254,0.94));
  border: 1px solid rgba(28,43,78,0.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.neo-step-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(35,55,110,0.1);
}

.neo-step-grid strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple));
  margin-bottom: 18px;
}

.neo-step-grid h3 {
  margin: 0 0 8px;
  color: #172033;
}

.neo-step-grid p {
  margin: 0;
  color: #6d7890;
  line-height: 1.65;
}

.neo-modes {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  animation: neo-fade-up .85s ease both;
}

.neo-mode-card {
  min-height: 320px;
  padding: 32px;
  border-radius: 34px;
  box-shadow: var(--neo-shadow-soft);
  overflow: hidden;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}

.neo-mode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(35,55,110,0.15);
}

.neo-mode-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .55;
  animation: neo-orbit-soft 8s ease-in-out infinite alternate;
}

.neo-mode-card--dark {
  background: linear-gradient(135deg, #111827, #172554 58%, #312e81);
  color: #fff;
}

.neo-mode-card--dark::after {
  background: rgba(37,99,255,0.38);
}

.neo-mode-card--dark h2,
.neo-mode-card--dark p,
.neo-mode-card--dark li {
  color: #fff;
}

.neo-mode-card--dark > span {
  color: #9dd6ff;
}

.neo-mode-card--light {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.76);
}

.neo-mode-card--light::after {
  background: rgba(139,92,246,0.18);
}

.neo-mode-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.neo-mode-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.neo-mode-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #536079;
  font-weight: 800;
}

.neo-mode-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple));
  flex: 0 0 auto;
}

.neo-final-cta {
  margin-top: 28px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 22%, rgba(37,99,255,0.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(238,244,255,0.86));
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--neo-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: neo-fade-up .85s ease both;
}

.neo-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.neo-final-cta p {
  margin-bottom: 0;
}

.neo-footer {
  margin-top: 24px;
  padding: 24px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7b879e;
  font-weight: 700;
  animation: neo-fade-up .85s ease both;
}

@keyframes neo-slide-down {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neo-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neo-soft-reveal {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes neo-badge-in {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes neo-live-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(21,196,126,0.12); }
  50% { transform: scale(1.25); box-shadow: 0 0 0 10px rgba(21,196,126,0.05); }
}

@keyframes neo-logo-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 14px 32px rgba(37,99,255,0.18); }
  50% { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(37,99,255,0.26); }
}

@keyframes neo-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes neo-float-glow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(34px, -24px, 0) scale(1.08); }
}

@keyframes neo-orbit-soft {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-24px, -18px, 0) scale(1.12); }
}

@keyframes neo-stat-pop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes neo-card-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neo-progress-shimmer {
  0%, 100% { opacity: .55; transform: translateX(-4px); }
  50% { opacity: 1; transform: translateX(4px); }
}

/* ─── Animated gradient text ─── */
.neo-grad-text {
  background: linear-gradient(
    90deg,
    #2563ff 0%,
    #8b5cf6 25%,
    #ec4899 50%,
    #8b5cf6 75%,
    #2563ff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: neo-grad-flow 6s ease-in-out infinite;
  display: inline;
  font-weight: 900;
  position: relative;
  padding: 0 0.04em;
  margin: 0 -0.04em;
}
.neo-grad-text--alt {
  background: linear-gradient(
    90deg,
    #13c6b8 0%,
    #2563ff 33%,
    #8b5cf6 66%,
    #13c6b8 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: neo-grad-flow 7s ease-in-out infinite reverse;
}
@keyframes neo-grad-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ─── Shine sweep on primary buttons ─── */
.neo-btn--shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  gap: 10px;
}
.neo-btn--shine > span {
  position: relative;
  z-index: 2;
}
.neo-btn--shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.55) 55%,
    transparent 100%
  );
  transform: skewX(-22deg);
  z-index: 1;
  animation: neo-shine-sweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes neo-shine-sweep {
  0% { left: -120%; }
  60%, 100% { left: 220%; }
}
.neo-btn--shine:hover::before {
  animation-duration: 1.4s;
}
.neo-btn-arrow {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 2;
  transition: transform .25s ease;
}
.neo-btn--shine:hover .neo-btn-arrow {
  transform: translateX(4px);
}
.neo-btn--primary {
  background-size: 200% 200%;
  animation: neo-btn-grad 8s ease-in-out infinite;
}
@keyframes neo-btn-grad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.neo-btn--primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #2563ff, #8b5cf6, #ec4899, #13c6b8);
  background-size: 300% 300%;
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity .3s ease;
  animation: neo-btn-grad 6s ease-in-out infinite;
}
.neo-btn--primary:hover::after {
  opacity: 0.55;
}

/* ─── Floating sparkle particles ─── */
.neo-landing__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.neo-landing__particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,255,0.85), rgba(139,92,246,0.0) 70%);
  filter: blur(0.5px);
  opacity: 0;
  animation: neo-particle-rise 14s linear infinite;
}
.neo-landing__particles span:nth-child(1)  { left:  6%; bottom: -10px; animation-delay:  0s; animation-duration: 18s; }
.neo-landing__particles span:nth-child(2)  { left: 14%; bottom: -10px; animation-delay:  3s; width: 6px; height: 6px; }
.neo-landing__particles span:nth-child(3)  { left: 22%; bottom: -10px; animation-delay:  6s; animation-duration: 16s; }
.neo-landing__particles span:nth-child(4)  { left: 32%; bottom: -10px; animation-delay:  1s; width: 10px; height: 10px; }
.neo-landing__particles span:nth-child(5)  { left: 41%; bottom: -10px; animation-delay:  9s; animation-duration: 20s; background: radial-gradient(circle, rgba(19,198,184,0.8), transparent 70%); }
.neo-landing__particles span:nth-child(6)  { left: 50%; bottom: -10px; animation-delay:  4s; }
.neo-landing__particles span:nth-child(7)  { left: 58%; bottom: -10px; animation-delay:  7s; width: 5px; height: 5px; background: radial-gradient(circle, rgba(236,72,153,0.8), transparent 70%); }
.neo-landing__particles span:nth-child(8)  { left: 66%; bottom: -10px; animation-delay:  2s; animation-duration: 17s; }
.neo-landing__particles span:nth-child(9)  { left: 74%; bottom: -10px; animation-delay:  5s; width: 7px; height: 7px; }
.neo-landing__particles span:nth-child(10) { left: 82%; bottom: -10px; animation-delay: 10s; background: radial-gradient(circle, rgba(19,198,184,0.7), transparent 70%); }
.neo-landing__particles span:nth-child(11) { left: 89%; bottom: -10px; animation-delay:  8s; animation-duration: 19s; }
.neo-landing__particles span:nth-child(12) { left: 95%; bottom: -10px; animation-delay: 11s; width: 9px; height: 9px; background: radial-gradient(circle, rgba(139,92,246,0.85), transparent 70%); }

@keyframes neo-particle-rise {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  50% {
    transform: translateY(-50vh) translateX(30px) scale(1);
    opacity: 0.7;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100vh) translateX(-20px) scale(0.5);
    opacity: 0;
  }
}

/* ─── Phone card 3D tilt + glow ─── */
.neo-phone-card {
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.neo-phone-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-3deg) scale(1.015);
  box-shadow: 0 40px 90px rgba(37, 55, 110, 0.22);
}
.neo-phone-card::before {
  transition: opacity .4s ease;
}

/* ─── Headline subtle reveal underline on hover ─── */
.neo-grad-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.04em;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563ff, #8b5cf6, #ec4899);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  animation: neo-grad-flow 6s ease-in-out infinite;
}
.neo-hero-copy h1:hover .neo-grad-text::after {
  transform: scaleX(1);
}

/* ─── Badge pulse glow ─── */
.neo-badge {
  position: relative;
  overflow: hidden;
}
.neo-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 50%, rgba(37,99,255,0.25), transparent 60%);
  opacity: 0;
  animation: neo-badge-glow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes neo-badge-glow {
  0%, 100% { opacity: 0; transform: translateX(-30%); }
  50% { opacity: 1; transform: translateX(30%); }
}

/* ─── Hero metrics: animated counter look ─── */
.neo-hero-metrics div {
  position: relative;
  overflow: hidden;
}
.neo-hero-metrics div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(37,99,255,0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.neo-hero-metrics div:hover::before {
  transform: translateX(100%);
}
.neo-hero-metrics strong {
  background: linear-gradient(135deg, #2563ff, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

/* ─── Feature card icon shine ─── */
.neo-feature-icon {
  position: relative;
  overflow: hidden;
}
.neo-feature-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    100deg,
    transparent 40%,
    rgba(255,255,255,0.4) 50%,
    transparent 60%
  );
  transform: rotate(20deg);
  transition: left .6s ease;
}
.neo-feature-card:hover .neo-feature-icon::after {
  left: 100%;
}

/* ─── Step grid: animated number badges ─── */
.neo-step-grid strong {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple), var(--neo-coral));
  background-size: 200% 200%;
  animation: neo-btn-grad 5s ease-in-out infinite;
}

/* ─── Mode card glow on hover ─── */
.neo-mode-card {
  position: relative;
}
.neo-mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,255,0.45), rgba(139,92,246,0.45), rgba(19,198,184,0.45));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.neo-mode-card:hover::before {
  opacity: 1;
}

/* ─── Final CTA: pulsing glow ─── */
.neo-final-cta {
  position: relative;
  overflow: hidden;
}
.neo-final-cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 70%);
  filter: blur(20px);
  animation: neo-float-glow 9s ease-in-out infinite alternate;
  pointer-events: none;
}

/* ─── Animated chat mockup (replaces stat-grid) ─── */
.neo-chat-mock {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,255,0.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,253,0.92));
  border: 1px solid rgba(28,43,78,0.07);
  box-shadow: 0 18px 40px rgba(35,55,110,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.neo-chat-mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 80%,
    rgba(244,247,253,0.95) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.neo-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28,43,78,0.06);
  margin-bottom: 14px;
}
.neo-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(72,92,255,0.28);
  animation: neo-logo-pulse 3.6s ease-in-out infinite;
}
.neo-chat-avatar svg { width: 20px; height: 20px; }
.neo-chat-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.neo-chat-meta strong {
  font-size: 0.96rem;
  color: #172033;
}
.neo-chat-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #56b97a;
  font-weight: 700;
}
.neo-chat-meta span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15c47e;
  box-shadow: 0 0 0 4px rgba(21,196,126,0.18);
  animation: neo-live-dot 1.8s ease-in-out infinite;
}

.neo-chat-stream {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.neo-chat-row {
  display: flex;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
}
.neo-chat-row--user { justify-content: flex-end; }
.neo-chat-row--ai { justify-content: flex-start; }

.neo-chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(35,55,110,0.06);
  word-break: break-word;
}
.neo-chat-row--user .neo-chat-bubble {
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple));
  color: #fff;
  border-bottom-right-radius: 6px;
}
.neo-chat-row--ai .neo-chat-bubble {
  background: #fff;
  color: #172033;
  border: 1px solid rgba(28,43,78,0.07);
  border-bottom-left-radius: 6px;
}
.neo-chat-bubble strong {
  font-size: 0.98rem;
  color: var(--neo-primary);
}
.neo-chat-row--ai .neo-chat-bubble strong {
  color: var(--neo-primary);
}
.neo-chat-trans {
  font-family: "Noto Sans Ethiopic", Inter, sans-serif !important;
  color: #56b97a !important;
  font-size: 0.88rem !important;
}
.neo-chat-am {
  font-family: "Noto Sans Ethiopic", Inter, sans-serif;
  font-size: 1rem;
}

/* Voice waveform inside bubble */
.neo-chat-wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 18px;
  margin-top: 2px;
}
.neo-chat-wave i {
  width: 3px;
  border-radius: 999px;
  background: var(--neo-primary);
  animation: neo-wave 1.1s ease-in-out infinite;
}
.neo-chat-wave--user i { background: rgba(255,255,255,0.92); }
.neo-chat-wave i:nth-child(1) { height: 6px;  animation-delay: 0s; }
.neo-chat-wave i:nth-child(2) { height: 12px; animation-delay: .08s; }
.neo-chat-wave i:nth-child(3) { height: 16px; animation-delay: .16s; }
.neo-chat-wave i:nth-child(4) { height: 10px; animation-delay: .24s; }
.neo-chat-wave i:nth-child(5) { height: 7px;  animation-delay: .32s; }

/* Typing dots */
.neo-chat-bubble--typing {
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  min-width: 56px;
}
.neo-chat-bubble--typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neo-primary);
  opacity: 0.45;
  animation: neo-chat-dot 1.2s ease-in-out infinite;
}
.neo-chat-bubble--typing i:nth-child(2) { animation-delay: .15s; }
.neo-chat-bubble--typing i:nth-child(3) { animation-delay: .3s; }
@keyframes neo-chat-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Loop sequence — total ~14s */
.neo-chat-step-1 { animation: neo-chat-bubble-in 14s ease-in-out infinite;          animation-delay: 0s; }
.neo-chat-step-2 { animation: neo-chat-bubble-in 14s ease-in-out infinite;          animation-delay: -11.5s; }
.neo-chat-step-3 { animation: neo-chat-typing-cycle 14s ease-in-out infinite;       animation-delay: -8.5s; }
.neo-chat-step-4 { animation: neo-chat-bubble-in 14s ease-in-out infinite;          animation-delay: -6.5s; }
.neo-chat-step-5 { animation: neo-chat-bubble-in 14s ease-in-out infinite;          animation-delay: -3.5s; }

@keyframes neo-chat-bubble-in {
  0% { opacity: 0; transform: translateY(12px) scale(.94); }
  4% { opacity: 1; transform: translateY(0) scale(1); }
  85% { opacity: 1; transform: translateY(0) scale(1); }
  92% { opacity: 0; transform: translateY(-4px) scale(.98); }
  100% { opacity: 0; transform: translateY(-4px) scale(.98); }
}
@keyframes neo-chat-typing-cycle {
  0% { opacity: 0; transform: translateY(8px); }
  3% { opacity: 1; transform: translateY(0); }
  16% { opacity: 1; transform: translateY(0); }
  20% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-4px); }
}

/* Reduced motion: kill flashy animations but keep gradient text static */
@media (prefers-reduced-motion: reduce) {
  .neo-grad-text,
  .neo-grad-text--alt,
  .neo-btn--primary,
  .neo-step-grid strong {
    animation: none !important;
  }
  .neo-landing__particles { display: none; }
  .neo-btn--shine::before { display: none; }
  .neo-chat-row { opacity: 1; transform: none; animation: none !important; }
  .neo-chat-bubble--typing { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1100px) {
  body.neo-landing-active #neo-landing { padding: 20px; }
  .neo-landing__hero,
  .neo-modes {
    grid-template-columns: 1fr;
  }
  .neo-phone-card__body {
    grid-template-columns: 1fr;
  }
  .neo-phone-card::before {
    width: auto;
    left: 22px;
    right: 22px;
    top: 110px;
  }
  .neo-features,
  .neo-step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .neo-nav-link {
    display: none;
  }
  .neo-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .neo-landing__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .neo-landing__nav {
    width: 100%;
  }
  .neo-landing__nav .neo-btn {
    flex: 1;
    padding-left: 14px;
    padding-right: 14px;
  }
  .neo-hero-copy,
  .neo-phone-card,
  .neo-feature-card,
  .neo-how,
  .neo-mode-card,
  .neo-final-cta {
    padding: 22px;
    border-radius: 26px;
  }
  .neo-hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }
  .neo-hero-metrics,
  .neo-stat-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .neo-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .vt-empty-start {
    height: auto !important;
    min-height: calc(100dvh - 80px) !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    gap: 18px !important;
    padding-top: 42px !important;
    padding-bottom: 120px !important;
  }

  .vt-language-picker {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 410px !important;
    margin-bottom: 12px !important;
  }

  .vt-language-picker > div {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .vt-language-picker button {
    min-height: 64px !important;
  }
}

/* ── Deposit form: force white text on all dark inputs & selects ── */
input.text-white,
select.text-white,
textarea.text-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

select.text-white option {
  color: #ffffff;
  background-color: #1f2937;
}

input[type="number"].text-white::-webkit-inner-spin-button,
input[type="number"].text-white::-webkit-outer-spin-button {
  opacity: 0.4;
}

input.text-white::placeholder,
textarea.text-white::placeholder {
  color: rgba(156, 163, 175, 0.7) !important;
}

/* ── Deposit / Balance modal: force all text white, only balance amount green ── */
/* Targets the modal panel: <div bg-black/70 backdrop-blur><div bg-gray-900 rounded-2xl> */
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"],
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] *:not(svg):not(svg *) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Keep the balance amount (the big bold ETB number in the modal header) emerald green */
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] .text-2xl.font-bold,
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] p.text-2xl,
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] p.text-2xl * {
  color: #34d399 !important;
  -webkit-text-fill-color: #34d399 !important;
}

/* Make placeholders inside the modal readable */
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] input::placeholder,
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] textarea::placeholder,
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] select option:disabled {
  color: rgba(255, 255, 255, 0.65) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.65) !important;
}

/* Submit button text stays white on its green background */
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] button[class*="bg-emerald"],
div[class*="bg-black/70"][class*="backdrop-blur"] div[class*="bg-gray-900"][class*="rounded-2xl"] button[class*="bg-emerald"] * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── Mobile dashboard: prevent top header items from being cut off ── */
@media (max-width: 640px) {
  /* The sticky top header — let it scroll horizontally if items don't fit */
  header.sticky > div {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
  }
  header.sticky > div::-webkit-scrollbar {
    display: none;
  }
  /* Keep header items from shrinking below their content size */
  header.sticky > div > * {
    flex-shrink: 0 !important;
  }
  /* Tighten gaps so more items fit before scrolling kicks in */
  header.sticky > div {
    gap: 6px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  /* Slightly reduce mode-toggle button padding on mobile */
  header.sticky button {
    white-space: nowrap;
  }
}

/* ─── Landing page theme toggle button ─────────────────────────────────── */
.neo-theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--neo-border);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(37,99,255,0.10);
  transition: background .2s, transform .15s, box-shadow .2s;
  flex-shrink: 0;
}
.neo-theme-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(37,99,255,0.18);
}
/* Show sun in dark mode, moon in light mode */
.neo-theme-btn__sun { display: none; }
.neo-theme-btn__moon { display: inline; }
html.dark-theme .neo-theme-btn__sun { display: inline; }
html.dark-theme .neo-theme-btn__moon { display: none; }
html.dark-theme .neo-theme-btn {
  background: rgba(30, 20, 60, 0.75);
  border-color: rgba(168, 85, 247, 0.30);
  box-shadow: 0 4px 12px rgba(124,58,237,0.20);
}

/* ─── Landing page dark mode ────────────────────────────────────────────── */
html.dark-theme body.neo-landing-active {
  background:
    radial-gradient(circle at 8% 10%, rgba(124,58,237,0.20), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(168,85,247,0.16), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(37,99,255,0.12), transparent 28%),
    linear-gradient(180deg, #07061a 0%, #0d0a26 100%) !important;
  color: #e9e6ff;
}

html.dark-theme body.neo-landing-active #neo-landing {
  color: #e9e6ff;
}

html.dark-theme .neo-landing__bg {
  background:
    linear-gradient(rgba(168,85,247,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.07) 1px, transparent 1px),
    radial-gradient(circle at 16% 20%, rgba(124,58,237,0.18), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(168,85,247,0.15), transparent 22%),
    radial-gradient(circle at 70% 86%, rgba(37,99,255,0.12), transparent 28%),
    linear-gradient(180deg, #07061a 0%, #0d0a26 100%) !important;
}

html.dark-theme .neo-brand__text strong { color: #f0edff; }
html.dark-theme .neo-brand__text span   { color: #b4aee3; }
html.dark-theme .neo-nav-link           { color: #b4aee3; }
html.dark-theme .neo-nav-link:hover     { color: #c4b5fd; }

/* Main hero card — replace white glass with dark glass */
html.dark-theme .neo-landing__hero {
  background: rgba(18, 12, 48, 0.72) !important;
  border-color: rgba(168, 85, 247, 0.18) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45) !important;
}

/* Hero copy inner card */
html.dark-theme .neo-hero-copy {
  background:
    radial-gradient(circle at 18% 12%, rgba(124,58,237,0.12), transparent 28%),
    linear-gradient(180deg, rgba(22, 14, 55, 0.88), rgba(16, 10, 42, 0.92)) !important;
  border-color: rgba(168, 85, 247, 0.14) !important;
}

html.dark-theme .neo-hero-copy h1   { color: #f0edff; }
html.dark-theme .neo-hero-copy p    { color: #b4aee3; }

/* Metric cards (24/7, 2, AI) */
html.dark-theme .neo-hero-metrics div {
  background: rgba(22, 14, 55, 0.72) !important;
  border-color: rgba(168, 85, 247, 0.16) !important;
}
html.dark-theme .neo-hero-metrics div strong { color: #f0edff; }
html.dark-theme .neo-hero-metrics div span   { color: #b4aee3; }
html.dark-theme .neo-point                   { color: #c4b5fd; }

/* Default (ghost) button and secondary button */
html.dark-theme .neo-btn {
  background: rgba(22, 14, 55, 0.72) !important;
  border-color: rgba(168, 85, 247, 0.28) !important;
  color: #e9e6ff !important;
}
html.dark-theme .neo-btn--ghost,
html.dark-theme .neo-btn--secondary {
  background: rgba(30, 20, 60, 0.72) !important;
  border-color: rgba(168, 85, 247, 0.30) !important;
  color: #e9e6ff !important;
}
/* Keep primary button its vivid gradient */
html.dark-theme .neo-btn--primary {
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-purple)) !important;
  color: #fff !important;
}

html.dark-theme .neo-badge {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(168, 85, 247, 0.30);
  color: #c4b5fd;
}

html.dark-theme .neo-phone-card {
  background:
    radial-gradient(circle at 15% 18%, rgba(124,58,237,0.22), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(168,85,247,0.20), transparent 23%),
    linear-gradient(180deg, rgba(18,12,48,0.94), rgba(12,8,36,0.96)) !important;
  border-color: rgba(168, 85, 247, 0.22) !important;
  box-shadow: inset 0 1px 0 rgba(168,85,247,0.12) !important;
}

html.dark-theme .neo-phone-card::before {
  background: linear-gradient(180deg, rgba(28,18,62,0.85), rgba(20,12,48,0.88)) !important;
}

html.dark-theme .neo-phone-card h3,
html.dark-theme .neo-phone-card p,
html.dark-theme .neo-phone-card strong { color: #e9e6ff; }

html.dark-theme .neo-chat-meta strong { color: #f0edff !important; }
html.dark-theme .neo-chat-header {
  border-bottom-color: rgba(168, 85, 247, 0.16) !important;
}

html.dark-theme .neo-mini-badge {
  background: rgba(124,58,237,0.20);
  color: #c4b5fd;
  border-color: rgba(168,85,247,0.28);
}

html.dark-theme .neo-session-card {
  background: rgba(30, 20, 60, 0.72);
  border-color: rgba(168, 85, 247, 0.22);
  color: #e9e6ff;
}

html.dark-theme .neo-chat-bubble { background: rgba(30, 20, 60, 0.80); color: #e9e6ff; }
html.dark-theme .neo-chat-row--ai .neo-chat-bubble { background: rgba(44, 30, 90, 0.85); }

html.dark-theme .neo-section-heading span { color: #c4b5fd; }
html.dark-theme .neo-section-heading h2   { color: #f0edff; }
html.dark-theme .neo-section-heading p    { color: #b4aee3; }

html.dark-theme .neo-feature-card {
  background: rgba(30, 20, 60, 0.72);
  border-color: rgba(168, 85, 247, 0.20);
  color: #e9e6ff;
}
html.dark-theme .neo-feature-card h3 { color: #f0edff; }
html.dark-theme .neo-feature-card p  { color: #b4aee3; }

html.dark-theme .neo-how {
  background: rgba(14, 10, 36, 0.80) !important;
  border-color: rgba(168, 85, 247, 0.16) !important;
}

html.dark-theme .neo-step-grid article {
  background: rgba(30, 20, 60, 0.60);
  border-color: rgba(168, 85, 247, 0.20);
  color: #e9e6ff;
}
html.dark-theme .neo-step-grid article h3 { color: #f0edff; }
html.dark-theme .neo-step-grid article p  { color: #b4aee3; }

html.dark-theme .neo-mode-card--light {
  background: rgba(30, 20, 60, 0.65);
  color: #e9e6ff;
}
html.dark-theme .neo-mode-card--light h2,
html.dark-theme .neo-mode-card--light span,
html.dark-theme .neo-mode-card--light li  { color: #e9e6ff; }

html.dark-theme .neo-final-cta span,
html.dark-theme .neo-final-cta h2,
html.dark-theme .neo-final-cta p { color: #e9e6ff; }

html.dark-theme .neo-footer { color: #b4aee3; }

/* ============================================================
   Animated language chips + headline shimmer (added)
   ============================================================ */

.neo-lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.neo-lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 92, 246, 0.18);
  color: #2d2960;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(124, 92, 246, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  animation:
    neo-chip-in .55s cubic-bezier(.2,.9,.3,1.4) calc(.6s + var(--i, 0) * .08s) both,
    neo-chip-float 4.5s ease-in-out calc(1.4s + var(--i, 0) * .25s) infinite;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: default;
}

.neo-lang-chip:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 28px rgba(124, 92, 246, 0.22);
  border-color: rgba(124, 92, 246, 0.5);
}

.neo-lang-flag {
  font-size: 1.05rem;
  line-height: 1;
  display: inline-block;
  animation: neo-flag-wave 3.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .35s);
  transform-origin: 50% 60%;
}

@keyframes neo-chip-in {
  from { opacity: 0; transform: translateY(14px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes neo-chip-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

@keyframes neo-flag-wave {
  0%, 100% { transform: rotate(0deg) scale(1); }
  20%      { transform: rotate(-9deg) scale(1.08); }
  40%      { transform: rotate(7deg)  scale(1.04); }
  60%      { transform: rotate(-4deg) scale(1.02); }
  80%      { transform: rotate(2deg)  scale(1); }
}

/* Continuous gradient shimmer on the hero headline accents */
.neo-grad-shimmer {
  background-size: 220% 100% !important;
  animation: neo-grad-shift 5.5s ease-in-out infinite;
}

@keyframes neo-grad-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtle rise-on-hover for the feature cards (enhances existing animation) */
.neo-feature-card {
  transition: transform .32s cubic-bezier(.2,.9,.3,1.2), box-shadow .32s ease, border-color .32s ease !important;
}
.neo-feature-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 24px 50px rgba(37, 99, 255, 0.18);
  border-color: rgba(124, 92, 246, 0.35);
}

/* Gentle pulse on the live-dot in the badge */
.neo-badge > span:first-child {
  animation: neo-live-pulse 1.6s ease-in-out infinite;
}

@keyframes neo-live-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(31, 111, 255, 0.55); }
  50%      { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(31, 111, 255, 0); }
}

/* Brand logo gentle bobbing (added on top of existing pulse) */
.neo-brand__logo {
  animation:
    neo-logo-pulse 3.6s ease-in-out infinite,
    neo-logo-bob 5.2s ease-in-out infinite !important;
}

@keyframes neo-logo-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-3px) rotate(-2deg); }
}

/* Primary CTA button shine/sweep on hover */
.neo-btn--primary {
  position: relative;
  overflow: hidden;
}
.neo-btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s ease;
  pointer-events: none;
}
.neo-btn--primary:hover::after {
  transform: translateX(120%);
}

/* Dark-theme tweaks for chips */
html.dark-theme .neo-lang-chip {
  background: rgba(40, 28, 80, 0.65);
  color: #efeaff;
  border-color: rgba(168, 85, 247, 0.30);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
html.dark-theme .neo-lang-chip:hover {
  border-color: rgba(168, 85, 247, 0.65);
  box-shadow: 0 14px 28px rgba(168, 85, 247, 0.25);
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .neo-lang-chip,
  .neo-lang-flag,
  .neo-grad-shimmer,
  .neo-brand__logo,
  .neo-badge > span:first-child {
    animation: none !important;
  }
}

/* ============================================================
   Mobile compaction: keep hero text horizontal, not vertical
   ============================================================ */

/* Phones: shrink the giant headline so words don't wrap one-per-line */
@media (max-width: 540px) {
  .neo-hero-copy {
    padding: 18px !important;
  }
  .neo-hero-copy h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.025em !important;
    margin: 14px 0 12px !important;
    word-spacing: 0;
    overflow-wrap: break-word;
  }
  .neo-hero-copy p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }
  .neo-badge,
  .neo-mini-badge {
    font-size: 0.78rem !important;
    padding: 0 12px !important;
    min-height: 34px !important;
  }
  /* Chips: smaller + tighter so 3-4 fit per row */
  .neo-lang-chips {
    gap: 6px !important;
    margin: 14px 0 18px !important;
  }
  .neo-lang-chip {
    padding: 5px 10px !important;
    font-size: 0.74rem !important;
    border-radius: 999px !important;
    gap: 5px !important;
  }
  .neo-lang-flag {
    font-size: 0.9rem !important;
  }
}

/* Very small phones (≤390px): squeeze a touch more */
@media (max-width: 390px) {
  .neo-hero-copy h1 {
    font-size: clamp(1.4rem, 6.6vw, 1.85rem) !important;
    letter-spacing: -0.02em !important;
  }
  .neo-hero-copy p {
    font-size: 0.9rem !important;
  }
  .neo-lang-chip {
    padding: 4px 9px !important;
    font-size: 0.7rem !important;
  }
}
