/* Enqivo — premium public site */

:root {
  --ink: #08111f;
  --ink-2: #0d1728;
  --ink-3: #122138;
  --white: #ffffff;
  --paper: #f7f9fc;
  --paper-2: #eef3f8;
  --text: #eef5ff;
  --text-dark: #101828;
  --muted: #9caec2;
  --muted-dark: #607084;
  --cyan: #5ee7f5;
  --blue: #5297ff;
  --purple: #7b61ff;
  --green: #2ee59d;
  --orange: #ffb764;
  --red: #ff7485;
  --line: rgba(255,255,255,.10);
  --line-dark: #dbe3ed;
  --shadow: 0 26px 80px rgba(10, 24, 48, .16);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, .28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 9px 13px;
  border-radius: 10px;
  color: #08111f;
  background: white;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 17, 31, .82);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
}

.announcement {
  background: linear-gradient(90deg, rgba(94,231,245,.12), rgba(123,97,255,.12), rgba(46,229,157,.12));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .76rem;
  color: #d9e8f7;
}

.announcement-inner a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: -.03em;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  color: #90a2b8;
  font-size: .78rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: #c9d6e5;
  font-size: .91rem;
  transition: color 150ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}


.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 11px;
  color: white;
  background: rgba(255,255,255,.055);
  text-decoration: none;
}

.main-nav .nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 11px;
  color: white;
  background: rgba(255,255,255,.055);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.04);
}

.nav-toggle span:not(.sr-only) {
  height: 2px;
  display: block;
  margin: 5px 0;
  background: white;
}

/* Shared */

.section {
  position: relative;
  padding: 100px 0;
}

.section-white {
  color: var(--text-dark);
  background: var(--white);
}

.section-tint {
  color: var(--text-dark);
  background: linear-gradient(180deg, #f6f9fd 0%, #eef3f8 100%);
}

.section-dark {
  background: #08111f;
}

.kicker {
  margin: 0 0 10px;
  color: #148960;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.kicker-light {
  color: #74efba;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2,
.controls-copy h2,
.pricing-copy h2,
.contact-copy h2,
.faq-intro h2 {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -.05em;
}

.section-head > p:not(.kicker),
.controls-copy > p:not(.kicker),
.pricing-copy > p:not(.kicker),
.contact-copy > p:not(.kicker),
.faq-intro > p:not(.kicker) {
  max-width: 700px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.04rem;
}

.centered-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-head > p:not(.kicker) {
  margin-inline: auto;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: end;
  gap: 70px;
}

.split-head > p {
  margin: 0 0 8px !important;
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #071521;
  background: linear-gradient(135deg, #65edf5, #63e6b4);
  box-shadow: 0 13px 30px rgba(46,229,157,.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 17px 34px rgba(46,229,157,.26);
}

.button-secondary {
  color: white;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
}

.button-full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  padding: 88px 0 38px;
  background:
    radial-gradient(circle at 13% 8%, rgba(94,231,245,.12), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(123,97,255,.15), transparent 30%),
    linear-gradient(180deg, #08111f 0%, #091522 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .12;
  pointer-events: none;
}

.hero-orb-one {
  width: 280px;
  height: 280px;
  top: 90px;
  left: -100px;
  background: var(--cyan);
}

.hero-orb-two {
  width: 340px;
  height: 340px;
  top: 70px;
  right: -120px;
  background: var(--purple);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  gap: 68px;
  align-items: center;
}

.badge-row {
  margin-bottom: 22px;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(94,231,245,.16);
  border-radius: 999px;
  color: #cdeef7;
  background: rgba(94,231,245,.055);
  font-size: .78rem;
  font-weight: 750;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(46,229,157,.10);
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 6.1vw, 5.85rem);
  line-height: .97;
  letter-spacing: -.065em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan) 0%, #b0a7ff 42%, #83efbc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 700px;
  margin: 0;
  color: #aebed0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 25px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  color: #c3d0df;
  font-size: .87rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.proof-check {
  color: var(--green);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,97,255,.18), rgba(94,231,245,.05), transparent 70%);
  filter: blur(12px);
}

.browser-card {
  position: relative;
  z-index: 3;
  width: min(100%, 545px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(12,24,40,.92);
  box-shadow: var(--shadow-strong);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}

.browser-top {
  min-height: 51px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41516a;
}

.browser-dots span:first-child { background: #f07882; }
.browser-dots span:nth-child(2) { background: #efbe65; }
.browser-dots span:nth-child(3) { background: #5bd48c; }

.browser-title {
  color: #a9b8ca;
  font-size: .75rem;
  text-align: center;
}

.browser-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7beaae;
  font-size: .72rem;
  font-weight: 800;
}

.status-dot,
.online-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
}

.browser-body {
  padding: 22px;
}

.mini-chat {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.mini-chat-response {
  margin-top: 16px;
}

.mini-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: .62rem;
  font-weight: 900;
}

.customer-avatar {
  color: #dce8f5;
  background: #24334b;
}

.ai-avatar {
  color: #06231b;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.mini-bubble {
  max-width: 78%;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: .82rem;
  line-height: 1.45;
}

.customer-bubble {
  color: #eef5ff;
  background: #1a2a43;
}

.ai-bubble {
  color: #b9c9da;
  background: #101d31;
  border: 1px solid rgba(94,231,245,.1);
}

.flow-step {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  margin: 18px 0 6px 39px;
  padding: 12px;
  border: 1px solid rgba(123,97,255,.16);
  border-radius: 14px;
  background: rgba(123,97,255,.06);
}

.flow-step-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: .68rem;
  font-weight: 900;
}

.flow-step-ai {
  color: #e4ddff;
  background: rgba(123,97,255,.18);
}

.flow-step-copy strong,
.flow-step-copy span {
  display: block;
}

.flow-step-copy strong {
  font-size: .78rem;
}

.flow-step-copy span {
  margin-top: 2px;
  color: #8193aa;
  font-size: .68rem;
}

.flow-status {
  padding: 5px 7px;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 850;
}

.flow-status-good {
  color: #82efb8;
  background: rgba(46,229,157,.09);
}

.lead-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  padding: 14px 15px;
  border: 1px solid rgba(46,229,157,.13);
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(46,229,157,.055), rgba(94,231,245,.035));
}

.lead-card small,
.lead-card strong {
  display: block;
}

.lead-card small {
  color: #8293a8;
  font-size: .64rem;
}

.lead-card strong {
  margin-top: 2px;
  font-size: .78rem;
}

.lead-card-badge {
  color: #75eeb1;
  font-size: .65rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 185px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(13,23,40,.93);
  box-shadow: 0 18px 45px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
}

.floating-card-one {
  right: -14px;
  bottom: 63px;
}

.floating-card-two {
  left: -8px;
  top: 75px;
}

.float-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 900;
}

.float-icon.purple {
  color: #c8bdff;
  background: rgba(123,97,255,.16);
}

.float-icon.green {
  color: #7ff0b4;
  background: rgba(46,229,157,.12);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #7f91a7;
  font-size: .63rem;
}

.floating-card strong {
  font-size: .75rem;
}

.capability-ribbon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 58px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
  background: rgba(255,255,255,.028);
}

.ribbon-label {
  flex: 0 0 auto;
  color: #6f8197;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.ribbon-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ribbon-items span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
  color: #b8c7d6;
  background: rgba(255,255,255,.025);
  font-size: .73rem;
}

/* value cards */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 24px;
  background: #fbfcfe;
  box-shadow: 0 14px 40px rgba(16, 24, 40, .05);
}

.value-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  content: "";
  opacity: .16;
}

.value-card-cyan::after { background: var(--cyan); }
.value-card-purple::after { background: var(--purple); }
.value-card-green::after { background: var(--green); }

.value-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #d2dbe7;
  font-size: .72rem;
  font-weight: 900;
}

.value-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid #e0e7ef;
  border-radius: 14px;
  background: white;
  font-size: 1rem;
}

.value-card h3 {
  max-width: 250px;
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.value-card p {
  margin: 0;
  color: var(--muted-dark);
}

/* process */

.process-section {
  overflow: hidden;
}

.process-orb {
  position: absolute;
  width: 460px;
  height: 460px;
  top: 30px;
  left: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,97,255,.11), transparent 68%);
  transform: translateX(-50%);
}

.process-section .section-head > p:not(.kicker) {
  color: #8fa0b6;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-line {
  position: relative;
  z-index: 1;
  width: 66%;
  height: 1px;
  margin: 0 auto -43px;
  background: linear-gradient(90deg, rgba(94,231,245,.1), rgba(123,97,255,.5), rgba(46,229,157,.1));
}

.process-card {
  position: relative;
  min-height: 315px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 23px;
  background: linear-gradient(160deg, rgba(20,35,57,.96), rgba(11,22,38,.96));
}

.process-card-highlight {
  border-color: rgba(123,97,255,.23);
  background: linear-gradient(160deg, rgba(27,33,64,.98), rgba(11,22,38,.98));
}

.process-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #77899e;
  font-size: .72rem;
  font-weight: 850;
}

.process-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 66px;
  border-radius: 15px;
  font-weight: 900;
}

.process-icon.cyan {
  color: #bdf8fc;
  background: rgba(94,231,245,.1);
}

.process-icon.purple {
  color: #d7d0ff;
  background: rgba(123,97,255,.14);
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.process-card p {
  margin: 0;
  color: #93a4b8;
}

.outcome-stack {
  display: grid;
  gap: 7px;
  margin-bottom: 41px;
}

.outcome-stack div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c1cede;
  font-size: .76rem;
}

.outcome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.green-dot { background: var(--green); }
.cyan-dot { background: var(--cyan); }
.purple-dot { background: var(--purple); }

/* demo */

.demo-section {
  color: var(--text-dark);
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.demo-section .section-head > p:not(.kicker) {
  color: var(--muted-dark);
}

.demo-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  border: 1px solid #d8e2ec;
  border-radius: 28px;
  background: white;
  box-shadow: 0 28px 80px rgba(15,23,42,.12);
}

.demo-sidebar {
  padding: 22px;
  color: #dfe9f5;
  background:
    radial-gradient(circle at 0 0, rgba(123,97,255,.16), transparent 40%),
    #0b1626;
}

.demo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.demo-company-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #07141f;
  background: linear-gradient(135deg, #70edf4, #65e6b2);
  font-weight: 900;
}

.demo-brand strong,
.demo-brand span {
  display: block;
}

.demo-brand strong {
  font-size: .86rem;
}

.demo-brand span {
  margin-top: 2px;
  color: #788ba2;
  font-size: .67rem;
}

.demo-nav-title {
  margin-bottom: 9px;
  color: #7d8da1;
  font-size: .65rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.demo-prompts {
  display: grid;
  gap: 6px;
}

.demo-prompts button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #afbed0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: .78rem;
}

.demo-prompts button span {
  width: 22px;
  display: inline-grid;
  place-items: center;
}

.demo-prompts button:hover,
.demo-prompts button:focus-visible {
  color: white;
  border-color: rgba(255,255,255,.07);
  background: rgba(255,255,255,.05);
}

.demo-rule {
  display: flex;
  gap: 9px;
  margin-top: 30px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.demo-rule-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  border: 1px solid rgba(94,231,245,.24);
  border-radius: 50%;
  color: var(--cyan);
  font-size: .65rem;
  font-weight: 900;
}

.demo-rule p {
  margin: 0;
  color: #6f8197;
  font-size: .66rem;
  line-height: 1.45;
}

.demo-main {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .94fr);
  min-height: 600px;
}

.chat-panel {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e0e6ed;
  background: #f9fbfd;
}

.chat-panel-top,
.manager-panel-top {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 20px;
  border-bottom: 1px solid #e3e8ef;
  background: white;
}

.chat-panel-top strong,
.chat-panel-top span {
  display: block;
}

.chat-panel-top span {
  margin-top: 2px;
  color: #79879a;
  font-size: .7rem;
}

.text-button {
  border: 0;
  color: #728196;
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
}

.chat-log {
  flex: 1;
  height: 450px;
  overflow-y: auto;
  padding: 24px 20px;
}

.message-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 9px 0;
}

.message-row-user {
  justify-content: flex-end;
}

.message-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 9px;
  color: #07251a;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: .65rem;
  font-weight: 900;
}

.message {
  max-width: 78%;
  padding: 11px 13px;
  border-radius: 14px;
  white-space: pre-wrap;
  font-size: .82rem;
  line-height: 1.48;
}

.message-bot {
  color: #2f3f52;
  background: white;
  border: 1px solid #e0e7ef;
}

.message-user {
  color: white;
  background: linear-gradient(135deg, #1b6f5b, #155544);
}

.message-manager {
  color: #765419;
  background: #fff7e7;
  border: 1px solid #f1d79e;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 15px;
  border-top: 1px solid #e2e8ef;
  background: white;
}

.chat-form input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #cfd8e3;
  border-radius: 11px;
  outline: none;
  color: #152238;
  background: #fbfcfe;
}

.chat-form input:focus {
  border-color: #61cfa0;
  box-shadow: 0 0 0 3px rgba(46,229,157,.11);
}

.chat-form button {
  width: 43px;
  border: 0;
  border-radius: 11px;
  color: #071820;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  cursor: pointer;
  font-weight: 900;
}

.manager-panel {
  padding: 20px;
  background: white;
}

.manager-panel-top {
  min-height: 49px;
  padding: 0 0 16px;
  border-bottom: 0;
}

.panel-label {
  color: #8090a3;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.manager-panel-top h3 {
  margin: 2px 0 0;
  font-size: 1.05rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: .63rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.status-active {
  color: #176345;
  background: #e2f8ec;
}

.status-handoff {
  color: #795617;
  background: #fff1ce;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 15px 0 13px;
}

.summary-item {
  padding: 13px;
  border: 1px solid #e0e7ef;
  border-radius: 13px;
  background: #f9fbfd;
}

.summary-item-wide {
  grid-column: 1 / -1;
}

.summary-item span,
.summary-item strong {
  display: block;
}

.summary-item span {
  color: #8795a7;
  font-size: .64rem;
}

.summary-item strong {
  margin-top: 3px;
  color: #27384d;
  font-size: .78rem;
}

.handoff-card {
  padding: 14px;
  border: 1px solid #dce4ed;
  border-radius: 14px;
  background: #f8fafc;
}

.handoff-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.handoff-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #6e59d8;
  background: #efecff;
  font-weight: 900;
}

.handoff-card strong {
  font-size: .75rem;
}

.handoff-card p {
  margin: 8px 0 0;
  color: #68788c;
  font-size: .73rem;
}

.manager-footnote {
  margin-top: 14px;
  padding: 11px 0;
  color: #8b99aa;
  font-size: .67rem;
}

/* industries */

.dark-copy > p:not(.kicker) {
  color: var(--muted-dark) !important;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid #dfe6ef;
  border-radius: 22px;
  background: rgba(255,255,255,.83);
  box-shadow: 0 14px 35px rgba(16,24,40,.05);
  backdrop-filter: blur(10px);
}

.industry-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 14px;
}

.industry-blue { background: #e4f7fb; }
.industry-purple { background: #eeeaff; }
.industry-green { background: #e1f9ec; }
.industry-orange { background: #fff1df; }

.industry-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.industry-card p {
  min-height: 89px;
  margin: 0;
  color: var(--muted-dark);
  font-size: .9rem;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.industry-tags span {
  padding: 5px 8px;
  border: 1px solid #dbe3ed;
  border-radius: 999px;
  color: #67768a;
  background: white;
  font-size: .64rem;
  font-weight: 700;
}

/* controls */

.controls-section {
  background:
    radial-gradient(circle at 85% 16%, rgba(123,97,255,.11), transparent 30%),
    #0a1423;
}

.controls-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 78px;
  align-items: center;
}

.controls-copy > p:not(.kicker) {
  color: #94a6ba;
}

.control-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.control-row {
  display: flex;
  gap: 13px;
}

.control-check {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  margin-top: 1px;
  border-radius: 9px;
  color: #86f3bc;
  background: rgba(46,229,157,.10);
  font-size: .78rem;
  font-weight: 900;
}

.control-row strong {
  display: block;
  margin-bottom: 3px;
}

.control-row p {
  margin: 0;
  color: #7f91a7;
  font-size: .88rem;
}

.policy-card {
  padding: 27px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(20,35,57,.96), rgba(13,23,40,.96));
  box-shadow: var(--shadow-strong);
}

.policy-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 22px;
}

.policy-card-top h3 {
  margin: 3px 0 0;
}

.policy-status {
  padding: 6px 9px;
  border-radius: 999px;
  color: #7eebb0;
  background: rgba(46,229,157,.10);
  font-size: .63rem;
  font-weight: 850;
}

.policy-item {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 9px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.028);
}

.policy-item > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 900;
}

.policy-item strong,
.policy-item small {
  display: block;
}

.policy-item strong {
  font-size: .82rem;
}

.policy-item small {
  margin-top: 2px;
  color: #778ba3;
  font-size: .68rem;
}

.policy-allow > span {
  color: #7cefb4;
  background: rgba(46,229,157,.10);
}

.policy-review > span {
  color: #b7adff;
  background: rgba(123,97,255,.11);
}

.policy-block > span {
  color: #ffbdc5;
  background: rgba(255,116,133,.10);
}

/* pricing */

.pricing-section {
  overflow: hidden;
  background:
    linear-gradient(145deg, #0b1625 0%, #101a30 62%, #0b1625 100%);
}

.pricing-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -130px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,231,245,.11), rgba(123,97,255,.07), transparent 68%);
}

.pricing-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 90px;
  align-items: center;
}

.pricing-copy > p:not(.kicker) {
  color: #95a8bd;
}

.pricing-note {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}

.pricing-note span {
  color: #71859c;
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-note strong {
  font-size: .87rem;
}

.price-card {
  position: relative;
  padding: 31px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 27px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    #101c30;
  box-shadow: var(--shadow-strong);
}

.price-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  border-radius: 999px;
  color: #8df1bd;
  background: rgba(46,229,157,.10);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 25px;
}

.currency {
  font-size: 1.6rem;
  font-weight: 800;
}

.price-number {
  font-size: 5.25rem;
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.065em;
}

.price-caption {
  color: #71869f;
  font-size: .8rem;
}

.monthly-price {
  margin-top: 9px;
  color: #dce8f5;
  font-size: 1.12rem;
  font-weight: 850;
}

.price-divider {
  height: 1px;
  margin: 24px 0;
  background: rgba(255,255,255,.08);
}

.price-features {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
  color: #c7d4e2;
  font-size: .86rem;
}

.price-features span {
  margin-right: 8px;
  color: #75ecad;
}

.price-small {
  margin: 13px 0 0;
  color: #70849b;
  font-size: .7rem;
  text-align: center;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.faq-intro > p:not(.kicker) {
  color: var(--muted-dark);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid #dde5ee;
  border-radius: 15px;
  background: #fbfcfe;
}

.faq-list summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 18px;
  top: 50%;
  content: "+";
  color: #67788c;
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted-dark);
  font-size: .9rem;
}

/* contact */

.contact-section {
  overflow: hidden;
  background: #091321;
}

.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .13;
}

.contact-glow-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -90px;
  background: var(--cyan);
}

.contact-glow-two {
  width: 380px;
  height: 380px;
  right: -130px;
  bottom: -160px;
  background: var(--purple);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.contact-copy > p:not(.kicker) {
  color: #95a8bb;
}

.contact-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.contact-benefits div {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #a9bbcd;
  background: rgba(255,255,255,.025);
  font-size: .73rem;
}

.contact-benefits span {
  color: #edf5ff;
  font-weight: 900;
}

.contact-card {
  padding: 27px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: var(--shadow-strong);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #cbd8e5;
  font-size: .76rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 13px;
  border: 1px solid #2d405a;
  border-radius: 11px;
  outline: none;
  color: white;
  background: #0a1626;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: #55cfa2;
  box-shadow: 0 0 0 3px rgba(46,229,157,.10);
}

.form-note,
.form-feedback {
  margin: 10px 0 0;
  color: #71869c;
  font-size: .69rem;
}

/* footer */

.site-footer {
  background: #060d17;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: 55px 0 32px;
}

.footer-brand p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #73869d;
  font-size: .86rem;
}

.footer-links {
  display: flex;
  gap: 55px;
}

.footer-links > div {
  display: grid;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: .77rem;
}

.footer-links a {
  color: #76899e;
  text-decoration: none;
  font-size: .75rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #78899d;
  font-size: .68rem;
}

/* Responsive */

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .browser-card {
    transform: none;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-layout {
    grid-template-columns: 1fr 420px;
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 109px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0c1728;
    box-shadow: var(--shadow-strong);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 10px;
  }

  
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 11px;
  color: white;
  background: rgba(255,255,255,.055);
  text-decoration: none;
}

.main-nav .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .nav-toggle {
    display: block;
  }

  .split-head,
  .controls-layout,
  .pricing-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-head,
  .controls-layout,
  .pricing-layout,
  .faq-layout,
  .contact-layout {
    gap: 38px;
  }

  .value-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }

  .process-card {
    min-height: auto;
  }

  .process-icon,
  .outcome-stack {
    margin-bottom: 26px;
  }

  .demo-shell {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: block;
    padding: 18px;
  }

  .demo-sidebar .demo-brand,
  .demo-sidebar .demo-rule {
    display: none;
  }

  .demo-sidebar .demo-nav-title {
    margin-bottom: 10px;
  }

  .demo-sidebar .demo-prompts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-main {
    min-height: 0;
  }

  .price-card {
    max-width: 530px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .announcement-inner {
    min-height: 38px;
    font-size: .68rem;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .main-nav {
    top: 104px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .hero-visual {
    min-height: 460px;
  }

  .floating-card-two {
    left: 0;
    top: 32px;
  }

  .floating-card-one {
    right: 0;
    bottom: 38px;
  }

  .capability-ribbon {
    align-items: flex-start;
    flex-direction: column;
  }

  .value-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .demo-main {
    grid-template-columns: 1fr;
  }

  .chat-panel {
    border-right: 0;
    border-bottom: 1px solid #e0e6ed;
  }

  .chat-log {
    height: 330px;
  }

  .manager-panel {
    min-height: 360px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    min-height: auto;
    padding: 35px 0 80px;
  }

  .floating-card {
    min-width: 160px;
  }

  .floating-card-two {
    top: 0;
  }

  .browser-card {
    margin-top: 45px;
  }

  .browser-top {
    grid-template-columns: 60px 1fr;
  }

  .browser-status {
    display: none;
  }

  .flow-step {
    grid-template-columns: 36px 1fr;
    margin-left: 0;
  }

  .flow-status {
    display: none;
  }

  .capability-ribbon {
    margin-top: 25px;
  }

  .price-number {
    font-size: 4.4rem;
  }

  .contact-card,
  .price-card,
  .policy-card {
    padding: 22px;
  }


  .demo-sidebar {
    padding: 14px;
  }

  .demo-sidebar .demo-prompts {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: thin;
  }

  .demo-sidebar .demo-prompts button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    border-color: rgba(255,255,255,.07);
    background: rgba(255,255,255,.035);
  }

  .footer-links {
    gap: 34px;
  }
}


:focus-visible {
  outline: 3px solid rgba(94, 231, 245, .65);
  outline-offset: 3px;
}

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

.form-note a { color: #9fd9ff; text-underline-offset: 3px; }
.form-note a:hover, .form-note a:focus-visible { color: #ffffff; }


/* Enqivo CRM demo — clearer decisioning and lead state */
.crm-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.crm-topline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.crm-topline > div {
  padding: 12px 13px;
  border: 1px solid #e0e7ef;
  border-radius: 13px;
  background: linear-gradient(180deg, #fbfcfe, #f5f8fb);
}

.crm-label {
  display: block;
  color: #8795a7;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

.crm-topline strong {
  display: block;
  margin-top: 3px;
  color: #27384d;
  font-size: .8rem;
}

.crm-summary-grid {
  grid-template-columns: 1fr 1fr;
}

.crm-action-card {
  padding: 14px;
  margin-top: 2px;
  border: 1px solid #dce4ed;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fbff, #f9fbfd);
}

.crm-action-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crm-action-head strong {
  font-size: .75rem;
}

.crm-action-card p {
  margin: 8px 0 0;
  color: #586a80;
  font-size: .75rem;
}

.crm-missing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
  padding: 10px 12px;
  border: 1px solid #e2e8ef;
  border-radius: 12px;
  background: #fff;
}

.crm-missing span {
  color: #8795a7;
  font-size: .66rem;
}

.crm-missing strong {
  color: #34465c;
  font-size: .7rem;
  text-align: right;
}

.crm-activity {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e3e8ef;
}

.crm-activity-title {
  margin-bottom: 8px;
  color: #7b8a9d;
  font-size: .64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.crm-activity-list {
  display: grid;
  gap: 7px;
}

.crm-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #63758a;
  font-size: .69rem;
  line-height: 1.4;
}

.activity-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 4px;
  border-radius: 50%;
  background: #70d7a7;
}

.status-qualified {
  color: #176345;
  background: #e2f8ec;
}

.status-followup {
  color: #365e8c;
  background: #e9f2ff;
}

.status-escalated {
  color: #795617;
  background: #fff1ce;
}

.status-urgent {
  color: #8d2435;
  background: #ffe5e9;
}

/* Contact form live submission states */
.contact-card button[type="submit"]:disabled {
  cursor: wait;
  opacity: .8;
  transform: none;
}

.form-feedback {
  min-height: 1.4em;
}

.form-feedback-success {
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(46,229,157,.22);
  border-radius: 11px;
  color: #9bf2c7;
  background: rgba(46,229,157,.08);
}

.form-feedback-error {
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(255,116,133,.24);
  border-radius: 11px;
  color: #ffc0c8;
  background: rgba(255,116,133,.08);
}

@media (max-width: 720px) {
  .crm-topline,
  .crm-summary-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .crm-topline,
  .crm-summary-grid {
    grid-template-columns: 1fr;
  }
}

.ai-demo-note {
  margin: 8px 18px 14px;
  font-size: .72rem;
  line-height: 1.45;
  color: rgba(255,255,255,.55);
}
.chat-form.is-busy {
  opacity: .78;
}
.chat-form.is-busy button {
  cursor: wait;
}
