/* [project]/app/landing.css [app-client] (css) */
.landing-page-wrapper {
  color: #0f172a;
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --bg3: #e2e8f0;
  --card: #fff;
  --border: #0000000f;
  --border2: #0000001f;
  --accent: #206bc4;
  --accent2: #4299e1;
  --accent3: #1a56a0;
  --text: #0f172a;
  --muted: #475569;
  --muted2: #64748b;
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  background: #f8fafc;
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  overflow-x: clip;
}

.landing-page-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.landing-page-wrapper nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  background: #f8fafcd9;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  padding: 0 5%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-logo {
  font-family: var(--font-head);
  letter-spacing: -.5px;
  color: var(--text);
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.logo-dot {
  background: var(--accent);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 10px var(--accent);
  border-radius: 50%;
  animation: 2s ease-in-out infinite pulse;
}

.nav-links {
  align-items: center;
  gap: 32px;
  list-style: none;
  display: flex;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  border-radius: 8px;
  padding: 8px 20px;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: opacity .2s !important;
}

.nav-cta:hover {
  opacity: .85;
  color: #fff !important;
}

.hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  pointer-events: none;
  background: radial-gradient(#206bc41f 0%, #00c4ff0f 40%, #0000 70%);
  width: 700px;
  height: 400px;
  animation: 6s ease-in-out infinite alternate heroGlow;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-grid {
  pointer-events: none;
  background-image: linear-gradient(#0000000a 1px, #0000 1px), linear-gradient(90deg, #0000000a 1px, #0000 1px);
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, #0000 100%);
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, #0000 100%);
}

.hero-badge {
  color: var(--accent);
  z-index: 1;
  background: #206bc414;
  border: 1px solid #206bc440;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  animation: .6s both fadeUp;
  display: inline-flex;
  position: relative;
}

.badge-dot {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.5s ease-in-out infinite pulse;
}

.hero h1 {
  font-family: var(--font-head);
  letter-spacing: -2px;
  z-index: 1;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  animation: .6s .1s both fadeUp;
  position: relative;
}

.hero h1 .line2 {
  display: block;
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  max-width: 560px;
  color: var(--muted);
  z-index: 1;
  margin: 24px auto 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  animation: .6s .2s both fadeUp;
  position: relative;
}

.hero-actions {
  z-index: 1;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  animation: .6s .3s both fadeUp;
  display: flex;
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: flex;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #206bc440;
}

.btn-secondary {
  color: var(--text);
  font-family: var(--font-body);
  border: 1px solid var(--border2);
  cursor: pointer;
  background: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-secondary:hover {
  background: #00000005;
  border-color: #00000026;
}

.hero-stats {
  z-index: 1;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
  animation: .6s .4s both fadeUp;
  display: flex;
  position: relative;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  color: var(--text);
  letter-spacing: -1px;
  font-size: 28px;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  margin-top: 2px;
  font-size: 13px;
  font-weight: 300;
}

.stat-divider {
  background: var(--border2);
  width: 1px;
  height: 36px;
}

.chat-demo-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 5%;
}

.section-label {
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-head);
  letter-spacing: -1px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.chat-window {
  background: var(--card);
  border: 1px solid var(--border2);
  text-align: left;
  border-radius: 20px;
  margin-top: 48px;
  overflow: hidden;
  box-shadow: 0 24px 60px #206bc41a;
}

.chat-topbar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  display: flex;
}

.agent-avatar {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-head);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.agent-info {
  flex: 1;
}

.agent-name {
  font-size: 14px;
  font-weight: 600;
}

.agent-status {
  color: var(--accent);
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

.status-dot {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.5s ease-in-out infinite pulse;
}

.chat-flags {
  gap: 6px;
  display: flex;
}

.flag {
  font-size: 18px;
}

.chat-messages {
  flex-direction: column;
  gap: 16px;
  max-height: 420px;
  padding: 24px 20px;
  display: flex;
  overflow-y: auto;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: none;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 4px;
}

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

.msg.user {
  flex-direction: row-reverse;
}

.msg-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.msg-avatar.agent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}

.msg-avatar.user {
  background: var(--bg3);
  color: var(--muted);
  border: 1px solid var(--border2);
}

.bubble {
  border-radius: 14px;
  max-width: 75%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.55;
}

.bubble.agent {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.bubble.user {
  color: var(--text);
  background: #206bc41f;
  border: 1px solid #206bc433;
  border-bottom-right-radius: 4px;
}

.bubble .chip {
  color: var(--accent);
  background: #206bc426;
  border: 1px solid #206bc44d;
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.typing {
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  display: flex;
}

.typing span {
  background: var(--muted2);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.2s ease-in-out infinite typingBounce;
}

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

.typing span:nth-child(3) {
  animation-delay: .4s;
}

.chat-input-bar {
  border-top: 1px solid var(--border);
  background: var(--bg3);
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  display: flex;
}

.chat-input {
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  background: #ffffff0a;
  border-radius: 10px;
  outline: none;
  flex: 1;
  padding: 10px 14px;
}

.chat-send {
  background: var(--accent);
  cursor: pointer;
  color: #fff;
  border: none;
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 16px;
  transition: opacity .2s;
  display: flex;
}

.chat-send:hover {
  opacity: .85;
}

.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-grid {
  background: var(--border);
  border-radius: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  display: grid;
  overflow: hidden;
}

.feat-card {
  background: var(--card);
  padding: 36px 32px;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.feat-card:before {
  content: "";
  background: linear-gradient(90deg, #0000, #0000000d, #0000);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.feat-card:hover {
  background: var(--bg3);
}

.feat-icon {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 22px;
  display: flex;
}

.feat-icon.green {
  background: #206bc41a;
}

.feat-icon.blue {
  background: #00c4ff1a;
}

.feat-icon.purple {
  background: #7c6fff1a;
}

.feat-icon.orange {
  background: #ffa2001a;
}

.feat-icon.pink {
  background: #ff64961a;
}

.feat-icon.cyan {
  background: #00e5e51a;
}

.feat-title {
  font-family: var(--font-head);
  letter-spacing: -.3px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.feat-desc {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.how-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 5%;
}

.steps {
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  display: flex;
  position: relative;
}

.steps:before {
  content: "";
  background: linear-gradient(180deg, var(--accent), var(--accent2), var(--accent3));
  border-radius: 2px;
  width: 2px;
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 27px;
}

.step {
  text-align: left;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  display: flex;
  position: relative;
}

.step-num {
  background: var(--bg2);
  border: 2px solid var(--accent);
  width: 56px;
  height: 56px;
  font-family: var(--font-head);
  color: var(--accent);
  z-index: 1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.step:nth-child(2) .step-num {
  border-color: var(--accent2);
  color: var(--accent2);
}

.step:nth-child(3) .step-num {
  border-color: var(--accent3);
  color: var(--accent3);
}

.step:nth-child(4) .step-num {
  border-color: var(--accent);
  color: var(--accent);
}

.step-content {
  padding-top: 8px;
}

.step-title {
  font-family: var(--font-head);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.step-desc {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.lang-section {
  text-align: center;
  padding: 80px 5%;
  overflow: hidden;
}

.lang-section .section-title {
  margin-bottom: 48px;
}

.lang-scroll-wrapper {
  position: relative;
}

.lang-scroll-wrapper:before, .lang-scroll-wrapper:after {
  content: "";
  z-index: 2;
  width: 120px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.lang-scroll-wrapper:before {
  background: linear-gradient(90deg, var(--bg), transparent);
  left: 0;
}

.lang-scroll-wrapper:after {
  background: linear-gradient(-90deg, var(--bg), transparent);
  right: 0;
}

.lang-track {
  gap: 12px;
  width: max-content;
  animation: 25s linear infinite scrollLangs;
  display: flex;
}

.lang-track2 {
  margin-top: 12px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.lang-pill {
  background: var(--card);
  border: 1px solid var(--border2);
  white-space: nowrap;
  color: var(--text);
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.lang-flag {
  font-size: 18px;
}

.integrations-section {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 5%;
}

.integrations-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 56px;
  display: grid;
}

.integration-card {
  background: var(--card);
  border: 1px solid var(--border2);
  cursor: default;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  transition: border-color .2s, transform .2s;
  display: flex;
}

.integration-card:hover {
  border-color: #0003;
  transform: translateY(-3px);
}

.int-icon {
  font-size: 32px;
}

.int-name {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.cta-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 5%;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.cta-card:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(#206bc426 0%, #0000 70%);
  width: 400px;
  height: 200px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-title {
  font-family: var(--font-head);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  position: relative;
}

.cta-sub {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.cta-btns {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  display: flex;
}

.landing-page-wrapper footer {
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 36px 5%;
  display: flex;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
}

.footer-copy {
  color: var(--muted2);
  font-size: 13px;
}

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

.footer-links a {
  color: var(--muted2);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--muted);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  from {
    opacity: .7;
    transform: translateX(-50%)scale(1);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)scale(1.1);
  }
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

@keyframes scrollLangs {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transition: opacity .6s, transform .6s;
  transform: translateY(24px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .hero-actions {
    text-align: center;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .landing-page-wrapper footer {
    text-align: center;
    flex-direction: column;
  }
}

/*# sourceMappingURL=app_landing_188lc03.css.map*/