:root {
  --bg: #faf8f4;
  --text: #0b0b0b;
  --muted: #6b7280;
  --line: #e5e7eb;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.vision-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vision-page main {
  flex: 1;
}

.nav,
.content,
.footer {
  width: 50vw;
  margin: 0 auto;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}

.nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 100vw;
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}


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

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  justify-self: center;
}

.product-dropdown {
  position: relative;
}

.product-trigger {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  padding: 6px 8px;
}

.product-trigger::after {
  content: "▾";
  margin-left: 6px;
  font-size: 11px;
  color: #6b7280;
}

.product-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 208px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 8px;
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 80;
  scrollbar-width: none;
}

.product-menu::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.product-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 6px 6px 2px;
}

.product-dropdown:hover .product-menu,
.product-dropdown:focus-within .product-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-item {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.product-item:hover {
  background: #f3f4f6;
}

.product-item--consult {
  cursor: pointer;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.product-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 120;
  padding: 20px;
}

.modal-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(360px, 90vw);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.modal-body {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.modal-close {
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
}

.modal-cta {
  border: 1px solid #111827;
  background: #111827;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pricing-link:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.cta {
  border: 1px solid #111827;
  background: #111827;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta.secondary {
  background: transparent;
  color: #111827;
}

.section {
  padding: 34px 0;
}

.section:first-of-type {
  padding-top: 150px;
}

.section-inner {
  width: 60%;
  margin: 0 auto;
  text-align: left;
}

.vision-page .section-inner {
  width: 70%;
}

.vision-hero .section-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.vision-lede {
  font-size: 18px;
  line-height: 1.6;
  color: #111827;
  margin-bottom: 16px;
}

.vision-hero-media {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
  margin-top: -60px;
}

.vision-hero-media img {
  width: 100%;
  max-width: 364px;
  border-radius: 16px;
}

.vision-copy {
  display: grid;
  gap: 14px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

.vision-callout {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 8px;
}

.section-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-role {
  font-size: 12px;
  color: #6b7280;
  margin-left: 6px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.testimonial-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 6px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-origin: center;
  scroll-snap-align: start;
  animation: testimonial-float 6s ease-in-out infinite;
}

.testimonial-card:hover {
  transform: rotate(-2deg) translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}

.testimonial-avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.8s; }
.testimonial-card:nth-child(4) { animation-delay: 1.2s; }
.testimonial-card:nth-child(5) { animation-delay: 1.6s; }
.testimonial-card:nth-child(6) { animation-delay: 2s; }
.testimonial-card:nth-child(7) { animation-delay: 2.4s; }
.testimonial-card:nth-child(8) { animation-delay: 2.8s; }
.testimonial-card:nth-child(9) { animation-delay: 3.2s; }
.testimonial-card:nth-child(10) { animation-delay: 3.6s; }
.testimonial-card:nth-child(11) { animation-delay: 4s; }
.testimonial-card:nth-child(12) { animation-delay: 4.4s; }

@keyframes testimonial-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.testimonial-name {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}

.testimonial-card .testimonial-role {
  margin-left: 0;
  font-size: 11px;
}

.testimonial-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: 220px;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.testimonial-card:hover .testimonial-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.collapse-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px;
  cursor: pointer;
  height: 26px;
  white-space: nowrap;
}

.collapse-icon {
  font-size: 12px;
}

.collapsible-content.is-collapsed {
  display: none;
}

.section-subhead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.story {
  display: grid;
  gap: 12px;
  font-size: 16px;
  line-height: 1.7;
}

.story p {
  color: #111827;
}

.story .chat-card {
  margin-bottom: 12px;
}

.chat-example {
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.chat-example-tag {
  font-size: 11px;
  font-weight: 600;
  color: #111827;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-example-tag-icon {
  font-size: 12px;
}

.chat-example-title {
  font-size: 38px;
  font-weight: 600;
  color: #111827;
  text-align: center;
  white-space: nowrap;
}

.hero-verb {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-verb.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

.chat-example-subtitle {
  font-size: 16px;
  color: #6b7280;
  text-align: center;
}

.trust-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  justify-items: center;
}

.trust-text {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
}

.trust-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.trust-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: trust-marquee 26s linear infinite;
}

.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

@keyframes trust-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.template-grid {
  width: 120%;
  margin-left: -10%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.template-card {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  display: grid;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.template-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
  border-color: #d1d5db;
  background: #f9fafb;
}

.template-card--first {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.1) 50%, rgba(234, 179, 8, 0.1) 100%);
}

.template-card--cross {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.12) 0%, rgba(255, 69, 0, 0.08) 50%, rgba(0, 119, 181, 0.1) 100%);
}

.template-card--reddit {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(251, 146, 60, 0.08) 100%);
}

.template-card--linkedin {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.1) 0%, rgba(0, 119, 181, 0.05) 100%);
}

.template-card--funding {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.16) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.template-card--facebook {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(96, 165, 250, 0.08) 100%);
}

.template-title {
  font-size: 11px;
  font-weight: 600;
  color: #111827;
  position: relative;
  z-index: 1;
}

.template-text {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.template-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

.template-logo {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(229, 231, 235, 0.8);
  color: #111827;
}

.template-tag {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(251, 191, 36, 0.8);
  padding: 2px 6px;
  border-radius: 999px;
}

.template-bg-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  opacity: 0.12;
  color: #111827;
}

.template-bg-icon svg {
  width: 100%;
  height: 100%;
}

.template-bg-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.template-bg-multi {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.14;
}

.template-bg-multi .template-bg-icon {
  position: static;
  width: 28px;
  height: 28px;
  opacity: 1;
}

.template-bg-icon--linkedin {
  color: #0a66c2;
}

.template-bg-icon--reddit {
  color: #ff4500;
}

.template-bg-icon--facebook {
  color: #1877f2;
}

.template-bg-icon--funding {
  color: #16a34a;
}

.template-bg-icon--x {
  color: #111827;
}

.template-bg-icon--maps {
  color: #1a73e8;
}

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

.chat-glass-elevated {
  width: 120%;
  margin-left: -10%;
}


.chat-icon-stack {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-icon-stack.show {
  opacity: 1;
  transform: translateY(0);
}

.chat-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
  transform: scale(0.85);
  opacity: 0;
}

.chat-icon-stack.show .chat-icon {
  animation: icon-pop 0.35s ease forwards;
}

.chat-icon + .chat-icon {
  margin-left: -7px;
}

.chat-icon svg {
  width: 11px;
  height: 11px;
}

.chat-icon img {
  width: 11px;
  height: 11px;
  object-fit: contain;
}

.typing-textarea {
  caret-color: transparent;
  overflow: hidden;
  max-height: none;
}

.chat-icon-stack + #sniffButton.is-enabled,
#sniffButton.is-enabled {
  background: #ffffff;
  color: #374151;
  border-color: #d1d5db;
  cursor: pointer;
}

#sniffButton.is-enabled:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}


@keyframes icon-pop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.part-block {
  display: grid;
  gap: 8px;
}

.learn-more {
  align-self: flex-start;
  color: #111827;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}


.chat-templates {
  width: 100%;
  margin: 28px 0 32px;
  display: grid;
  gap: 18px;
}

.chat-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 20px 28px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: grid;
  gap: 8px;
  opacity: 0;
  animation: sniff-fade-in-up 0.6s ease-out forwards;
}

.chat-card-title {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}

.chat-card-prompt {
  font-size: 11px;
  line-height: 1.5;
  color: #6b7280;
  margin-right: 64px;
}

.chat-card--first {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.1) 50%, rgba(234, 179, 8, 0.1) 100%);
}

.chat-card--cross {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.12) 0%, rgba(255, 69, 0, 0.08) 50%, rgba(0, 119, 181, 0.1) 100%);
}

.chat-card--linkedin {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.12) 0%, rgba(0, 119, 181, 0.06) 100%);
}

.chat-card--reddit {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(251, 146, 60, 0.08) 100%);
}

.search-demo {
  display: grid;
  gap: 8px;
  margin: 10px 0 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-demo.is-active {
  opacity: 1;
  transform: translateY(0);
}

.search-bubble {
  max-width: 360px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-demo.is-active .search-bubble {
  opacity: 1;
  transform: translateY(0);
}

.search-run {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #16a34a;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  margin: 2px 0 10px;
}

.search-run-row {
  display: flex;
  justify-content: flex-end;
}

.search-run-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-run-icon svg {
  width: 14px;
  height: 14px;
}

.search-bubble--user {
  background: #111827;
  color: #ffffff;
  justify-self: end;
}

.search-bubble--sniff {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  justify-self: flex-start;
}

.search-bubble--sniff.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.search-platforms {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.2s ease;
}

.search-platforms-label {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-platforms.show {
  opacity: 1;
  max-height: 40px;
}

.search-platforms .chat-icon {
  width: 20px;
  height: 20px;
  box-shadow: none;
  transform: none;
  opacity: 1;
}

.search-platforms .chat-icon svg {
  width: 9px;
  height: 9px;
}

.search-platforms .chat-icon img {
  width: 9px;
  height: 9px;
  object-fit: contain;
}

.typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #9ca3af;
  display: inline-block;
  animation: dotBounce 1s infinite ease-in-out;
}

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

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

@keyframes dotBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.lead-table-wrap {
  margin-top: 12px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  width: 155%;
  margin-left: -27.5%;
  position: relative;
  overflow: hidden;
}

.lead-table-wrap.is-hidden {
  display: none;
}

.lead-table-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 100%);
  pointer-events: none;
  opacity: 0.8;
}

.lead-prompt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 12px;
  position: relative;
}

.lead-prompt-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  color: #94a3b8;
}

#leadPromptText {
  min-height: 16px;
  color: #111827;
  font-weight: 600;
}

.lead-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  color: #374151;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lead-table-wrap.is-ready .lead-table {
  opacity: 1;
}

.lead-table tbody tr.is-updating {
  animation: rowPulse 0.6s ease;
}

@keyframes rowPulse {
  0% {
    background: rgba(99, 102, 241, 0.12);
  }
  100% {
    background: transparent;
  }
}

.lead-table tbody tr {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lead-table tbody tr.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lead-table th,
.lead-table td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}

.lead-table th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.lead-table tbody tr:last-child td {
  border-bottom: none;
}

.lead-table tbody tr:hover {
  background: #f8fafc;
}

.lead-table tbody tr:nth-child(n + 6) {
  display: none;
}


.lead-link {
  width: 40px;
}

.lead-email {
  width: 40px;
}

.lead-phone {
  min-width: 120px;
  font-weight: 600;
  color: #111827;
}

.lead-link-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.12);
  color: #0a66c2;
}

.lead-link-icon svg {
  width: 12px;
  height: 12px;
}

.lead-email-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.lead-email-icon svg {
  width: 12px;
  height: 12px;
}

.chat-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
}

.chat-card:nth-child(1) {
  animation-delay: 0.08s;
}

.chat-card:nth-child(2) {
  animation-delay: 0.18s;
}

.chat-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #ffffff;
  border: 1px solid rgba(251, 191, 36, 0.9);
  color: #b45309;
  border-radius: 999px;
}

@keyframes sniff-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  display: grid;
  gap: 20px;
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

.service-index {
  position: fixed;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
  z-index: 60;
  font-size: 12px;
  color: #111827;
  text-align: right;
}

.updates-index {
  position: fixed;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  display: grid;
  gap: 16px;
  z-index: 60;
  font-size: 12px;
  color: #111827;
  text-align: right;
}

.updates-block {
  display: grid;
  gap: 10px;
  align-items: start;
}

.updates-index .service-list {
  justify-items: end;
}

.updates-index .service-item {
  justify-self: end;
}

.service-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

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

.service-item {
  position: relative;
  padding: 2px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  justify-self: end;
  z-index: 61;
}

.service-item:hover {
  transform: translateX(-2px);
  box-shadow: none;
}

.service-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  width: 140px;
  height: 140px;
  padding: 10px;
  border-radius: 8px;
  font-size: 11px;
  color: #111827;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  z-index: 70;
  white-space: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-item:hover .service-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.service-cta {
  display: inline-flex;
  align-self: flex-end;
  font-size: 11px;
  color: #111827;
  text-decoration: none;
  border: none;
  padding: 0;
}

@media (max-width: 900px) {
  .nav,
  .content,
  .footer {
    width: 90vw;
  }
  .nav {
    grid-template-rows: auto auto;
    row-gap: 8px;
  }
  .nav-links {
    justify-self: end;
  }
  .product-dropdown {
    position: static;
  }
  .product-trigger {
    padding: 10px 12px;
    font-size: 14px;
  }
  .product-menu {
    left: 0;
    right: 0;
    width: min(72vw, 288px);
    margin: 0 auto;
    max-height: 60vh;
    overflow-y: auto;
  }
  .typing-textarea {
    min-height: 132px;
  }
  .product-item {
    padding: 10px 12px;
  }
  .product-name {
    font-size: 14px;
  }
  .product-desc {
    font-size: 12px;
  }
  .pricing-link {
    display: none;
  }
  .service-index {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
  }
  .updates-index {
    display: none;
  }
  .service-title {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .service-item {
    justify-self: auto;
  }
  .service-tooltip {
    right: 0;
    left: auto;
    top: calc(100% + 6px);
    transform: none;
  }
  .service-item:hover .service-tooltip {
    transform: none;
  }
  .section-inner {
    width: 100%;
  }
  .vision-page .section-inner {
    width: 100%;
  }
  .lead-table-wrap {
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .lead-table {
    min-width: 520px;
  }
  .chat-templates {
    width: 100%;
  }
  .chat-glass-elevated {
    width: 100%;
    margin-left: 0;
  }
  .template-grid {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
  }
  .chat-example-title {
    font-size: 28px;
    white-space: normal;
  }
  .chat-example-subtitle {
    font-size: 14px;
  }
  .trust-track {
    animation-duration: 34s;
  }
  .service-index {
    display: none;
  }
}
.template-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}
