:root {
  --ivory: #f8f6f2;
  --cream: #eee8dc;
  --stone: #d8d0c1;
  --paper: #ffffff;
  --ink: #161616;
  --muted: #6c675f;
  --soft: #e7e0d4;
  --emerald: #37c66a;
  --emerald-dark: #178a42;
  --gold: #b88a3d;
  --shadow: 0 28px 90px rgba(53, 44, 33, 0.14);
  --shadow-soft: 0 16px 54px rgba(53, 44, 33, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-sm: 12px;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.35), transparent 540px),
    var(--ivory);
  color: var(--ink);
  line-height: 1.45;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 68%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  padding: 16px;
}

.nav {
  max-width: 1320px;
  margin: 0 auto;
  height: 72px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(22, 22, 22, 0.07);
  border-radius: 24px;
  background: rgba(248, 246, 242, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(50, 43, 33, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 72px;
  height: 34px;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}
.nav-links a,
.site-footer a {
  text-decoration: none;
}
.nav-links a:hover,
.site-footer a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 999px;
  background: var(--paper);
  padding: 9px 13px;
  font-weight: 720;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 780;
  letter-spacing: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 36px rgba(22, 22, 22, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding: 80px 0 104px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--emerald-dark);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  margin-bottom: 28px;
  font-size: 6.55rem;
  font-weight: 820;
  max-width: 850px;
}

h1 span { color: var(--emerald-dark); }

h2 {
  margin-bottom: 24px;
  font-size: 4.65rem;
  font-weight: 800;
  max-width: 940px;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.08;
}

.hero-subhead {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 34px 0 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.trust-row span {
  padding: 10px 12px;
  border: 1px solid rgba(22, 22, 22, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-product {
  position: relative;
  min-height: 660px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(55, 198, 106, 0.18), transparent 34%),
    linear-gradient(145deg, #ece4d8, #fffaf1);
  border: 1px solid rgba(22, 22, 22, 0.07);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-card,
.floating-card,
.pricing-card,
.testimonial-card,
.capability-grid article,
.step-row article,
.case-grid article,
.product-journey,
.product-board,
.workflow-stack div {
  border: 1px solid rgba(22, 22, 22, 0.075);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.main-dashboard {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 13%;
  padding: 28px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.dashboard-top span,
.calendar-card span,
.conversation-card span,
.pricing-card span,
.workflow-stack span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 760;
}

.line-chart {
  height: 178px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #f6f0e6;
}
.line-chart span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--emerald), #b8e6c6);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.dashboard-grid div,
.pipeline div {
  padding: 16px;
  border-radius: 18px;
  background: #fbf8f2;
}
small { color: var(--muted); }
.dashboard-grid strong,
.pipeline strong,
.stats span {
  display: block;
  font-size: 2rem;
}

.floating-card {
  position: absolute;
  padding: 20px;
}
.phone-card {
  left: 6%;
  bottom: 12%;
  width: 250px;
}
.calendar-card {
  right: 7%;
  bottom: 7%;
  width: 230px;
}
.conversation-card {
  right: 8%;
  top: 53%;
  width: 250px;
}
.phone-top { color: var(--emerald-dark); font-weight: 780; margin-bottom: 16px; }
.caller { display: flex; align-items: center; gap: 12px; }
.caller span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
}
.caller small { display: block; }
.call-state {
  margin-top: 18px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--emerald-dark);
  background: rgba(55, 198, 106, 0.13);
  font-weight: 760;
}

.industry-strip {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 10px 0 72px;
}
.industry-strip h2 {
  margin-bottom: 0;
  max-width: 720px;
  font-size: 3.65rem;
}
.industry-strip-copy .eyebrow {
  margin-bottom: 14px;
}
.industry-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.industry-grid.compact span {
  min-height: 58px;
  border-radius: 18px;
  font-size: 0.95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 128px;
}
.stats div {
  padding: 26px;
  border-top: 1px solid rgba(22, 22, 22, 0.1);
}
.stats span {
  color: var(--ink);
  font-size: 3.2rem;
  font-weight: 810;
}
.stats .stat-value {
  display: block;
  color: var(--ink);
  font-size: 3.2rem;
  line-height: inherit;
  font-weight: 860;
  white-space: nowrap;
}
.stats .stat-value span {
  display: inline;
  font: inherit;
}
.stats small {
  display: block;
  margin-top: 8px;
}

.split-feature,
.workflows,
.pricing {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 144px;
}

.image-panel {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.product-journey {
  position: relative;
  min-height: 620px;
  padding: 32px;
  display: grid;
  align-content: center;
  gap: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(55, 198, 106, 0.16), transparent 32%),
    linear-gradient(145deg, #fffaf1, #eee6d8);
}
.product-journey::before {
  content: "";
  position: absolute;
  inset: 36px 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(22, 22, 22, 0.18), transparent);
}
.journey-step {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: center;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 44px rgba(53, 44, 33, 0.08);
}
.journey-step:nth-child(even) {
  margin-left: auto;
}
.journey-step span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #f1eadf;
  font-weight: 840;
}
.journey-step strong {
  font-size: 1.12rem;
}
.journey-step small {
  margin-top: 4px;
}
.journey-step.active {
  color: white;
  background: #171511;
  box-shadow: 0 24px 70px rgba(22, 22, 22, 0.22);
}
.journey-step.active span {
  color: white;
  background: var(--emerald-dark);
}
.journey-step.active small {
  color: #d9d1c5;
}

.feature-copy p,
.workflow-copy p,
.pricing-copy p,
.proof-copy p {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.08rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.how,
.capabilities,
.dashboard-preview,
.integrations,
.industries,
.case-studies,
.testimonials,
.faq,
.final-cta {
  margin-bottom: 144px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading.wide {
  display: block;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-row article,
.capability-grid article {
  padding: 28px;
}
.step-row span {
  display: inline-flex;
  margin-bottom: 84px;
  color: var(--gold);
  font-weight: 820;
}
.step-row p,
.capability-grid p,
.case-grid p,
.testimonial-card span,
.pricing-card p,
.faq p {
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 16px;
}
.large-capability {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #151515 !important;
  color: white;
}
.large-capability p { color: #d8d1c6; }
.audio-rings {
  width: 170px;
  height: 170px;
  position: relative;
  margin-bottom: 80px;
}
.audio-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(55, 198, 106, 0.48);
  animation: pulse 3.5s ease-in-out infinite;
}
.audio-rings span:nth-child(2) { inset: 26px; animation-delay: 400ms; }
.audio-rings span:nth-child(3) { inset: 52px; background: var(--emerald); animation-delay: 800ms; }

.dashboard-preview {
  padding: 56px;
  border-radius: 44px;
  background: #171511;
  color: white;
}
.dashboard-preview .eyebrow { color: #9ef2b9; }
.product-board {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
}
.board-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
}
.board-sidebar span {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--muted);
}
.board-sidebar .active {
  background: var(--ink);
  color: white;
}
.board-main {
  padding: 16px;
  border-radius: 20px;
  background: #fbf8f2;
}
.board-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.board-header span {
  color: var(--emerald-dark);
  font-weight: 820;
}
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.task-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.task-list p {
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  background: white;
}
.task-list span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--emerald);
}

.integration-orbit,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.integration-orbit span,
.industry-grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 22, 22, 0.075);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 780;
}

.workflow-stack {
  display: grid;
  gap: 14px;
}
.workflow-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.workflow-phone {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.workflow-phone img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 48px rgba(53, 44, 33, 0.2));
}
.workflow-stack div {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 22px;
  align-items: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-grid article {
  overflow: hidden;
}
.case-grid img {
  width: calc(100% + 56px);
  max-width: none;
  margin: -28px -28px 26px;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}
.proof-grid article {
  padding: 28px;
}
.proof-visual {
  min-height: 220px;
  margin-bottom: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  border: 1px solid rgba(22, 22, 22, 0.07);
  background:
    linear-gradient(135deg, rgba(55, 198, 106, 0.16), transparent 46%),
    #f6f0e6;
}
.proof-visual strong {
  font-size: 1.55rem;
  line-height: 1;
}
.proof-visual span {
  margin-top: 8px;
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.testimonial-card {
  padding: 42px;
}
.testimonial-card p {
  font-size: 2rem;
  line-height: 1.12;
}
.testimonial-card.muted {
  background: #ede5d8;
}

.pricing-card {
  padding: 36px;
}
.pricing-card strong {
  display: block;
  margin: 8px 0 16px;
  font-size: 4rem;
  line-height: 1;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
  display: grid;
  gap: 10px;
}
.pricing-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.pricing-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--emerald-dark);
  font-weight: 860;
}

.faq-list {
  max-width: 920px;
  margin-left: auto;
}
details {
  border-top: 1px solid rgba(22, 22, 22, 0.1);
  padding: 24px 0;
}
details:last-child { border-bottom: 1px solid rgba(22, 22, 22, 0.1); }
summary {
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 790;
}

.final-cta {
  min-height: 440px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: 56px;
  border-radius: 44px;
  color: white;
  background:
    linear-gradient(135deg, rgba(55, 198, 106, 0.18), transparent 42%),
    #151515;
}
.final-cta .eyebrow { color: #9ef2b9; }
.final-cta h2 { max-width: 860px; }

.site-footer {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 44px;
  display: grid;
  grid-template-columns: 1fr auto 1.1fr;
  align-items: start;
  gap: 24px;
  color: var(--muted);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-trust {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}
.footer-trust p {
  margin: 0;
  max-width: 420px;
  color: var(--ink);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 780ms ease, transform 780ms ease;
}
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.05); opacity: 0.52; }
}

@media (max-width: 1100px) {
  h1 { font-size: 5rem; }
  h2 { font-size: 3.65rem; }
  .hero,
  .split-feature,
  .workflows,
  .pricing {
    grid-template-columns: 1fr;
  }
  .hero-product { min-height: 590px; }
  .industry-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .industry-strip h2 {
    font-size: 3.2rem;
  }
  .step-row,
  .stats,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .large-capability { grid-row: auto; grid-column: span 2; }
}

@media (max-width: 760px) {
  .site-header { padding: 10px; }
  .nav {
    height: 64px;
    border-radius: 18px;
  }
  .brand span:last-child { font-size: 0.92rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(248, 246, 242, 0.98);
    border: 1px solid rgba(22, 22, 22, 0.08);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.is-open { display: flex; }
  .section-shell { width: min(100% - 24px, 1320px); }
  .hero {
    min-height: auto;
    padding: 48px 0 72px;
    gap: 32px;
  }
  h1 {
    font-size: 3.25rem;
    line-height: 0.98;
  }
  h2 {
    font-size: 2.55rem;
    line-height: 1;
  }
  .hero-subhead { font-size: 1.06rem; }
  .hero-product {
    min-height: 560px;
    border-radius: 28px;
  }
  .main-dashboard {
    left: 16px;
    right: 16px;
    top: 18px;
    padding: 18px;
  }
  .dashboard-top,
  .dashboard-grid,
  .pipeline,
  .product-board,
  .workflow-panel,
  .workflow-stack div {
    grid-template-columns: 1fr;
  }
  .dashboard-top {
    display: grid;
  }
  .phone-card {
    left: 16px;
    bottom: 18px;
    width: calc(100% - 32px);
  }
  .calendar-card,
  .conversation-card {
    display: none;
  }
  .logo-belt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 56px;
  }
  .industry-strip {
    padding-bottom: 56px;
  }
  .industry-strip h2 {
    font-size: 2.35rem;
  }
  .stats,
  .step-row,
  .capability-grid,
  .integration-orbit,
  .industry-grid,
  .case-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }
  .large-capability { grid-column: auto; }
  .split-feature,
  .workflows,
  .pricing,
  .how,
  .capabilities,
  .dashboard-preview,
  .integrations,
  .industries,
  .case-studies,
  .testimonials,
  .faq,
  .final-cta {
    margin-bottom: 88px;
  }
  .section-heading {
    display: block;
  }
  .dashboard-preview,
  .final-cta {
    padding: 28px;
    border-radius: 28px;
  }
  .product-board {
    display: block;
    padding: 14px;
  }
  .product-journey {
    min-height: auto;
    padding: 18px;
  }
  .workflow-phone img {
    min-height: 360px;
  }
  .product-journey::before {
    display: none;
  }
  .journey-step,
  .journey-step:nth-child(even) {
    margin-left: 0;
  }
  .board-sidebar {
    display: flex;
    overflow-x: auto;
    margin-bottom: 14px;
  }
  .testimonial-card p {
    font-size: 1.45rem;
  }
  .final-cta {
    min-height: 390px;
    align-items: start;
    flex-direction: column;
  }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-trust {
    justify-items: start;
    text-align: left;
  }
}

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