@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --blue: #1457ed;
  --blue-dark: #173286;
  --product-blue: #1e40af;
  --navy: #101e38;
  --ink: #152039;
  --muted: #606b7e;
  --line: #e0e6f0;
  --pale: #f2f6ff;
  --white: #fff;
  --radius: 18px;
  --body: "Inter", Arial, sans-serif;
  --heading: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #f1a63e;
  outline-offset: 5px;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  line-height: 1.15;
}
p {
  color: var(--muted);
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 100px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e9edf3;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
  font-family: var(--body);
  font-size: 25px;
  line-height: 1;
}
.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: .375em;
}
.brand-the {
  font-size: .625em;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--muted);
}
.brand-name { font-weight: 700; white-space: nowrap; }
.brand-by {
  display: block;
  font-size: 10px;
  letter-spacing: .04em;
  font-weight: 500;
  margin-top: 8px;
  color: var(--muted);
}
.nav-wrap nav {
  display: flex;
  gap: 29px;
  font-size: 14px;
  font-weight: 500;
}
.nav-wrap nav a:hover,
.login:hover {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}
.login {
  font-size: 14px;
  font-weight: 600;
}
.login span {
  margin-left: 5px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 54px;
  padding: 15px 23px;
  background: var(--product-blue);
  color: #fff;
  border: 1px solid var(--blue);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
  line-height: 1.3;
}
.button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.button-small {
  min-height: 43px;
  padding: 11px 17px;
  gap: 23px;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.button-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.button-outline:hover {
  background: var(--pale);
}
.menu-toggle {
  display: none;
}
.hero {
  background: linear-gradient(115deg, #fff 30%, #f5f8ff 100%);
  padding: 66px 0 67px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1.5;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow-line {
  display: inline-block;
  width: 23px;
  height: 2px;
  background: var(--blue);
}
.hero h1 {
  font-size: clamp(64px, 6.15vw, 91px);
  font-weight: 750;
  letter-spacing: -5px;
  line-height: 1.04;
}
.hero h1 > span {
  color: var(--blue);
}
.hero-description {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-top: 24px;
}
.hero-detail {
  font-size: 16px;
  max-width: 430px;
  margin-top: 16px;
  line-height: 1.7;
}
.hero .button-row {
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 650;
}
.text-link:hover {
  color: var(--blue);
}
.play-icon {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  width: 29px;
  height: 29px;
  border-radius: 50%;
  font-size: 18px;
  padding-left: 2px;
}
.hero-note {
  font-size: 12px;
  margin-top: 23px;
  color: #7a8394;
}
.hero-visual {
  position: relative;
  padding: 40px 0 60px;
  isolation: isolate;
}
.visual-grid {
  position: absolute;
  z-index: -1;
  inset: -70px -100px;
  background-image:
    linear-gradient(#dfe7f450 1px, transparent 1px),
    linear-gradient(90deg, #dfe7f450 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse, black 0%, transparent 70%);
}
.workflow-label {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 650;
  color: #7887a0;
  text-align: center;
  margin: 0 0 20px;
}
.product-window {
  background: white;
  box-shadow:
    0 25px 70px -30px #476d9d66,
    0 0 0 6px #ffffff66;
  border: 1px solid #dfe5f0;
  border-radius: 15px;
  overflow: hidden;
  transform: rotate(-1deg);
}
.window-top {
  height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.mini-brand {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mini-mark {
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: var(--blue);
}
.sample-tag {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #7b8496;
}
.window-body {
  padding: 25px 24px 18px;
  background: linear-gradient(#fff, #f8faff);
}
.workspace-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.small-label {
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 650;
  margin-bottom: 7px;
  color: #8490a3;
}
.workspace-title h2 {
  font-size: 18px;
  letter-spacing: -0.6px;
  font-weight: 700;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--product-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 23px 0 17px;
}
.mini-stats > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 15px;
  background: #fff;
}
.mini-stats > div > span {
  font-size: 10px;
  display: block;
  color: var(--muted);
}
.mini-stats strong {
  font-family: var(--heading);
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.mini-stats small {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 400;
  color: #7e899b;
}
.lead-preview {
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 15px -12px #8497bc;
}
.lead-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar-light {
  background: #ebf0fb;
  color: #3d5c90;
  width: 37px;
  height: 37px;
}
.lead-heading strong {
  font-size: 12px;
  display: block;
}
.lead-heading div > span {
  font-size: 9px;
  color: var(--muted);
  display: block;
}
.status {
  font-size: 9px;
  color: #277c64;
  background: #e7f5ed;
  line-height: 1.4;
  padding: 5px 8px;
  border-radius: 5px;
  margin-left: auto;
  white-space: nowrap;
}
.lead-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid #edf0f5;
}
.lead-data span {
  font-size: 9px;
  color: #7c8596;
  display: block;
}
.lead-data strong {
  font-size: 11px;
  font-weight: 500;
}
.quote-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f0f5ff;
  border: 1px solid #e2eafd;
  border-radius: 7px;
}
.quote-preview strong {
  font-size: 10px;
  display: block;
  color: #274b88;
}
.quote-preview p {
  font-size: 9px;
  margin-top: 2px;
  color: #627598;
}
.quote-preview > span:last-child {
  margin-left: auto;
  color: var(--blue);
}
.quote-icon {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}
.lead-bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 9px;
  color: #8791a3;
  margin-top: 14px;
}
.mini-link {
  color: var(--blue);
}
.activity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
}
.activity-check {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  background: #e8f4ed;
  color: #3a8b6e;
  border-radius: 50%;
  font-size: 13px;
}
.activity-row strong,
.activity-row div > span {
  display: block;
  font-size: 10px;
}
.activity-row div > span {
  color: #7f899b;
  font-size: 9px;
}
.floating-note {
  position: absolute;
  bottom: 25px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 40px -15px #4972a86b;
  border: 1px solid #e7ecf5;
  transform: rotate(2deg);
}
.message-icon {
  height: 37px;
  width: 37px;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 10px;
  color: white;
  font-size: 24px;
}
.floating-note strong,
.floating-note div > span {
  display: block;
  font-size: 11px;
}
.floating-note div > span {
  font-size: 10px;
  color: #7c899b;
  margin-top: 3px;
}
.visual-caption {
  position: absolute;
  bottom: -5px;
  text-align: center;
  width: 100%;
  font-size: 10px;
  color: #8a94a6;
}
.capability-strip {
  border-block: 1px solid var(--line);
  padding: 28px 0;
}
.capability-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.capability-strip span:first-child {
  font-size: 12px;
  color: var(--muted);
}
.capability-strip p {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: #43516b;
}
.strip-plus {
  color: #afbfdb;
  font-weight: 300;
}
.site-footer {
  padding: 60px 0 24px;
  background: #f8faff;
}
.site-footer > .container > p {
  margin-top: 20px;
  font-size: 15px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 85px;
  }
  .hero-grid {
    gap: 95px;
  }
  .hero h1 {
    font-size: 99px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav-wrap {
    gap: 20px;
  }
  .nav-wrap nav {
    gap: 18px;
  }
  .nav-actions {
    gap: 20px;
  }
  .brand {
    font-size: 22px;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero h1 {
    font-size: 74px;
  }
  .hero-detail {
    font-size: 15px;
  }
  .window-body {
    padding: 20px 17px;
  }
  .mini-stats small {
    display: none;
  }
  .floating-note {
    right: -8px;
  }
  .workspace-title h2 {
    font-size: 16px;
  }
  .hero .button-row {
    gap: 20px;
  }
  .capability-strip .container {
    gap: 12px;
  }
  .capability-strip p {
    font-size: 11px;
  }
}
@media (max-width: 850px) {
  .site-header {
    height: 82px;
  }
  .nav-wrap {
    gap: 20px;
  }
  .nav-wrap nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 25px #162c4e12;
  }
  .nav-wrap nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 0;
    background: none;
    margin-left: auto;
  }
  .menu-toggle span {
    height: 2px;
    width: 23px;
    background: var(--ink);
  }
  .nav-actions .login {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .hero h1 {
    font-size: 66px;
    letter-spacing: -4px;
  }
  .hero-description {
    font-size: 19px;
  }
  .hero-detail {
    font-size: 14px;
  }
  .hero .button-row {
    gap: 18px;
  }
  .hero .text-link {
    font-size: 12px;
  }
  .hero-visual {
    margin-right: -10px;
  }
  .window-top {
    padding: 0 16px;
  }
  .sample-tag {
    display: none;
  }
  .workspace-title h2 {
    font-size: 14px;
  }
  .window-body {
    padding: 20px 13px;
  }
  .lead-preview {
    padding: 13px;
  }
  .lead-data strong {
    font-size: 10px;
  }
  .quote-preview {
    padding: 9px;
  }
  .quote-preview p {
    display: none;
  }
  .floating-note {
    padding: 12px;
    gap: 9px;
    right: 0;
    max-width: 100%;
  }
  .floating-note strong {
    font-size: 10px;
  }
  .floating-note div > span {
    font-size: 9px;
  }
  .capability-strip .container {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 8px;
  }
  .capability-strip span:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 7px;
  }
}
@media (max-width: 620px) {
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 76px;
  }
  .brand {
    font-size: 20px;
    gap: 8px;
  }
  .brand-by {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .nav-wrap {
    gap: 10px;
  }
  .nav-actions .button {
    font-size: 12px;
    gap: 9px;
    padding: 10px 12px;
    min-height: 40px;
  }
  .menu-toggle {
    padding: 8px;
  }
  .menu-toggle span {
    width: 19px;
  }
  .nav-wrap nav {
    top: 75px;
  }
  .hero {
    padding: 40px 0 42px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 76px;
    letter-spacing: -4.5px;
  }
  .hero-description {
    font-size: 21px;
    margin-top: 23px;
  }
  .hero-description br {
    display: none;
  }
  .hero-detail {
    font-size: 16px;
    max-width: 100%;
    margin-top: 12px;
  }
  .hero .button-row {
    gap: 25px;
    margin-top: 24px;
  }
  .hero .text-link {
    font-size: 14px;
  }
  .hero-note {
    font-size: 11px;
    margin-top: 19px;
  }
  .hero-visual {
    margin: 0;
    padding: 16px 5px 58px;
  }
  .workflow-label {
    font-size: 9px;
    margin-bottom: 14px;
  }
  .window-body {
    padding: 20px 17px;
  }
  .workspace-title h2 {
    font-size: 16px;
  }
  .mini-stats small {
    display: block;
    font-size: 8px;
  }
  .lead-data strong {
    font-size: 11px;
  }
  .quote-preview p {
    display: block;
    font-size: 8px;
  }
  .floating-note {
    right: 0;
    bottom: 25px;
    padding: 13px 15px;
  }
  .floating-note strong {
    font-size: 11px;
  }
  .floating-note div > span {
    font-size: 10px;
  }
  .capability-strip {
    padding: 22px 0;
  }
  .capability-strip .container {
    column-gap: 15px;
  }
  .capability-strip p {
    font-size: 11px;
  }
  .capability-strip .strip-plus:nth-last-child(2) {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
  }
  .site-footer {
    padding-top: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.section {
  padding: 100px 0;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}
.section-heading > p,
.section-heading > div:last-child:not(:first-child) {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.75;
}
.section-heading .eyebrow,
.possibility-copy .eyebrow,
.faq-grid .eyebrow,
.company-grid .eyebrow {
  margin-bottom: 18px;
}
.section h2,
.possibility-section h2,
.company-section h2 {
  font-size: 45px;
  letter-spacing: -2px;
  font-weight: 650;
  line-height: 1.18;
}
.platform-section {
  background: var(--navy);
  color: #fff;
}
.platform-section .eyebrow {
  color: #8db1ff;
}
.platform-section .section-heading > p {
  color: #a5b4cc;
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.workflow-tabs {
  display: flex;
  flex-direction: column;
}
.workflow-tab {
  border: 0;
  border-bottom: 1px solid #304059;
  display: flex;
  text-align: left;
  gap: 20px;
  padding: 24px 0;
  background: none;
  color: #c2cadd;
  line-height: 1.5;
  align-items: flex-start;
}
.workflow-tab:first-child {
  border-top: 1px solid #304059;
}
.step-number {
  font-size: 12px;
  line-height: 1.5;
  color: #8095b7;
  margin-top: 4px;
}
.workflow-tab strong {
  display: block;
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 600;
  color: #b7c3d8;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.workflow-tab span > span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  max-width: 315px;
  color: #8f9fba;
}
.workflow-tab.active strong {
  color: #fff;
}
.workflow-tab.active .step-number {
  color: #85aaff;
}
.workflow-tab.active {
  border-bottom-color: #5986e2;
}
.step-arrow {
  margin-left: auto;
  color: #729fff;
  font-size: 21px;
  opacity: 0;
}
.workflow-tab.active .step-arrow,
.workflow-tab:hover .step-arrow {
  opacity: 1;
}
.workflow-stage {
  border-radius: 14px;
  background: #edf3ff;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 15px 45px #05102533;
  min-height: 463px;
  display: flex;
  flex-direction: column;
}
.stage-top {
  display: flex;
  justify-content: space-between;
  padding: 23px 27px;
  border-bottom: 1px solid #dce6f8;
  gap: 12px;
  align-items: center;
}
.stage-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #3d5890;
}
.demo-label {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}
.stage-content {
  padding: 27px 30px 22px;
  flex: 1;
}
.source-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.source-pills span {
  font-size: 11px;
  background: #fff;
  border: 1px solid #dce5f5;
  padding: 8px 9px;
  border-radius: 6px;
}
.flow-connector {
  text-align: center;
  color: #6089d4;
  font-size: 23px;
  line-height: 1.6;
}
.tour-card {
  background: #fff;
  border: 1px solid #dce5f2;
  padding: 19px;
  border-radius: 10px;
  box-shadow: 0 6px 16px #8099c113;
}
.tour-card-heading {
  display: flex;
  gap: 11px;
  align-items: center;
  flex-wrap: wrap;
}
.tour-card-heading strong {
  font-size: 14px;
  display: block;
}
.tour-card-heading div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.tour-badge {
  background: #edf5ff;
  color: #4272b8;
  font-size: 9px;
  padding: 5px 8px;
  margin-left: auto;
  border-radius: 4px;
}
.tour-details {
  margin: 17px 0 0;
  padding: 0;
}
.tour-details div {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid #edf0f5;
  font-size: 11px;
}
.tour-details dt {
  color: #7c879a;
}
.tour-details dd {
  margin: 0;
  color: #354867;
  text-align: right;
}
.tour-event {
  background: #f0f7f3;
  color: #427361;
  border-radius: 5px;
  font-size: 11px;
  padding: 11px;
  margin-top: 10px;
}
.tour-event > span {
  margin-right: 7px;
}
.stage-caption {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin: 21px 5px 0;
  color: var(--muted);
}
.stage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dce6f8;
  padding: 16px 26px;
}
.stage-footer > span {
  font-size: 9px;
  letter-spacing: 1.25px;
  color: var(--muted);
}
.tour-next {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  background: none;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  padding: 7px 0;
}
.integrations-line {
  border-top: 1px solid #304059;
  margin-top: 62px;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
}
.integrations-line > span {
  font-size: 13px;
  color: #98abc7;
}
.integrations-line > div {
  display: flex;
  gap: 23px;
  align-items: center;
}
.integrations-line strong {
  font-size: 14px;
  font-weight: 500;
  color: #d8e3f7;
}
.integrations-line i {
  height: 15px;
  width: 1px;
  background: #445572;
}
.integrations-line p {
  font-size: 11px;
  color: #8799b4;
  flex-basis: 100%;
  text-align: right;
  margin-top: -13px;
}
.solutions-section {
  background: #fff;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.role-card {
  padding: 33px 0 0;
  border-top: 1px solid #b8c7df;
}
.line-icon {
  height: 33px;
  width: 33px;
  color: var(--blue);
  margin-bottom: 24px;
}
.line-icon svg {
  height: 100%;
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.role-kicker {
  font-size: 10px;
  letter-spacing: 1.3px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 15px;
}
.role-card h3 {
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.7px;
  line-height: 1.3;
  margin-bottom: 17px;
}
.role-card > p:not(.role-kicker) {
  font-size: 15px;
  line-height: 1.7;
  min-height: 78px;
  max-width: 345px;
}
.role-card .text-link {
  margin-top: 26px;
  color: var(--blue);
  font-size: 13px;
  gap: 20px;
}
.possibility-section {
  padding: 25px 0 100px;
}
.possibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.home-image-wrap {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  border-radius: 12px;
  overflow: hidden;
  background: #b8c5b7;
}
.home-image-wrap > img {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 50%;
  inset: 0;
}
.home-image-wrap::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #071920ad);
}
.image-caption {
  position: absolute;
  z-index: 1;
  left: 33px;
  bottom: 31px;
  color: white;
}
.image-caption > span {
  font-size: 9px;
  letter-spacing: 1.8px;
}
.image-caption > strong {
  display: block;
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.7px;
  margin-top: 13px;
}
.possibility-copy h2 {
  font-size: 42px;
  letter-spacing: -1.8px;
}
.possibility-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.85;
  margin-top: 23px;
}
.scenario-list {
  margin: 25px 0 28px;
}
.scenario-list > div {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}
.scenario-list > div > span {
  font-size: 11px;
  color: var(--blue);
  margin-top: 3px;
}
.scenario-list h3 {
  font-size: 16px;
  font-weight: 650;
}
.scenario-list p {
  font-size: 13px;
  margin-top: 7px;
  line-height: 1.6;
  max-width: 350px;
}
.possibility-copy .text-link {
  font-size: 13px;
  color: var(--blue);
}
.pricing-preview {
  background: #f6f8fc;
}
.pricing-preview .text-link {
  margin-top: 19px;
  color: var(--blue);
}
.plan-teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan-teaser {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.plan-teaser:hover {
  transform: translateY(-5px);
  border-color: #84a6f2;
}
.tier-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #cfb7a0;
  background: #b77947;
}
.silver-dot {
  background: #819bc7;
  box-shadow: 0 0 0 1px #becce4;
}
.gold-dot {
  background: #d9a440;
  box-shadow: 0 0 0 1px #e8d7b7;
}
.plan-teaser h3 {
  font-size: 23px;
  margin: 19px 0 12px;
  letter-spacing: -0.6px;
}
.plan-teaser p {
  color: var(--ink);
  font-size: 16px;
}
.plan-teaser > span:not(.tier-dot):not(.teaser-arrow) {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 6px;
}
.teaser-arrow {
  position: absolute;
  right: 25px;
  top: 25px;
  color: var(--blue);
  font-size: 20px;
}
.pricing-disclaimer {
  font-size: 12px;
  text-align: center;
  line-height: 1.75;
  max-width: 940px;
  margin: 25px auto 0;
  color: var(--muted);
}
.company-section {
  padding: 78px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.company-section h2 {
  font-size: 37px;
  letter-spacing: -1.4px;
}
.company-grid > div > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.company-grid .text-link {
  color: var(--blue);
  margin-top: 5px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 120px;
}
.faq-grid > div:first-child > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
}
.faq-grid > div:first-child > .text-link {
  color: var(--blue);
  margin-top: 24px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-weight: 400;
  font-size: 22px;
  color: #7991b9;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-list details > p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 14px;
  padding-right: 20px;
}
.demo-section {
  padding: 87px 0;
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 105px;
  align-items: center;
}
.demo-copy .eyebrow {
  color: #e1ebff;
  margin-bottom: 24px;
}
.demo-copy h2 {
  font-size: 54px;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -2.1px;
}
.demo-copy h2 > span {
  color: #b3d0ff;
}
.demo-copy > p:not(.eyebrow) {
  color: #d9e4ff;
  font-size: 15px;
  line-height: 1.8;
  max-width: 385px;
  margin: 24px 0 25px;
}
.demo-agenda {
  border-top: 1px solid #ffffff40;
  padding-top: 19px;
  max-width: 380px;
}
.demo-agenda p {
  font-size: 13px;
  color: #e0eaff;
  display: flex;
  gap: 20px;
  padding: 6px 0;
}
.demo-agenda span {
  color: #e1ebff;
  font-size: 10px;
  margin-top: 3px;
}
.demo-form-card {
  background: #fff;
  padding: 35px;
  border-radius: 13px;
  color: var(--ink);
  box-shadow: 0 15px 45px #00268733;
}
.demo-form-card h3 {
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.8px;
}
.form-intro {
  font-size: 14px;
  line-height: 1.7;
  margin: 12px 0 25px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 550;
  color: #40516b;
}
input,
select {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #dce3ee;
  border-radius: 5px;
  padding: 11px 12px;
  min-height: 45px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  margin-top: 7px;
}
input::placeholder {
  color: #96a0b0;
}
input:hover,
select:hover {
  border-color: #a8bad7;
}
.wide-label {
  margin-top: 18px;
}
.demo-form-card .button {
  width: 100%;
  margin-top: 24px;
  justify-content: space-between;
}
.form-note {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 14px;
}
.form-result {
  margin-top: 16px;
  padding: 13px;
  border: 1px solid #c3d6fa;
  background: #f0f6ff;
  border-radius: 7px;
  font-size: 13px;
  color: #385884;
}
.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin-top: -30px;
  font-size: 13px;
  color: #4e5e78;
}
.footer-nav a:hover {
  color: var(--blue);
}
.tour-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 19px 0 16px;
}
.tour-options > div {
  border: 1px solid #dce6f7;
  background: #f9fbff;
  border-radius: 7px;
  padding: 14px;
}
.tour-options strong {
  font-size: 13px;
  display: block;
}
.tour-options span {
  font-size: 10px;
  color: #7585a0;
  display: block;
  margin-top: 7px;
}
.tour-options .selected {
  border-color: #729cf0;
  background: #eef4ff;
}
.tour-message {
  background: #edf3ff;
  color: #465d83;
  border-radius: 10px 10px 10px 2px;
  padding: 16px;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 20px;
}
.tour-timeline {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 20px 0;
  font-size: 12px;
  color: #586e91;
}
.tour-timeline > span {
  border-left: 2px solid #cbdaf5;
  padding-left: 12px;
}
.tour-timeline b {
  font-weight: 500;
  color: var(--blue);
  margin-right: 10px;
}
/* Pricing */
.pricing-hero {
  padding: 65px 0 78px;
  text-align: center;
  background: linear-gradient(#fff, #f4f7ff);
}
.pricing-hero .eyebrow {
  justify-content: center;
  margin-bottom: 21px;
}
.pricing-hero h1 {
  font-size: 77px;
  letter-spacing: -4px;
  line-height: 1.08;
  font-weight: 650;
}
.pricing-hero h1 span {
  color: var(--blue);
}
.pricing-hero > .container > p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.7;
  margin-top: 23px;
}
.draft-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 30px auto 24px;
  font-size: 12px;
  color: #697990;
}
.draft-notice span {
  color: var(--blue);
}
.billing-toggle {
  display: inline-flex;
  background: #e9eef7;
  padding: 4px;
  border: 1px solid #dce3ef;
  border-radius: 9px;
  gap: 3px;
}
.billing-toggle button {
  border: 0;
  background: transparent;
  color: #52637e;
  font-size: 13px;
  min-height: 41px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 550;
}
.billing-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 6px #233b6b15;
}
.billing-toggle button > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  margin-left: 9px;
}
.pricing-plans {
  background: linear-gradient(#f4f7ff 10%, #fff 80%);
  padding: 0 0 20px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 31px 28px 24px;
  position: relative;
  scroll-margin-top: 150px;
  display: flex;
  flex-direction: column;
}
.tier-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tier-label h2 {
  font-size: 26px;
  letter-spacing: -0.8px;
  font-weight: 700;
}
.plan-description {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  min-height: 50px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.price strong {
  font-family: var(--heading);
  font-size: 49px;
  letter-spacing: -2px;
  line-height: 1.15;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.price > span {
  font-size: 13px;
  color: var(--muted);
}
.billing-detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.price-card .button {
  width: 100%;
  margin-top: 25px;
  justify-content: space-between;
  gap: 10px;
  min-height: 49px;
}
.plan-includes {
  font-size: 10px;
  letter-spacing: 1px;
  color: #4c6081;
  font-weight: 650;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 21px;
}
.check-list li {
  position: relative;
  padding-left: 23px;
  margin: 11px 0;
  font-size: 13px;
  color: #586a84;
  line-height: 1.65;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: #5f86c9;
  font-size: 12px;
}
.plan-footnote {
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: auto;
  line-height: 1.6;
}
.price-card.featured {
  border: 2px solid var(--blue);
  padding: 30px 27px 23px;
  box-shadow: 0 12px 30px #174bbe0d;
}
.featured-label {
  position: absolute;
  top: -27px;
  left: -2px;
  right: -2px;
  border-radius: 9px 9px 0 0;
  background: var(--product-blue);
  color: #fff;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  font-weight: 650;
}
.custom-plan {
  margin-top: 44px;
  padding: 27px 32px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.custom-plan h3 {
  font-size: 19px;
  letter-spacing: -0.4px;
}
.custom-plan p {
  font-size: 14px;
  margin-top: 7px;
}
.custom-plan .text-link {
  color: var(--blue);
}
.center-heading {
  text-align: center;
  margin-bottom: 45px;
}
.center-heading .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}
.center-heading h2 {
  font-size: 37px;
}
.center-heading > p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 15px;
}
.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.comparison-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 660px;
  text-align: center;
  font-size: 13px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
}
.comparison-table th:first-child {
  text-align: left;
  width: 43%;
  font-weight: 500;
}
.comparison-table thead {
  background: #f7f9fd;
  color: var(--ink);
}
.comparison-table thead th {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 650;
}
.comparison-table tbody td {
  color: #60728d;
}
.comparison-table .table-group {
  background: #f7f9fd;
}
.comparison-table .table-group th {
  padding-block: 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.25px;
  color: var(--muted);
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
.comparison-table td:nth-child(3),
.comparison-table thead th:nth-child(3) {
  background: #edf3ff70;
}
.pricing-faq {
  background: #f8faff;
}
.simple-cta {
  text-align: center;
  padding: 80px 0;
  background: var(--product-blue);
  color: #fff;
}
.simple-cta .eyebrow {
  justify-content: center;
  color: #b9d0ff;
  margin-bottom: 17px;
}
.simple-cta h2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -1.7px;
}
.simple-cta p:not(.eyebrow) {
  color: #c7d9ff;
  margin-top: 18px;
}
.button-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  margin-top: 28px;
}
.button-white:hover {
  background: #e9f0ff;
}
.visually-hidden {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
nav a[aria-current="page"] {
  color: var(--blue);
}
@media (max-width: 1100px) {
  .section {
    padding-block: 80px;
  }
  .section h2,
  .possibility-section h2 {
    font-size: 39px;
  }
  .section-heading {
    gap: 50px;
  }
  .section-heading > p,
  .section-heading > div:last-child:not(:first-child) {
    max-width: 360px;
    font-size: 15px;
  }
  .platform-grid {
    gap: 40px;
  }
  .workflow-tab {
    gap: 15px;
    padding-block: 21px;
  }
  .workflow-tab strong {
    font-size: 17px;
  }
  .workflow-tab span > span {
    font-size: 13px;
  }
  .stage-content {
    padding: 24px 20px 20px;
  }
  .stage-top {
    padding: 20px;
  }
  .stage-kicker {
    font-size: 10px;
  }
  .demo-label {
    font-size: 8px;
  }
  .source-pills {
    gap: 5px;
  }
  .source-pills span {
    font-size: 9px;
    padding: 8px;
  }
  .integrations-line {
    gap: 18px;
  }
  .integrations-line > div {
    gap: 17px;
  }
  .integrations-line strong {
    font-size: 12px;
  }
  .possibility-grid {
    gap: 55px;
  }
  .home-image-wrap {
    min-height: 590px;
  }
  .possibility-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .role-grid {
    gap: 26px;
  }
  .role-card h3 {
    font-size: 22px;
  }
  .role-card > p:not(.role-kicker) {
    font-size: 14px;
  }
  .company-grid {
    gap: 60px;
  }
  .company-section h2 {
    font-size: 33px;
  }
  .faq-grid {
    gap: 65px;
  }
  .demo-grid {
    gap: 60px;
  }
  .demo-copy h2 {
    font-size: 46px;
  }
  .demo-form-card {
    padding: 27px;
  }
  .form-grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }
  .demo-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .demo-agenda p {
    font-size: 12px;
  }
  .footer-nav {
    gap: 20px;
    font-size: 12px;
  }
  .price-card {
    padding: 27px 23px 23px;
  }
  .price-card.featured {
    padding: 26px 22px 22px;
  }
  .price strong {
    font-size: 43px;
  }
  .price-grid {
    gap: 18px;
  }
  .check-list li {
    font-size: 12px;
  }
}
@media (max-width: 850px) {
  .section {
    padding-block: 65px;
  }
  .section-heading {
    gap: 30px;
    margin-bottom: 37px;
    align-items: flex-start;
  }
  .section h2,
  .possibility-section h2 {
    font-size: 33px;
    letter-spacing: -1.3px;
  }
  .section-heading > p,
  .section-heading > div:last-child:not(:first-child) {
    max-width: 300px;
    font-size: 14px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .workflow-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
  }
  .workflow-tab:first-child {
    border-top: 0;
  }
  .workflow-tab strong {
    font-size: 16px;
  }
  .workflow-tab span > span {
    font-size: 12px;
  }
  .workflow-stage {
    min-height: 450px;
    max-width: 570px;
    width: 100%;
    margin-inline: auto;
  }
  .stage-content {
    padding: 26px 35px;
  }
  .stage-kicker {
    font-size: 11px;
  }
  .demo-label {
    font-size: 9px;
  }
  .source-pills span {
    font-size: 12px;
  }
  .tour-card-heading strong {
    font-size: 16px;
  }
  .tour-card-heading div > span {
    font-size: 12px;
  }
  .tour-details div {
    font-size: 13px;
  }
  .tour-event {
    font-size: 13px;
  }
  .integrations-line {
    justify-content: center;
    margin-top: 40px;
  }
  .integrations-line p {
    text-align: center;
    margin-top: 0;
  }
  .role-grid {
    gap: 25px;
  }
  .role-card h3 {
    font-size: 19px;
    line-height: 1.3;
  }
  .role-kicker {
    font-size: 9px;
    letter-spacing: 0.7px;
  }
  .role-card > p:not(.role-kicker) {
    font-size: 13px;
    min-height: 110px;
  }
  .role-card .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .possibility-grid {
    gap: 35px;
  }
  .possibility-copy h2 {
    font-size: 29px;
  }
  .home-image-wrap {
    min-height: 640px;
  }
  .possibility-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .possibility-copy .eyebrow {
    font-size: 10px;
  }
  .image-caption {
    left: 23px;
    bottom: 25px;
  }
  .image-caption > strong {
    font-size: 22px;
  }
  .scenario-list {
    margin-top: 15px;
  }
  .scenario-list p {
    font-size: 12px;
  }
  .scenario-list > div {
    gap: 13px;
  }
  .possibility-copy .text-link {
    font-size: 12px;
  }
  .plan-teasers {
    gap: 15px;
  }
  .plan-teaser {
    padding: 23px;
  }
  .plan-teaser p {
    font-size: 14px;
  }
  .plan-teaser > span:not(.tier-dot):not(.teaser-arrow) {
    font-size: 11px;
  }
  .company-grid {
    gap: 40px;
  }
  .company-section h2 {
    font-size: 29px;
  }
  .company-grid > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .faq-grid {
    gap: 45px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details > p {
    font-size: 13px;
  }
  .demo-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .demo-copy h2 {
    font-size: 38px;
  }
  .demo-copy .eyebrow {
    font-size: 9px;
  }
  .demo-form-card {
    padding: 23px;
  }
  .demo-form-card h3 {
    font-size: 23px;
  }
  .form-intro {
    font-size: 12px;
  }
  .demo-agenda p {
    font-size: 11px;
    gap: 13px;
  }
  .footer-nav {
    margin-top: 25px;
    justify-content: flex-start;
  }
  .price-grid {
    gap: 13px;
  }
  .price-card {
    padding: 24px 19px 20px;
  }
  .price-card.featured {
    padding: 23px 18px 19px;
  }
  .tier-label h2 {
    font-size: 24px;
  }
  .price {
    gap: 7px;
  }
  .price strong {
    font-size: 38px;
  }
  .price > span {
    font-size: 11px;
  }
  .plan-description {
    font-size: 12px;
  }
  .plan-includes {
    font-size: 8px;
    letter-spacing: 0.7px;
  }
  .check-list li {
    font-size: 11px;
    padding-left: 19px;
  }
  .price-card .button {
    font-size: 12px;
    padding-inline: 13px;
  }
  .plan-footnote {
    font-size: 10px;
  }
  .custom-plan h3 {
    font-size: 17px;
  }
  .custom-plan p {
    font-size: 13px;
  }
}
@media (max-width: 620px) {
  .section {
    padding-block: 57px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section h2,
  .possibility-section h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .section-heading > p,
  .section-heading > div:last-child:not(:first-child) {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .section-heading .eyebrow,
  .possibility-copy .eyebrow,
  .faq-grid .eyebrow,
  .company-grid .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
  }
  .workflow-tabs {
    display: flex;
    gap: 0;
  }
  .workflow-tab {
    padding: 19px 0;
    gap: 15px;
  }
  .workflow-tab strong {
    font-size: 17px;
  }
  .workflow-tab span > span {
    font-size: 14px;
    max-width: 100%;
  }
  .step-number {
    font-size: 11px;
  }
  .workflow-tab:first-child {
    border-top: 1px solid #304059;
  }
  .step-arrow {
    display: none;
  }
  .stage-content {
    padding: 23px 16px;
  }
  .stage-top {
    padding: 18px 16px;
  }
  .stage-kicker {
    font-size: 10px;
  }
  .demo-label {
    font-size: 8px;
  }
  .source-pills span {
    font-size: 10px;
    padding: 9px;
  }
  .tour-card {
    padding: 17px 14px;
  }
  .tour-card-heading strong {
    font-size: 14px;
  }
  .tour-card-heading div > span {
    font-size: 10px;
  }
  .tour-badge {
    font-size: 9px;
  }
  .tour-details div {
    font-size: 11px;
  }
  .tour-event {
    font-size: 11px;
  }
  .stage-caption {
    font-size: 12px;
  }
  .stage-footer {
    padding: 14px 18px;
  }
  .stage-footer > span {
    font-size: 8px;
  }
  .workflow-stage {
    min-height: 430px;
  }
  .integrations-line {
    margin-top: 35px;
    padding-top: 26px;
  }
  .integrations-line > div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
  }
  .integrations-line strong {
    font-size: 12px;
  }
  .integrations-line p {
    font-size: 10px;
  }
  .role-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .role-card {
    padding-top: 26px;
  }
  .line-icon {
    margin-bottom: 20px;
  }
  .role-kicker {
    font-size: 10px;
  }
  .role-card h3 {
    font-size: 26px;
    line-height: 1.25;
  }
  .role-card h3 br {
    display: none;
  }
  .role-card > p:not(.role-kicker) {
    font-size: 15px;
    min-height: 0;
    max-width: 100%;
  }
  .role-card .text-link {
    font-size: 14px;
    margin-top: 20px;
  }
  .possibility-section {
    padding: 0 0 60px;
  }
  .possibility-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-image-wrap {
    min-height: 420px;
    max-height: 500px;
  }
  .image-caption > strong {
    font-size: 24px;
  }
  .image-caption > span {
    font-size: 9px;
  }
  .possibility-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .scenario-list > div {
    gap: 19px;
    padding-block: 19px;
  }
  .scenario-list h3 {
    font-size: 17px;
  }
  .scenario-list p {
    font-size: 14px;
  }
  .possibility-copy .text-link {
    font-size: 14px;
  }
  .plan-teasers {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .plan-teaser {
    padding: 24px;
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: 16px;
    align-items: center;
  }
  .plan-teaser h3 {
    margin: 0;
    font-size: 23px;
  }
  .plan-teaser p {
    grid-column: 2;
    font-size: 15px;
    margin-top: 7px;
  }
  .plan-teaser > span:not(.tier-dot):not(.teaser-arrow) {
    grid-column: 2;
    font-size: 12px;
    margin-top: 4px;
  }
  .teaser-arrow {
    top: 26px;
  }
  .pricing-disclaimer {
    font-size: 11px;
    text-align: left;
    margin-top: 20px;
  }
  .company-section {
    padding: 52px 0;
  }
  .company-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .company-section h2 {
    font-size: 31px;
  }
  .company-grid > div > p:not(.eyebrow) {
    font-size: 15px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .faq-grid > div:first-child > p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 20px;
  }
  .faq-grid > div:first-child > .text-link {
    margin-top: 18px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .faq-list details > p {
    font-size: 14px;
  }
  .demo-section {
    padding: 52px 0;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .demo-copy h2 {
    font-size: 43px;
    letter-spacing: -1.6px;
  }
  .demo-copy .eyebrow {
    font-size: 9px;
  }
  .demo-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 100%;
  }
  .demo-agenda p {
    font-size: 13px;
  }
  .demo-form-card {
    padding: 27px 24px;
  }
  .demo-form-card h3 {
    font-size: 27px;
  }
  .form-intro {
    font-size: 14px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  label {
    font-size: 14px;
  }
  input,
  select {
    font-size: 16px;
    padding: 12px;
    min-height: 48px;
  }
  .form-note {
    font-size: 12px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 16px 25px;
    font-size: 13px;
  }
  .footer-bottom {
    margin-top: 30px;
  }
  .pricing-hero {
    padding: 47px 0 54px;
  }
  .pricing-hero h1 {
    font-size: 62px;
    letter-spacing: -3px;
  }
  .pricing-hero > .container > p:not(.eyebrow) {
    font-size: 16px;
  }
  .draft-notice {
    font-size: 11px;
    align-items: flex-start;
    max-width: 300px;
    margin-top: 23px;
  }
  .billing-toggle button {
    font-size: 14px;
    padding: 10px 18px;
  }
  .billing-toggle button > span {
    font-size: 11px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 430px;
    margin-inline: auto;
  }
  .price-card,
  .price-card.featured {
    padding: 29px 26px;
  }
  .price-card .tier-label h2 {
    font-size: 27px;
  }
  .plan-description {
    font-size: 15px;
    min-height: 0;
  }
  .plan-description br {
    display: none;
  }
  .price strong {
    font-size: 52px;
  }
  .price > span {
    font-size: 15px;
  }
  .billing-detail {
    font-size: 13px;
  }
  .price-card .button {
    font-size: 14px;
    min-height: 51px;
    padding-inline: 20px;
  }
  .plan-includes {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .check-list li {
    font-size: 15px;
    padding-left: 26px;
    margin-block: 12px;
  }
  .plan-footnote {
    font-size: 12px;
  }
  .price-card .button {
    margin-top: 22px;
  }
  .featured-label {
    font-size: 10px;
  }
  .pricing-plans .pricing-disclaimer {
    margin-top: 27px;
    line-height: 1.8;
  }
  .custom-plan {
    margin-top: 30px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .custom-plan h3 {
    font-size: 20px;
  }
  .custom-plan p {
    font-size: 14px;
  }
  .center-heading h2 {
    font-size: 30px;
  }
  .center-heading .eyebrow {
    font-size: 9px;
  }
  .center-heading > p:not(.eyebrow) {
    font-size: 13px;
  }
  .comparison-table {
    font-size: 13px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 15px;
  }
  .simple-cta {
    padding: 57px 0;
  }
  .simple-cta h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
  }
  .simple-cta p:not(.eyebrow) {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 67px;
  }
  .brand {
    font-size: 18px;
  }
  .nav-actions .button {
    font-size: 11px;
    padding: 9px;
    gap: 5px;
  }
  .nav-wrap {
    gap: 7px;
  }
  .brand-by {
    font-size: 6px;
  }
  .menu-toggle {
    padding: 6px;
  }
  .hero .button-row {
    gap: 18px;
  }
  .hero .text-link {
    font-size: 12px;
  }
  .source-pills span {
    font-size: 9px;
  }
  .tour-card-heading {
    gap: 7px;
  }
  .demo-form-card {
    padding: 23px 20px;
  }
}

/* Authentic product captures share the app’s type and primary blue. */
.product-capture { margin: 0; min-width: 0; }
.product-capture .product-window { display: block; transform: none; border-radius: 12px; }
.product-capture img { width: 100%; height: auto; }
.product-capture .visual-caption { position: static; margin: 20px 0 0; color: var(--muted); font-size: 12px; }
.visual-caption a, .stage-caption a { color: var(--product-blue); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.tour-capture { display: block; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.tour-capture img { width: 100%; height: auto; }
.product-steps { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 18px; padding: 0; list-style: none; color: var(--product-blue); font-size: 12px; font-weight: 600; }
.product-steps li:not(:last-child)::after { content: " →"; padding-left: 12px; color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
@media (max-width: 620px) {
  .site-header .brand-the { display: none; }
  .site-header .brand-by { font-size: 8px; letter-spacing: 0; }
  .product-capture { max-width: 390px; margin-inline: auto; }
  .hero-visual { padding-block: 12px; }
  .product-capture .visual-caption { font-size: 12px; }
  .workflow-stage .stage-top { flex-wrap: wrap; gap: 8px; }
  .stage-caption { font-size: 12px; }
}
