:root {
  --bg: #08080e;
  --bg-2: #0f0f18;
  --bg-card: #13131f;
  --bg-card-hover: #181826;
  --teal: #00e5cc;
  --teal-dim: rgba(0,229,204,0.08);
  --amber: #f59e0b;
  --text: #e8e8f0;
  --text-2: #8888a8;
  --text-3: #4a4a6a;
  --border: #1e1e2e;
  --border-bright: #2e2e4a;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 48px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,204,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,204,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 24px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-image-wrap {
  position: relative;
  max-width: 480px;
}

.hero-product-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 40px rgba(0,229,204,0.08), 0 24px 48px rgba(0,0,0,0.4);
}

.hero-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  font-family: 'Chakra Petch', sans-serif;
}

/* Stats Stack */
.stats-stack {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.stat-item {
  padding: 16px 0;
}

.stat-number {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.stat-divider {
  height: 1px;
  background: var(--border);
}

/* Agent Card */
.agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.agent-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0088aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.agent-info {
  flex: 1;
}

.agent-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Chakra Petch', sans-serif;
}

.agent-status {
  font-size: 12px;
  color: var(--text-2);
}

.agent-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.agent-chats {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-item {
  display: flex;
}

.chat-item.customer {
  justify-content: flex-end;
}

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

.customer-msg {
  background: var(--bg-2);
  color: var(--text);
  border-bottom-right-radius: 4px;
}

.agent-msg {
  background: var(--teal-dim);
  color: var(--text);
  border: 1px solid rgba(0,229,204,0.15);
  border-bottom-left-radius: 4px;
}

.agent-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 16px;
  font-size: 12px;
  color: var(--text-3);
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

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

@keyframes typing-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* === THE PROBLEM === */
.the-problem {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: var(--border-bright);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.problem-realization {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
}

.problem-realization p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto;
}

.problem-realization strong {
  color: var(--amber);
}

/* === THE SOLUTION === */
.the-solution {
  padding: 100px 48px;
  background: var(--bg);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.solution-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 16px;
}

.solution-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.solution-body {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-image-wrap {
  position: relative;
}

.solution-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 32px rgba(0,229,204,0.06);
}

.img-caption {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 10px;
  font-style: italic;
}

/* Agent Capabilities */
.agent-capabilities {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.cap-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.cap-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.cap-item:last-child {
  border-bottom: none;
}

.cap-item:hover {
  background: var(--bg-card-hover);
}

.cap-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(0,229,204,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cap-name {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.cap-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.hiw-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 16px;
}

.hiw-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.hiw-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}

.hiw-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.step-arrow {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
}

.step-arrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-bright), var(--teal));
  border-radius: 1px;
}

.step-num {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hiw-step h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.hiw-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hiw-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-bright);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* === FEATURES === */
.features {
  padding: 100px 48px;
  background: var(--bg);
}

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

.features-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 16px;
}

.features-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,229,204,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Pricing */
.features-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 32px rgba(0,229,204,0.06);
}

.pricing-tier {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
  color: var(--teal);
}

.pricing-price {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
}

.pricing-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,229,204,0.2);
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
}

.pricing-features {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.closing-credibility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.cred-stat {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
}

.cred-num {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.cred-desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

.cred-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* === FOOTER === */
.footer {
  padding: 40px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #0088aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
}

.footer-name {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-3);
  flex: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
}

.footer-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-3);
  display: inline-block;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .stats-stack { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .stat-item { flex: 1; min-width: 80px; }
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-pricing { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; gap: 12px; }
  .step-arrow { display: none; }
  .hiw-image-row { grid-template-columns: 1fr; }
  .closing-credibility { flex-direction: column; }
  .cred-divider { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
