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

body {
    overflow-x: hidden !important;
}
:root {
  --bg: #f8f7ff;
  --bg2: #f2f0ff;
  --bg-dark: #0a0614;
  --bg-dark2: #0f0a1e;
  --card: #fff;
  --pm: #6d28d9;
  --pm2: #7c3aed;
  --pm3: #8b5cf6;
  --pl: #a78bfa;
  --pl2: #c4b5fd;
  --accent: #7c3aed;
  --accent2: #6d28d9;
  --green: #10b981;
  --green2: #34d399;
  --amber: #f59e0b;
  --hero-text: #0f0a1e;
  --hero-text2: #4b4569;
  --hero-text3: #9289b0;
  --hero-border: rgba(124, 58, 237, 0.12);
  --text: #f8f6ff;
  --text2: rgba(248, 246, 255, 0.65);
  --text3: rgba(248, 246, 255, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(167, 139, 250, 0.25);
  --r: 18px;
  --r2: 12px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 32px 80px rgba(109, 40, 217, 0.18);
}
html,
body {
  min-height: 100%;
  background: #fff;
  color: var(--hero-text);
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
.cab {
  font-family: "Cabinet Grotesk", sans-serif;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f0ecff;
}
::-webkit-scrollbar-thumb {
  background: var(--pm);
  border-radius: 3px;
}

/* NAV */
/* .nav {
  position: sticky;
  top: 0;
  z-index: 300;
  padding: 0 48px;
  background: transparent !important;
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
} */
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
/* .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  font-family: "Cabinet Grotesk", sans-serif;
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
} */
.logo-text {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--hero-text);
}
.logo-text span {
  color: var(--pm2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--hero-text2);
  cursor: pointer;
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--pm2);
  background: rgba(124, 58, 237, 0.06);
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-login {
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pm2);
  border: 1.5px solid rgba(124, 58, 237, 0.25);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.nav-login:hover {
  background: rgba(124, 58, 237, 0.06);
}
.nav-cta {
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  color: #fff;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
  font-family: "Instrument Sans", sans-serif;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 48px 100px;
  background: linear-gradient(160deg, #1a0533 0%, #2d1056 45%, #1e3a8a 100%);
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(167, 139, 250, 0.08) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-orb1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.3) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30, 58, 138, 0.4) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
  font-size: 11.5px;
  font-weight: 700;
  color: #c4b5fd;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green2);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero-h1 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-h1 .grad {
  background: linear-gradient(130deg, #a78bfa 0%, #60a5fa 60%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-hero {
  padding: 14px 30px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.28s;
  font-family: "Instrument Sans", sans-serif;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.65);
}
.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.proof-avs {
  display: flex;
}
.proof-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  margin-left: -9px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  flex-shrink: 0;
}
.proof-av:first-child {
  margin-left: 0;
}
.proof-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.proof-text strong {
  color: #fff;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hstat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  backdrop-filter: blur(16px);
}
.hstat:hover {
  transform: translateX(-4px);
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(255, 255, 255, 0.1);
}
.hstat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hstat-num {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hstat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  font-weight: 500;
}
.hstat-pill {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--green2);
  background: rgba(52, 211, 153, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

/* LOGOS BAR */
.logos-bar {
  background: #fff;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  padding: 22px 48px;
}
.logos-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logos-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--hero-text3);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.logos-list {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}
.logo-brand {
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(15, 10, 30, 0.25);
  white-space: nowrap;
  font-family: "Cabinet Grotesk", sans-serif;
  transition: color 0.2s;
}
.logo-brand:hover {
  color: rgba(124, 58, 237, 0.5);
}

/* HOW IT WORKS */
.how-section {
  padding: 100px 48px;
  background: #f8f7ff;
  position: relative;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--pm2);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-h {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--hero-text);
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--hero-text2);
  line-height: 1.75;
  max-width: 560px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.how-connector {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--pm2), #6366f1);
  opacity: 0.2;
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: "Cabinet Grotesk", sans-serif;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.9);
}
.how-step h4 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--hero-text);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 13px;
  color: var(--hero-text2);
  line-height: 1.6;
}

/* FEATURES */
.feat-section {
  padding: 100px 48px;
  background: #fff;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feat-card {
  background: #faf9ff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feat-card:hover {
  border-color: rgba(124, 58, 237, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.1);
}
.feat-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feat-card h3 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--hero-text);
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 13.5px;
  color: var(--hero-text2);
  line-height: 1.7;
}

/* BUILDER SECTION */
/* #builder {
  background: linear-gradient(160deg, #f5f1ff 0%, #ede8ff 50%, #f0f4ff 100%);
  position: relative;
  padding: 100px 48px;
} */
.builder-bg-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(124, 58, 237, 0.05) 1.5px,
    transparent 1.5px
  );
  background-size: 40px 40px;
  pointer-events: none;
}
.builder-orb1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.builder-orb2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.builder-head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  color: #fff !important;
}
.builder-head h2 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 900;
  /* color: var(--hero-text); */
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.builder-head h2 span {
  background: linear-gradient(130deg, var(--pm2), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.builder-head p {
  font-size: 16px;
  color: var(--hero-text2);
  line-height: 1.7;
}
.builder-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* STEP INDICATOR */
.step-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.st-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.st-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  font-family: "Cabinet Grotesk", sans-serif;
  transition: all 0.4s;
  position: relative;
  flex-shrink: 0;
}
.st-circle.idle {
  background: var(--paper-2);
  border: 2px solid var(--line);
  color: rgba(16, 35, 28, 0.45);
}

.st-circle.active {
  background: linear-gradient(135deg, var(--moss), var(--moss-deep));
  border: 2px solid rgba(31, 92, 67, 0.35);
  color: var(--paper);
  box-shadow: 0 0 24px rgba(31, 92, 67, 0.28);
}

.st-circle.done,
.st-circle.completed {
  background: var(--sun);
  border: 2px solid rgba(244, 162, 59, 0.45);
  color: var(--moss-deep);
}
.st-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--hero-text3);
  white-space: nowrap;
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  transition: color 0.4s;
}
.st-label.active-lbl {
  color: #1f5c43;
}
.st-label.done-lbl {
  color: var(--green);
}
.st-pipe {
  width: 70px;
  height: 2px;
  background: rgba(124, 58, 237, 0.12);
  margin: 0;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.st-pipe-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pm2), #6366f1);
  transition: width 0.5s ease;
}
.st-pipe-fill.full {
  width: 100%;
}

/* FORM BOX */
.form-box {
	  display: flex;
  flex-direction: column;
	min-height:700px;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(124, 58, 237, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.05);
}
.form-box-header {
  padding: 26px 36px 20px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  position: relative;
  overflow: hidden;

}
.fbh-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pm2);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 4px 13px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.form-box-header h2 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff !important;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.form-box-header p {
  font-size: 13.5px;
  color: var(--hero-text2);
  line-height: 1.65;
}
.form-box-body {
  padding: 24px 36px;
}
.form-box-footer {
  padding: 16px 36px;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  background: #faf9ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.step-container {
  position: relative;
}
.step-pane {
  display: none;
}
.step-pane.active {
  display: block;
}

/* ── PANE 0 ── */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.wfeat {
  background: #faf9ff;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 14px;
  padding: 16px;
  transition: all 0.25s;
  cursor: default;
}
/* .wfeat:hover {
  border-color: rgba(124, 58, 237, 0.22);
  background: #f5f1ff;
  transform: translateY(-2px);
} */
.wfeat-icon {
  font-size: 22px;
  margin-bottom: 7px;
  display: block;
}
.wfeat-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--hero-text);
  margin-bottom: 3px;
}
.wfeat-desc {
  font-size: 12px;
  color: var(--hero-text2);
  line-height: 1.6;
}
.welcome-cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 10px;
  font-size: 12.5px;
  color: #059669;
}
.welcome-cta-note span:first-child {
  font-size: 16px;
}

/* ── PANE 1 (Goals) ── */
.goals-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #06102c !important;
  margin-bottom: 11px;
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.goal-tile {
  padding: 13px 10px;
  border-radius: 12px;
  border: 1.5px solid rgba(124, 58, 237, 0.1);
  background: #faf9ff;
  cursor: pointer;
  transition: all 0.22s;
  text-align: center;
}
.goal-tile:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: #f5f1ff;
  transform: translateY(-2px);
}
.goal-tile.sel {
  /* border-color: var(--pm2); */
  background: linear-gradient( 135deg, var(--primary-dark) 0%, var(--primary-blue) 45%, var(--primary-light) 100%) !important;
  /* box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08); */
}
.goal-tile-icon {
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
  color: #fff;
}
.goal-tile-name {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--hero-text);
}
.goal-tile-hint {
  font-size: 10px;
  color: var(--hero-text3);
  margin-top: 2px;
}
.goal-tile.sel .goal-tile-hint {
  color: #fff;
}
.divider-line {
  height: 1px;
  background: rgba(124, 58, 237, 0.08);
  margin: 16px 0;
}
.collect-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--hero-text3);
  margin-bottom: 10px;
}
.collect-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.collect-tag {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 7px 13px !important;
  border-radius: 100px !important;
  border: 1.5px solid var(--line) !important;
  background: var(--paper) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: rgba(16, 35, 28, 0.75) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.collect-tag.on {
  border-color: var(--moss) !important;
  background: rgba(31, 92, 67, 0.08) !important;
  color: var(--moss) !important;
  font-weight: 600 !important;
}

.collect-chk {
  width: 15px !important;
  height: 15px !important;
  border-radius: 4px !important;
  border: 1.5px solid rgba(31, 92, 67, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 9px !important;
  color: var(--paper) !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

.collect-tag.on .collect-chk {
  background: #fff !important;
  border-color:  #fff !important;
  color: #06102c !important;
}

/* IMPORTANT: prevents duplicate checkmark */
.collect-tag.on .collect-chk::before {
  content: none !important;
}

/* ── PANE 2 (Persona) ── */
.fi {
  background: #faf9ff;
  border: 1.5px solid rgba(124, 58, 237, 0.15);
  color: var(--hero-text);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.fi::placeholder {
  color: var(--hero-text3);
}
.fi:focus {
  border-color: var(--pm2);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: #fff;
}
.field {
  margin-bottom: 14px;
}
.field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--hero-text2);
  letter-spacing: 0.2px;
  margin-bottom: 5px;
  display: block;
}
.av-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.av-item {
  border-radius: 11px;
  border: 2.5px solid rgba(124, 58, 237, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  aspect-ratio: 1;
  background: #f5f1ff;
  max-height: 68px;
}
.av-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.18);
}
.av-item.sel {
  border-color: var(--pm2);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.av-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.av-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.65);
  color: #fff;
  font-size: 18px;
  border-radius: 9px;
  opacity: 0;
  transition: all 0.2s;
  backdrop-filter: blur(3px);
}
.av-item.sel .av-check {
  opacity: 1;
}
.mini-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--hero-text3);
  margin-bottom: 8px;
}
.palette-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.pal-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid rgba(124, 58, 237, 0.12);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: var(--hero-text2);
  background: #faf9ff;
  transition: all 0.2s;
}
.pal-chip:hover {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--hero-text);
}
.pal-chip.active-pal {
  border-color: var(--pm2);
  background: rgba(124, 58, 237, 0.07);
  color: var(--pm2);
}
.pal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.color-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.color-row {
  padding: 9px 12px;
  background: #faf9ff;
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.color-label {
  font-size: 11.5px;
  color: var(--hero-text2);
  flex: 1;
  font-weight: 500;
}
input[type="color"] {
  width: 28px;
  height: 28px;
  padding: 1px;
  border-radius: 7px;
  border: 1.5px solid rgba(124, 58, 237, 0.15);
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
}
.beh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1.5px solid rgba(124, 58, 237, 0.1);
  background: #faf9ff;
  margin-bottom: 12px;
}
.beh-info .beh-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--hero-text);
}
.beh-info .beh-hint {
  font-size: 11.5px;
  color: var(--hero-text3);
  margin-top: 2px;
}
.toggle {
  position: relative;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.t-sl {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 26px;
  transition: 0.25s;
}
.t-sl::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.25s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.toggle input:checked + .t-sl {
  background: var(--pm2);
}
.toggle input:checked + .t-sl::before {
  transform: translateX(18px);
}

/* ══ QUICK SUGGESTIONS ══ */
.sugg-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.sugg-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--pm2);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
}
.sugg-hint {
  font-size: 12px;
  color: var(--hero-text3);
  margin-bottom: 12px;
  line-height: 1.6;
}
.sugg-add-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 7px;
  align-items: end;
  margin-bottom: 12px;
}
.sugg-add-row .fi {
  font-size: 12.5px;
  padding: 8px 12px;
}
.btn-add-sugg {
  padding: 8px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 36px;
}
.btn-add-sugg:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}
.sugg-empty {
  text-align: center;
  padding: 16px;
  background: #faf9ff;
  border-radius: 12px;
  border: 1.5px dashed rgba(124, 58, 237, 0.15);
  font-size: 12px;
  color: var(--hero-text3);
}
.sugg-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 260px;
  overflow-y: auto;
}
.sugg-list::-webkit-scrollbar {
  width: 3px;
}
.sugg-list::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.2);
  border-radius: 10px;
}

/* Suggestion item — view mode */
.sugg-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  background: #fff;
  border: 1.5px solid rgba(124, 58, 237, 0.1);
  border-radius: 11px;
  transition: all 0.2s;
}
.sugg-item:hover {
  border-color: rgba(124, 58, 237, 0.22);
  background: #faf9ff;
}
.sugg-item-texts {
  flex: 1;
  min-width: 0;
}
.sugg-q {
  font-size: 12px;
  font-weight: 700;
  color: var(--hero-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sugg-a {
  font-size: 11px;
  color: var(--hero-text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.sugg-chip-preview {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--pm2);
  background: rgba(124, 58, 237, 0.06);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.sugg-actions {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.btn-edit-sugg,
.btn-del-sugg {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  border: 1px solid;
}
.btn-edit-sugg {
  background: rgba(124, 58, 237, 0.07);
  border-color: rgba(124, 58, 237, 0.18);
  color: var(--pm2);
}
.btn-edit-sugg:hover {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.35);
}
.btn-del-sugg {
  background: rgba(239, 68, 68, 0.07);
  border-color: rgba(239, 68, 68, 0.18);
  color: #ef4444;
}
.btn-del-sugg:hover {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.35);
}

/* Suggestion item — edit mode */
.sugg-item.editing {
  flex-direction: column;
  align-items: stretch;
  background: #f5f1ff;
  border-color: var(--pm2);
}
.sugg-edit-fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sugg-edit-actions {
  display: flex;
  gap: 7px;
  margin-top: 4px;
}
.btn-save-sugg {
  flex: 1;
  padding: 7px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.2s;
}
.btn-save-sugg:hover {
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}
.btn-cancel-sugg {
  flex: 1;
  padding: 7px;
  border-radius: 8px;
  background: #faf9ff;
  color: var(--hero-text2);
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid rgba(124, 58, 237, 0.15);
  cursor: pointer;
  font-family: "Instrument Sans", sans-serif;
}

/* ── PANE 3 (Welcome msg) ── */
/* reuses .fi, .field, .beh-row, .toggle */

/* ── PANE 4 (Register) ── */
.pass-group {
  display: flex;
  background: #faf9ff;
  border: 1.5px solid rgba(124, 58, 237, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.pass-group:focus-within {
  border-color: var(--pm2);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: #fff;
}
.pass-group input {
  flex: 1;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--hero-text);
  background: transparent;
  border: none;
  outline: none;
  font-family: "Instrument Sans", sans-serif;
}
.pass-group input::placeholder {
  color: var(--hero-text3);
}
.pass-eye {
  padding: 0 12px;
  background: transparent;
  border: none;
  color: var(--hero-text3);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.fi:focus, .chat-input:focus, .pass-group:focus-within .pass-eye i{
  color: #000 !important;
}
.pass-eye i{
  color: #fff;
}
.pass-eye:hover {
  color: var(--pm2);
}
.pass-group.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08) !important;
}
.pass-group.is-valid {
  border-color: var(--green) !important;
}
.fi.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08) !important;
}
.fi.is-valid {
  border-color: var(--green) !important;
}
.field-err {
  font-size: 11.5px;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}
.strength-wrap {
  margin-top: 8px;
  display: none;
}
.strength-track {
  height: 4px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}
.strength-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s, background 0.3s;
  width: 0;
}
.strength-text {
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 5px;
}
.strength-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 10px;
  list-style: none;
}
.strength-rules li {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--hero-text3);
  transition: color 0.2s;
}
.strength-rules li.ok {
  color: var(--green);
}
.strength-rules li.ok::before {
  content: "✓";
  font-weight: 700;
}
.strength-rules li:not(.ok)::before {
  content: "·";
  font-size: 18px;
  line-height: 1;
}
.reg-alert {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 14px;
}
.reg-alert.show {
  display: flex;
}
.reg-alert.ok {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
}
.reg-alert.err {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #dc2626;
}
.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: #faf9ff;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 10px;
}
.terms-row input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--pm2);
  margin-top: 1px;
  flex-shrink: 0;
}
.terms-row label {
  font-size: 12px;
  color: var(--hero-text2);
  line-height: 1.55;
  cursor: pointer;
}
.terms-row a {
  color: var(--pm2);
  text-decoration: underline;
}
.social-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: var(--hero-text3);
  font-size: 12px;
}
.social-divider::before,
.social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(124, 58, 237, 0.1);
}
.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border-radius: 10px;
  border: 1.5px solid rgba(124, 58, 237, 0.12);
  background: #faf9ff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--hero-text2);
  transition: all 0.2s;
  font-family: "Instrument Sans", sans-serif;
}
.social-btn:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background: #f5f1ff;
  color: var(--hero-text);
}
.verif-panel {
  display: none;
  text-align: center;
  padding: 12px 0;
}
.verif-panel.show {
  display: block;
}
.verif-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(124, 58, 237, 0.08);
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
}
.verif-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--hero-text);
  margin-bottom: 8px;
}
.verif-desc {
  font-size: 13.5px;
  color: var(--hero-text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.btn-resend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: 10px;
  background: #faf9ff;
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  color: var(--pm2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  font-family: "Instrument Sans", sans-serif;
}
.btn-resend:hover {
  background: rgba(124, 58, 237, 0.07);
}
.signin-hint {
  text-align: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  font-size: 13px;
  color: var(--hero-text3);
}
.signin-hint a {
  color: var(--pm2);
  font-weight: 600;
}
.signin-hint a:hover {
  color: #4c1d95;
}

/* BUTTONS */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  background: #faf9ff;
  color: var(--hero-text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(124, 58, 237, 0.12);
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.2s;
}
.btn-back:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 45%, var(--primary-light) 100%) !important;
    color: #fff !important;
}
.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.28s;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.3);
}
/* .btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
} */
.btn-next:disabled {
  opacity: 0.5;
  transform: none;
  cursor: not-allowed;
}
.btn-register {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  border: none;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
  font-family: "Instrument Sans", sans-serif;
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
}
.btn-register:disabled {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
}

/* CHATBOT PREVIEW */
.preview-col {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}
.preview-col::-webkit-scrollbar {
  width: 0;
}
.preview-shell {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(124, 58, 237, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.06);
}
.preview-topbar {
  padding: 10px 18px;
  background: #fff;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  display: flex;
  align-items: center;
  gap: 9px;
}
.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
.preview-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pm2);
  font-family: "Cabinet Grotesk", sans-serif;
  flex: 1;
}
.preview-badge {
  font-size: 10px;
  color: var(--hero-text3);
  background: rgba(124, 58, 237, 0.07);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid rgba(124, 58, 237, 0.12);
}
.chat-widget {
  display: flex;
  flex-direction: column;
}
.chat-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: background 0.4s;
}
.chat-av-wrap {
  position: relative;
  flex-shrink: 0;
}
.chat-av {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  background: var(--pm2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border: none;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.chat-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.chat-av-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
}
.chat-bot-info {
  flex: 1;
}
.chat-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  font-family: "Cabinet Grotesk", sans-serif;
  line-height: 1.2;
}
.chat-status-txt {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}
.chat-body {
  background: #f8f7ff;
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  height: 300px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.chat-body::-webkit-scrollbar {
  width: 3px;
}
.chat-body::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.2);
  border-radius: 10px;
}
.chat-bot-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.bot-mini-av {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--pm2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.bot-mini-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 7px;
}
.msg-col {
  display: flex;
  flex-direction: column;
}
.bubble-bot {
  background: #fff;
  border-radius: 13px 13px 13px 3px;
  padding: 8px 12px;
  font-size: 11.5px;
  line-height: 1.65;
  color: #1a0f3a;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
  max-width: 86%;
  border: 1px solid rgba(124, 58, 237, 0.07);
}
.msg-time {
  font-size: 9px;
  color: var(--hero-text3);
  margin-top: 3px;
  padding-left: 2px;
}
.chat-user-msg {
  display: flex;
  justify-content: flex-end;
}
.bubble-user {
  border-radius: 13px 13px 3px 13px;
  padding: 8px 12px;
  font-size: 11.5px;
  line-height: 1.65;
  color: #fff;
  max-width: 82%;
  box-shadow: 0 3px 12px rgba(124, 58, 237, 0.25);
}
.msg-time-user {
  font-size: 9px;
  color: var(--hero-text3);
  margin-top: 3px;
  text-align: right;
}
.typing-indicator {
  display: flex;
  gap: 8px;
  align-items: center;
}
.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  background: #fff;
  border-radius: 11px;
  padding: 9px 12px;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.07);
}
.typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pm2);
  animation: typingBounce 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingBounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.typing-indicator {
  display: none;
}
.typing-indicator.show {
  display: flex;
}
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px 10px;
  background: #f8f7ff;
  border-top: 1px solid rgba(124, 58, 237, 0.07);
}
.chat-chip {
  padding: 5px 11px;
  border-radius: 100px;
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  font-size: 10px;
  color: var(--pm2);
  cursor: pointer;
  background: #fff;
  transition: all 0.18s;
  font-weight: 600;
}
.chat-chip:hover {
  background: var(--pm2);
  color: #fff;
  border-color: var(--pm2);
}
@keyframes micPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}
@keyframes micPulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}
.chat-inputbar {
  background: #fff;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(124, 58, 237, 0.07);
}
.chat-input {
  flex: 1;
  background: #f5f1ff;
  border-radius: 20px;
  border: 1.5px solid rgba(124, 58, 237, 0.12);
  padding: 7px 13px;
  font-size: 10.5px;
  color: #1a0f3a;
  outline: none;
  font-family: "Instrument Sans", sans-serif;
  transition: border-color 0.2s;
}
.chat-input:focus {
  border-color: var(--pm2);
}
.chat-input::placeholder {
  color: var(--hero-text3);
}
.voice-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  font-size: 12px;
  transition: all 0.2s;
}
.voice-btn.visible {
  display: flex;
}
.voice-btn.idle {
  background: rgba(124, 58, 237, 0.1);
  color: var(--pm2);
  animation: micPulse 2s infinite;
}
.voice-btn.listening {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  animation: micPulseRed 1s infinite;
}
.voice-listening-bubble {
  display: none;
  gap: 8px;
  align-items: center;
}
.voice-listening-bubble.show {
  display: flex;
}
.vlb-inner {
  background: #fff;
  border-radius: 13px 13px 13px 3px;
  padding: 9px 13px;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  gap: 9px;
}
.voice-waves {
  display: flex;
  align-items: center;
  gap: 3px;
}
.vwave {
  width: 3px;
  border-radius: 3px;
  background: var(--pm2);
  animation: vwAnim 1s ease-in-out infinite;
}
.vwave:nth-child(1) {
  animation-delay: 0s;
}
.vwave:nth-child(2) {
  animation-delay: 0.1s;
}
.vwave:nth-child(3) {
  animation-delay: 0.2s;
}
.vwave:nth-child(4) {
  animation-delay: 0.3s;
}
.vwave:nth-child(5) {
  animation-delay: 0.4s;
}
.vwave:nth-child(6) {
  animation-delay: 0.3s;
}
.vwave:nth-child(7) {
  animation-delay: 0.2s;
}
@keyframes vwAnim {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 16px;
  }
}
.vlb-text {
  font-size: 10px;
  color: var(--pm2);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.chat-send {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.3);
}
.chat-send:hover {
  transform: scale(1.1);
}
.launcher-area {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  padding-right: 6px;
}
.launcher-btn {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
  transition: all 0.3s;
  position: relative;
  background: var(--pm2);
}
.launcher-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.45);
}
.launcher-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.launcher-x {
  position: absolute;
  inset: 0;
  background: rgba(124, 58, 237, 0.9);
  color: #fff;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.launcher-btn.open .launcher-x {
  opacity: 1;
}

/* TESTIMONIALS */
.testi-section {
  padding: 100px 48px;
  background: #f8f7ff;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testi-card {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 26px;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.05);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}
.testi-stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 14px;
  color: var(--hero-text2);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: "Cabinet Grotesk", sans-serif;
}
.testi-name {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--hero-text);
}
.testi-role {
  font-size: 12px;
  color: var(--hero-text3);
}

/* CTA */
.cta-section {
  padding: 100px 48px;
  background: linear-gradient(160deg, #f5f1ff 0%, #ede8ff 50%, #f0f4ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-h {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: var(--hero-text);
  letter-spacing: -2px;
  margin-bottom: 18px;
  line-height: 1.1;
}
.cta-h span {
  background: linear-gradient(130deg, var(--pm2), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 17px;
  color: var(--hero-text2);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 12.5px;
  color: var(--hero-text3);
  margin-top: 18px;
}
.cta-note span {
  color: var(--green);
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: #0a0614;
  padding: 80px 48px 0;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
  font-size: 12px;
  color: var(--pl);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text2);
}
.fsoc:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--pm2);
  color: var(--pl2);
}
.footer-col h5 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li a {
  font-size: 13.5px;
  color: var(--text2);
  transition: color 0.2s;
}
.footer-col li a:hover {
  color: var(--pl2);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12.5px;
  color: var(--text3);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: var(--text3);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text2);
}
.footer .logo-text {
  color: #fff;
}
.footer .logo-text span {
  color: var(--pl2);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .builder-layout {
    grid-template-columns: 1fr;
  }
  .preview-col {
    position: static;
    max-height: none;
  }
}
@media (max-width: 900px) {
  .hero-inner,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats,
  .nav-links {
    display: none;
  }
  .hero-h1 {
    font-size: 40px;
  }
  .feat-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
  .how-connector {
    display: none;
  }
  .section-h {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 60px 20px 70px;
  }
  .feat-grid,
  .testi-grid,
  .goals-grid,
  .welcome-grid,
  .color-fields,
  .social-btns {
    grid-template-columns: 1fr;
  }
  .how-section,
  .feat-section,
  .testi-section,
  .cta-section {
    padding: 70px 20px;
  }
  #builder {
    padding: 70px 20px;
  }
  .form-box-header,
  .form-box-body {
    padding: 20px 18px;
  }
  .form-box-footer {
    padding: 12px 18px;
  }
  .hero-h1 {
    font-size: 32px;
  }
  .cta-h {
    font-size: 34px;
  }
  .nav {
    padding: 0 20px;
  }
  .logos-bar {
    padding: 18px 20px;
  }
  .sugg-add-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* STICKY HEADER + FOOTER — only body content slides */


.form-box-body {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.form-box-footer {
  position: relative;
  z-index: 10;
  background: #faf9ff;
  flex-shrink: 0;
}

.form-box-header {
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

#alerts {
  flex-shrink: 0;
}


/* ══ PANE 4 REDESIGN ══ */
.reg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .reg-two-col { grid-template-columns: 1fr; }
}

.strength-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 5px;
}
.strength-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  list-style: none;
}
.strength-rules li {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 100px;
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.12);
  color: var(--hero-text3);
  transition: all 0.2s;
  font-weight: 600;
}
.strength-rules li.ok {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.3);
  color: var(--green);
}
.strength-rules li.ok::before { content: none; }
.strength-rules li:not(.ok)::before { content: none; }

.reg-login-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--hero-text3);
  padding-top: 14px;
  border-top: 1px solid rgba(124,58,237,0.08);
}
.reg-login-hint a {
  color: var(--pm2);
  font-weight: 700;
  text-decoration: underline;
}

/* Login stage */
.login-welcome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(124,58,237,0.05);
  border: 1px solid rgba(124,58,237,0.12);
  border-radius: 12px;
  margin-bottom: 18px;
}
.login-welcome-icon { font-size: 22px; }
.login-welcome-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--hero-text2);
}
.login-forgot-row {
  text-align: right;
  margin-top: -8px;
  margin-bottom: 14px;
}
.login-forgot-row a {
  font-size: 12px;
  color: var(--pm2);
  font-weight: 600;
}

/* ══ OTP MODAL ══ */
.otp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,6,20,0.55);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.otp-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.otp-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(124,58,237,0.25), 0 8px 24px rgba(0,0,0,0.1);
  border: 1px solid rgba(124,58,237,0.12);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.otp-overlay.show .otp-modal {
  transform: translateY(0) scale(1);
}
.otp-modal-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(99,102,241,0.08));
  border: 2px solid rgba(124,58,237,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.otp-modal-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--hero-text);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.otp-modal-sub {
  font-size: 13px;
  color: var(--hero-text2);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 28px;
}
.otp-modal-sub strong { color: var(--pm2); }
.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}
.otp-digit {
  width: 52px;
  height: 58px;
  border-radius: 14px;
  border: 2px solid rgba(124,58,237,0.18);
  background: #faf9ff;
  font-size: 24px;
  font-weight: 800;
  font-family: "Cabinet Grotesk", sans-serif;
  color: var(--hero-text);
  text-align: center;
  outline: none;
  transition: all 0.2s;
  caret-color: var(--pm2);
}
.otp-digit:focus {
  border-color: var(--pm2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
  transform: translateY(-2px);
}
.otp-digit.filled {
  border-color: var(--pm2);
  background: rgba(124,58,237,0.05);
}
.otp-digit.error {
  border-color: #ef4444 !important;
  background: rgba(239,68,68,0.05) !important;
  animation: otpShake 0.4s ease;
}
@keyframes otpShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.otp-timer {
  text-align: center;
  font-size: 12px;
  color: var(--hero-text3);
  margin-bottom: 22px;
  min-height: 20px;
}
.otp-timer span { color: var(--pm2); font-weight: 700; }
.otp-timer a {
  color: var(--pm2);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.otp-err {
  text-align: center;
  font-size: 12px;
  color: #dc2626;
  margin-bottom: 10px;
  min-height: 18px;
  font-weight: 600;
}
.btn-otp-verify {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pm2), #6366f1);
  border: none;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(124,58,237,0.3);
  font-family: "Instrument Sans", sans-serif;
  margin-bottom: 12px;
}
.btn-otp-verify:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124,58,237,0.45);
}
.btn-otp-verify:disabled {
  opacity: 0.5;
  transform: none;
  cursor: not-allowed;
}
.otp-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(124,58,237,0.15);
  background: #faf9ff;
  color: var(--hero-text2);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.otp-close:hover {
  background: rgba(239,68,68,0.07);
  border-color: rgba(239,68,68,0.3);
  color: #ef4444;
}
.otp-success-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 12px;
  animation: successPop 0.5s cubic-bezier(0.22,1,0.36,1);
}
@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================================================
   SALES AI NEW THEME OVERRIDES
   Cream / Moss / Gold design system
   Added to remove old purple theme without changing HTML/JS
   ========================================================= */

:root {
  --bg: #f6f3ea !important;
  --bg2: #efe9da !important;
  --bg-dark: #10231c !important;
  --bg-dark2: #143f2e !important;
  --card: #fffdf7 !important;

  --pm: #143f2e !important;
  --pm2: #1f5c43 !important;
  --pm3: #2f6f8f !important;
  --pl: #f7c47a !important;
  --pl2: #efe9da !important;
  --accent: #f4a23b !important;
  --accent2: #1f5c43 !important;

  --green: #1f5c43 !important;
  --green2: #46c07a !important;
  --amber: #f4a23b !important;

  --hero-text: #10231c !important;
  --hero-text2: rgba(16, 35, 28, 0.72) !important;
  --hero-text3: rgba(16, 35, 28, 0.48) !important;
  --hero-border: rgba(16, 35, 28, 0.12) !important;

  --text: #10231c !important;
  --text2: rgba(16, 35, 28, 0.72) !important;
  --text3: rgba(16, 35, 28, 0.48) !important;
  --border: rgba(16, 35, 28, 0.12) !important;
  --border2: rgba(31, 92, 67, 0.22) !important;

  --shadow: 0 24px 60px -20px rgba(16, 35, 28, 0.28) !important;
  --shadow-lg: 0 32px 80px rgba(16, 35, 28, 0.18) !important;

  --paper: #f6f3ea;
  --paper-2: #efe9da;
  --moss: #1f5c43;
  --moss-deep: #143f2e;
  --sun: #f4a23b;
  --sun-soft: #f7c47a;
  --sky: #2f6f8f;
  --line: rgba(16, 35, 28, 0.12);
}

html,
body {
  background: var(--paper) !important;
  color: var(--hero-text) !important;
}

/* Keep scrollbar in the new theme */
::-webkit-scrollbar-track {
  background: var(--paper-2) !important;
}
::-webkit-scrollbar-thumb {
  background: var(--moss) !important;
}

/* NAV */
.logo  {
    width: 15%;
}
.nav {
  /* background-color: #020611 !important; */
  /* background:  linear-gradient(
    135deg,#231A5A 0%,#081B4D 25%,#05112E 55%,#02102A 100%) !important;  */
  /* border-bottom: 1px solid var(--line) !important; */
  box-shadow: none !important;
}
.logo-mark img {
    width: 55%;
}
.logo-mark,
.logo .dot {
  /* background: var(--moss) !important; */
  color: var(--sun) !important;
  box-shadow: 0 18px 40px -22px rgba(16,35,28,.45) !important;
}
.logo-text,
.logo {
  color: var(--ink, #10231c) !important;
}
.logo-text span {
  color: var(--moss) !important;
}
.nav-link,
.navlinks a {
  color: rgba(16, 35, 28, 0.76) !important;
}
.nav-link:hover,
.navlinks a:hover {
  color: var(--moss) !important;
  background: rgba(31, 92, 67, 0.07) !important;
}
.nav-login,
.btn-ghost {
  color: #fff !important;
  border-color: #fff !important;
  background: transparent !important;
}
.nav-login:hover,
.btn-ghost:hover {
  color: var(--moss) !important;
  border-color: rgba(31, 92, 67, 0.35) !important;
  background: linear-gradient( 135deg, var(--primary-dark) 0%, var(--primary-blue) 45%, var(--primary-light) 100%)
}
.nav-cta,
.btn-primary {
  background:linear-gradient( 135deg, var(--primary-dark) 0%, var(--primary-blue) 45%, var(--primary-light) 100%) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.nav-cta:hover,
.btn-primary:hover {
  background:linear-gradient( 135deg, var(--primary-dark) 0%, var(--primary-blue) 45%, var(--primary-light) 100%) !important;
  box-shadow: 0 20px 44px -18px rgba(31, 92, 67, 0.58) !important;
}

/* Generic chips */
.section-chip,
.hero-eyebrow,
.fbh-step-tag {
  background: var(--paper-2) !important;
  border: 1px solid rgba(244, 162, 59, 0.45) !important;
  color: var(--moss) !important;
}

/* Main builder section */
/* #builder {
  background:
    radial-gradient(circle at 8% 12%, rgba(244,162,59,.18), transparent 25%),
    radial-gradient(circle at 92% 12%, rgba(47,111,143,.12), transparent 26%),
    var(--paper) !important;
} */
.builder-bg-mesh {
  background-image: radial-gradient(rgba(16, 35, 28, 0.055) 1px, transparent 1px) !important;
}
.builder-orb1 {
  background: radial-gradient(circle, rgba(244, 162, 59, 0.16), transparent 66%) !important;
}
.builder-orb2 {
  background: radial-gradient(circle, rgba(47, 111, 143, 0.12), transparent 66%) !important;
}
/* .builder-head h2 {
  color: var(--ink, #10231c) !important;
} */
.builder-head h2 span,
.grad {
  color: var(--moss) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}
.builder-head p,
.section-sub,
.hero-desc {
  color: var(--hero-text2) !important;
}

/* Step indicator */
.st-circle.idle {
  background: var(--paper-2) !important;
  border: 2px solid var(--line) !important;
  color: rgba(16, 35, 28, 0.45) !important;
}
.st-circle.active {
  background: linear-gradient(135deg, var(--moss), var(--moss-deep)) !important;
  border: 2px solid rgba(31, 92, 67, 0.35) !important;
  color: var(--paper) !important;
  box-shadow: 0 0 24px rgba(31, 92, 67, 0.28) !important;
}
.st-circle.done,
.st-circle.completed {
  background: var(--sun) !important;
  border: 2px solid rgba(244, 162, 59, 0.45) !important;
  color: var(--moss-deep) !important;
}
.st-label.active-lbl {
  color: var(--moss) !important;
}
.st-label.done-lbl {
  color: var(--moss) !important;
}
.st-pipe {
  background: var(--line) !important;
}
.st-pipe-fill {
  background: linear-gradient(90deg, var(--sun), var(--moss)) !important;
}

/* Form card */
.form-box,
.preview-shell,
.feat-card,
.how-step,
.testi-card {
  background: var(--card) !important;
  border-color: var(--line) !important;
  box-shadow: 0 24px 60px -28px rgba(16, 35, 28, 0.26) !important;
}
.form-box-header {
  background:linear-gradient(135deg,#231A5A 0%,#081B4D 25%,#05112E 55%,#02102A 100%) !important;
  border-bottom-color: var(--line) !important;
  color: #fff !important;
}
.form-box-footer {
  background: var(--card) !important;
  border-top-color: var(--line) !important;
}
/* .form-box-header h2,
.wfeat-title,
.goal-tile-name,
.field-label,
.mini-label,
.goals-label,
.collect-label,
.sugg-q,
.verif-title,
.beh-info .beh-name {
  color: var(--ink, #10231c) !important;
} */
.form-box-header p,
.wfeat-desc,
.goal-tile-hint,
.sugg-hint,
.sugg-a,
.field-label,
.color-label,
.beh-info .beh-hint,
.reg-login-hint,
.signin-hint {
  color: var(--hero-text2) !important;
}

/* Welcome / goal cards */
.wfeat,
.goal-tile,
.color-row,
.beh-row,
.terms-row,
.sugg-empty,
.social-btn,
.pass-group,
.fi {
  background: var(--paper) !important;
  border-color: var(--line) !important;
}

.goal-tile.sel,
.pal-chip.active-pal,
.av-item.sel,
.sugg-item.editing {
  border-color: var(--moss) !important;
  background: rgba(31, 92, 67, 0.08) !important;
  box-shadow: 0 0 0 4px rgba(31, 92, 67, 0.08) !important;
}
/* .goal-tile.sel .goal-tile-hint {
  color: var(--moss) !important;
} */
.divider-line,
.social-divider::before,
.social-divider::after {
  background: var(--line) !important;
}
.field label{
  color: #06102c !important;
}
/* Collect tags */
.collect-tag {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 7px 13px !important;
  border-radius: 100px !important;
  border: 1.5px solid var(--line) !important;
  background: var(--paper) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: rgba(16, 35, 28, 0.75) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
/* .collect-tag:hover {
  border-color: rgba(31, 92, 67, 0.28) !important;
  background: var(--paper-2) !important;
} */
.collect-tag.on {
  border-color: var(--moss) !important;
  background: rgba(31, 92, 67, 0.08) !important;
  color: var(--moss) !important;
  font-weight: 600 !important;
}
.collect-chk {
  width: 15px !important;
  height: 15px !important;
  border-radius: 4px !important;
  border: 1.5px solid rgba(31, 92, 67, 0.25) !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 9px !important;
  color: transparent !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}
.collect-tag.on .collect-chk {
  background: #fff !important;
  border-color:  #fff !important;
  color: #06102c !important;
}
.collect-chk::before,
.collect-tag.on .collect-chk::before {
  content: none !important;
}

/* Inputs / focus */
.fi,
.chat-input,
.pass-group input {
  color: var(--ink, #10231c) !important;
}
.fi:focus,
.chat-input:focus,
.pass-group:focus-within {
  border-color: var(--moss) !important;
  box-shadow: 0 0 0 3px rgba(31, 92, 67, 0.10) !important;
  background: #fffdf7 !important;
}
.fi::placeholder,
.chat-input::placeholder,
.pass-group input::placeholder {
  color: rgba(16, 35, 28, 0.42) !important;
}

/* Palette / avatar */
.pal-chip {
  background: var(--paper) !important;
  border-color: var(--line) !important;
  color: var(--hero-text2) !important;
}
.pal-chip:hover {
  border-color: rgba(31, 92, 67, 0.28) !important;
  color: var(--moss) !important;
}
.pal-chip.active-pal {
  color: var(--moss) !important;
}
.av-item {
  background: var(--paper-2) !important;
  border-color: var(--line) !important;
}
.av-item:hover {
  border-color: rgba(31, 92, 67, 0.35) !important;
  box-shadow: 0 10px 24px -18px rgba(16,35,28,.45) !important;
}
.av-check {
  background: rgba(31, 92, 67, 0.72) !important;
}

/* Toggle */
.t-sl {
  background: rgba(31, 92, 67, 0.16) !important;
}
.toggle input:checked + .t-sl {
  background: var(--moss) !important;
}

/* Suggestions */
.sugg-count-badge,
.sugg-chip-preview,
.chat-chip,
.btn-resend,
.signin-hint a,
.terms-row a {
  color: var(--moss) !important;
  background: rgba(31, 92, 67, 0.07) !important;
  border-color: rgba(31, 92, 67, 0.18) !important;
}
.sugg-item {
  background: #fffdf7 !important;
  border-color: var(--line) !important;
}
.btn-edit-sugg {
  color: var(--moss) !important;
  background: rgba(31, 92, 67, 0.08) !important;
  border-color: rgba(31, 92, 67, 0.18) !important;
}

/* Buttons */
.btn-next,
.btn-register,
.btn-add-sugg,
.btn-save-sugg {
  background: var(--moss) !important;
  color: var(--paper) !important;
  box-shadow: 0 16px 32px -20px rgba(31, 92, 67, 0.65) !important;
}
.btn-next:hover,
.btn-register:hover,
.btn-add-sugg:hover,
.btn-save-sugg:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px -16px rgba(244, 162, 59, .7);
}
.btn-back,
.btn-cancel-sugg {
  background: transparent !important;
  color: var(--ink, #10231c) !important;
  border-color: var(--line) !important;
}
.btn-back:hover,
.btn-cancel-sugg:hover {
  color: #fff !important;
  border-color: rgba(31, 92, 67, 0.3) !important;
}

/* Chat preview */
.preview-topbar {
  background: var(--card) !important;
  border-bottom-color: var(--line) !important;
}
.preview-lbl {
  color: var(--moss) !important;
}
.preview-badge {
  background: var(--paper-2) !important;
  border-color: var(--line) !important;
  color: var(--hero-text2) !important;
}
.chat-header {
  background: var(--moss) !important;
  color: var(--paper) !important;
}
.chat-av,
.bot-mini-av,
.launcher-btn {
  background: var(--moss) !important;
  box-shadow: 0 14px 26px -18px rgba(16,35,28,.5) !important;
}
.chat-body,
.chat-chips {
  background: var(--paper) !important;
}
.bubble-bot,
.typing-dots,
.vlb-inner {
  background: #fffdf7 !important;
  color: var(--ink, #10231c) !important;
  border-color: var(--line) !important;
  box-shadow: 0 8px 22px -18px rgba(16,35,28,.55) !important;
}
.chat-chip {
  background: #fffdf7 !important;
  color: var(--moss) !important;
}
.chat-chip:hover {
  background: var(--moss) !important;
  border-color: var(--moss) !important;
  color: var(--paper) !important;
}
.chat-inputbar {
  background: #fffdf7 !important;
  border-top-color: var(--line) !important;
}
.chat-input {
  background: var(--paper) !important;
  border-color: var(--line) !important;
  color: var(--ink, #10231c) !important;
}
.chat-send {
  background: var(--sun) !important;
  color: var(--moss-deep) !important;
  box-shadow: 0 10px 22px -14px rgba(244, 162, 59, 0.8) !important;
}
.voice-btn.idle {
  background: rgba(31, 92, 67, 0.10) !important;
  color: var(--moss) !important;
  animation: none !important;
}
.typing-dot,
.vwave {
  background: var(--moss) !important;
}
.vlb-text {
  color: var(--moss) !important;
}
.launcher-x {
  background: rgba(20, 63, 46, 0.86) !important;
}

/* Alerts and validation */
.welcome-cta-note,
.reg-alert.ok {
  background: rgba(31, 92, 67, 0.08) !important;
  border-color: rgba(31, 92, 67, 0.18) !important;
  color: var(--moss) !important;
}
.fi.is-valid,
.pass-group.is-valid {
  border-color: var(--moss) !important;
}
.terms-row input[type="checkbox"] {
  accent-color: var(--moss) !important;
}
.strength-track {
  background: rgba(31, 92, 67, 0.12) !important;
}
.strength-rules li.ok {
  color: var(--moss) !important;
}

/* Make purple pulse animations green where used */
@keyframes micPulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 92, 67, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(31, 92, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 92, 67, 0); }
}
