:root {
  color-scheme: light;
  --paper: #f5f3ee;
  --ink: #0b0b0c;
  --muted: #66645f;
  --line: #b8b4ac;
  --soft-line: #d6d2ca;
  --white: #fbfaf7;
  --shell: 1504px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: rgba(11, 11, 12, 0.12);
}

.shell {
  width: min(calc(100% - 9.5vw), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
}

.brand-lockup {
  display: flex;
  min-width: 0;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: clamp(9.5rem, 10vw, 10.5rem);
  line-height: 0;
  text-decoration: none;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-lockup__divider {
  width: 1px;
  height: 32px;
  margin-inline: 21px;
  flex: 0 0 auto;
  background: #aaa69e;
}

.brand-lockup__tagline {
  margin: 0;
  color: #74716b;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.38;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font-weight: 430;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.wordmark:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.button--primary {
  min-width: 313px;
  min-height: 65px;
  padding: 0 35px;
  font-size: 1.2rem;
  gap: 34px;
}

.button--primary:active {
  background: #242424;
  color: var(--white);
}

.button--contact {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 520;
}

.button--contact:active {
  border-color: #77736c;
  background: #e5e3de;
  color: var(--ink);
}

.button__arrow {
  font-size: 1.45em;
  font-weight: 300;
  line-height: 0;
  transition: transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .button--primary:hover {
    background: #222;
    color: var(--white);
  }

  .button--primary:hover .button__arrow {
    transform: translateX(4px);
  }

  .button--contact:hover {
    border-color: #817d75;
    background: #eceae5;
    color: var(--ink);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.9fr) minmax(650px, 1.1fr);
  align-items: stretch;
  min-height: 696px;
  padding-block: 24px 20px;
  gap: clamp(24px, 4vw, 74px);
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(48px, 6.8vh, 82px) 40px;
}

.hero__message {
  max-width: 660px;
}

h1,
h2,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(3.75rem, 4.8vw, 5.15rem);
  font-weight: 390;
  letter-spacing: -0.068em;
  line-height: 0.9;
}

h1 span {
  display: block;
}

.hero__lead {
  max-width: 560px;
  margin: 22px 0 29px;
  font-size: clamp(1rem, 1.28vw, 1.2rem);
  font-weight: 390;
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.hero__note {
  margin: 24px 0 0;
  font-size: 0.88rem;
  line-height: 1.48;
}

.journey {
  display: flex;
  align-items: center;
  width: min(100%, 620px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey__item {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  color: #696762;
  font-size: 0.69rem;
  white-space: nowrap;
  transition: color 400ms ease;
}

.journey__item i {
  position: relative;
  flex: 1 1 auto;
  height: 1px;
  margin-inline: 13px;
  overflow: hidden;
  background: var(--line);
}

.journey__item i::after {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: translateX(-101%);
  transition: transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.journey__item b {
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background-color 300ms ease;
}

.journey__item.is-active,
.journey__item.is-complete {
  color: var(--ink);
}

.journey__item.is-complete i::after,
.journey__item.is-active i::after {
  transform: translateX(0);
}

.journey__item--last.is-active b,
.journey__item--last.is-complete b {
  background: var(--ink);
}

.showcase {
  --phone-x: 35%;
  position: relative;
  min-width: 0;
  min-height: 650px;
}

.phone {
  position: absolute;
  z-index: 3;
  top: 0;
  left: var(--phone-x);
  width: 326px;
  height: 650px;
  padding: 7px;
  border: 1px solid #4d4d4c;
  border-radius: 55px;
  background: #181818;
  box-shadow:
    0 26px 26px rgba(31, 30, 27, 0.09),
    0 4px 8px rgba(31, 30, 27, 0.12);
  transform: translateX(-50%) rotate(-0.7deg);
  transform-origin: 50% 100%;
}

.phone::before {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 51px;
  content: "";
  pointer-events: none;
}

.phone::after {
  position: absolute;
  right: 26px;
  bottom: -13px;
  left: 26px;
  height: 18px;
  border-radius: 50%;
  background: rgba(31, 30, 27, 0.16);
  filter: blur(12px);
  content: "";
  pointer-events: none;
}

.phone__button {
  position: absolute;
  width: 4px;
  border: 1px solid #3c3c3b;
  background: #171717;
}

.phone__button--top {
  top: 125px;
  left: -4px;
  height: 40px;
  border-radius: 3px 0 0 3px;
}

.phone__button--middle {
  top: 177px;
  left: -4px;
  height: 72px;
  border-radius: 3px 0 0 3px;
}

.phone__button--side {
  top: 190px;
  right: -4px;
  height: 88px;
  border-radius: 0 3px 3px 0;
}

.phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid #1e1e1e;
  border-radius: 47px;
  background: #f8f7f3;
}

.phone__cutout {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 50%;
  width: 96px;
  height: 27px;
  border-radius: 18px;
  background: #070707;
  transform: translateX(-50%);
}

.phone__cutout span {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #272727;
  box-shadow: inset 0 0 0 2px #050505;
}

.telegram-view {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  overflow: hidden;
  background: #f8f7f3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0s linear 360ms;
}

.telegram-view--list {
  transform: translateX(-18px);
}

.telegram-view.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.bot-header {
  display: flex;
  align-items: center;
  height: 86px;
  padding: 28px 16px 10px;
  border-bottom: 1px solid #c9c6bf;
  background: #f8f7f3;
}

.bot-header__back {
  display: grid;
  width: 23px;
  height: 31px;
  margin-right: 7px;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  place-items: center;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.bot-header__back.is-pressed {
  background: #d8d6d0;
  transform: scale(0.88);
}

.bot-header__avatar {
  display: grid;
  width: 31px;
  height: 31px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 650;
  place-items: center;
}

.bot-header__name {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.bot-header__name small {
  color: #76736d;
  font-size: 0.68rem;
}

.bot-header__more {
  margin-left: auto;
  font-size: 1.35rem;
  line-height: 1;
}

.chat-list-header {
  padding-inline: 18px;
}

.chat-list-header strong {
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 650;
}

.conversation-list {
  height: calc(100% - 86px);
  padding: 6px 0 23px;
  overflow: hidden;
  background: #f4f3ef;
}

.conversation-item {
  display: grid;
  min-height: 68px;
  grid-template-columns: 39px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  padding: 9px 12px;
  border-bottom: 1px solid #d8d6d0;
  background: #f8f7f3;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.telegram-view--list.is-active .conversation-item--new {
  animation: conversation-arrive 360ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.conversation-item.is-highlighted {
  background: #e5e3de;
  box-shadow: inset 3px 0 0 #1d1d1c;
}

.conversation-item.is-pressed {
  background: #cfcdc7;
  box-shadow: inset 0 0 0 24px rgba(20, 20, 20, 0.025);
}

.conversation-avatar {
  display: grid;
  width: 39px;
  height: 39px;
  grid-row: 1 / 3;
  border: 1px solid #bdbbb5;
  border-radius: 50%;
  background: #e1dfda;
  color: #252524;
  font-size: 0.72rem;
  font-weight: 650;
  place-items: center;
}

.conversation-avatar--dark {
  border-color: #1d1d1c;
  background: #1d1d1c;
  color: #fff;
}

.conversation-item b {
  min-width: 0;
  overflow: hidden;
  color: #1d1d1c;
  font-size: 0.72rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-item p {
  min-width: 0;
  margin: 1px 0 0;
  overflow: hidden;
  color: #6c6963;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-item time {
  align-self: end;
  color: #77746e;
  font-size: 0.5rem;
}

.conversation-badge {
  display: grid;
  align-self: start;
  min-width: 17px;
  height: 17px;
  margin-top: 2px;
  padding: 0 5px;
  border-radius: 9px;
  background: #1d1d1c;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  place-items: center;
}

@keyframes conversation-arrive {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.manager-header .bot-header__name {
  min-width: 0;
  flex: 1;
}

.manager-header .bot-header__name b {
  overflow: hidden;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manager-header .bot-header__more {
  margin-left: 5px;
}

.bot-workspace {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: calc(100% - 86px);
  padding: 8px 8px 23px;
  overflow: hidden;
  background: #efeeea;
}

.manager-workspace .chat-feed {
  padding-top: 12px;
}

.manager-workspace .chat-bubble {
  max-width: 89%;
}

.manager-workspace .chat-bubble p {
  font-size: 0.68rem;
  line-height: 1.34;
}

.home-indicator {
  position: absolute;
  z-index: 6;
  bottom: 8px;
  left: 50%;
  width: 105px;
  height: 4px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateX(-50%);
}

.chat-feed {
  min-height: 0;
  padding: 10px 4px 12px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  transition: opacity 420ms ease;
}

.chat-feed::-webkit-scrollbar {
  display: none;
}

.chat-item {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 250ms ease,
    transform 250ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.chat-item:not(.is-mounted) {
  display: none;
}

.chat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-row {
  display: flex;
  width: 100%;
  margin-bottom: 7px;
}

.chat-row--bot {
  justify-content: flex-start;
}

.chat-row--user {
  justify-content: flex-end;
}

.chat-bubble {
  position: relative;
  max-width: 82%;
  min-width: 58px;
  padding: 9px 10px 16px;
  border: 1px solid #d0cec8;
  border-radius: 13px 13px 13px 4px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(25, 25, 24, 0.04);
}

.chat-row--user .chat-bubble {
  border-color: #cfcdc7;
  border-radius: 13px 13px 4px 13px;
  background: #deddd8;
}

.chat-bubble p {
  margin: 0;
  color: #181818;
  font-size: 0.75rem;
  line-height: 1.32;
}

.chat-bubble time {
  position: absolute;
  right: 7px;
  bottom: 3px;
  color: #77756f;
  font-size: 0.5rem;
  line-height: 1;
}

.chat-actions {
  width: 82%;
  margin: -2px 0 7px;
  overflow: hidden;
  border: 1px solid #d0cec8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(25, 25, 24, 0.04);
}

.chat-option {
  display: block;
  width: 100%;
  min-height: 32px;
  padding: 7px 9px;
  border: 0;
  border-bottom: 1px solid #dedcd7;
  background: #fff;
  color: #1c1c1b;
  font: inherit;
  font-size: 0.75rem;
  line-height: 1.15;
  text-align: center;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.chat-option:last-child {
  border-bottom: 0;
}

.chat-option.is-pressed {
  background: #c9c8c3;
  box-shadow: inset 0 0 0 16px rgba(20, 20, 20, 0.04);
}

.chat-actions--contact .chat-option {
  font-weight: 620;
}

.chat-contact {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  min-width: 190px;
  padding-bottom: 17px;
}

.chat-contact__avatar {
  display: grid;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #1d1d1c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 650;
  place-items: center;
}

.chat-contact > span:last-of-type {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.chat-contact b {
  font-size: 0.75rem;
  font-weight: 650;
}

.chat-contact small {
  margin-top: 2px;
  color: #55534e;
  font-size: 0.72rem;
  white-space: nowrap;
}

.chat-bubble--success {
  border-color: #b9b7b1;
}

.chat-bubble--typing {
  display: flex;
  align-items: center;
  min-width: 52px;
  min-height: 35px;
  padding: 10px 12px;
  gap: 4px;
}

.chat-bubble--typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6c6a65;
  animation: typing-dot 900ms ease-in-out infinite;
}

.chat-bubble--typing span:nth-child(2) {
  animation-delay: 140ms;
}

.chat-bubble--typing span:nth-child(3) {
  animation-delay: 280ms;
}

@keyframes typing-dot {
  0%, 60%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-composer {
  display: flex;
  align-items: center;
  min-height: 41px;
  margin: 6px 2px 0;
  padding: 0 12px;
  border: 1px solid #d1cfc9;
  border-radius: 21px;
  background: #fff;
  color: #77756f;
  pointer-events: none;
}

.chat-composer__placeholder {
  font-size: 0.75rem;
}

.chat-composer__attach {
  position: relative;
  width: 15px;
  height: 18px;
  margin-right: 10px;
  transform: rotate(-38deg);
}

.chat-composer__attach::before,
.chat-composer__attach::after {
  position: absolute;
  border: 1.5px solid #6d6b66;
  content: "";
}

.chat-composer__attach::before {
  inset: 1px 3px;
  border-radius: 8px;
}

.chat-composer__attach::after {
  top: 4px;
  left: 5px;
  width: 4px;
  height: 8px;
  border-radius: 5px;
}

.chat-composer__mic {
  position: relative;
  width: 10px;
  height: 15px;
  margin: 0 3px 2px auto;
  border: 1.5px solid #6d6b66;
  border-radius: 7px;
}

.chat-composer__mic::before {
  position: absolute;
  right: -4px;
  bottom: -4px;
  left: -4px;
  height: 7px;
  border: 1.5px solid #6d6b66;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  content: "";
}

.chat-composer__mic::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 8px;
  border-top: 1.5px solid #6d6b66;
  content: "";
  transform: translateX(-50%);
}

.request-connector {
  position: absolute;
  z-index: 1;
  top: 334px;
  left: calc(var(--phone-x) + 160px);
  width: clamp(55px, 7vw, 100px);
  border-top: 1px dashed var(--ink);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 350ms ease 180ms, transform 500ms ease 180ms;
}

.request-connector::before,
.request-connector::after {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.request-connector::before {
  left: -4px;
}

.request-connector::after {
  right: -4px;
}

.request-card {
  position: absolute;
  z-index: 2;
  top: 227px;
  right: 0;
  width: min(330px, 37%);
  min-width: 290px;
  padding: 24px 25px 20px;
  border: 1px solid #333;
  border-radius: 15px;
  background: var(--ink);
  color: #f6f4ef;
  box-shadow: 0 22px 28px rgba(20, 20, 19, 0.13);
  opacity: 0;
  transform: translateX(-34px) scale(0.98);
  pointer-events: none;
  transition: opacity 480ms ease 260ms, transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1) 260ms;
}

.showcase.is-request-visible .request-card {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.showcase.is-request-visible .request-connector {
  opacity: 1;
  transform: scaleX(1);
}

.request-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}

.request-card__head h2 {
  margin: 0;
  font-size: 1.38rem;
  font-weight: 410;
  letter-spacing: -0.02em;
}

.request-card__head > span {
  padding: 3px 8px;
  border: 1px solid #777;
  border-radius: 5px;
  color: #d9d7d2;
  font-size: 0.63rem;
}

.request-card dl {
  margin: 0;
}

.request-card dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: baseline;
  padding-block: 8px;
  border-bottom: 1px solid #363636;
  gap: 8px;
}

.request-card dt,
.request-card dd {
  margin: 0;
  font-size: 0.72rem;
}

.request-card dt {
  color: #9b9994;
}

.request-card dd {
  text-align: right;
}

.request-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  color: #888681;
  font-size: 0.58rem;
}

.status-pill {
  color: #d8d6d1;
}

.status-pill i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 5px 1px 0;
  border-radius: 50%;
  background: #f6f4ef;
}

.workflow {
  padding-block: clamp(68px, 6.5vw, 94px) clamp(62px, 6vw, 86px);
  overflow: hidden;
  border-top: 1px solid var(--ink);
}

.workflow__header {
  max-width: 800px;
  margin-bottom: clamp(42px, 4.5vw, 60px);
}

.workflow__label {
  margin: 0 0 18px;
  color: #77746e;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.workflow__header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
  font-weight: 390;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.workflow__intro {
  max-width: 650px;
  margin: 21px 0 0;
  color: #4f4c47;
  font-size: clamp(0.96rem, 1.16vw, 1.08rem);
  line-height: 1.55;
}

.workflow__route {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  margin-inline: auto;
  column-gap: clamp(42px, 5vw, 72px);
}

.workflow__step {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  padding: 20px 0 18px;
  border-top: 1px solid var(--soft-line);
  gap: 16px;
  transition:
    border-color 220ms ease,
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.workflow__step--left,
.workflow__step--right,
.workflow__step--final {
  width: 100%;
  margin: 0;
}

.workflow__mark {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
}

.workflow__number {
  color: #aaa69e;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.workflow__icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid #b9b5ad;
  border-radius: 11px;
  color: var(--ink);
  place-items: center;
}

.workflow__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.workflow__copy {
  min-width: 0;
}

.workflow__copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.16rem, 1.65vw, 1.42rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.workflow__copy p {
  max-width: 360px;
  margin: 0;
  color: #5e5b55;
  font-size: 0.94rem;
  line-height: 1.52;
}

.workflow.is-animated .workflow__header,
.workflow.is-animated .workflow__step {
  opacity: 0;
  transform: translateY(14px);
}

.workflow.is-animated.is-visible .workflow__header,
.workflow.is-animated.is-visible .workflow__step {
  opacity: 1;
  transform: translateY(0);
}

.workflow.is-animated .workflow__header {
  transition:
    opacity 540ms ease,
    transform 540ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.workflow.is-animated .workflow__route > :nth-child(1) {
  transition-delay: 50ms;
}

.workflow.is-animated .workflow__route > :nth-child(2) {
  transition-delay: 170ms;
}

.workflow.is-animated .workflow__route > :nth-child(3) {
  transition-delay: 290ms;
}

@media (hover: hover) and (pointer: fine) {
  .workflow.is-visible .workflow__step:hover {
    border-color: #8f8b84;
    transform: translateY(-3px);
  }
}

.manager-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(470px, 1.1fr);
  align-items: center;
  padding-block: clamp(92px, 9vw, 140px) clamp(100px, 9vw, 146px);
  border-top: 1px solid var(--ink);
  gap: clamp(44px, 5vw, 80px);
}

.manager-section__copy,
.manager-section__visual {
  min-width: 0;
}

.manager-section__header {
  max-width: 570px;
}

.manager-section__label {
  width: min(100%, 470px);
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #98948c;
  color: #595650;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.manager-section__header h2 {
  max-width: 610px;
  margin: clamp(46px, 5vw, 68px) 0 0;
  font-size: clamp(2.75rem, 3.75vw, 4rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.manager-section__intro {
  max-width: 550px;
  margin: 30px 0 0;
  color: #393733;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.manager-benefits {
  max-width: 520px;
  margin: clamp(50px, 6vw, 76px) 0 0;
  padding: 0;
  list-style: none;
}

.manager-benefits li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 20px 0 21px;
  border-bottom: 1px solid var(--soft-line);
  gap: 20px;
}

.manager-benefits li:first-child {
  border-top: 1px solid var(--soft-line);
}

.manager-benefits__number {
  padding-top: 2px;
  color: #77736c;
  font-size: 0.77rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.manager-benefits h3 {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.manager-benefits p {
  max-width: 420px;
  margin: 8px 0 0;
  color: #625f59;
  font-size: 0.875rem;
  line-height: 1.5;
}

.manager-section__visual {
  position: relative;
  padding: clamp(24px, 4vw, 54px) 0 clamp(62px, 7vw, 96px);
}

.manager-monitor {
  width: min(100%, 690px);
  margin-inline: auto;
}

.manager-monitor__screen {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1.56;
  grid-template-columns: 31% 69%;
  border: clamp(6px, 0.65vw, 9px) solid var(--ink);
  border-radius: 13px;
  background: var(--white);
}

.manager-monitor__neck {
  width: 17%;
  height: clamp(48px, 5.8vw, 74px);
  margin-inline: auto;
  background: #cfcbc3;
  clip-path: polygon(24% 0, 76% 0, 88% 100%, 12% 100%);
}

.manager-monitor__base {
  width: 36%;
  height: 8px;
  margin-inline: auto;
  border: 1px solid #aaa69e;
  border-radius: 50% 50% 4px 4px;
  background: #d7d3cb;
}

.manager-desktop__sidebar {
  min-width: 0;
  border-right: 1px solid var(--soft-line);
  background: #f8f7f3;
}

.manager-desktop__search {
  display: flex;
  min-height: clamp(34px, 3.7vw, 44px);
  align-items: center;
  margin: clamp(8px, 1vw, 12px);
  padding-inline: clamp(8px, 1vw, 12px);
  border: 1px solid #dfdcd5;
  border-radius: 8px;
  color: #96928a;
  font-size: clamp(0.48rem, 0.68vw, 0.66rem);
  gap: 7px;
}

.manager-desktop__search span:first-child {
  color: #706d67;
  font-size: 1.2em;
}

.manager-chat-list {
  padding: 0 clamp(5px, 0.65vw, 8px) 8px;
}

.manager-chat-preview {
  display: grid;
  min-width: 0;
  grid-template-columns: clamp(24px, 2.5vw, 34px) minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(7px, 0.8vw, 10px) clamp(5px, 0.65vw, 8px);
  border-radius: 8px;
  gap: clamp(6px, 0.7vw, 9px);
}

.manager-chat-preview.is-active {
  background: #e6e3dd;
}

.manager-chat-preview--incoming {
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    background-color 260ms ease;
}

.manager-section.is-manager-demo-ready .manager-chat-preview--incoming {
  opacity: 0;
  transform: translateY(7px);
}

.manager-section.is-manager-demo-ready .manager-chat-preview--incoming.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.manager-section.is-manager-demo-ready .manager-chat-preview--incoming.is-highlighted {
  background: #dedbd4;
}

.manager-avatar {
  display: grid;
  width: clamp(24px, 2.5vw, 34px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: clamp(0.42rem, 0.58vw, 0.58rem);
  font-weight: 600;
  place-items: center;
}

.manager-chat-preview__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.manager-chat-preview strong,
.manager-desktop__chat-header strong {
  overflow: hidden;
  font-size: clamp(0.68rem, 0.75vw, 0.75rem);
  font-weight: 600;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manager-chat-preview small {
  overflow: hidden;
  color: #65625d;
  font-size: clamp(0.39rem, 0.52vw, 0.54rem);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manager-chat-preview time {
  align-self: start;
  color: #77736c;
  font-size: clamp(0.36rem, 0.45vw, 0.48rem);
  font-variant-numeric: tabular-nums;
}

.manager-desktop__chat {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #efede8;
}

.manager-desktop__chat-header {
  display: grid;
  min-height: clamp(42px, 4.8vw, 58px);
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 0 clamp(12px, 1.6vw, 20px);
  border-bottom: 1px solid var(--soft-line);
  background: var(--white);
  gap: clamp(7px, 0.8vw, 10px);
}

.manager-desktop__chat-header > span:nth-child(3) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.manager-desktop__chat-header small {
  color: #77736c;
  font-size: clamp(0.38rem, 0.47vw, 0.5rem);
}

.manager-desktop__back,
.manager-desktop__menu {
  color: #3e3c38;
  font-size: clamp(0.9rem, 1.25vw, 1.2rem);
  line-height: 1;
}

.manager-desktop__feed {
  display: flex;
  position: relative;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7px, 0.75vw, 10px);
  gap: clamp(3px, 0.35vw, 4px);
}

.manager-demo-idle {
  position: absolute;
  inset: 50% 12px auto;
  margin: 0;
  color: #87837c;
  font-size: clamp(0.56rem, 0.7vw, 0.68rem);
  text-align: center;
  transform: translateY(-50%);
  transition: opacity 240ms ease;
}

.manager-section:not(.is-manager-demo-ready) .manager-demo-idle {
  display: none;
}

.manager-section.is-manager-demo-ready .manager-demo-idle {
  opacity: 1;
}

.manager-section.is-manager-demo-ready .manager-demo-idle.is-hidden {
  opacity: 0;
}

.manager-request {
  position: relative;
  width: min(84%, 360px);
  margin-left: auto;
  padding: clamp(6px, 0.55vw, 8px);
  border: 1px solid #d8d5ce;
  border-radius: 10px;
  background: var(--white);
}

.manager-section.is-manager-demo-ready .manager-request,
.manager-section.is-manager-demo-ready .manager-actions {
  opacity: 0;
  transform: translateY(8px);
}

.manager-section.is-manager-demo-ready .manager-request {
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.manager-section.is-manager-demo-ready .manager-request.is-visible,
.manager-section.is-manager-demo-ready .manager-actions.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.manager-request h3 {
  margin: 0 0 4px;
  font-size: clamp(0.65rem, 0.72vw, 0.76rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.manager-request dl {
  display: grid;
  margin: 0;
  gap: 1px;
}

.manager-request dl > div {
  display: grid;
  grid-template-columns: minmax(54px, 0.8fr) minmax(0, 1.2fr);
  gap: 8px;
}

.manager-request dt,
.manager-request dd {
  margin: 0;
  font-size: clamp(0.6rem, 0.66vw, 0.7rem);
  line-height: 1.12;
}

.manager-request dt {
  color: #77736c;
}

.manager-request dd {
  overflow-wrap: anywhere;
  font-weight: 520;
}

.manager-request__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition:
    color 220ms ease,
    font-weight 220ms ease;
}

.manager-request__status::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.manager-request__status.is-working {
  font-weight: 650;
}

.manager-request__status.is-working::before {
  transform: scale(1.35);
}

.manager-request > time {
  display: block;
  margin-top: 2px;
  color: #8c8881;
  font-size: clamp(0.34rem, 0.4vw, 0.4rem);
  text-align: right;
}

.manager-actions {
  display: grid;
  width: min(84%, 360px);
  margin-left: auto;
  gap: clamp(2px, 0.25vw, 3px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.manager-actions span {
  display: grid;
  position: relative;
  min-width: 0;
  min-height: clamp(21px, 1.7vw, 24px);
  padding-inline: 6px;
  border: 1px solid #d5d2cb;
  border-radius: 7px;
  background: var(--white);
  font-size: clamp(0.61rem, 0.66vw, 0.7rem);
  font-weight: 540;
  line-height: 1.1;
  place-items: center;
  white-space: nowrap;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.manager-actions span:first-child {
  border-color: #b8b4ac;
}

.manager-section.is-manager-demo-ready .manager-actions span {
  opacity: 0;
  transform: translateY(6px);
}

.manager-section.is-manager-demo-ready .manager-actions span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.manager-actions span.is-hovered {
  border-color: #908c84;
  background: #e7e4de;
}

.manager-actions span.is-pressed {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.manager-demo-cursor {
  position: absolute;
  top: 58%;
  right: 11%;
  z-index: 3;
  color: var(--ink);
  font-size: clamp(0.85rem, 1.15vw, 1.1rem);
  font-style: normal;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(18px, 14px);
  transition:
    opacity 180ms ease,
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
    color 180ms ease;
}

.manager-demo-cursor.is-visible {
  opacity: 1;
}

.manager-demo-cursor.is-targeted {
  transform: translate(0, 0);
}

.manager-actions span.is-pressed .manager-demo-cursor {
  color: var(--white);
}

.manager-desktop__composer {
  display: grid;
  min-height: clamp(34px, 4vw, 48px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  margin: 0 clamp(10px, 1.35vw, 17px) clamp(9px, 1.2vw, 14px);
  padding-inline: clamp(9px, 1.1vw, 13px);
  border: 1px solid #d7d3cc;
  border-radius: 9px;
  background: var(--white);
  color: #aaa69e;
  font-size: clamp(0.43rem, 0.58vw, 0.58rem);
  gap: 8px;
}

.manager-desktop__composer span:first-child,
.manager-desktop__composer span:last-child {
  color: #77736c;
  font-size: 1.1em;
}

.manager-stats {
  position: absolute;
  right: -18px;
  bottom: 18px;
  z-index: 2;
  width: clamp(190px, 17vw, 230px);
  padding: clamp(17px, 1.8vw, 22px);
  border: 1px solid #bbb7af;
  border-radius: 10px;
  background: var(--white);
}

.manager-stats h3 {
  margin: 0 0 13px;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.manager-stats dl {
  margin: 0;
}

.manager-stats dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 7px 0;
  border-top: 1px solid var(--soft-line);
  gap: 14px;
}

.manager-stats dt,
.manager-stats dd {
  margin: 0;
  font-size: 0.72rem;
}

.manager-stats dt {
  color: #56534e;
}

.manager-stats dd {
  color: var(--ink);
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}

.manager-section.is-animated [data-manager-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.manager-section.is-animated.is-visible [data-manager-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.manager-section [data-manager-reveal] {
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.manager-section.is-animated .manager-section__intro {
  transition-delay: 80ms;
}

.manager-section.is-animated .manager-benefits li:nth-child(1) {
  transition-delay: 150ms;
}

.manager-section.is-animated .manager-benefits li:nth-child(2) {
  transition-delay: 220ms;
}

.manager-section.is-animated .manager-benefits li:nth-child(3) {
  transition-delay: 290ms;
}

.manager-section.is-animated .manager-monitor {
  transition-delay: 380ms;
}

.manager-section.is-animated .manager-stats {
  transition-delay: 490ms;
}

.connection-section {
  padding-block: clamp(88px, 8.5vw, 132px) clamp(48px, 5vw, 70px);
  overflow: hidden;
  border-top: 1px solid var(--ink);
}

.connection-section__header {
  max-width: 820px;
}

.connection-section__label {
  width: min(100%, 530px);
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #98948c;
  color: #595650;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.connection-section__header h2 {
  max-width: 790px;
  margin: clamp(40px, 4.5vw, 62px) 0 0;
  font-size: clamp(2.8rem, 4.3vw, 4.55rem);
  font-weight: 430;
  letter-spacing: -0.057em;
  line-height: 0.99;
}

.connection-section__intro {
  max-width: 720px;
  margin: 26px 0 0;
  color: #393733;
  font-size: clamp(1rem, 1.28vw, 1.17rem);
  line-height: 1.55;
}

.connection-steps {
  display: grid;
  margin: clamp(58px, 6vw, 86px) 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 46px);
  list-style: none;
}

.connection-step {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid #9f9b93;
}

.connection-step__heading {
  display: grid;
  min-height: 142px;
  grid-template-columns: clamp(48px, 4.4vw, 66px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(12px, 1.4vw, 20px);
}

.connection-visual {
  position: relative;
  height: clamp(268px, 19.5vw, 292px);
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid #dedbd4;
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.42);
}

.connection-step__number {
  display: block;
  color: #aaa69e;
  font-size: clamp(2.7rem, 3.6vw, 3.75rem);
  font-weight: 260;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
  line-height: 1;
}

.connection-step__copy {
  min-width: 0;
}

.connection-step__copy h3 {
  margin: 0;
  font-size: clamp(1.16rem, 1.45vw, 1.36rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.connection-step__copy p {
  max-width: 390px;
  margin: 10px 0 0;
  color: #4f4c47;
  font-size: 0.875rem;
  line-height: 1.55;
}

.process-chat {
  position: absolute;
  top: 62px;
  left: 5%;
  width: 42%;
}

.process-dialogue {
  position: relative;
  margin: 0;
  padding: 12px 13px;
  border: 1px solid #c9c5bd;
  border-radius: 14px 14px 14px 4px;
  background: var(--white);
  color: #3f3c37;
  font-size: clamp(0.62rem, 0.72vw, 0.72rem);
  line-height: 1.35;
}

.process-dialogue::after {
  position: absolute;
  bottom: -5px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #c9c5bd;
  border-left: 1px solid #c9c5bd;
  background: var(--white);
  content: "";
  transform: rotate(-33deg) skew(8deg);
}

.process-dialogue + .process-dialogue {
  margin-top: 18px;
  margin-left: 10%;
}

.process-dialogue--dark {
  border-color: #3b3935;
  background: #363431;
  color: #f5f3ee;
}

.process-dialogue--dark::after {
  border-color: #3b3935;
  background: #363431;
}

.process-brief {
  position: absolute;
  top: 30px;
  right: 5%;
  width: 45%;
  min-height: 224px;
  padding: 22px 18px;
  border: 1px solid #c1bdb5;
  border-radius: 7px;
  background: var(--white);
}

.process-brief > strong {
  display: block;
  padding-bottom: 13px;
  border-bottom: 1px solid #dedbd4;
  font-size: clamp(0.72rem, 0.86vw, 0.84rem);
  font-weight: 620;
}

.process-brief ul {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.process-brief li {
  display: flex;
  align-items: center;
  color: #4f4c47;
  font-size: clamp(0.64rem, 0.76vw, 0.74rem);
  gap: 8px;
}

.process-brief li i {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.58rem;
  font-style: normal;
  place-items: center;
}

.setup-panel {
  position: absolute;
  top: 30px;
  left: 50%;
  width: min(90%, 340px);
  min-height: 224px;
  padding: 18px;
  border: 1px solid #bdb9b1;
  border-radius: 8px;
  background: var(--white);
  transform: translateX(-50%);
}

.setup-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid #dedbd4;
  gap: 12px;
}

.setup-panel__header > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.setup-panel__header strong {
  font-size: 0.86rem;
  font-weight: 640;
}

.setup-panel__header small {
  color: #77736c;
  font-size: 0.62rem;
}

.setup-panel__header > span {
  padding: 5px 8px;
  border: 1px solid #cbc7bf;
  border-radius: 999px;
  color: #55524d;
  font-size: 0.58rem;
  white-space: nowrap;
}

.setup-service {
  display: grid;
  min-height: 57px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid #e2dfd8;
  gap: 10px;
}

.setup-service > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.setup-service strong {
  overflow: hidden;
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  font-weight: 570;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-service small {
  color: #77736c;
  font-size: clamp(0.58rem, 0.7vw, 0.66rem);
}

.setup-toggle {
  position: relative;
  width: 29px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #bcb8b0;
}

.setup-toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.setup-toggle.is-active {
  background: var(--ink);
}

.setup-toggle.is-active::after {
  right: 3px;
  left: auto;
}

.setup-panel__add {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid #bdb9b1;
  border-radius: 6px;
  color: #34322e;
  font-size: 0.68rem;
  font-weight: 570;
}

.launch-phone {
  position: absolute;
  top: 12px;
  left: 5%;
  width: 43%;
  max-width: 140px;
  height: 260px;
  overflow: hidden;
  padding: 12px 9px 10px;
  border: 3px solid #45433f;
  border-radius: 25px;
  background: #efede8;
}

.launch-phone::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 35%;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: translateX(-50%);
}

.launch-phone__header {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
}

.launch-phone__header > span {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 650;
  place-items: center;
}

.launch-phone__header > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.launch-phone__header b {
  font-size: 0.58rem;
  line-height: 1.1;
}

.launch-phone__header small {
  color: #77736c;
  font-size: 0.46rem;
}

.launch-phone__header > i {
  font-size: 0.75rem;
  font-style: normal;
}

.launch-phone__message {
  margin: 13px 0 8px;
  padding: 9px;
  border: 1px solid #d8d4cc;
  border-radius: 8px;
  background: var(--white);
  font-size: clamp(0.55rem, 0.65vw, 0.64rem);
  line-height: 1.35;
}

.launch-phone__summary {
  display: flex;
  min-height: 122px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 12px 8px;
  border: 1px solid #d8d4cc;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.launch-phone__summary > small {
  color: #65625d;
  font-size: 0.53rem;
}

.launch-phone__summary > strong {
  margin-top: 7px;
  font-size: 0.64rem;
}

.launch-phone__summary > span {
  margin-top: 13px;
  font-size: 0.55rem;
  font-weight: 600;
}

.launch-phone__summary > span i {
  display: inline-grid;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.52rem;
  font-style: normal;
  place-items: center;
}

.launch-manager-card {
  position: absolute;
  top: 72px;
  right: 4%;
  width: 44%;
  padding: 16px 14px;
  border: 1px solid #bdb9b1;
  border-radius: 8px;
  background: var(--white);
}

.launch-manager-card__header {
  display: flex;
  align-items: center;
  padding-bottom: 11px;
  border-bottom: 1px solid #dedbd4;
  gap: 8px;
}

.launch-manager-card__header > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.57rem;
  font-weight: 650;
  place-items: center;
}

.launch-manager-card__header > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.launch-manager-card__header strong {
  font-size: 0.66rem;
}

.launch-manager-card__header small {
  color: #77736c;
  font-size: 0.5rem;
}

.launch-manager-card > strong {
  display: block;
  margin-top: 13px;
  font-size: 0.72rem;
}

.launch-manager-card dl {
  display: grid;
  margin: 10px 0 0;
  gap: 6px;
}

.launch-manager-card dl > div {
  display: grid;
  grid-template-columns: minmax(42px, 0.8fr) minmax(0, 1.2fr);
  gap: 6px;
}

.launch-manager-card dt,
.launch-manager-card dd {
  margin: 0;
  font-size: clamp(0.54rem, 0.66vw, 0.63rem);
  line-height: 1.25;
}

.launch-manager-card dt {
  color: #77736c;
}

.launch-manager-card dd {
  overflow-wrap: anywhere;
  font-weight: 550;
}

.connection-section__note {
  display: grid;
  margin: clamp(48px, 5vw, 68px) 0 0;
  padding: clamp(28px, 3.2vw, 42px);
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  border-radius: 9px;
  background: #181817;
  color: var(--white);
  gap: clamp(20px, 2.5vw, 34px);
}

.connection-section__note-icon {
  display: grid;
  width: clamp(42px, 4vw, 54px);
  aspect-ratio: 1;
  border: 1px solid #5b5954;
  border-radius: 50%;
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  place-items: center;
}

.connection-section__note h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.625rem, 2.3vw, 2rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.connection-section__note p {
  max-width: 780px;
  margin: 16px 0 0;
  color: #d1cec7;
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  line-height: 1.5;
}

.connection-section__note small {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: #96928a;
  font-size: 0.78rem;
  line-height: 1.45;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(54px, 6vw, 84px);
  border-top: 1px solid var(--ink);
  gap: 32px;
}

.final-cta__copy {
  max-width: 660px;
}

.final-cta h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.65rem);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.final-cta__copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #56534e;
  font-size: 0.95rem;
  line-height: 1.52;
}

.final-cta .button--primary {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--soft-line);
  gap: 32px;
}

.site-footer__identity,
.site-footer__contacts {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-footer p {
  margin: 0;
  color: #74716b;
  font-size: 0.72rem;
}

.site-footer__copyright {
  color: var(--ink) !important;
  font-weight: 600;
  white-space: nowrap;
}

.site-footer__contacts {
  font-style: normal;
}

.site-footer__contacts a {
  color: #5f5c56;
  font-size: 0.72rem;
  text-decoration-color: #b9b5ad;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.site-footer__contacts a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__contacts a:hover {
    color: var(--ink);
    text-decoration-color: var(--ink);
  }
}

.connection-section [data-connection-reveal],
.final-cta {
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.connection-section.is-animated [data-connection-reveal],
.final-cta.is-animated {
  opacity: 0;
  transform: translateY(20px);
}

.connection-section.is-animated.is-visible [data-connection-reveal],
.final-cta.is-animated.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.connection-section.is-animated .connection-step:nth-child(1) {
  transition-delay: 110ms;
}

.connection-section.is-animated .connection-step:nth-child(2) {
  transition-delay: 200ms;
}

.connection-section.is-animated .connection-step:nth-child(3) {
  transition-delay: 290ms;
}

.connection-section.is-animated .connection-section__note {
  transition-delay: 390ms;
}

.final-cta.is-animated {
  transition-delay: 500ms;
}

@media (min-width: 1061px) {
  .phone {
    top: -16px;
  }

  .request-card {
    top: 211px;
  }

  .request-connector {
    top: 318px;
  }
}

@media (max-width: 1350px) {
  .hero {
    grid-template-columns: minmax(400px, 0.86fr) minmax(585px, 1.14fr);
    gap: 24px;
  }

  h1 {
    font-size: clamp(3.55rem, 4.7vw, 4.85rem);
  }

  .showcase {
    --phone-x: 39%;
  }

  .phone {
    transform: translateX(-50%) rotate(-0.7deg) scale(0.94);
  }

  .request-card {
    right: -5px;
    min-width: 265px;
    padding-inline: 20px;
  }

  .request-connector {
    left: calc(var(--phone-x) + 151px);
  }

}

@media (max-width: 1060px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .hero {
    grid-template-columns: minmax(330px, 0.76fr) minmax(490px, 1.24fr);
    min-height: 640px;
  }

  .hero__copy {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.8rem, 4.8vw, 3.65rem);
  }

  .button--primary {
    min-width: 280px;
  }

  .showcase {
    --phone-x: 35%;
    min-height: 620px;
  }

  .phone {
    top: -16px;
    transform: translateX(-50%) rotate(-0.7deg) scale(0.87);
  }

  .request-card {
    top: 204px;
    min-width: 238px;
    width: 47%;
    padding: 20px 17px 17px;
  }

  .request-card dl > div {
    grid-template-columns: 65px 1fr;
  }

  .request-connector {
    top: 314px;
    left: calc(var(--phone-x) + 139px);
  }

  .journey__item i {
    margin-inline: 8px;
  }

  .workflow {
    padding-block: 64px 58px;
  }

  .workflow__step--left,
  .workflow__step--right {
    margin-inline: 0;
  }

  .workflow__route {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 42px;
  }

  .manager-section {
    grid-template-columns: minmax(270px, 0.78fr) minmax(420px, 1.22fr);
    padding-block: 86px 104px;
    gap: 36px;
  }

  .manager-section__header h2 {
    font-size: clamp(2.55rem, 4.8vw, 3.45rem);
  }

  .manager-section__intro {
    font-size: 0.98rem;
  }

  .manager-benefits {
    margin-top: 46px;
  }

  .manager-benefits li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .manager-request dt,
  .manager-request dd {
    line-height: 1.18;
  }

  .manager-request {
    padding: 8px 10px;
  }

  .manager-actions span {
    min-height: 22px;
  }

  .manager-actions {
    gap: 3px;
  }

  .manager-section__visual {
    padding-bottom: 82px;
  }

  .manager-stats {
    right: -6px;
    bottom: 14px;
    width: 190px;
    padding: 16px;
  }

  .connection-section {
    padding-block: 82px 50px;
  }

  .connection-steps {
    gap: 26px;
  }

  .connection-visual {
    height: 276px;
  }

  .connection-step__heading {
    min-height: 154px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .process-brief,
  .setup-panel {
    padding-inline: 14px;
  }

  .connection-step__copy p {
    font-size: 0.875rem;
  }
}

@media (max-width: 820px) {
  body {
    background: var(--paper);
  }

  .site-header {
    min-height: 70px;
  }

  .wordmark {
    width: 8.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 0 36px;
    gap: 36px;
  }

  .hero__copy {
    padding: 70px 0 0;
  }

  .hero__message {
    max-width: 620px;
  }

  h1 {
    font-size: clamp(3.25rem, 10.5vw, 5.25rem);
  }

  .hero__lead {
    margin-block: 22px 28px;
  }

  .journey {
    margin-top: 62px;
  }

  .showcase {
    --phone-x: 45%;
    min-height: 680px;
  }

  .phone {
    top: 0;
    transform: translateX(-50%) rotate(-0.7deg) scale(1);
  }

  .request-card {
    top: 255px;
    right: 0;
    width: 305px;
  }

  .request-connector {
    top: 348px;
    left: calc(var(--phone-x) + 157px);
  }

  .workflow {
    padding-block: 56px 50px;
  }

  .workflow__header {
    margin-bottom: 42px;
  }

  .workflow__header h2 {
    font-size: clamp(2.45rem, 8.5vw, 3.65rem);
  }

  .workflow__route {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .workflow__step,
  .workflow__step--final {
    width: 100%;
    justify-self: stretch;
    margin-inline: 0;
  }

  .manager-section {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 76px 92px;
    gap: 64px;
  }

  .manager-section__copy {
    max-width: 680px;
  }

  .manager-section__header h2 {
    max-width: 650px;
    font-size: clamp(2.55rem, 8.5vw, 3.75rem);
  }

  .manager-section__intro {
    max-width: 600px;
  }

  .manager-benefits {
    max-width: 620px;
  }

  .manager-section__visual {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    padding: 0;
  }

  .manager-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 380px);
    margin: -34px 8px 0 auto;
  }

  .connection-section {
    padding-block: 76px 48px;
  }

  .connection-section__header h2 {
    max-width: 690px;
    font-size: clamp(2.55rem, 8.5vw, 3.75rem);
  }

  .connection-steps {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .connection-step {
    display: flex;
    padding-top: 20px;
  }

  .connection-step__heading {
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
  }

  .connection-visual {
    width: 100%;
    max-width: 640px;
    height: 292px;
    margin-top: 28px;
    margin-inline: auto;
  }

  .connection-step__copy {
    padding: 0;
  }

  .connection-step__copy p {
    font-size: 0.875rem;
  }

  .connection-section__note {
    margin-top: 56px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    min-height: 64px;
  }

  .wordmark {
    width: 7rem;
  }

  .brand-lockup__divider,
  .brand-lockup__tagline {
    display: none;
  }

  .button--contact {
    width: 100%;
    min-height: 56px;
    padding-inline: 22px;
  }

  .workflow {
    padding-block: 56px 44px;
  }

  .workflow__header {
    margin-bottom: 46px;
  }

  .workflow__label {
    margin-bottom: 15px;
    font-size: 0.6rem;
  }

  .workflow__header h2 {
    font-size: clamp(2rem, 11vw, 2.65rem);
    line-height: 1;
  }

  .workflow__intro {
    margin-top: 20px;
    font-size: 0.94rem;
  }

  .workflow__step {
    grid-template-columns: 52px minmax(0, 1fr);
    padding-block: 18px 16px;
    gap: 14px;
  }

  .workflow__icon {
    width: 38px;
    height: 38px;
  }

  .workflow__icon svg {
    width: 20px;
    height: 20px;
  }

  .workflow__copy h3 {
    font-size: 1.08rem;
  }

  .workflow__copy p {
    font-size: 0.875rem;
  }

  .manager-section {
    padding-block: 62px 74px;
    gap: 46px;
  }

  .manager-section__label {
    padding-bottom: 13px;
    font-size: 0.59rem;
  }

  .manager-section__header h2 {
    margin-top: 36px;
    font-size: clamp(2rem, 10.8vw, 2.65rem);
    line-height: 1;
  }

  .manager-section__intro {
    margin-top: 22px;
    font-size: 0.93rem;
  }

  .manager-benefits {
    margin-top: 40px;
  }

  .manager-benefits li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding-block: 17px 18px;
    gap: 10px;
  }

  .manager-benefits__number {
    font-size: 0.68rem;
  }

  .manager-benefits h3 {
    font-size: 1rem;
  }

  .manager-benefits p {
    margin-top: 6px;
    font-size: 0.875rem;
  }

  .manager-monitor__screen {
    min-height: 430px;
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    border-width: 5px;
    border-radius: 9px;
  }

  .manager-desktop__sidebar {
    display: none;
  }

  .manager-monitor__neck {
    height: 38px;
  }

  .manager-monitor__base {
    height: 6px;
  }

  .manager-desktop__search {
    min-height: 23px;
    margin: 5px;
    padding-inline: 6px;
    border-radius: 5px;
    font-size: 0.43rem;
    gap: 4px;
  }

  .manager-chat-list {
    padding: 0 3px 4px;
  }

  .manager-chat-preview {
    grid-template-columns: 20px minmax(0, 1fr) auto;
    padding: 5px 3px;
    border-radius: 5px;
    gap: 4px;
  }

  .manager-chat-preview:nth-child(4) {
    display: none;
  }

  .manager-avatar {
    width: 28px;
    font-size: 0.62rem;
  }

  .manager-chat-preview strong,
  .manager-desktop__chat-header strong {
    font-size: 0.75rem;
  }

  .manager-chat-preview small {
    font-size: 0.36rem;
  }

  .manager-chat-preview time {
    font-size: 0.32rem;
  }

  .manager-desktop__chat-header {
    min-height: 48px;
    padding-inline: 12px;
    gap: 7px;
  }

  .manager-desktop__chat-header small {
    font-size: 0.7rem;
  }

  .manager-desktop__back,
  .manager-desktop__menu {
    font-size: 0.75rem;
  }

  .manager-desktop__feed {
    padding: 12px;
    gap: 5px;
  }

  .manager-request {
    width: 96%;
    padding: 12px;
    border-radius: 8px;
  }

  .manager-request h3 {
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  .manager-request dl {
    gap: 3px;
  }

  .manager-request dl > div {
    grid-template-columns: minmax(76px, 0.88fr) minmax(0, 1.12fr);
    gap: 6px;
  }

  .manager-request dt,
  .manager-request dd {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .manager-request > time {
    margin-top: 4px;
    font-size: 0.68rem;
  }

  .manager-actions {
    width: 96%;
    gap: 4px;
  }

  .manager-actions span {
    min-height: 29px;
    padding-inline: 6px;
    border-radius: 6px;
    font-size: 0.75rem;
  }

  .manager-desktop__composer {
    min-height: 40px;
    margin: 0 10px 9px;
    padding-inline: 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .manager-stats {
    width: 100%;
    margin: 26px 0 0;
    padding: 17px;
  }

  .manager-stats h3 {
    font-size: 0.88rem;
  }

  .manager-stats dt,
  .manager-stats dd {
    font-size: 0.7rem;
  }

  .connection-section {
    padding-block: 62px 40px;
  }

  .connection-section__label {
    padding-bottom: 13px;
    font-size: 0.59rem;
  }

  .connection-section__header h2 {
    margin-top: 36px;
    font-size: clamp(2rem, 10.8vw, 2.65rem);
    line-height: 1;
  }

  .connection-section__intro {
    margin-top: 22px;
    font-size: 0.93rem;
  }

  .connection-steps {
    margin-top: 48px;
    gap: 48px;
  }

  .connection-step {
    display: flex;
    padding-top: 17px;
  }

  .connection-step__heading {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .connection-visual {
    width: 100%;
    max-width: 420px;
    height: 282px;
    margin-inline: auto;
    margin-top: 24px;
  }

  .connection-step__number {
    font-size: 3.25rem;
  }

  .connection-step__copy {
    padding: 0;
  }

  .connection-step__copy h3 {
    font-size: 1.18rem;
  }

  .connection-step__copy p {
    margin-top: 9px;
    font-size: 0.875rem;
  }

  .connection-section__note {
    margin-top: 48px;
    padding: 24px 21px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .connection-section__note-icon {
    width: 40px;
  }

  .connection-section__note h3 {
    font-size: clamp(1.32rem, 6.2vw, 1.5rem);
  }

  .connection-section__note p {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .connection-section__note small {
    margin-top: 11px;
    font-size: 0.74rem;
  }

  .setup-panel {
    top: 20px;
    min-height: 0;
    padding: 15px;
  }

  .setup-panel__header {
    padding-bottom: 10px;
  }

  .setup-service {
    min-height: 52px;
  }

  .setup-panel__add {
    min-height: 31px;
    margin-top: 8px;
  }

  .final-cta {
    padding-block: 48px 54px;
    gap: 24px;
  }

  .final-cta h2 {
    font-size: 1.52rem;
  }

  .final-cta__copy p {
    margin-top: 13px;
    font-size: 0.9rem;
  }

  .site-footer {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px 32px;
    gap: 22px;
  }

  .site-footer__identity,
  .site-footer__contacts {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer p,
  .site-footer__contacts a {
    max-width: 100%;
    font-size: 0.72rem;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .hero__copy {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3rem);
    line-height: 0.93;
  }

  .hero__lead {
    margin-block: 22px 27px;
    font-size: 1.1rem;
  }

  .button--primary {
    min-width: 0;
    width: 100%;
    min-height: 58px;
    padding-inline: 24px;
    font-size: 1rem;
    gap: 20px;
  }

  .hero__note {
    margin-top: 22px;
    font-size: 0.85rem;
  }

  .journey {
    margin-top: 48px;
  }

  .journey__item {
    font-size: 0.59rem;
  }

  .journey__item i {
    margin-inline: 6px;
  }

  .journey__item b {
    width: 7px;
    height: 7px;
    margin-left: 6px;
  }

  .showcase {
    --phone-x: 50%;
    min-height: 740px;
  }

  .phone {
    transform: translateX(-50%) rotate(-0.7deg) scale(0.9);
    transform-origin: 50% 0;
  }

  .request-card {
    top: auto;
    right: 50%;
    bottom: 2px;
    width: min(100%, 330px);
    min-width: 0;
    transform: translate(50%, -28px) scale(0.98);
  }

  .showcase.is-request-visible .request-card {
    transform: translate(50%, 0) scale(1);
  }

  .request-connector {
    display: none;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.55rem;
  }

  .showcase {
    min-height: 700px;
  }

  .phone {
    transform: translateX(-50%) rotate(-0.7deg) scale(0.83);
  }

  .workflow__header h2 {
    font-size: 1.95rem;
  }

  .manager-section__header h2 {
    font-size: 2rem;
  }

  .manager-request dt,
  .manager-request dd {
    font-size: 0.75rem;
  }

  .manager-actions span {
    min-height: 29px;
  }

  .connection-visual {
    height: 274px;
  }

  .process-chat {
    left: 3%;
  }

  .process-brief {
    right: 3%;
  }

  .launch-phone {
    height: 250px;
  }

  .launch-phone__summary {
    min-height: 112px;
  }

  .final-cta .button--primary {
    padding-inline: 16px;
    gap: 12px;
  }

  .site-footer {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .manager-section.is-animated [data-manager-reveal] {
    opacity: 1;
    transform: none;
  }

  .connection-section.is-animated [data-connection-reveal],
  .final-cta.is-animated {
    opacity: 1;
    transform: none;
  }
}
