﻿:root {
  --brand: #198754;
  --brand-dark: #146c43;
  --accent: #0d6efd;
  --text: #212529;
  --muted: #6c757d;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --line: rgba(33, 37, 41, 0.08);
  --shadow: 0 0.5rem 1.5rem rgba(33, 37, 41, 0.08);
  --shadow-soft: 0 0.35rem 1rem rgba(33, 37, 41, 0.06);
  --radius: 20px;
  --wrap: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(25, 135, 84, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(13, 110, 253, 0.08), transparent 55%),
    #f8fafc;
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

section {
  padding: 1.4rem 0 2.4rem;
}

.container {
  width: min(var(--wrap), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar,
.eyebrow {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-row,
.header-row,
.hero-grid,
.card-grid,
.faq-grid,
.link-grid,
.media-grid,
.footer-grid,
.comparison-grid,
.metrics,
.trustbar,
.solution-grid,
.use-case-grid,
.proof-block,
.pricing-block,
.section-block-split {
  display: grid;
  gap: 1.2rem;
}

.header-row,
.navbar .container {
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.header-row {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand,
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand img,
.navbar-brand img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.brand span,
.brand-copy,
.brand span small {
  display: none !important;
}

.nav-toggle {
  display: none;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--text);
}

.site-nav ul,
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.navbar-nav .nav-link {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current='page'],
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand);
}

.btn-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn,
.site-nav .btn,
.navbar .btn,
.btn-primary,
.btn-brand,
.btn-secondary,
.btn-outline-brand,
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-brand:hover,
.btn-secondary:hover,
.btn-outline-brand:hover,
.btn-tertiary:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
}

.btn-primary:hover,
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-secondary,
.btn-outline-brand,
.btn-tertiary {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 3.6rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: start;
  gap: 2.6rem;
  padding: 20px;
}

.hero-panel,
.hero-media-card,
.panel,
.card,
.faq-item,
.link-card,
.media-card,
.cta,
.metric,
.table-wrap,
.section-block,
.content-card,
.stat-card,
.final-cta,
.accordion-item,
.feature-item,
.quote {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel,
.hero-media-card,
.panel,
.card,
.faq-item,
.link-card,
.media-card,
.cta,
.metric,
.table-wrap,
.section-block,
.content-card,
.stat-card,
.final-cta {
  padding: 1.35rem;
}

.hero-panel,
.hero-media-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
}

.hero-panel img,
.hero-media-img,
.media-card img,
.hero-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.hero-panel img,
.media-card img {
  aspect-ratio: 16 / 10;
}

.hero-mobile-only {
  display: none;
}

.hero-demo-panel {
  padding: 1rem;
}

.hero-demo {
  position: relative;
}

.hero-demo__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.14), rgba(13, 110, 253, 0.12));
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-demo__frame {
  padding: 1.2rem;
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 251, 0.92)),
    radial-gradient(circle at top right, rgba(25, 135, 84, 0.16), transparent 34%);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-demo__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(33, 37, 41, 0.08);
}

.hero-demo__header strong,
.hero-demo__card-copy strong {
  display: block;
}

.hero-demo__header span,
.hero-demo__card-copy span {
  color: var(--muted);
}

.hero-demo__avatar {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-demo__chat {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 0 1.1rem;
}

.hero-demo__bubble {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-demo__bubble.is-visible,
.hero-demo__card.is-visible,
.hero-demo__pills.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-demo__bubble--user {
  justify-self: end;
  max-width: 88%;
  padding: 0.95rem 1rem;
  border-radius: 18px 18px 6px 18px;
  background: linear-gradient(135deg, var(--brand), #34a66f);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.hero-demo__bubble--agent {
  max-width: 92%;
  padding: 1rem;
  border-radius: 6px 18px 18px 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-demo__typing {
  min-height: 4.7rem;
  color: var(--text);
}

.hero-demo__cursor {
  display: inline-block;
  margin-left: 1px;
  animation: hero-demo-blink 1s step-end infinite;
}

.hero-demo__card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  margin-top: 0.9rem;
  padding: 0.8rem;
  border: 1px solid rgba(33, 37, 41, 0.08);
  border-radius: 18px;
  background: var(--surface-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-demo__card-media img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-demo__card-copy {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.hero-demo__card-copy a {
  width: fit-content;
  margin-top: 0.15rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.hero-demo__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-demo__pills span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: #0a58ca;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-demo__composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(33, 37, 41, 0.08);
  color: var(--muted);
}

.hero-demo__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(25, 135, 84, 0.1);
  color: var(--brand-dark);
  font-weight: 700;
}

@keyframes hero-demo-blink {
  50% {
    opacity: 0;
  }
}

.lead,
.faq-item .answer,
.metric span,
.link-card p,
.media-card p,
.stack-item span,
.content-card p,
.section-heading p,
.footer p,
.footer-bottom,
.footer-bottom p,
.footer-note,
.breadcrumbs,
.breadcrumb-nav,
.point {
  color: var(--muted);
}

.breadcrumbs {
  display: none;
  padding-top: 1.8rem;
  font-size: 0.92rem;
}

.breadcrumbs ol,
.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero .lead,
.page-hero .lead {
  max-width: 58ch;
  margin-top: 0;
}

.hero .btn-row,
.hero-actions {
  margin-top: 1.6rem;
}

.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.45rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-grid,
.media-grid,
.faq-grid,
.trustbar,
.solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-block,
.pricing-block {
  grid-template-columns: 1.2fr 0.7fr 1fr;
  align-items: center;
}

.section-block-split,
.comparison-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.article,
.stack-list,
.feature-list,
.hero-points,
.case-points {
  display: grid;
  gap: 0.9rem;
}

.bullets {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.bullets li,
.check-item {
  position: relative;
  padding-left: 1.6rem;
}

.bullets li::before,
.check-item::before {
  content: "\2022";
  position: absolute;
  left: 0.45rem;
  color: var(--brand);
  font-weight: 900;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.faq-item .answer {
  display: none;
  padding-top: 0.9rem;
}

.faq-item.open .answer {
  display: block;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.stack-item {
  padding: 1rem 1.05rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stack-item strong,
.feature-title {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.link-card a:last-child {
  color: var(--accent);
  font-weight: 700;
}

.media-card h3 {
  margin-top: 1rem;
}

.feature-item {
  padding: 14px;
}

.quote {
  padding: 12px 14px;
  margin-bottom: 12px;
  background: rgba(25, 135, 84, 0.04);
}

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

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  font-weight: 800;
}

.mini-proof {
  max-width: 240px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.rounded-4 {
  border-radius: var(--radius) !important;
}

.video-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.video-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.video-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.footer,
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
}

.footer ul,
.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-title {
  font-size: 1rem;
}

.sticky,
.sticky-mobile-cta {
  display: none;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trustbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .solution-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  footer {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 960px) {
  .header-row {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.5rem;
  }

  .hero,
  .page-hero {
    padding-top: 4.4rem;
    padding-bottom: 2.6rem;
  }

  .hero-grid,
  .comparison-grid,
  .cta,
  .footer-grid,
  .metrics,
  .card-grid,
  .faq-grid,
  .link-grid,
  .media-grid,
  .trustbar,
  .solution-grid,
  .use-case-grid,
  .proof-block,
  .pricing-block,
  .section-block-split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.6rem;
    padding: 0;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4.6rem);
  }

  .sticky,
  .sticky-mobile-cta {
    display: block;
  }
}

@media (max-width: 768px) {
  .video-cta {
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
  }
}

@media (max-width: 575.98px) {
  .mini-proof {
    max-width: 180px;
  }

  .hero-mobile-hide {
    display: none;
  }

  .hero-mobile-only {
    display: block;
    margin-top: 1.4rem;
  }

  .hero-mobile-only .btn-row {
    display: grid;
    gap: 0.65rem;
  }

  .hero-mobile-only .btn {
    width: 100%;
  }

  .hero-mobile-only .bullets {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
  }

  .hero-mobile-only .bullets li + li {
    margin-top: 0.55rem;
  }
}

@media (max-width: 430px) {
}
