.ttml-recovery-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 140;
  max-width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.35);
  padding: 14px 16px;
  color: #0f172a;
  font: 500 14px/1.5 Inter, ui-sans-serif, system-ui, sans-serif;
}

.ttml-recovery-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

[data-testid='first-visit-popup-timer'] {
  position: relative;
  isolation: isolate;
  contain: layout paint;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

[data-testid='first-visit-popup-timer'] > * {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

[data-ttml-promo-canvas] {
  display: block;
}

html {
  --ttml-public-nav-height: 64px;
}

@media (min-width: 768px) {
  html {
    --ttml-public-nav-height: 72px;
  }
}

[data-ttml-public-nav-hidden='true'] {
  display: none !important;
}

html.ttml-public-nav-offset #root {
  padding-top: var(--ttml-public-nav-height);
}

.ttml-public-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px -30px rgba(15, 23, 42, 0.18);
}

.ttml-public-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  height: var(--ttml-public-nav-height);
  margin: 0 auto;
  padding: 0 16px;
}

.ttml-public-nav__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ttml-public-nav__brand-wrap {
  display: inline-flex;
  align-items: center;
}

.ttml-public-nav__brand-mobile,
.ttml-public-nav__brand-desktop-image {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.ttml-public-nav__brand-mobile {
  width: 162px;
  height: 36px;
}

.ttml-public-nav__brand-desktop-image {
  display: none;
  width: 234px;
  height: 52px;
}

.ttml-public-nav__desktop {
  display: none;
}

.ttml-public-nav__link,
.ttml-public-nav__auth,
.ttml-public-nav__cta,
.ttml-public-nav__mobile-link,
.ttml-public-nav__mobile-cta {
  text-decoration: none;
}

.ttml-public-nav__link,
.ttml-public-nav__auth {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.ttml-public-nav__link:hover,
.ttml-public-nav__auth:hover {
  color: #0f172a;
}

.ttml-public-nav__link[data-active='true'] {
  color: #2563eb;
}

.ttml-public-nav__divider {
  width: 1px;
  height: 16px;
  background: rgba(226, 232, 240, 1);
}

.ttml-public-nav__auth {
  letter-spacing: 0;
  text-transform: none;
}

.ttml-public-nav__cta,
.ttml-public-nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.ttml-public-nav__cta:hover,
.ttml-public-nav__mobile-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.ttml-public-nav__cta {
  min-width: 136px;
  padding: 12px 18px;
}

.ttml-public-nav__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #475569;
  cursor: pointer;
}

.ttml-public-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.ttml-public-nav[data-open='true'] .ttml-public-nav__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ttml-public-nav[data-open='true'] .ttml-public-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.ttml-public-nav[data-open='true'] .ttml-public-nav__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ttml-public-nav__panel {
  display: none;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.98);
}

.ttml-public-nav[data-open='true'] .ttml-public-nav__panel {
  display: block;
}

.ttml-public-nav__panel-links {
  display: grid;
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 16px 16px;
}

.ttml-public-nav__mobile-link,
.ttml-public-nav__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 14px;
}

.ttml-public-nav__mobile-link {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ttml-public-nav__mobile-link[data-active='true'] {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.ttml-public-nav__panel-divider {
  height: 1px;
  margin: 6px 0;
  background: rgba(226, 232, 240, 1);
}

.ttml-public-nav__mobile-cta {
  justify-content: center;
  min-height: 48px;
}

@media (min-width: 640px) {
  .ttml-public-nav__inner {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .ttml-public-nav__brand-mobile {
    display: none;
  }

  .ttml-public-nav__brand-desktop-image {
    display: block;
  }

  .ttml-public-nav__desktop {
    display: inline-flex;
    align-items: center;
    gap: 28px;
  }

  .ttml-public-nav__toggle,
  .ttml-public-nav__panel {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .ttml-public-nav__inner {
    padding: 0 48px;
  }
}

html.ttml-precision-flow-ready [data-testid='how-it-works-section'] {
  display: none !important;
}

.ttml-precision-flow {
  --ttml-slide-count: 5;
  --ttml-progress: 0;
  position: relative;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(96, 165, 250, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  color: #0f172a;
}

.ttml-precision-flow__desktop {
  position: relative;
  height: calc(var(--ttml-slide-count) * 100vh);
  height: calc(var(--ttml-slide-count) * 100svh);
}

.ttml-precision-flow__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.ttml-precision-flow__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ttml-precision-flow__ambient::before,
.ttml-precision-flow__ambient::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.ttml-precision-flow__ambient::before {
  top: 9%;
  left: 8%;
  width: 34vw;
  height: 34vw;
  background: rgba(37, 99, 235, 0.08);
}

.ttml-precision-flow__ambient::after {
  right: 10%;
  bottom: 16%;
  width: 26vw;
  height: 26vw;
  background: rgba(96, 165, 250, 0.08);
}

.ttml-precision-flow__track {
  display: flex;
  height: 100%;
  width: calc(var(--ttml-slide-count) * 100vw);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ttml-precision-flow__slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  padding: 112px 56px 120px;
}

.ttml-precision-flow__slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: center;
  gap: 72px;
  width: min(1240px, calc(100vw - 96px));
  height: 100%;
  margin: 0 auto;
}

.ttml-precision-flow__slide.is-intro .ttml-precision-flow__slide-inner,
.ttml-precision-flow__slide.is-outro .ttml-precision-flow__slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ttml-precision-flow__headline-wrap {
  max-width: 920px;
}

.ttml-precision-flow__hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 30px 60px -40px rgba(37, 99, 235, 0.35),
    inset 0 0 0 1px rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.ttml-precision-flow__hero-icon svg,
.ttml-precision-flow__done-icon svg {
  width: 42px;
  height: 42px;
}

.ttml-precision-flow__title {
  margin: 0;
  color: #0c2340;
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.ttml-precision-flow__title span {
  color: #3b82f6;
}

.ttml-precision-flow__copy {
  margin: 22px 0 0;
  color: #475569;
  font-size: clamp(18px, 1.55vw, 30px);
  line-height: 1.6;
}

.ttml-precision-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ttml-precision-flow__eyebrow.is-success {
  color: #059669;
}

.ttml-precision-flow__text h3 {
  margin: 0;
  color: #0c2340;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.ttml-precision-flow__text p {
  margin: 18px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.ttml-precision-flow__list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ttml-precision-flow__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.ttml-precision-flow__bullet {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.ttml-precision-flow__bullet.is-success {
  background: rgba(5, 150, 105, 0.12);
  box-shadow: inset 0 0 0 1px rgba(5, 150, 105, 0.18);
}

.ttml-precision-flow__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin-top: 26px;
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  box-shadow: 0 24px 35px -24px rgba(37, 99, 235, 0.8);
}

.ttml-precision-flow__chip.is-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 24px 35px -24px rgba(5, 150, 105, 0.8);
}

.ttml-precision-flow__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.ttml-precision-flow__window,
.ttml-precision-flow__doc,
.ttml-precision-flow__send {
  position: relative;
  width: min(100%, 430px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 90px -50px rgba(37, 99, 235, 0.35);
}

.ttml-precision-flow__window {
  overflow: hidden;
}

.ttml-precision-flow__window-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  background: #f8fbff;
}

.ttml-precision-flow__window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.ttml-precision-flow__window-body,
.ttml-precision-flow__doc-body {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.ttml-precision-flow__line {
  height: 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
}

.ttml-precision-flow__line.is-soft {
  background: rgba(37, 99, 235, 0.06);
}

.ttml-precision-flow__line.is-short {
  width: 72%;
}

.ttml-precision-flow__line.is-mid {
  width: 84%;
}

.ttml-precision-flow__line.is-mini {
  width: 44%;
}

.ttml-precision-flow__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(239, 246, 255, 0.95);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ttml-precision-flow__float-icon,
.ttml-precision-flow__stamp {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 30px 60px -34px rgba(37, 99, 235, 0.65);
}

.ttml-precision-flow__float-icon {
  top: 82px;
  right: -12px;
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.ttml-precision-flow__float-icon svg,
.ttml-precision-flow__stamp svg {
  width: 38px;
  height: 38px;
}

.ttml-precision-flow__doc {
  min-height: 340px;
}

.ttml-precision-flow__send {
  min-height: 350px;
  padding: 28px;
}

.ttml-precision-flow__send-head {
  width: 36%;
  height: 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
}

.ttml-precision-flow__send-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  padding-top: 24px;
}

.ttml-precision-flow__send-signature {
  display: grid;
  gap: 8px;
  width: 52%;
}

.ttml-precision-flow__stamp {
  top: 88px;
  right: -20px;
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 30px 60px -34px rgba(5, 150, 105, 0.72);
}

.ttml-precision-flow__done-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  color: #2563eb;
  box-shadow: 0 30px 60px -40px rgba(37, 99, 235, 0.35);
}

.ttml-precision-flow__done-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #1d4ed8 0%, #0c2340 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 30px 60px -38px rgba(29, 78, 216, 0.8);
}

.ttml-precision-flow__progress {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 5;
  padding: 0 56px;
}

.ttml-precision-flow__progress-inner {
  width: min(840px, calc(100vw - 112px));
  margin: 0 auto;
}

.ttml-precision-flow__dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ttml-precision-flow__dot {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(148, 163, 184, 0.92);
  font-size: 12px;
  font-weight: 700;
}

.ttml-precision-flow__dot::before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.65);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.ttml-precision-flow__dot[data-active='true'] {
  color: #3b82f6;
}

.ttml-precision-flow__dot[data-active='true']::before {
  transform: scale(1.15);
  background: #3b82f6;
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.14);
}

.ttml-precision-flow__bar {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.45);
}

.ttml-precision-flow__bar-fill {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: inherit;
  background: linear-gradient(90deg, #93c5fd 0%, #2563eb 100%);
}

.ttml-mobile-flow__stage {
  position: relative;
  height: calc(var(--ttml-mobile-slide-count, 5) * 100vh);
  height: calc(var(--ttml-mobile-slide-count, 5) * 100svh);
}

.ttml-mobile-flow__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.ttml-mobile-flow__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(37, 99, 235, 0.09), transparent 34%),
    radial-gradient(circle at 85% 22%, rgba(96, 165, 250, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ttml-mobile-flow__slides {
  position: relative;
  height: 100%;
}

.ttml-mobile-flow__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 84px 16px 116px;
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.96);
  pointer-events: none;
  will-change: transform, opacity;
}

.ttml-mobile-flow__slide[data-active='true'] {
  pointer-events: auto;
}

.ttml-mobile-flow__slide-inner {
  width: min(100%, 430px);
  margin: 0 auto;
}

.ttml-mobile-flow__panel {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  padding: 24px 18px 22px;
  text-align: center;
  box-shadow: 0 28px 60px -36px rgba(15, 23, 42, 0.22);
}

.ttml-mobile-flow__panel.is-intro {
  padding-top: 26px;
}

.ttml-mobile-flow__hero-icon,
.ttml-mobile-flow__done-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  color: #2563eb;
  box-shadow: 0 22px 40px -28px rgba(37, 99, 235, 0.35);
}

.ttml-mobile-flow__hero-icon svg,
.ttml-mobile-flow__done-icon svg {
  width: 34px;
  height: 34px;
}

.ttml-mobile-flow__slide .ttml-mobile-how-it-works__card,
.ttml-mobile-flow__slide .ttml-mobile-how-it-works__outro {
  width: 100%;
  margin-top: 0;
}

.ttml-mobile-flow__slide .ttml-mobile-how-it-works__card {
  box-shadow: 0 28px 60px -36px rgba(15, 23, 42, 0.22);
}

.ttml-mobile-flow__slide .ttml-mobile-how-it-works__title {
  font-size: 22px;
}

.ttml-mobile-flow__slide .ttml-mobile-how-it-works__copy {
  font-size: 14px;
}

.ttml-mobile-flow__slide .ttml-mobile-how-it-works__list li {
  font-size: 13px;
}

.ttml-mobile-flow__slide .ttml-mobile-how-it-works__outro {
  padding-top: 28px;
  padding-bottom: 24px;
}

.ttml-mobile-flow__progress {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 6;
  padding: 0 16px;
}

.ttml-mobile-flow__progress-inner {
  width: min(100%, 430px);
  margin: 0 auto;
  border: 1px solid rgba(191, 219, 254, 0.55);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 50px -34px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(16px);
  padding: 12px 14px 14px;
}

.ttml-mobile-flow__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ttml-mobile-flow__meta-label,
.ttml-mobile-flow__meta-step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ttml-mobile-flow__meta-label {
  color: #2563eb;
}

.ttml-mobile-flow__meta-step {
  color: #0f172a;
}

.ttml-mobile-flow__dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0 10px;
}

.ttml-mobile-flow__dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.8);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.ttml-mobile-flow__dot[data-active='true'] {
  transform: scale(1.18);
  background: #2563eb;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.ttml-mobile-flow__bar {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.45);
}

.ttml-mobile-flow__bar-fill {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: inherit;
  background: linear-gradient(90deg, #93c5fd 0%, #2563eb 100%);
}

.ttml-precision-flow__mobile {
  display: none;
}

.ttml-mobile-how-it-works__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.ttml-mobile-how-it-works__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  padding: 8px 12px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ttml-mobile-how-it-works__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.ttml-mobile-how-it-works__heading {
  margin: 0;
  color: #0c2340;
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ttml-mobile-how-it-works__heading span {
  color: #2563eb;
}

.ttml-mobile-how-it-works__intro {
  margin: 14px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.ttml-mobile-how-it-works__stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.ttml-mobile-how-it-works__card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px -28px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.ttml-mobile-how-it-works__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 0;
}

.ttml-mobile-how-it-works__step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ttml-mobile-how-it-works__step.is-success {
  color: #059669;
}

.ttml-mobile-how-it-works__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  padding: 10px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 28px -20px rgba(37, 99, 235, 0.8);
}

.ttml-mobile-how-it-works__chip.is-soft {
  background: rgba(239, 246, 255, 0.95);
  color: #2563eb;
  box-shadow: none;
}

.ttml-mobile-how-it-works__chip.is-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 18px 28px -20px rgba(5, 150, 105, 0.8);
}

.ttml-mobile-how-it-works__body {
  padding: 14px 18px 18px;
}

.ttml-mobile-how-it-works__title {
  margin: 0;
  color: #0f172a;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.ttml-mobile-how-it-works__copy {
  margin: 10px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.ttml-mobile-how-it-works__list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ttml-mobile-how-it-works__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.ttml-mobile-how-it-works__bullet {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.ttml-mobile-how-it-works__bullet.is-success {
  background: rgba(5, 150, 105, 0.12);
  box-shadow: inset 0 0 0 1px rgba(5, 150, 105, 0.18);
}

.ttml-mobile-how-it-works__outro {
  margin-top: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0c2340 0%, #1d4ed8 100%);
  padding: 24px 20px;
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 56px -30px rgba(29, 78, 216, 0.9);
}

.ttml-mobile-how-it-works__outro-title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.ttml-mobile-how-it-works__outro-copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.7;
}

.ttml-mobile-how-it-works__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 12px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

@media (max-width: 1023px) {
  .ttml-precision-flow__slide {
    padding-inline: 32px;
  }

  .ttml-precision-flow__slide-inner {
    gap: 40px;
    width: min(1120px, calc(100vw - 64px));
  }
}

@media (max-width: 767px) {
  .ttml-precision-flow__desktop {
    display: block;
  }

  .ttml-precision-flow__sticky {
    height: 100vh;
    height: 100svh;
  }

  .ttml-precision-flow__mobile {
    display: none;
  }

  .ttml-precision-flow__ambient::before,
  .ttml-precision-flow__ambient::after {
    display: none;
  }

  .ttml-precision-flow__track {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
  }

  .ttml-precision-flow__slide {
    position: absolute;
    inset: 0;
    flex: none;
    width: 100%;
    padding: 80px 18px 108px;
    contain: layout paint;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
  }

  .ttml-precision-flow__slide-inner {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: 24px;
    width: min(100%, calc(100vw - 36px));
    contain: layout paint;
  }

  .ttml-precision-flow__slide.is-intro .ttml-precision-flow__slide-inner,
  .ttml-precision-flow__slide.is-outro .ttml-precision-flow__slide-inner {
    width: min(100%, calc(100vw - 36px));
  }

  .ttml-precision-flow__headline-wrap {
    max-width: 100%;
  }

  .ttml-precision-flow__hero-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    box-shadow: 0 16px 28px -22px rgba(37, 99, 235, 0.24);
  }

  .ttml-precision-flow__done-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
    box-shadow: 0 18px 32px -24px rgba(37, 99, 235, 0.24);
  }

  .ttml-precision-flow__hero-icon svg,
  .ttml-precision-flow__done-icon svg {
    width: 34px;
    height: 34px;
  }

  .ttml-precision-flow__title {
    font-size: clamp(36px, 10vw, 50px);
  }

  .ttml-precision-flow__copy {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.65;
  }

  .ttml-precision-flow__eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .ttml-precision-flow__text h3 {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .ttml-precision-flow__text p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.62;
  }

  .ttml-precision-flow__list {
    gap: 10px;
    margin-top: 18px;
  }

  .ttml-precision-flow__list li {
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .ttml-precision-flow__bullet {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    margin-top: 1px;
  }

  .ttml-precision-flow__chip {
    min-width: 0;
    margin-top: 18px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .ttml-precision-flow__visual {
    min-height: 220px;
  }

  .ttml-precision-flow__window,
  .ttml-precision-flow__doc,
  .ttml-precision-flow__send {
    width: min(100%, 280px);
    border-radius: 22px;
    box-shadow: 0 18px 34px -28px rgba(37, 99, 235, 0.2);
  }

  .ttml-precision-flow__window-body,
  .ttml-precision-flow__doc-body {
    gap: 10px;
    padding: 20px;
  }

  .ttml-precision-flow__badge {
    top: 12px;
    right: 12px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .ttml-precision-flow__doc {
    min-height: 240px;
  }

  .ttml-precision-flow__send {
    min-height: 250px;
    padding: 20px;
  }

  .ttml-precision-flow__send-footer {
    margin-top: 20px;
    padding-top: 18px;
  }

  .ttml-precision-flow__float-icon {
    top: 54px;
    right: 8px;
    width: 56px;
    height: 56px;
    box-shadow: 0 18px 28px -22px rgba(37, 99, 235, 0.42);
  }

  .ttml-precision-flow__stamp {
    top: 58px;
    right: 2px;
    width: 62px;
    height: 62px;
    box-shadow: 0 18px 28px -22px rgba(5, 150, 105, 0.48);
  }

  .ttml-precision-flow__float-icon svg,
  .ttml-precision-flow__stamp svg {
    width: 28px;
    height: 28px;
  }

  .ttml-precision-flow__done-cta {
    margin-top: 20px;
    padding: 11px 15px;
    font-size: 11px;
    box-shadow: 0 18px 28px -22px rgba(29, 78, 216, 0.48);
  }

  .ttml-precision-flow__progress {
    bottom: calc(14px + env(safe-area-inset-bottom));
    padding: 0 16px;
  }

  .ttml-precision-flow__progress-inner {
    width: min(100%, calc(100vw - 32px));
  }

  .ttml-precision-flow__dots {
    gap: 8px;
    margin-bottom: 10px;
  }

  .ttml-precision-flow__dot {
    flex: 1 1 0;
    min-width: 0;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .ttml-precision-flow__dot::before {
    width: 10px;
    height: 10px;
  }

  .ttml-precision-flow__dot[data-active='true']::before {
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.14);
  }

  .ttml-precision-flow__bar {
    height: 5px;
  }
}
