@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("/landing/fonts/inter-cyrillic-400-700.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("/landing/fonts/inter-latin-400-700.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 800 900;
    font-display: swap;
    src: url("/landing/fonts/nunito-cyrillic-800-900.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 800 900;
    font-display: swap;
    src: url("/landing/fonts/nunito-latin-800-900.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    color-scheme: light;
    --grad-coral: #c851f0;
    --grad-orchid: #a055f4;
    --grad-violet: #7a5cff;
    --accent: #7a5cff;
    --accent-strong: #6946ee;
    --ink: #1d1b2e;
    --ink-soft: #5f5877;
    --paper: #f8f6ff;
    --surface: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.16);
    --surface-glass-strong: rgba(255, 255, 255, 0.24);
    --line-glass: rgba(255, 255, 255, 0.28);
    --chip-bg: #f1edff;
    --chip-ink: #6c4de0;
    --sender: #ffe3a1;
    --avatar-start: #ff8a5c;
    --avatar-end: #f65ca0;
    --radius-card: 26px;
    --radius-bubble: 24px;
    --radius-mark: 22px;
    --shadow-float: 0 30px 70px rgba(35, 8, 84, 0.38), 0 4px 14px rgba(35, 8, 84, 0.18);
    --shadow-soft: 0 12px 40px rgba(40, 10, 90, 0.18);
    --shadow-button: 0 14px 32px rgba(53, 19, 126, 0.24);
    --content-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    background:
        radial-gradient(900px 700px at 88% -10%, rgba(255, 255, 255, 0.16), transparent 60%),
        radial-gradient(1000px 800px at -10% 24%, rgba(46, 16, 120, 0.35), transparent 60%),
        linear-gradient(128deg, var(--grad-coral) 0%, var(--grad-orchid) 46%, var(--grad-violet) 100%);
}

body::after {
    position: fixed;
    z-index: 20;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

body > * {
    position: relative;
    z-index: 1;
}

::selection {
    color: var(--ink);
    background: var(--sender);
}

a {
    color: inherit;
}

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

.metrika-pixel {
    position: absolute;
    left: -9999px;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(var(--content-width), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(72px, 9vw, 128px);
}

.section--paper {
    color: var(--ink);
    background: var(--paper);
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 18px;
    padding: 5px 12px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.72;
}

.section__title {
    max-width: 780px;
    margin: 0;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.03;
}

.section__lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: currentColor;
    font-size: clamp(17px, 2vw, 20px);
    opacity: 0.76;
}

.mark {
    position: relative;
    display: grid;
    flex: none;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: var(--radius-mark);
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(40, 10, 90, 0.28);
}

.mark::after {
    position: absolute;
    bottom: -9px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    content: "";
    background: var(--surface);
    clip-path: polygon(0 0, 100% 0, 18% 100%);
}

.mark svg {
    z-index: 1;
    width: 34px;
    height: 34px;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--accent-strong);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    background: var(--surface);
    box-shadow: var(--shadow-button);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(53, 19, 126, 0.31);
}

.btn:active {
    transform: translateY(0);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.46);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.btn svg {
    width: 19px;
    height: 19px;
}

.bubble {
    position: relative;
    max-width: 440px;
    padding: 22px 28px 20px;
    border: 1px solid var(--line-glass);
    border-radius: var(--radius-bubble);
    border-bottom-left-radius: 8px;
    color: #ffffff;
    background: var(--surface-glass);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.bubble__sender {
    margin-bottom: 7px;
    color: var(--sender);
    font-size: 18px;
    font-weight: 700;
}

.bubble__text {
    padding-right: 44px;
    font-size: clamp(19px, 2.3vw, 27px);
    font-weight: 500;
    line-height: 1.34;
}

.bubble__time {
    position: absolute;
    right: 20px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.task-card {
    position: relative;
    padding: 28px 30px 26px;
    border: 1px solid rgba(93, 72, 154, 0.08);
    border-radius: var(--radius-card);
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow-float);
}

.task-card__row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.task-card__title {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 31px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.task-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-left: 60px;
}

.checkbox {
    display: grid;
    flex: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 3px solid var(--accent);
    border-radius: 14px;
    color: var(--accent);
}

.checkbox svg {
    width: 24px;
    height: 24px;
}

.checkbox__check {
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chip {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    color: var(--chip-ink);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    background: var(--chip-bg);
}

.chip svg {
    width: 19px;
    height: 19px;
}

.chip__avatar {
    display: grid;
    width: 28px;
    height: 28px;
    margin-left: -7px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--avatar-start), var(--avatar-end));
}

.chip--glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.flow-arrow {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.92);
}

.flow-arrow svg {
    width: 46px;
    height: 72px;
}

.flow-arrow__dash,
.flow-arrow__head {
    fill: none;
    stroke: currentColor;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.flow-arrow__dash {
    stroke-dasharray: 1 12;
}

.flow-arrow__head {
    stroke-linejoin: round;
}

.hero {
    display: grid;
    min-height: min(820px, 100svh);
    align-items: center;
    overflow: hidden;
    padding-block: clamp(48px, 7vw, 84px) clamp(86px, 10vw, 126px);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
}

.hero__intro {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero__copy {
    position: relative;
    z-index: 2;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #ffffff;
    text-decoration: none;
}

.wordmark__name {
    font-family: "Nunito", "Inter", sans-serif;
    font-size: clamp(36px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero__eyebrow {
    margin: clamp(44px, 7vw, 72px) 0 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: clamp(44px, 6vw, 68px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.99;
    text-wrap: balance;
    text-shadow: 0 2px 24px rgba(60, 20, 120, 0.25);
}

.hero__lead {
    max-width: 520px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
}

.hero__cta {
    position: relative;
    isolation: isolate;
    margin-top: 34px;
}

.hero__visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0;
    justify-self: end;
}

.hero__visual::before {
    position: absolute;
    z-index: -1;
    inset: 24% -12% 1% 14%;
    border-radius: 50%;
    content: "";
    background: rgba(72, 39, 177, 0.28);
    filter: blur(64px);
}

.hero__flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero__bubble {
    width: min(440px, 88%);
    align-self: flex-start;
}

.hero__arrow {
    margin: 18px 13% 18px auto;
    transform: rotate(-2deg);
}

.hero__task-card {
    width: min(520px, 100%);
    align-self: flex-end;
}

.hero__caption {
    max-width: 360px;
    margin: 24px 18px 0 auto;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    text-align: right;
}

@keyframes flow-reveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes arrow-reveal {
    from {
        opacity: 0;
        transform: translateY(-8px) rotate(-2deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(-2deg);
    }
}

@keyframes dash-travel {
    to {
        stroke-dashoffset: -26;
    }
}

@keyframes check-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes hero-cta-outline {
    0%,
    100% {
        opacity: 0.34;
        transform: scale(1);
    }

    50% {
        opacity: 0.78;
        transform: scale(1.018, 1.12);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero__bubble {
        opacity: 0;
        animation: flow-reveal 650ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
    }

    .hero__arrow {
        opacity: 0;
        animation: arrow-reveal 520ms ease 760ms forwards;
    }

    .hero__arrow .flow-arrow__dash {
        animation: dash-travel 900ms linear 760ms infinite;
    }

    .hero__task-card {
        opacity: 0;
        animation: flow-reveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 1180ms forwards;
    }

    .hero__task-card .checkbox__check {
        stroke-dasharray: 28;
        stroke-dashoffset: 28;
        animation: check-draw 460ms ease 1960ms forwards;
    }
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    align-items: end;
    gap: 48px;
}

.section-heading-row .section__lead {
    margin: 0 0 6px;
}

.how {
    margin-top: -42px;
    border-radius: 52px 52px 0 0;
    box-shadow: 0 -18px 58px rgba(54, 20, 123, 0.13);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 58px 0 0;
    padding: 0;
    list-style: none;
}

.step-card {
    position: relative;
    min-width: 0;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(108, 77, 224, 0.11);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 54px rgba(66, 37, 133, 0.09);
}

.step-card__topline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.step-card__number {
    color: var(--accent-strong);
    font-family: "Nunito", "Inter", sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.step-card__connector {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(122, 92, 255, 0.34) 0 5px, transparent 5px 11px);
}

.step-card__visual {
    display: grid;
    min-height: 160px;
    place-items: center;
    padding: 18px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.62), transparent 40%),
        linear-gradient(145deg, #eee8ff, #e2d8ff);
}

.step-card__title {
    margin: 24px 0 0;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.step-card__title code,
.benefit-card__copy code {
    color: var(--accent-strong);
    font: inherit;
}

.step-card__copy {
    margin: 12px 0 0;
    color: var(--ink-soft);
    font-size: 15px;
}

.mini-project {
    display: grid;
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(108, 77, 224, 0.09);
    border-radius: 18px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(76, 48, 151, 0.12);
}

.mini-project__avatars {
    display: flex;
}

.mini-project__avatars span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--avatar-start), var(--avatar-end));
}

.mini-project__avatars span + span {
    margin-left: -9px;
}

.mini-project__avatars span:nth-child(2) {
    background: linear-gradient(135deg, #8a6dff, #5d49d8);
}

.mini-project__avatars span:nth-child(3) {
    background: linear-gradient(135deg, #42c6bd, #268eae);
}

.mini-project strong,
.mini-project small,
.mini-done strong,
.mini-done small {
    display: block;
}

.mini-project strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-project small,
.mini-done small {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: 10px;
}

.mini-project > svg {
    width: 20px;
    color: var(--accent);
}

.step-card__visual--command {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    justify-items: stretch;
    gap: 8px;
}

.mini-command {
    justify-self: start;
    max-width: 100%;
    padding: 9px 12px;
    border-radius: 14px 14px 14px 5px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--grad-orchid), var(--grad-violet));
    box-shadow: 0 9px 22px rgba(91, 59, 177, 0.22);
}

.mini-command code {
    overflow-wrap: anywhere;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.mini-command__arrow {
    width: 48px;
    justify-self: center;
    color: rgba(108, 77, 224, 0.62);
    transform: rotate(90deg);
}

.mini-command__result {
    display: flex;
    max-width: 100%;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--ink);
    font-size: 11px;
    background: #ffffff;
    box-shadow: 0 9px 22px rgba(91, 59, 177, 0.12);
}

.mini-check {
    display: grid;
    flex: none;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 2px solid var(--accent);
    border-radius: 8px;
    color: #ffffff;
}

.mini-check--done {
    background: var(--accent);
}

.mini-check svg {
    width: 16px;
    height: 16px;
}

.mini-done {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(108, 77, 224, 0.09);
    border-radius: 18px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(76, 48, 151, 0.12);
}

.mini-done strong {
    font-size: 12px;
    text-decoration: line-through;
    text-decoration-color: rgba(29, 27, 46, 0.34);
}

.benefits {
    padding-top: 42px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 58px;
}

.benefit-card.task-card {
    min-height: 254px;
    padding: 28px;
    box-shadow: 0 18px 48px rgba(66, 37, 133, 0.1);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    color: var(--accent-strong);
    background: var(--chip-bg);
}

.benefit-card__icon svg {
    width: 25px;
    height: 25px;
}

.benefit-card__title {
    margin: 38px 0 0;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.benefit-card__copy {
    margin: 12px 0 0;
    color: var(--ink-soft);
    font-size: 15px;
}

@media (hover: hover) {
    .benefit-card.task-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 62px rgba(66, 37, 133, 0.15);
    }
}

.team {
    overflow: hidden;
    background:
        radial-gradient(700px 520px at 12% 52%, rgba(255, 255, 255, 0.13), transparent 66%),
        radial-gradient(820px 620px at 100% 100%, rgba(55, 21, 137, 0.32), transparent 62%),
        linear-gradient(128deg, #bd50ed 0%, #9654f4 48%, #765bfb 100%);
}

.team::before {
    position: absolute;
    top: 70px;
    right: -110px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
    box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.02), inset 0 0 0 68px rgba(255, 255, 255, 0.02);
}

.team .section__lead {
    color: rgba(255, 255, 255, 0.8);
}

.team-flow {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) 76px minmax(0, 1.1fr);
    align-items: center;
    gap: 24px;
    margin-top: 68px;
}

.mid-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
    margin-top: clamp(54px, 7vw, 82px);
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 34px;
    background: rgba(49, 22, 118, 0.18);
    box-shadow: 0 24px 62px rgba(45, 15, 111, 0.2);
    backdrop-filter: blur(12px);
}

.mid-cta__copy {
    display: grid;
    min-width: 0;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.mid-cta__command {
    display: grid;
    min-width: 82px;
    min-height: 58px;
    place-items: center;
    padding: 12px 16px;
    border-radius: 19px 19px 19px 7px;
    color: var(--accent-strong);
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(45, 15, 111, 0.2);
}

.mid-cta__title {
    margin: 0;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.mid-cta__text {
    max-width: 620px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
}

.mid-cta__button {
    min-width: 214px;
}

.chat-stack {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0;
}

.chat-stack__bubble {
    width: 88%;
    max-width: 330px;
    padding: 15px 18px 17px;
    border-radius: 18px;
    border-bottom-left-radius: 6px;
}

.chat-stack__bubble + .chat-stack__bubble {
    margin-top: -3px;
}

.chat-stack__bubble:nth-child(2) {
    align-self: flex-end;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 18px;
    transform: rotate(1.5deg);
}

.chat-stack__bubble:nth-child(3) {
    width: 94%;
    transform: rotate(-1deg);
}

.chat-stack__bubble:nth-child(4) {
    width: 76%;
    margin-left: 12%;
    transform: rotate(1deg);
}

.chat-stack__bubble .bubble__sender {
    margin-bottom: 3px;
    font-size: 13px;
}

.chat-stack__bubble .bubble__text {
    padding-right: 42px;
    font-size: 16px;
}

.chat-stack__bubble .bubble__time {
    right: 14px;
    bottom: 9px;
    font-size: 10px;
}

.flow-arrow--horizontal svg {
    width: 72px;
    height: 46px;
}

.team-flow__arrow {
    transform: rotate(-4deg);
}

.task-list-card {
    overflow: hidden;
    border: 1px solid rgba(93, 72, 154, 0.09);
    border-radius: 30px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: var(--shadow-float);
}

.task-list-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 24px 19px;
    border-bottom: 1px solid #eee9fa;
}

.task-list-card__header span,
.task-list-card__header strong {
    display: block;
}

.task-list-card__header > div > span {
    color: var(--ink-soft);
    font-size: 12px;
}

.task-list-card__header strong {
    margin-top: 2px;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.task-list-card__items {
    padding: 8px 18px 14px;
}

.task-list-card__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 16px 6px;
}

.task-list-card__item + .task-list-card__item {
    border-top: 1px solid #eee9fa;
}

.task-list-card__item > div {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.task-list-card__item strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-list-card__item .chip {
    flex: none;
    min-height: 31px;
    padding: 5px 10px;
    font-size: 11px;
}

.task-list-card__item .chip__avatar {
    width: 23px;
    height: 23px;
    font-size: 10px;
}

.control {
    overflow: hidden;
}

.control-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px minmax(250px, 0.72fr);
    align-items: center;
    gap: 22px;
    margin-top: 58px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(108, 77, 224, 0.1);
    border-radius: 38px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.9), transparent 44%),
        linear-gradient(145deg, #eee9ff, #ded4ff);
}

.control-card.task-card {
    padding: clamp(22px, 3vw, 30px);
    box-shadow: 0 24px 58px rgba(57, 30, 128, 0.2);
}

.control-card__label {
    margin: 0 0 16px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.control-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding-left: 60px;
}

.chip--action {
    min-height: 38px;
    padding-inline: 13px;
    border: 1px solid rgba(108, 77, 224, 0.11);
    font-size: 12px;
}

.control-flow__arrow {
    color: var(--accent);
}

.completed-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    border: 1px solid rgba(108, 77, 224, 0.1);
    border-radius: 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 44px rgba(57, 30, 128, 0.12);
}

.completed-card__icon {
    display: grid;
    flex: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--grad-orchid), var(--grad-violet));
}

.completed-card__icon svg {
    width: 23px;
}

.completed-card > div > strong,
.completed-card > div > span {
    display: block;
}

.completed-card strong {
    font-size: 15px;
    text-decoration: line-through;
    text-decoration-color: rgba(29, 27, 46, 0.34);
}

.completed-card div span {
    margin-top: 3px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
}

.section--lavender {
    color: var(--ink);
    background: #eee9ff;
}

.mini-app {
    overflow: hidden;
    padding-bottom: 86px;
}

.mini-app__grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(60px, 9vw, 120px);
}

.industry-demo {
    width: min(356px, 100%);
    margin-inline: auto;
    --industry-avatar-sprite: url("/landing/team-avatars-it.webp");
}

.industry-demo[data-industry-active="construction"] {
    --industry-avatar-sprite: url("/landing/team-avatars-construction.webp");
}

.industry-demo[data-industry-active="sales"] {
    --industry-avatar-sprite: url("/landing/team-avatars-sales.webp");
}

.industry-demo[data-industry-active="auto-service"] {
    --industry-avatar-sprite: url("/landing/team-avatars-auto-service.webp");
}

.industry-demo__label {
    margin: 0 0 8px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.industry-switcher {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    margin-bottom: 14px;
    padding: 4px;
    border: 1px solid rgba(100, 79, 160, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 30px rgba(70, 46, 130, 0.1);
}

.industry-switcher__button {
    min-width: 0;
    min-height: 44px;
    padding: 7px 5px;
    border: 0;
    border-radius: 14px;
    color: var(--ink-soft);
    font: 700 11px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: transparent;
    cursor: pointer;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease,
        transform 100ms ease;
}

.industry-switcher__button.is-active {
    color: var(--accent-strong);
    background: #ffffff;
    box-shadow: 0 5px 14px rgba(73, 48, 137, 0.14);
}

@media (hover: hover) {
    .industry-switcher__button:hover:not(.is-active) {
        color: var(--ink);
        background: rgba(255, 255, 255, 0.58);
    }
}

.industry-switcher__button:active {
    transform: scale(0.97);
}

.industry-switcher__button:focus-visible {
    outline: 3px solid rgba(122, 92, 255, 0.32);
    outline-offset: 2px;
}

.phone {
    position: relative;
    width: 100%;
    margin-inline: auto;
    padding: 10px;
    border-radius: 48px;
    background: #241b3d;
    box-shadow: 0 38px 80px rgba(43, 20, 96, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.phone::before {
    position: absolute;
    z-index: -1;
    inset: 12% -22%;
    border-radius: 50%;
    content: "";
    background: rgba(122, 92, 255, 0.23);
    filter: blur(46px);
}

.phone__speaker {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 50%;
    width: 88px;
    height: 24px;
    border-radius: 999px;
    background: #241b3d;
    transform: translateX(-50%);
}

.phone__screen {
    position: relative;
    min-height: 624px;
    padding: 50px 0 18px;
    overflow: hidden;
    border-radius: 39px;
    color: var(--phone-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--phone-bg);
    --phone-bg: #ffffff;
    --phone-text: #29273b;
    --phone-hint: #8b879c;
    --phone-secondary: #f1eef7;
    --phone-accent: #7357e8;
    --phone-danger: #dc5265;
}

.phone [hidden] {
    display: none !important;
}

.phone__app-header {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 13px 12px;
    border-bottom: 1px solid var(--phone-secondary);
}

.phone__project-switcher,
.phone__account {
    display: flex;
    align-items: center;
}

.phone__project-switcher {
    min-width: 0;
    gap: 7px;
}

.phone__project-switcher strong {
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.phone__project-switcher > svg {
    flex: none;
    width: 9px;
    color: var(--phone-hint);
}

.phone__project-avatar,
.phone__user-avatar,
.phone-task__author,
.phone-task__assignee i {
    display: block;
    flex: none;
    border-radius: 50%;
    background-image: var(--industry-avatar-sprite);
    background-repeat: no-repeat;
    background-size: 200% 200%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.phone__project-avatar {
    width: 26px;
    height: 26px;
}

.phone__account {
    flex: none;
    gap: 6px;
}

.phone__user-avatar {
    width: 24px;
    height: 24px;
}

.phone [data-avatar="portrait-1"] {
    background-position: 0 0;
}

.phone [data-avatar="portrait-2"] {
    background-position: 100% 0;
}

.phone [data-avatar="portrait-3"] {
    background-position: 0 100%;
}

.phone [data-avatar="portrait-4"] {
    background-position: 100% 100%;
}

.phone__folders {
    position: relative;
    display: flex;
    gap: 15px;
    padding: 12px 14px 11px;
    overflow: hidden;
    border-bottom: 1px solid var(--phone-secondary);
}

.phone__folder {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--phone-text);
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

.phone__folder b {
    padding: 2px 5px;
    border-radius: 999px;
    color: var(--phone-hint);
    font-size: 9px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    background: color-mix(in srgb, var(--phone-hint) 10%, transparent);
}

.phone__folder--active {
    color: var(--phone-accent);
}

.phone__folder--active b {
    color: var(--phone-accent);
    background: color-mix(in srgb, var(--phone-accent) 10%, transparent);
}

.phone__folder--active::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: var(--phone-accent);
}

.phone__task-filters {
    display: flex;
    gap: 5px;
    padding: 8px 12px 7px;
}

.phone__task-filters > span {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 4px;
    padding: 5px 5px 5px 7px;
    border: 1px solid color-mix(in srgb, var(--phone-hint) 46%, transparent);
    border-radius: 12px;
    color: var(--phone-text);
    font-size: 9px;
    line-height: 1;
    white-space: nowrap;
}

.phone__task-filters svg {
    flex: none;
    width: 8px;
    height: 8px;
    color: var(--phone-hint);
}

.phone__tasks {
    padding: 0 8px 70px;
}

.phone-task {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 11px 6px 0;
}

.phone-task__checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid color-mix(in srgb, var(--phone-accent) 55%, transparent);
    border-radius: 3px;
}

.phone-task__body {
    min-width: 0;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--phone-secondary);
}

.phone-task:last-child .phone-task__body {
    border-bottom: 0;
}

.phone-task__title-row {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.phone-task__author {
    width: 22px;
    height: 22px;
}

.phone-task__title-row strong {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
}

.phone-task__title-row p {
    display: -webkit-box;
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--phone-hint);
    font-size: 10px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.phone-task__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.phone-task__tag {
    display: inline-flex;
    min-height: 20px;
    align-items: center;
    gap: 3px;
    padding: 3px 5px;
    border: 1px solid color-mix(in srgb, var(--phone-hint) 18%, transparent);
    border-radius: 10px;
    color: var(--phone-text);
    font-size: 8px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    white-space: nowrap;
}

.phone-task__tag svg {
    width: 11px;
    height: 11px;
}

.phone-task__tag--due {
    color: var(--phone-accent);
}

.phone-task__tag--overdue {
    color: var(--phone-danger);
}

.phone-task__assignee {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    color: var(--phone-hint);
    font-size: 10px;
}

.phone-task__assignee i {
    width: 16px;
    height: 16px;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08),
        0 0 0 1px color-mix(in srgb, var(--phone-hint) 18%, transparent);
}

.phone__new-task {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--phone-accent);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--phone-accent) 36%, transparent);
}

.phone__new-task svg {
    width: 20px;
    height: 20px;
}

.mini-app__copy .section__lead {
    color: var(--ink-soft);
    opacity: 1;
}

.mini-app__list {
    display: grid;
    gap: 13px;
    margin: 28px 0 34px;
    padding: 0;
    color: var(--ink-soft);
    list-style: none;
}

.mini-app__list li {
    position: relative;
    padding-left: 29px;
}

.mini-app__list li::before {
    position: absolute;
    top: 0.48em;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 4px;
    content: "";
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(122, 92, 255, 0.12);
}

.btn--accent {
    color: #ffffff;
    background: var(--accent-strong);
}

.btn--accent:hover {
    background: #5e3cdb;
}

.pro {
    padding-top: 0;
}

.pro-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: clamp(32px, 5vw, 56px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 38px;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.19), transparent 31%),
        linear-gradient(128deg, #b649e4, #7758f8);
    box-shadow: 0 26px 70px rgba(62, 31, 135, 0.24);
}

.pro-card__badge {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    color: var(--sender);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.pro-card__badge svg {
    width: 36px;
}

.pro-card .section__eyebrow {
    margin-bottom: 12px;
}

.pro-card__title {
    max-width: 710px;
    margin: 0;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: clamp(28px, 4vw, 43px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.pro-card__copy {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.77);
}

.pro-card__spark {
    color: rgba(255, 227, 161, 0.8);
    font-size: 62px;
    line-height: 1;
    transform: rotate(12deg);
}

.final-cta {
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(620px 400px at 50% 100%, rgba(151, 87, 244, 0.42), transparent 72%),
        radial-gradient(480px 340px at 10% 18%, rgba(200, 81, 240, 0.22), transparent 70%),
        #21173f;
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.final-cta::before {
    top: -260px;
    left: 50%;
    width: 720px;
    height: 720px;
    transform: translateX(-50%);
}

.final-cta::after {
    top: -150px;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translateX(-50%);
}

.final-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta__mark {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
}

.final-cta .section__eyebrow {
    margin-bottom: 18px;
}

.final-cta__title {
    max-width: 820px;
    margin: 0;
    font-family: "Nunito", "Inter", sans-serif;
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.final-cta__copy {
    max-width: 600px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(17px, 2vw, 20px);
}

.final-cta__button {
    margin-top: 34px;
}

.site-footer {
    color: #ffffff;
    background: #18112e;
}

.site-footer__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    min-height: 120px;
    padding-block: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.wordmark--footer {
    gap: 11px;
    min-height: 44px;
    justify-self: start;
}

.wordmark--footer .mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
}

.wordmark--footer .mark::after {
    bottom: -5px;
    left: 7px;
    width: 12px;
    height: 12px;
}

.wordmark--footer .mark svg {
    width: 23px;
    height: 23px;
}

.wordmark--footer .wordmark__name {
    font-size: 24px;
}

.site-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.site-footer__links a {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    text-decoration: none;
    transition: color 160ms ease;
}

.site-footer__links a:hover {
    color: #ffffff;
}

.site-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    text-align: right;
}

a:focus-visible {
    border-radius: 8px;
    outline: 3px solid var(--sender);
    outline-offset: 4px;
}

.section--paper a:focus-visible,
.section--lavender a:focus-visible {
    outline-color: var(--accent-strong);
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero__copy {
        max-width: 680px;
    }

    .hero__visual {
        max-width: 620px;
        justify-self: center;
    }

    .section-heading-row {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 22px;
    }

    .section-heading-row .section__lead {
        margin: 0;
    }

    .steps {
        max-width: 680px;
        grid-template-columns: minmax(0, 1fr);
        margin-inline: auto;
    }

    .team-flow,
    .control-flow {
        width: 100%;
        max-width: 680px;
        grid-template-columns: minmax(0, 1fr);
        justify-items: stretch;
        margin-inline: auto;
    }

    .mid-cta {
        width: 100%;
        max-width: 680px;
        grid-template-columns: minmax(0, 1fr);
        margin-inline: auto;
    }

    .mid-cta__button {
        justify-self: start;
    }

    .chat-stack {
        width: 100%;
        max-width: 540px;
        margin-inline: auto;
    }

    .team-flow__arrow,
    .control-flow__arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .task-list-card,
    .control-card,
    .completed-card {
        width: 100%;
    }

    .completed-card {
        max-width: 430px;
        justify-self: center;
    }

    .mini-app__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mini-app__copy {
        order: -1;
        max-width: 680px;
    }

    .pro-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .pro-card__spark {
        position: absolute;
        top: 24px;
        right: 30px;
        opacity: 0.4;
    }

    .site-footer__row {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        padding-block: 34px;
    }

    .wordmark--footer {
        justify-self: center;
    }

    .site-footer__links {
        flex-wrap: wrap;
    }

    .site-footer__copyright {
        text-align: center;
    }
}

@media (min-width: 481px) and (max-width: 900px) {
    .container {
        width: min(var(--content-width), calc(100% - 48px));
    }

    .hero {
        padding-block: 46px 116px;
    }

    .hero__grid {
        gap: 72px;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 28px);
    }

    .section {
        padding-block: 68px;
    }

    .section__eyebrow {
        margin-bottom: 14px;
    }

    .section__title {
        font-size: clamp(32px, 10.6vw, 40px);
        line-height: 1.04;
    }

    .section__lead {
        font-size: 16px;
    }

    .hero {
        --hero-mobile-top-padding: 28px;
        --hero-mobile-bottom-guard: 64px;

        min-height: 100vh;
        min-height: 100svh;
        align-items: start;
        padding-block: var(--hero-mobile-top-padding) var(--hero-mobile-bottom-guard);
    }

    .hero__grid {
        align-content: start;
        gap: 0;
    }

    .hero__intro {
        display: grid;
        min-height: calc(100vh - var(--hero-mobile-top-padding) - var(--hero-mobile-bottom-guard));
        min-height: calc(100svh - var(--hero-mobile-top-padding) - var(--hero-mobile-bottom-guard));
        grid-template-rows: auto minmax(auto, 1fr) auto;
        align-content: stretch;
    }

    .hero__copy {
        display: contents;
    }

    .hero .wordmark {
        grid-row: 1;
        align-self: start;
        justify-self: start;
    }

    .hero__message {
        grid-row: 2;
        align-self: center;
        padding-block: clamp(24px, 6svh, 44px);
    }

    .hero__visual {
        display: block;
        margin-top: clamp(100px, 16svh, 132px);
    }

    .hero__flow {
        min-height: 0;
        justify-content: flex-start;
        gap: 8px;
    }

    .wordmark {
        gap: 14px;
    }

    .mark {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .mark::after {
        bottom: -7px;
        width: 17px;
        height: 17px;
    }

    .mark svg {
        width: 29px;
        height: 29px;
    }

    .wordmark__name {
        font-size: 36px;
    }

    .hero .mark {
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .hero .mark svg {
        width: 27px;
        height: 27px;
    }

    .hero .wordmark__name {
        font-size: 34px;
    }

    .hero__eyebrow {
        margin: 0 0 8px;
        font-size: 9px;
    }

    .hero__title {
        max-width: none;
        font-size: clamp(38px, 11.7vw, 46px);
        line-height: 0.94;
        text-wrap: wrap;
    }

    .hero__lead {
        margin-top: 12px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        line-height: 1.38;
        text-wrap: pretty;
    }

    .hero__cta {
        grid-row: 3;
        min-height: 48px;
        width: 100%;
        align-self: end;
        margin-top: 0;
        padding-block: 11px;
    }

    .hero__cta::after {
        position: absolute;
        z-index: -1;
        inset: -3px;
        border: 1px solid rgba(255, 255, 255, 0.62);
        border-radius: inherit;
        content: "";
        pointer-events: none;
    }

    .hero__bubble {
        width: 96%;
        padding: 14px 15px 15px;
        border-radius: 20px;
        border-bottom-left-radius: 6px;
    }

    .hero__bubble .bubble__sender {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .hero__bubble .bubble__text {
        padding-right: 32px;
        font-size: 16px;
        line-height: 1.3;
    }

    .hero__bubble .bubble__time {
        right: 12px;
        bottom: 8px;
        font-size: 10px;
    }

    .bubble__sender {
        font-size: 15px;
    }

    .bubble__text {
        padding-right: 36px;
        font-size: 19px;
    }

    .bubble__time {
        right: 14px;
        bottom: 9px;
        font-size: 11px;
    }

    .hero__arrow {
        height: 40px;
        margin: 0 12% 0 auto;
    }

    .hero__arrow svg {
        width: 26px;
        height: 40px;
    }

    .hero__task-card {
        padding: 15px 15px 14px;
        border-radius: 22px;
    }

    .task-card__row {
        gap: 13px;
    }

    .task-card__title {
        font-size: 21px;
    }

    .checkbox {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .task-card__meta {
        gap: 7px;
        margin-top: 16px;
        padding-left: 0;
    }

    .chip {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 12px;
    }

    .hero__task-card .task-card__row {
        gap: 10px;
    }

    .hero__task-card .task-card__title {
        font-size: 18px;
    }

    .hero__task-card .checkbox {
        width: 32px;
        height: 32px;
        border-width: 2px;
        border-radius: 10px;
    }

    .hero__task-card .task-card__meta {
        gap: 6px;
        margin-top: 10px;
        padding-left: 42px;
    }

    .hero__task-card .chip {
        min-height: 30px;
        padding: 6px 9px;
        font-size: 11px;
    }

    .hero__task-card .chip svg {
        width: 16px;
        height: 16px;
    }

    .hero__task-card .chip__avatar {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .hero__caption {
        max-width: none;
        margin: 10px 0 0;
        font-size: 11px;
        line-height: 1.25;
        text-align: center;
    }

    .how {
        margin-top: -28px;
        border-radius: 32px 32px 0 0;
    }

    .steps,
    .benefits__grid {
        margin-top: 38px;
    }

    .step-card {
        padding: 18px;
        border-radius: 24px;
    }

    .step-card__visual {
        min-height: 150px;
        padding: 14px;
    }

    .step-card__title {
        margin-top: 20px;
        font-size: 21px;
    }

    .benefits {
        padding-top: 24px;
    }

    .benefits__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .benefit-card.task-card {
        min-height: 0;
        padding: 23px;
    }

    .benefit-card__title {
        margin-top: 28px;
    }

    .team::before {
        display: none;
    }

    .team-flow {
        margin-top: 42px;
    }

    .chat-stack {
        padding-block: 10px;
    }

    .chat-stack__bubble {
        width: 92%;
    }

    .task-list-card__header {
        align-items: flex-start;
        padding: 20px 18px 16px;
    }

    .task-list-card__header strong {
        font-size: 17px;
    }

    .task-list-card__items {
        padding-inline: 12px;
    }

    .task-list-card__item {
        gap: 10px;
    }

    .task-list-card__item > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .task-list-card__item strong {
        max-width: 100%;
        white-space: normal;
    }

    .control {
        padding-bottom: 74px;
    }

    .control-flow {
        gap: 14px;
        margin-top: 40px;
        padding: 18px;
        border-radius: 28px;
    }

    .control-card.task-card {
        padding: 21px 18px;
    }

    .control-card__actions {
        gap: 6px;
        margin-top: 18px;
        padding-left: 0;
    }

    .chip--action {
        min-height: 36px;
    }

    .completed-card {
        padding: 18px;
    }

    .mini-app {
        padding-bottom: 68px;
    }

    .mini-app__grid {
        gap: 50px;
    }

    .mini-app__list {
        margin-block: 24px 30px;
        font-size: 15px;
    }

    .mini-app__copy .btn {
        width: 100%;
    }

    .industry-demo {
        width: min(320px, 100%);
    }

    .industry-switcher {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phone {
        width: 100%;
        border-radius: 42px;
    }

    .phone__screen {
        min-height: 570px;
        padding-inline: 0;
        border-radius: 33px;
    }

    .pro {
        padding-top: 0;
    }

    .pro-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        padding: 28px 23px;
        border-radius: 30px;
    }

    .pro-card__badge {
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }

    .pro-card__spark {
        top: 22px;
        right: 22px;
        font-size: 46px;
    }

    .pro-card__title {
        font-size: 30px;
    }

    .pro-card__copy {
        font-size: 15px;
    }

    .mid-cta {
        gap: 24px;
        margin-top: 48px;
        padding: 25px 21px;
        border-radius: 28px;
    }

    .mid-cta__copy {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .mid-cta__command {
        min-width: 76px;
        min-height: 52px;
        justify-self: start;
        font-size: 16px;
    }

    .mid-cta__title {
        font-size: 27px;
    }

    .mid-cta__button {
        width: 100%;
    }

    .final-cta__mark {
        width: 64px;
        height: 64px;
    }

    .final-cta__title {
        font-size: clamp(39px, 12vw, 48px);
    }

    .final-cta__copy {
        font-size: 16px;
    }

    .final-cta__button {
        width: 100%;
    }

    .site-footer__row {
        gap: 20px;
    }

    .site-footer__links {
        gap: 4px 17px;
    }
}

@media (max-width: 360px) and (max-height: 720px) {
    .hero {
        --hero-mobile-top-padding: 20px;
        --hero-mobile-bottom-guard: 56px;

        padding-block: var(--hero-mobile-top-padding) var(--hero-mobile-bottom-guard);
    }

    .hero__grid {
        gap: 0;
    }

    .hero .mark {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .hero .mark::after {
        width: 14px;
        height: 14px;
    }

    .hero .mark svg {
        width: 24px;
        height: 24px;
    }

    .hero .wordmark__name {
        font-size: 30px;
    }

    .hero__eyebrow {
        margin: 16px 0 6px;
    }

    .hero__title {
        font-size: clamp(35px, 11.4vw, 42px);
    }

    .hero__lead {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.3;
    }

    .hero__cta {
        min-height: 44px;
        margin-top: 0;
        padding-block: 9px;
    }
}

@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
    .hero__cta::after {
        animation: hero-cta-outline 2.8s ease-in-out infinite;
    }
}

@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;
    }
}

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