@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
}

a {
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid #9542FF;
  outline-offset: 2px;
}

:root {
  --header-height: 72px;
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
}
html {
  scroll-padding-top: var(--header-height);
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #251D31;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

p {
  font-size: 18px;
  line-height: 1.2;
}

.p-small {
  font-size: 14px;
  line-height: 1.4;
}

h2 + p, h3 + p, h4 + p {
  margin-top: 1rem;
}

a {
  color: #9542FF;
  text-decoration: none;
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
}
.accent {
  color: #9542FF;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #251D31;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.section {
  padding-block: 6rem;
}
@media (max-width: 768px) {
  .section {
    padding-block: 3rem;
  }
}

.section--tight {
  padding-block: 3rem;
}
@media (max-width: 768px) {
  .section--tight {
    padding-block: 2rem;
  }
}

.split-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .split-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(37, 29, 49, 0.25);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 6px;
  text-decoration: none;
  transition: background 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0.4, 0, 0.2, 1), transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 3px solid #9542FF;
  outline-offset: 3px;
}

.btn--primary {
  background: #9542FF;
  color: #FFFFFF;
  box-shadow: 0 24px 60px -30px rgba(149, 66, 255, 0.35);
}
.btn--primary:hover {
  background: #7E2EE8;
  color: #FFFFFF;
}

.btn--primary.btn--dark {
  background: #251D31;
  border-color: #251D31;
  color: #FFFFFF;
  box-shadow: 0 12px 32px -16px rgba(37, 29, 49, 0.25);
}
.btn--primary.btn--dark:hover, .btn--primary.btn--dark:focus-visible {
  background: rgb(51.5153846154, 40.3769230769, 68.2230769231);
  border-color: rgb(51.5153846154, 40.3769230769, 68.2230769231);
  color: #FFFFFF;
}

.btn--ghost {
  background: transparent;
  color: #251D31;
  border: 1px solid #DEDCE0;
}
.btn--ghost:hover {
  background: #F8F8F8;
  color: #251D31;
}

.btn--ghost-on-dark {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #DEDCE0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1rem;
}

.site-header__logo {
  justify-self: start;
}
.site-header__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.site-header__menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__menu a {
  color: #251D31;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  border-radius: 6px;
}
.site-header__menu a:hover {
  color: #9542FF;
  text-decoration: none;
}
.site-header__menu a:focus-visible {
  outline: 2px solid #9542FF;
  outline-offset: 6px;
}
@media (max-width: 1024px) {
  .site-header__menu {
    gap: 1.5rem;
  }
  .site-header__menu a {
    font-size: 14px;
  }
}

.site-header__login {
  justify-self: end;
}

.site-header__toggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: 0;
  padding: 1rem;
  margin: -1rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.site-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #251D31;
  border-radius: 2px;
  margin: 4px auto;
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__mobile {
  display: none;
  border-top: 1px solid #DEDCE0;
  background: #FFFFFF;
  padding: 1.5rem clamp(1rem, 4vw, 3rem) 2rem;
  flex-direction: column;
  gap: 1rem;
}
.site-header__mobile a {
  color: #251D31;
  font-weight: 700;
  font-size: 18px;
  padding-block: 1rem;
  border-bottom: 1px solid #DEDCE0;
}
.site-header__mobile a:hover {
  color: #9542FF;
  text-decoration: none;
}
.site-header__mobile a:focus-visible {
  outline: 2px solid #9542FF;
  outline-offset: 2px;
  border-radius: 6px;
}
.site-header__mobile a:last-of-type {
  border-bottom: none;
}
.site-header__mobile .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .site-header__menu,
  .site-header__login {
    display: none;
  }
  .site-header__toggle {
    display: block;
  }
  .site-header__mobile:not([hidden]) {
    display: flex;
  }
  .site-header__logo img {
    height: 32px;
  }
  .site-header__toggle[aria-expanded=true] .site-header__toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header__toggle[aria-expanded=true] .site-header__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .site-header__toggle[aria-expanded=true] .site-header__toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
body.nav-open {
  overflow: hidden;
}

.site-footer {
  background: #251D31;
  background-image: radial-gradient(ellipse at 20% 30%, rgba(149, 66, 255, 0.28), transparent 55%), radial-gradient(ellipse at 80% 80%, rgba(250, 98, 171, 0.16), transparent 50%);
  color: #FFFFFF;
  padding-block: 2rem;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }
}

.site-footer__logo {
  justify-self: start;
}

.site-footer__links {
  justify-self: center;
}

.site-footer__social {
  justify-self: end;
}

@media (max-width: 768px) {
  .site-footer__logo,
  .site-footer__links,
  .site-footer__social {
    justify-self: center;
  }
}
.site-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-footer__links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
}
.site-footer__links a:hover {
  color: #9542FF;
  text-decoration: none;
}
@media (max-width: 768px) {
  .site-footer__links {
    gap: 1.5rem;
  }
}

.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition: background 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__social a:hover, .site-footer__social a:focus {
  background: #9542FF;
  color: #FFFFFF;
  text-decoration: none;
}
.site-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__legal {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.site-footer__legal a {
  color: inherit;
}
.site-footer__legal a:hover {
  color: #9542FF;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 6rem 3rem;
  background: #FFFFFF;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/bg-paperclip-tile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, #FFFFFF 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__layout {
  position: relative;
  z-index: 1;
}

.hero__inner {
  max-width: 820px;
}

.hero--with-image .hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero--with-image .hero__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.hero--with-image .hero__inner {
  max-width: none;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero__aside {
  display: flex;
  justify-content: center;
}
.hero__aside > * {
  width: auto;
  max-width: 400px;
}
@media (max-width: 1024px) {
  .hero__aside > * {
    width: 100%;
    max-width: 100%;
  }
}

.hero__body {
  font-size: 18px;
  line-height: 1.5;
  color: #3D3548;
  max-width: 58ch;
  margin-bottom: 2rem;
}
.hero__body p + p {
  margin-top: 1rem;
}

.hero__title {
  margin-bottom: 2rem;
  color: #251D31;
  text-wrap: balance;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.hero__title .hero__dot {
  color: #9542FF;
}
.hero__title .hero__line {
  display: block;
  text-wrap: nowrap;
}
.hero__title .hero__line--purple {
  color: #9542FF;
}
.hero__title .hero__line:not(.hero__line--purple) .hero__dot {
  color: #251D31;
}

.hero__subtitle {
  font-size: 22px;
  line-height: 1.45;
  color: #3D3548;
  max-width: 58ch;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero__subtitle:last-child {
  margin-bottom: 0;
}
.hero__subtitle strong {
  color: #251D31;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero .hero__accent {
  color: #9542FF;
}

.prose {
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.6;
  color: #251D31;
}
.prose > * + * {
  margin-top: 1.5rem;
}
.prose h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}
.prose h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.prose p {
  line-height: 1.6;
}
.prose a {
  color: #9542FF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:hover {
  text-decoration-thickness: 2px;
}
.prose strong, .prose b {
  font-weight: 700;
}
.prose ul, .prose ol {
  padding-left: 1.5rem;
}
.prose li {
  margin-top: 0.5rem;
}
.prose p:empty {
  display: none;
}

.faq-section__head {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.faq-section__head h2 {
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #251D31;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}

.faq-section__more {
  font-size: 17px;
  color: rgba(37, 29, 49, 0.7);
  margin: 0;
}
.faq-section__more a {
  color: #9542FF;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.faq-section__more a:hover {
  text-decoration-thickness: 2px;
}

.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq__section {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #9542FF;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
.faq__section:first-child {
  margin-top: 0;
}

.faq__group + .faq__group {
  margin-top: 3rem;
}

.faq__item {
  border-top: 1px solid #DEDCE0;
}
.faq__item:last-child {
  border-bottom: 1px solid #DEDCE0;
}

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #251D31;
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::marker {
  content: "";
}
.faq__q:hover {
  color: #9542FF;
}

.faq__q-text {
  font-size: 19px;
  line-height: 1.35;
}

.faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  color: rgba(37, 29, 49, 0.4);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__q:hover .faq__chevron {
  color: #9542FF;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: #9542FF;
}

.faq__a {
  padding-bottom: 2rem;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(37, 29, 49, 0.78);
  max-width: 70ch;
}
.faq__a > * + * {
  margin-top: 1rem;
}
.faq__a ul, .faq__a ol {
  padding-left: 1.5rem;
}
.faq__a li {
  margin-top: 0.5rem;
}
.faq__a a {
  color: #9542FF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stat-cards:has(> .stat-card:only-child) {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}
.stat-cards:has(> .stat-card--pricing:only-child) {
  grid-template-columns: minmax(0, 560px);
}
@media (max-width: 768px) {
  .stat-cards {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid #DEDCE0;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 32px -16px rgba(37, 29, 49, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.stat-card--dark {
  background: #251D31;
  background-image: radial-gradient(ellipse at 30% 20%, rgba(149, 66, 255, 0.35), transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(250, 98, 171, 0.2), transparent 50%);
  border: none;
  box-shadow: 0 24px 60px -30px rgba(149, 66, 255, 0.35);
}
.stat-card--dark .stat-card__value {
  color: #FFFFFF;
}
.stat-card--dark .stat-card__unit {
  color: rgba(255, 255, 255, 0.85);
}
.stat-card--dark .stat-card__supporting {
  color: rgba(255, 255, 255, 0.85);
}

.stat-card__label {
  font-size: 20px;
  font-weight: 700;
  color: #9542FF;
  margin-bottom: 1.5rem;
}

.stat-card__value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stat-card__value {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: #251D31;
  letter-spacing: -0.02em;
}

.stat-card__unit {
  font-size: 16px;
  font-weight: 700;
  color: #251D31;
  opacity: 0.7;
}

.stat-card__supporting {
  font-size: 14px;
  color: #251D31;
  opacity: 0.85;
}

.stat-card--pricing {
  padding: 1.5rem 2rem;
  gap: 1.5rem;
}

.stat-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-card__sub {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.stat-card__features {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.stat-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.stat-card__features li::before {
  content: "✓";
  color: #60DEC0;
  font-weight: 900;
  flex-shrink: 0;
  width: 16px;
}

.proof-card {
  background: #251D31;
  background-image: radial-gradient(ellipse at top right, rgba(149, 66, 255, 0.4), transparent 65%);
  color: #FFFFFF;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 32px -16px rgba(37, 29, 49, 0.25);
}

.proof-card__badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(149, 66, 255, 0.2);
  color: #C2A8F9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}

.proof-card__title {
  color: #FFFFFF;
  font-size: 20px;
  margin: 0 0 8px;
  line-height: 1.2;
}

.proof-card__body {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 1.5rem;
}

.proof-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.proof-card__stat-value {
  display: block;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.proof-card__stat-unit {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 2px;
  letter-spacing: 0;
}

.proof-card__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.story {
  overflow-x: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: stretch;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.story-graphic {
  display: block;
}
@media (min-width: 768px) {
  .story-graphic {
    --story-bleed: clamp(1rem, 4vw, 3rem);
    margin-left: calc(-1 * var(--story-bleed));
    width: calc(100% + var(--story-bleed));
  }
}

.dx-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-head h2 {
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #251D31;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}
.story-head p {
  font-size: 22px;
  line-height: 1.4;
  color: rgba(37, 29, 49, 0.78);
  margin: 0;
  max-width: 56ch;
}
.story-head p + p {
  margin-top: 1.5rem;
}

.mech-list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 3rem;
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 3rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
}
@media (max-width: 768px) {
  .mech-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2rem;
  }
}

.mech-row {
  grid-column: 2;
  border-bottom: 1px solid #DEDCE0;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  column-gap: 1.5rem;
  align-items: baseline;
}
.mech-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .mech-row {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
}

.mech-row__num {
  font-weight: 900;
  font-size: 80px;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: #9542FF;
}
@media (max-width: 768px) {
  .mech-row__num {
    font-size: 48px;
  }
}

.mech-row__text h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  color: #251D31;
}
.mech-row__text p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(37, 29, 49, 0.72);
  max-width: 60ch;
  margin: 0;
}

.founder {
  background: #FFFFFF;
}

.founder-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.founder-note h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #251D31;
  margin: 0 auto 1.5rem;
  max-width: 22ch;
  text-wrap: balance;
}
.founder-note__lede {
  font-size: 20px;
  line-height: 1.5;
  color: #251D31;
  margin: 0 auto;
  max-width: 60ch;
}

.founder-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 1.5rem;
}
@media (max-width: 768px) {
  .founder-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.founder-tile {
  background: #F8F8F8;
  border: 1px solid #DEDCE0;
  border-radius: 20px;
  padding: 2rem;
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1), border-color 360ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 360ms cubic-bezier(0.4, 0, 0.2, 1);
}
.founder-tile:hover {
  transform: translateY(-4px);
  border-color: #FA62AB;
  box-shadow: 0 24px 60px -30px rgba(250, 98, 171, 0.45);
}

.founder-tile__heading {
  font-size: 22px;
  line-height: 1.15;
  color: #251D31;
  margin: 0 0 1rem;
  text-align: left;
}

.founder-tile__body {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(37, 29, 49, 0.75);
  margin: 0;
  text-align: left;
}

.firm-proof {
  background: #251D31;
  color: #FFFFFF;
  background-image: radial-gradient(ellipse at 20% 30%, rgba(149, 66, 255, 0.28), transparent 55%), radial-gradient(ellipse at 80% 80%, rgba(250, 98, 171, 0.16), transparent 50%);
}

.firm-proof__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto auto;
  column-gap: 3rem;
  row-gap: 0;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .firm-proof__layout {
    grid-template-columns: 240px 1fr;
    column-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .firm-proof__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 2rem;
    align-items: start;
  }
}

.firm-proof__photo {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  align-self: stretch;
  min-height: 220px;
}
.firm-proof__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
@media (max-width: 768px) {
  .firm-proof__photo {
    position: static;
    max-width: 280px;
    min-height: 0;
  }
  .firm-proof__photo img {
    position: static;
    aspect-ratio: 4/5;
    width: 100%;
    height: auto;
  }
}

.firm-proof__top {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 768px) {
  .firm-proof__top {
    grid-column: 1;
    grid-row: 2;
  }
}

.firm-proof__quote {
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  text-wrap: pretty;
}

.firm-proof__cite {
  margin-top: 1.5rem;
}

.firm-proof__cite-name {
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
}

.firm-proof__cite-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.firm-proof__stats {
  grid-column: 1/-1;
  grid-row: 2;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .firm-proof__stats {
    grid-row: 3;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

.firm-proof__stat-value {
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.firm-proof__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  max-width: 28ch;
}

.client-proof {
  background: #F8F8F8;
}

.client-proof__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .client-proof__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.client-proof__left {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  align-self: start;
}
@media (max-width: 1024px) {
  .client-proof__left {
    position: static;
    top: auto;
  }
}

.client-proof__head {
  margin-bottom: 3rem;
}
.client-proof__head h2 {
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #251D31;
  margin: 0;
  text-wrap: balance;
}

.client-proof__title {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .client-proof__title {
    white-space: normal;
  }
}

.client-proof__voices {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.client-voice {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.client-voice__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.client-voice:not(:has(> .client-voice__avatar)) {
  grid-template-columns: 1fr;
}
.client-voice__body {
  min-width: 0;
}
.client-voice__quote {
  font-size: 18px;
  line-height: 1.55;
  color: #251D31;
  margin: 0 0 8px;
  text-wrap: pretty;
}
.client-voice__cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: rgba(37, 29, 49, 0.6);
}
.client-voice__name {
  font-weight: 700;
  color: #251D31;
}
.client-voice__role {
  margin-left: 6px;
}
.client-voice__role::before {
  content: "·";
  margin-right: 6px;
  color: rgba(37, 29, 49, 0.4);
}

.ui-frame {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #DEDCE0;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(37, 29, 49, 0.25);
}
.ui-frame__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 14px;
  background: #F3F1F6;
  border-bottom: 1px solid #DEDCE0;
}
.ui-frame__dots {
  display: flex;
  gap: 6px;
}
.ui-frame__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ui-frame__dots span:nth-child(1) {
  background: #FA62AB;
}
.ui-frame__dots span:nth-child(2) {
  background: #F6B047;
}
.ui-frame__dots span:nth-child(3) {
  background: #60DEC0;
}
.ui-frame__url {
  font-size: 11px;
  color: rgba(37, 29, 49, 0.5);
}
.ui-frame__body {
  padding: 2rem;
}

.tx-header {
  margin-bottom: 2rem;
}
.tx-header__title {
  font-size: 22px;
  font-weight: 900;
  color: #251D31;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tx-header__sub {
  font-size: 13px;
  color: rgba(37, 29, 49, 0.6);
}

.tx-progress {
  margin-bottom: 2rem;
}
.tx-progress__top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(37, 29, 49, 0.65);
  margin-bottom: 8px;
  font-weight: 700;
}
.tx-progress__bar {
  height: 6px;
  background: #DEDCE0;
  border-radius: 999px;
  overflow: hidden;
}
.tx-progress__fill {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #9542FF, #FA62AB);
  border-radius: 999px;
}

.tx-section {
  margin-bottom: 1.5rem;
}
.tx-section__title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(37, 29, 49, 0.55);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tx-query {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #DEDCE0;
  border-radius: 12px;
  margin-bottom: 6px;
  background: #FFFFFF;
  font-size: 13px;
  line-height: 1.4;
}
.tx-query--current {
  border-color: #9542FF;
  background: rgba(194, 168, 249, 0.1);
  box-shadow: 0 8px 24px -16px rgba(149, 66, 255, 0.4);
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  padding: 12px;
}
.tx-query__row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.tx-query__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1.5px solid #DEDCE0;
}
.tx-query--done .tx-query__icon {
  background: #60DEC0;
  border-color: #60DEC0;
}
.tx-query--accountant .tx-query__icon {
  background: #F6B047;
  border-color: #F6B047;
}
.tx-query--input .tx-query__icon, .tx-query--current .tx-query__icon {
  background: #FFFFFF;
  border: 1.5px solid #9542FF;
}
.tx-query__text {
  flex: 1;
  min-width: 0;
}
.tx-query__title {
  font-weight: 700;
  color: #251D31;
}
.tx-query--done .tx-query__title {
  color: rgba(37, 29, 49, 0.5);
  font-weight: 400;
}

.tx-pill {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tx-pill--done {
  background: #dff9ef;
  color: #0e6b52;
}
.tx-pill--input {
  background: #efe5ff;
  color: #6a29c4;
}
.tx-pill--accountant {
  background: #fff3dc;
  color: #8c5a10;
}

.tx-ask {
  background: #FFFFFF;
  border: 1px solid #DEDCE0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
  margin: 10px 0 8px;
  color: #251D31;
}
.tx-ask__label {
  font-size: 9px;
  color: rgba(37, 29, 49, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 700;
}

.tx-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.tx-action {
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}
.tx-action--upload {
  background: #FFFFFF;
  border: 1.5px dashed rgba(149, 66, 255, 0.4);
  color: #9542FF;
}
.tx-action--secondary {
  background: #FFFFFF;
  border: 1px solid #DEDCE0;
  color: #251D31;
}
.tx-action--send {
  background: #9542FF;
  color: #FFFFFF;
  border: 1px solid #9542FF;
}

.dx-row {
  background: #FFFFFF;
  border: 1px solid #DEDCE0;
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px 16px clamp(16px, 3vw, 24px);
  box-shadow: 0 12px 36px -22px rgba(37, 29, 49, 0.22);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 22px;
  row-gap: 10px;
}
@media (max-width: 768px) {
  .dx-row {
    border-left: 1px solid #DEDCE0;
    border-radius: 12px;
    padding: 14px 18px;
  }
}
.dx-row > .dx-pill {
  grid-row: 1/span 2;
  grid-column: 1;
  align-self: center;
}
.dx-row__title {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 2px;
  min-width: 0;
}
.dx-row__name {
  font-size: 16px;
  font-weight: 900;
  color: #251D31;
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.2;
}
.dx-row__meta {
  font-size: 12px;
  font-weight: 700;
  color: rgba(37, 29, 49, 0.55);
}
.dx-row__stats {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  gap: 32px;
  align-items: baseline;
}

.dx-stat:nth-child(1) {
  flex: 0 0 92px;
}
.dx-stat:nth-child(2) {
  flex: 0 0 62px;
}
.dx-stat:nth-child(3) {
  flex: 0 0 62px;
}
.dx-stat {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
.dx-stat__num {
  font-size: 20px;
  font-weight: 900;
  color: #251D31;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.dx-stat__label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(37, 29, 49, 0.5);
  white-space: nowrap;
}
.dx-stat--review .dx-stat__num, .dx-stat--review .dx-stat__label {
  color: #FA62AB;
}
.dx-stat--waiting .dx-stat__num, .dx-stat--waiting .dx-stat__label {
  color: #C2A8F9;
}
.dx-stat--done .dx-stat__num, .dx-stat--done .dx-stat__label {
  color: #60DEC0;
}

.dx-pill {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 104px;
  text-align: center;
  text-indent: 0.08em;
}
.dx-pill--review {
  background: #ffe1ee;
  color: #b3296c;
}
.dx-pill--waiting {
  background: #efe5ff;
  color: #6a29c4;
}
.dx-pill--done {
  background: #dff9ef;
  color: #0e6b52;
}

.lite-loom {
  appearance: none;
  border: 0;
  margin: 0;
  cursor: pointer;
  background: #251D31;
}

.lite-loom__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1), filter 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lite-loom__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lite-loom__play svg {
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1), filter 360ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.3));
}

.lite-loom:hover .lite-loom__poster,
.lite-loom:focus-visible .lite-loom__poster {
  filter: brightness(0.95);
}

.lite-loom:hover .lite-loom__play svg,
.lite-loom:focus-visible .lite-loom__play svg {
  transform: scale(1.06);
}

.lite-loom:focus-visible {
  outline: 3px solid #9542FF;
  outline-offset: 4px;
}

.poc {
  background: #FFFFFF;
}

.poc__copy {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 4rem;
  text-align: center;
}
.poc__copy h2 {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #251D31;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}
.poc__copy p {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(37, 29, 49, 0.78);
  margin: 0 0 2rem;
  text-wrap: pretty;
}

.poc__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.poc__ctas .btn--primary {
  background: #251D31;
  border-color: #251D31;
  color: #FFFFFF;
}
.poc__ctas .btn--primary:hover, .poc__ctas .btn--primary:focus-visible {
  background: rgb(51.5153846154, 40.3769230769, 68.2230769231);
  border-color: rgb(51.5153846154, 40.3769230769, 68.2230769231);
}

.poc__video {
  max-width: 960px;
  margin-inline: auto;
}

.hero-region {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding-bottom: 3rem;
}
.hero-region::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/bg-paperclip-tile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.hero-region::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, #FFFFFF 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-region > * {
  position: relative;
  z-index: 1;
}
.hero-region .hero {
  background: transparent;
  padding-bottom: 1.5rem;
}
.hero-region .hero::before,
.hero-region .hero::after {
  display: none;
}
.hero-region .btn--primary {
  background: #251D31;
  border-color: #251D31;
  color: #FFFFFF;
}
.hero-region .btn--primary:hover, .hero-region .btn--primary:focus-visible {
  background: rgb(51.5153846154, 40.3769230769, 68.2230769231);
  border-color: rgb(51.5153846154, 40.3769230769, 68.2230769231);
}

.hero-strip {
  background: transparent;
}

.hero-strip__inner {
  padding-block: 1.5rem;
  border-top: 1px solid #DEDCE0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-strip__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-strip__features li {
  font-size: 14px;
  font-weight: 700;
  color: #251D31;
}
.hero-strip__features li::before {
  content: "✓ ";
  color: #60DEC0;
  font-weight: 900;
  margin-right: 2px;
}

.pricing-section__row {
  max-width: 960px;
  margin-inline: auto;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pricing-section__row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.pricing-section__copy h2 {
  letter-spacing: -0.01em;
}
.pricing-section__copy p {
  font-size: 20px;
  color: rgba(37, 29, 49, 0.8);
  max-width: 32ch;
}

/*# sourceMappingURL=main.css.map */