@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f5f5f2;
    --surface: #ffffff;
    --text: #161616;
    --muted: #6e6e6e;
    --line: #deded9;
    --accent: #5b5cf6;
    --dark: #171717;
    --radius: 24px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-width: 0;
}

.page-scale {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    transform-origin: top center;
}

@media (max-width: 360px) {
    .page-scale {
        width: 360px;
        transform: scale(calc(100vw / 360));
    }
}

a {
    color: var(--accent);
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 64px), var(--container));
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
    padding-top: 30px;
    padding-bottom: 100px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(46px, 5.1vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.hero-text {
    max-width: 600px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--dark);
    color: white;
}

.button-primary:hover {
    background: var(--accent);
}

.button-secondary {
    border-color: #d4d4cf;
}

.button-secondary:hover {
    border-color: var(--dark);
}

.hero-preview {
    min-width: 0;
}

.window {
    padding: 9px 9px 30px 9px;
    border: 6px solid #202020;
    border-radius: 27px;
    background: #e8e8e3;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    transform: rotate(1.2deg);

}

.window-bar {
    height: 31px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 8px;
}

.window-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c4c4bf;
}

.dashboard {
    display: grid;
    grid-template-columns: 78px 1fr;
    min-height: 480px;
    top: 22px;
    overflow: hidden;
    border-radius: 19px;
    background: #f9f9f7;
}

.sidebar {
    padding: 22px 14px;
    background: #202020;
}

.side-logo {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: #696aff;
    margin-bottom: 45px;
}

.side-line {
    width: 100%;
    height: 7px;
    border-radius: 10px;
    background: #484848;
    margin: 17px 0;
}

.side-line.active {
    background: #a3a3ff;
}

.dash-main {
    padding: 30px;
    min-width: 0;
}

.dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skeleton {
    border-radius: 6px;
    background: #d8d8d3;
}

.skeleton.title {
    width: 150px;
    height: 15px;
}

.skeleton.subtitle {
    width: 95px;
    height: 8px;
    margin-top: 9px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d8d8d3;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 35px;
}

.metric {
    min-width: 0;
    padding: 16px;
    border: 1px solid #e1e1dc;
    border-radius: 13px;
    background: white;
}

.metric span {
    display: block;
    color: #888;
    font-size: 9px;
}

.metric strong {
    display: block;
    margin: 8px 0 5px;
    font-size: 15px;
    white-space: nowrap;
}

.metric i {
    font-size: 8px;
    font-style: normal;
}

.up {
    color: #31a46c;
}

.chart-card {
    margin-top: 12px;
    padding: 18px;
    border: 1px solid #e1e1dc;
    border-radius: 13px;
    background: white;
}

.chart-title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
}

.chart-title b {
    color: #888;
    font-weight: 500;
}

.chart-card svg {
    width: 100%;
    height: 180px;
    margin-top: 15px;
}

.area {
    fill: url(#fill);
}

.line {
    fill: none;
    stroke: #5b5cf6;
    stroke-width: 4;
    vector-effect: non-scaling-stroke;
}

.statement {
    background: var(--dark);
    color: white;
    padding: 130px 0;
}

.statement-inner {
    max-width: 1000px;
}

.statement .eyebrow {
    color: #8d8eff;
}

.statement h2 {
    max-width: 900px;
    margin-bottom: 30px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.statement h2 span {
    color: #777;
}

.statement p:last-child {
    max-width: 650px;
    color: #a8a8a8;
    font-size: 17px;
    line-height: 1.65;
}

.partners-title h2 {
    font-size: clamp(42px, 6vw, 76px);
}

.section {
    padding-top: 130px;
    padding-bottom: 130px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}

.section-heading h2,
.result h2,
.contact h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.section-heading>p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.result {
    padding-top: 100px;
    padding-bottom: 100px;
}

.result-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    padding: clamp(35px, 6vw, 65px);
    border-radius: var(--radius);
    background: var(--accent);
    color: white;
}

.result .eyebrow {
    color: #c8c8ff;
}

.result h2 {
    font-size: clamp(38px, 4.5vw, 58px);
}

.result-items {
    display: grid;
    align-content: center;
    gap: 18px;
}

.result-items>div {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.result-items>div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.result-items strong,
.result-items span {
    display: block;
}

.result-items strong {
    margin-bottom: 6px;
    font-size: 16px;
}

.result-items span {
    color: #d7d7ff;
    font-size: 13px;
    line-height: 1.5;
}

.contact {
    padding: 120px 0;
    background: var(--dark);
    color: white;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr minmax(350px, 480px);
    gap: 100px;
    align-items: start;
}

.contact h2 {
    max-width: 650px;
}

.contact-desc,
.contact>.container>div>p:last-child {
    max-width: 570px;
    margin-top: 28px;
    margin-bottom: 0;
    color: #999;
    line-height: 1.6;
}

.contact .eyebrow {
    color: #8d8eff;
}

.direct-contact {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.direct-contact-title {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.direct-contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.direct-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
    background: transparent;
    border: none;
    outline: none;
    color: #a8a8a8;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    transition: color 0.25s ease;
    user-select: none;
}

.direct-item.email {
    z-index: 5;
}

.direct-item:hover {
    color: #5b5cf6;
}

.direct-item .direct-text {
    position: relative;
    transition: color 0.25s ease;
}

.direct-item:hover .direct-text {
    color: #5b5cf6;
}

.direct-item .direct-icon {
    flex-shrink: 0;
    color: #8d8eff;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.direct-item:hover .direct-icon {
    color: #5b5cf6;
    transform: scale(1.2);
}

.copy-float-notice {
    position: absolute;
    left: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    color: #39c16c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    z-index: 1000;
}

/* Скольжение: ease-out в остановку → пауза → ease-in в исчезновение */
@keyframes copySlide {
    0% {
        transform: translateY(-50%) translateX(0px);
        opacity: 0;
    }

    8% {
        transform: translateY(-50%) translateX(6px);
        opacity: 1;
    }

    18% {
        transform: translateY(-50%) translateX(10px);
        opacity: 1;
    }

    28% {
        transform: translateY(-50%) translateX(12px);
        opacity: 1;
    }

    38% {
        transform: translateY(-50%) translateX(14px);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) translateX(14px);
        opacity: 1;
    }

    62% {
        transform: translateY(-50%) translateX(16px);
        opacity: 0.95;
    }

    70% {
        transform: translateY(-50%) translateX(19px);
        opacity: 0.75;
    }

    78% {
        transform: translateY(-50%) translateX(23px);
        opacity: 0.5;
    }

    88% {
        transform: translateY(-50%) translateX(26px);
        opacity: 0.2;
    }

    100% {
        transform: translateY(-50%) translateX(30px);
        opacity: 0;
    }
}

.direct-item.copied .copy-float-notice {
    animation: copySlide 1.4s linear forwards;
}

.direct-item.copied .direct-text {
    color: #ffffff;
}

.direct-item.copied .direct-icon {
    color: #39c16c;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #404040;
    border-radius: 12px;
    outline: 0;
    resize: vertical;
    background: #242424;
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #7778ff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #686868;
}

.button-light {
    width: 100%;
    background: white;
    color: var(--dark);
}

.button-light:hover {
    background: #bfc0ff;
}

.form-note {
    margin: -3px 0 0;
    color: #666;
    font-size: 10px;
    line-height: 1.5;
}

.form-status {
    min-height: 18px;
    margin: 0;
    color: #a6ffcc;
    font-size: 12px;
}

.footer {
    background: var(--dark);
    color: #666;
    border-top: 1px solid #292929;
    padding: 25px 0;
    font-size: 11px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 950px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 70px;
    }

    .hero-copy {
        max-width: 800px;
    }

    .hero-preview {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-inner,
    .result-card {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .nav {
        display: none;
    }

    .hero {
        padding-top: 55px;
        padding-bottom: 75px;
        gap: 50px;
    }

    h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .window {
        transform: none;
    }

    .dashboard {
        grid-template-columns: 52px 1fr;
        min-height: 350px;
    }

    .sidebar {
        padding: 16px 10px;
    }

    .dash-main {
        padding: 18px;
    }

    .metric-grid {
        gap: 6px;
        margin-top: 22px;
    }

    .metric {
        padding: 10px;
    }

    .metric strong {
        font-size: 11px;
    }

    .chart-card svg {
        height: 120px;
    }

    .statement,
    .contact {
        padding: 85px 0;
    }

    .statement h2,
    .section-heading h2,
    .result h2,
    .contact h2 {
        font-size: 40px;
    }

    .section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .result {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .result-card {
        padding: 30px;
    }

    .contact-inner {
        gap: 50px;
    }

    .footer-inner {
        flex-direction: column;
    }
}

/* Dynamic interactions */
body {
    overflow-x: hidden;
}

.hero-copy {
    animation: heroIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-preview {
    animation: previewIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
}

.result-card {
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.35s,
        border-color 0.35s;
}

.metric {
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.window:hover {
    transform: rotate(0deg) translateY(-6px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.window {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button-primary {
    position: relative;
    overflow: hidden;
}

.button-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: transform 0.5s;
}

.button-primary:hover::after {
    transform: translateX(110%);
}

.floating-contact {
    position: fixed;
    z-index: 50;
    right: 28px;
    bottom: 48px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 58px;
    padding: 0 20px 0 23px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 35px rgba(91, 92, 246, 0.35);
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    animation: floatButton 3s ease-in-out infinite;
}

.floating-contact span {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 15px;
}

.floating-contact:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 45px rgba(91, 92, 246, 0.45);
    animation-play-state: paused;
}

.statement-inner {
    position: relative;
}

.statement-inner::after {
    content: '?';
    position: absolute;
    right: 2%;
    top: -40px;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(180px, 25vw, 360px);
    line-height: 1;
    font-weight: 800;
    pointer-events: none;
}

.statement h2 span {
    display: inline-block;
    color: #777;
    transition: color 0.4s;
}

.statement h2:hover span {
    color: #aaa;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes previewIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(4deg) scale(0.97);
    }

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

@keyframes floatButton {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 650px) {
    .floating-contact {
        right: 18px;
        bottom: 18px;
        min-height: 52px;
        padding: 0 17px 0 20px;
    }
}

/* Extra motion layer */
:root {
    --mx: 50%;
    --my: 50%;
}

body {
    background: radial-gradient(circle at var(--mx) var(--my), rgba(91, 92, 246, 0.055), transparent 25rem), var(--bg);
    transition: background 0.15s linear;
}

.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: 10%;
    border-radius: 50%;
    background: rgba(91, 92, 246, 0.07);
    filter: blur(60px);
    animation: blob 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    right: 1%;
    top: 3%;
    border: 1px solid rgba(91, 92, 246, 0.22);
    border-radius: 50%;
    animation: orbit 12s linear infinite;
    pointer-events: none;
}

.hero-copy,
.hero-preview {
    position: relative;
    z-index: 1;
}

.eyebrow {
    position: relative;
    display: inline-block;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 8px 1px 0;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 12%, transparent);
    animation: pulseDot 2s ease-in-out infinite;
}

.hero h1 {
    text-wrap: balance;
}

.hero-text {
    position: relative;
    padding-left: 20px;
}

.hero-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    border-radius: 4px;
    background: var(--accent);
    opacity: 0.45;
}

.window {
    position: relative;
}

.window::before {
    content: '';
    position: absolute;
    z-index: 4;
    width: 100px;
    height: 100px;
    right: -35px;
    top: -35px;
    border: 1px solid rgba(91, 92, 246, 0.3);
    border-radius: 50%;
    animation: orbit 10s linear infinite reverse;
}

.window::after {
    content: '';
    position: absolute;
    z-index: 4;
    width: 8px;
    height: 8px;
    right: 11%;
    top: -7%;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 25px var(--accent);
    animation: floatDot 4s ease-in-out infinite;
}

.dashboard {
    position: relative;
}

.dashboard::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-180px);
    animation: shine 5s ease-in-out infinite;
    pointer-events: none;
}

.metric {
    position: relative;
    overflow: hidden;
}

.metric::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.4s ease;
}

.metric:hover::after {
    width: 100%;
}

.chart-card {
    position: relative;
    overflow: hidden;
}

.chart-card::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 15px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: scanLine 3s ease-in-out infinite;
}

.statement {
    position: relative;
    overflow: hidden;
}

.statement::before,
.statement::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.statement::before {
    width: 500px;
    height: 500px;
    right: -180px;
    top: -150px;
    animation: orbit 18s linear infinite;
}

.statement::after {
    width: 250px;
    height: 250px;
    left: -100px;
    bottom: -120px;
    animation: orbit 12s linear infinite reverse;
}

.result-card {
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -130px;
    top: -210px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 0 50px rgba(255, 255, 255, 0.025),
        0 0 0 100px rgba(255, 255, 255, 0.018);
    animation: slowSpin 15s linear infinite;
}

.result-card>* {
    position: relative;
    z-index: 1;
}

.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    right: -300px;
    top: -250px;
    border-radius: 50%;
    background: rgba(91, 92, 246, 0.12);
    filter: blur(70px);
    animation: blob 10s ease-in-out infinite alternate;
}

.contact-inner {
    position: relative;
    z-index: 1;
}

.contact-form input,
.contact-form textarea {
    transition:
        border-color 0.25s,
        background 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
    background: #292929;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-contact {
    animation:
        floatButton 3s ease-in-out infinite,
        buttonGlow 2.5s ease-in-out infinite;
}

.floating-contact::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(91, 92, 246, 0.35);
    border-radius: inherit;
    animation: ring 2.5s ease-out infinite;
}

@keyframes blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 35px) scale(1.2);
    }
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.45);
    }
}

@keyframes floatDot {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 25px);
    }
}

@keyframes shine {

    0%,
    25% {
        transform: translateX(-180px);
    }

    55%,
    100% {
        transform: translateX(650px);
    }
}

@keyframes scanLine {

    0%,
    100% {
        transform: translateX(-30%);
        opacity: 0.2;
    }

    50% {
        transform: translateX(30%);
        opacity: 0.8;
    }
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 12px 35px rgba(91, 92, 246, 0.35);
    }

    50% {
        box-shadow: 0 15px 45px rgba(91, 92, 246, 0.55);
    }
}

@keyframes ring {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

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

.statement-partners {
    background: var(--dark);
    color: white;
    padding: 54px 0;
}

.statement-partners h2 {
    max-width: 900px;
    margin-bottom: 8px;
    font-size: clamp(42px, 6vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.statement-partners-inner {
    max-width: 1240px;
    padding: 0 16px;
}


.partners-title {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: #777;
}

.partners-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.partners-list svg {
    height: clamp(65px, 4vw, 85px);
    width: auto;
}

.partners-block {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    gap: 32px;
    width: 100%;
}

.partners-title {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: #777;
}

.partners-list {
    display: flex;
    align-items: center;
    gap: 32px 64px;
    flex: 1 1 auto;
    width: 100%;
    flex-wrap: wrap;
}



/* Scroll-driven process timeline */
.process-timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

.timeline-progress {
    position: absolute;
    left: 31px;
    top: 25px;
    bottom: 80px;
    width: 2px;
    overflow: hidden;
    background: #d7d7d2;
    border-radius: 3px;
}

.timeline-progress span {
    display: block;
    width: 100%;
    height: 0;
    border-radius: inherit;
    background: var(--accent);
    transition: height 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    min-height: 190px;
}

.step-marker {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid #d4d4cf;
    border-radius: 50%;
    background: var(--bg);
    color: #aaa;
    font-size: 11px;
    font-weight: 800;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-step.is-active .step-marker {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
    box-shadow:
        0 0 0 9px rgba(91, 92, 246, 0.09),
        0 8px 30px rgba(91, 92, 246, 0.2);
}

.process-step.is-active .step-content {
    transform: translateX(0);
    opacity: 1;
}

.step-content {
    padding: 7px 0 45px;
    opacity: 0.35;
    transform: translateX(20px);
    transition:
        opacity 0.7s,
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-content .number {
    display: none;
}

.step-content h3 {
    margin: 0 0 14px;
    font-size: 25px;
    letter-spacing: -0.035em;
}

.step-content p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.timeline-finish {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 3px;
    color: #999;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.35;
    transform: translateY(15px);
    transition:
        opacity 0.7s,
        transform 0.7s;
}

.timeline-finish.is-active {
    opacity: 1;
    transform: translateY(0);
    color: var(--text);
}

.finish-marker {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d7d7d2;
    color: white;
    font-size: 24px;
    transition: 0.5s;
}

.timeline-finish.is-active .finish-marker {
    background: #31a46c;
    box-shadow:
        0 0 0 9px rgba(49, 164, 108, 0.1),
        0 8px 30px rgba(49, 164, 108, 0.2);
}

@media (max-width: 650px) {
    .process-timeline {
        padding-left: 0;
    }

    .timeline-progress {
        left: 25px;
    }

    .process-step {
        grid-template-columns: 52px 1fr;
        gap: 18px;
        min-height: 220px;
    }

    .step-marker {
        width: 52px;
        height: 52px;
    }

    .step-content {
        padding-bottom: 55px;
    }

    .step-content h3 {
        font-size: 21px;
    }

    .finish-marker {
        width: 52px;
        height: 52px;
    }
}

.noscript-notice {
    padding: 12px 20px;
    background: #fff0d9;
    color: #6b4300;
    text-align: center;
    font:
        600 13px/1.4 Arial,
        sans-serif;
}

/* ===========================
   HERO AUTO ANIMATION
=========================== */

.hero-preview {
    perspective: 1800px;
}

.window {
    transform-style: preserve-3d;
    transition:
        transform 2s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 1.6s;
}

.dashboard {
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.metric {
    transition:
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 1.2s,
        opacity 1.2s;
}

.metric::after {
    width: 0;
    transition: width 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- запуск ---------- */

.hero-preview.animate .window {
    transform: rotateX(12deg) rotateY(-15deg) rotateZ(1deg) translateY(-12px);

    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.14);
}

.hero-preview.animate .dashboard {
    transform: translateZ(70px);
}

/* ---------- карточки ---------- */

.hero-preview .metric {
    opacity: 0.65;

    transform: translateY(18px) scale(0.97);
}

.hero-preview.animate .metric {
    opacity: 1;

    transform: translateY(0) scale(1);
}

.hero-preview.animate .metric:nth-child(1) {
    transition-delay: 0.15s;
}

.hero-preview.animate .metric:nth-child(2) {
    transition-delay: 0.3s;
}

.hero-preview.animate .metric:nth-child(3) {
    transition-delay: 0.45s;
}

/* ---------- полосы ---------- */

.hero-preview.animate .metric::after {
    width: 100%;
}

.hero-preview.animate .metric:nth-child(1)::after {
    transition-delay: 0.45s;
}

.hero-preview.animate .metric:nth-child(2)::after {
    transition-delay: 0.6s;
}

.hero-preview.animate .metric:nth-child(3)::after {
    transition-delay: 0.75s;
}

/* ---------- график ---------- */

.chart-card {
    transition:
        transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 1.6s;
}

.hero-preview .chart-card {
    opacity: 0.6;

    transform: translateY(20px);
}

.hero-preview.animate .chart-card {
    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.8s;
}

/* ---------- лёгкое дыхание ---------- */

@keyframes dashboardFloat {
    0% {
        transform: rotateX(12deg) rotateY(-15deg) rotateZ(1deg) translateY(-12px);
    }

    50% {
        transform: rotateX(13deg) rotateY(-13deg) rotateZ(0.8deg) translateY(-17px);
    }

    100% {
        transform: rotateX(12deg) rotateY(-15deg) rotateZ(1deg) translateY(-12px);
    }
}

.hero-preview.animate .window {
    animation: dashboardFloat 7s ease-in-out infinite 1.4s;
}

/* ===========================
   PRODUCT SHOWCASE
=========================== */

.product-showcase {
    overflow: hidden;
}

.product-scene {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 90px;

    align-items: center;
}

.product-scene+.product-scene {
    margin-top: 90px;
}

.product-scene.reverse {
    grid-template-columns: 1fr 430px;
}

.product-scene.reverse .product-copy {
    order: 2;
}

.product-scene.reverse .product-preview {
    order: 1;
}

.product-copy h3 {
    margin: 18px 0 24px;

    font-size: 56px;

    line-height: 0.95;

    letter-spacing: -0.04em;
}

.product-copy p {
    color: var(--muted);

    line-height: 1.8;

    font-size: 16px;

    max-width: 340px;
}

.product-number {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: var(--accent);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.product-number::after {
    content: '';

    width: 70px;

    height: 1px;

    background: var(--accent);

    opacity: 0.35;
}

.product-preview {
    perspective: 1800px;
}

.product-preview .window {
    transform: rotateX(14deg) rotateY(-16deg) rotateZ(1deg);

    transition: transform 0.8s;

    transform-style: preserve-3d;
}

.product-preview .window.animate {
    animation: productFloat 8s ease-in-out infinite;
}

.product-preview .window:hover {
    transform: rotateX(11deg) rotateY(-10deg) rotateZ(0.5deg) translateY(-10px);
}

.product-preview .dashboard {
    min-height: 560px;
}

.site .window {
    padding: 9px 0px 0px 0px;
}

.product-preview .metric {
    opacity: 0;

    transform: translateY(40px);
}

.product-preview.animate .metric {
    animation: metricReveal 0.8s forwards;
}

.product-preview.animate .metric:nth-child(1) {
    animation-delay: 0.7s;
}

.product-preview.animate .metric:nth-child(2) {
    animation-delay: 0.95s;
}

.product-preview.animate .metric:nth-child(3) {
    animation-delay: 1.2s;
}

.product-preview .chart-card {
    opacity: 0;

    transform: translateY(35px);
}

.product-preview.animate .chart-card {
    animation: metricReveal 1s forwards;

    animation-delay: 1.5s;
}

.product-preview .metric::after {
    width: 0;
}

.product-preview.animate .metric::after {
    animation: fillBar 0.9s forwards;
}

.product-preview.animate .metric:nth-child(1)::after {
    animation-delay: 1.2s;
}

.product-preview.animate .metric:nth-child(2)::after {
    animation-delay: 1.45s;
}

.product-preview.animate .metric:nth-child(3)::after {
    animation-delay: 1.7s;
}

.product-preview .line {
    stroke-dasharray: 900;

    stroke-dashoffset: 900;
}

.product-preview.animate .line {
    animation: drawGraph 2s forwards 1.6s;
}

.product-preview .area {
    opacity: 0;
}

.product-preview.animate .area {
    animation: fadeArea 0.8s forwards 2s;
}

@keyframes productFloat {

    0%,
    100% {
        transform: rotateX(14deg) rotateY(-16deg) rotateZ(1deg) translateY(0);
    }

    50% {
        transform: rotateX(15deg) rotateY(-13deg) rotateZ(0.8deg) translateY(-22px);
    }
}

@keyframes metricReveal {
    to {
        opacity: 1;

        transform: translateY(0);
    }
}

@keyframes fillBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes drawGraph {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeArea {
    to {
        opacity: 1;
    }
}

@media (max-width: 950px) {
    .product-scene {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .product-scene.reverse {
        grid-template-columns: 1fr;
    }

    .product-scene.reverse .product-copy,
    .product-scene.reverse .product-preview {
        order: initial;
    }

    .product-copy {
        max-width: 700px;
    }
}

@keyframes mobileBar {
    from {
        transform: scaleY(0.9);
        opacity: 0.8;
    }

    to {
        transform: scaleY(1.05);
        opacity: 1;
    }
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.site-hero {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(160px, 34%);

    align-items: center;

    gap: clamp(18px, 3vw, 36px);
}

@media (max-width: 650px) {
    .product-copy h3 {
        font-size: 42px;
    }
}

.crm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.crm-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.crm-subtitle {
    margin-top: 6px;
    font-size: 13px;
    color: #888;
}

.crm-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f4f4f4;
    font-size: 12px;
    font-weight: 700;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39c16c;
    box-shadow: 0 0 15px #39c16c;
}

.dot.animate,
.crm-status.animate .dot {
    animation: pulseDot 2s infinite;
}

.crm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.crm-stat {
    padding: 18px;
    background: white;
    border: 1px solid #e5e5df;
    border-radius: 16px;
}

.crm-stat small {
    display: block;
    color: #8a8a8a;
    margin-bottom: 8px;
}

.crm-stat strong {
    display: block;
    font-size: 24px;
    margin-bottom: 18px;
}

.progress {
    height: 6px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #5b5cf6;
}

.crm-stats.animate .progress span,
.crm-stat.animate .progress span,
.progress.animate span {
    animation: progressGrow 1.4s forwards 0.5s;
}

.crm-table {
    margin-top: 24px;
    border: 1px solid #e6e6e0;
    border-radius: 18px;
    overflow: hidden;
    background: white;
}

.crm-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 18px 22px;
    gap: 12px;
    border-bottom: 1px solid #efefea;
    font-size: 11px;
    align-items: center;
}

.crm-row:last-child {
    border-bottom: none;
}

.crm-row.head {
    font-weight: 800;
    background: #fafafa;
}

.ok {
    color: #2fa36d;
    font-weight: 700;
}

.wait {
    color: #d69628;
    font-weight: 700;
}

@keyframes progressGrow {
    from {
        width: 0;
    }

    to {
        width: var(--p);
    }
}

/*==============================
 PHONE
==============================*/

.mobile-preview {
    display: grid;
    place-items: center;
    perspective: 1800px;
    position: relative;
}

.phone {
    position: relative;

    width: 340px;
    height: 690px;

    padding: 14px;

    border-radius: 48px;

    background: linear-gradient(145deg, #2b2b2b, #111);

    box-shadow:
        0 45px 90px rgba(0, 0, 0, 0.18),
        inset 0 1px rgba(255, 255, 255, 0.08);

    transform: rotateX(13deg) rotateY(-18deg) rotateZ(2deg);

    transform-style: preserve-3d;
}

.phone.animate {
    animation: phoneFloat 8s ease-in-out infinite;
}

.phone::before {
    content: '';

    position: absolute;

    inset: 6px;

    border-radius: 42px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    pointer-events: none;
}

.phone::after {
    content: '';

    position: absolute;

    left: 10px;
    right: 10px;
    top: 10px;
    height: 45%;

    border-radius: 40px;

    background: linear-gradient(rgba(255, 255, 255, 0.18), transparent);

    opacity: 0.45;

    pointer-events: none;
}

.phone-screen {
    position: relative;

    overflow: hidden;

    width: 100%;
    height: 100%;

    padding: 20px;

    border-radius: 36px;

    background: #fafafa;
}

.phone-screen::before {
    content: '';

    position: absolute;

    right: -120px;
    top: -120px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(91, 92, 246, 0.08);

    filter: blur(40px);
}

.phone-notch {
    position: absolute;

    left: 50%;
    top: 20px;

    transform: translateX(-50%);

    width: 120px;
    height: 28px;

    border-radius: 20px;

    background: #050505;

    z-index: 10;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 20px;
    margin-bottom: 24px;
}

.phone-header strong {
    display: block;
    font-size: 20px;
}

.phone-header span {
    font-size: 12px;
    color: #8a8a8a;
}

.phone-avatar {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: linear-gradient(135deg, #5b5cf6, #8b8cff);
}

.phone-balance {
    padding: 22px;

    border-radius: 24px;

    color: white;

    background: linear-gradient(135deg, #5b5cf6, #7475ff);

    box-shadow: 0 20px 45px rgba(91, 92, 246, 0.28);
}

.phone-balance small {
    opacity: 0.75;
}

.phone-balance strong {
    display: block;

    margin: 10px 0 22px;

    font-size: 36px;
}

.phone-progress {
    height: 7px;

    border-radius: 999px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.2);
}

.phone-progress span {
    display: block;

    width: 0;

    height: 100%;

    border-radius: inherit;

    background: white;
}

.phone-balance.animate .phone-progress span,
.phone-progress.animate span {
    animation: phoneProgress 1.8s forwards 0.5s;
}

.phone-list {
    display: grid;

    gap: 8px;
}

.phone-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 16px;

    border-radius: 18px;

    background: white;

    border: 1px solid #ececec;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.phone-icon {
    width: 42px;
    height: 42px;

    border-radius: 14px;

    background: #5b5cf6;
}

.phone-icon.purple {
    background: #8b5cf6;
}

.phone-icon.green {
    background: #31a46c;
}

.phone-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.phone-lines strong {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.phone-lines span {
    margin: 0;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    color: #8f8f8f;
    font-size: 12px;
    line-height: 1.3;
    box-shadow: none !important;
}

.floating-card {
    position: absolute;

    padding: 16px 18px;

    border-radius: 18px;

    background: white;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    transform: translateY(0);
}

.floating-card.animate {
    animation: floatingCard 5s ease-in-out infinite;
}

.floating-card strong {
    display: block;

    font-size: 22px;
}

.floating-card span {
    color: #8a8a8a;

    font-size: 12px;
}

.floating-card.top {
    right: 0px;
    top: 60px;
}

.floating-card.top.wbp {
    right: -20px;
    top: 10px;
}

.floating-card.bottom {
    left: 0px;
    bottom: 90px;
}

.floating-card.bottom.wbp {
    left: -10px;
    bottom: 20px;
}

.floating-card.bottom.animate {
    animation-delay: 2s;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: rotateX(13deg) rotateY(-18deg) rotateZ(2deg) translateY(0);
    }

    50% {
        transform: rotateX(14deg) rotateY(-15deg) rotateZ(1deg) translateY(-22px);
    }
}

@keyframes phoneProgress {
    from {
        width: 0;
    }

    to {
        width: 82%;
    }
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/*==============================
 WEBSITE
==============================*/

.hero-copy button {
    margin-top: 18px;

    width: 130px;

    height: 42px;

    border: none;

    border-radius: 999px;

    background: #5b5cf6;
}

.chart-bars {
    height: 70px;

    display: flex;

    gap: 4px;

    align-items: flex-end;

    justify-content: space-between;
}

.chart-bars span {
    width: 14px;

    border-radius: 8px 8px 0 0;

    background: #5b5cf6;

    transform: scaleY(0);

    transform-origin: bottom;
}

.chart-bars.animate span,
.floating-card.animate .chart-bars span {
    animation: barGrow 1.2s forwards 0.4s;
}

.chart-bars span:nth-child(1) {
    height: 35%;
}

.chart-bars span:nth-child(2) {
    height: 70%;
}

.chart-bars span:nth-child(3) {
    height: 55%;
}

.chart-bars span:nth-child(4) {
    height: 95%;
}

.chart-bars span:nth-child(5) {
    height: 80%;
}

@keyframes browserFloat {

    0%,
    100% {
        transform: rotateX(10deg) rotateY(-14deg) rotateZ(1deg) translateY(0);
    }

    50% {
        transform: rotateX(11deg) rotateY(-11deg) rotateZ(0.5deg) translateY(-20px);
    }
}

@keyframes blobSpin {

    0%,
    100% {
        transform: rotate(18deg) scale(1);
    }

    50% {
        transform: rotate(28deg) scale(1.08);
    }
}

@keyframes popupFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.phone-stats {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin: 18px 0;
}

.mini-card {
    padding: 16px;

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.mini-card small {
    display: block;

    color: #888;

    margin-bottom: 8px;

    font-size: 11px;
}

.mini-card strong {
    display: block;

    font-size: 22px;

    margin-bottom: 12px;
}

.mini-bar {
    height: 6px;

    background: #ececec;

    border-radius: 20px;

    overflow: hidden;
}

.mini-bar span {
    display: block;

    height: 100%;

    width: 0;

    background: #5b5cf6;
}

.phone-stats.animate .mini-bar span,
.mini-card.animate .mini-bar span,
.mini-bar.animate span {
    animation: growBar 1.2s forwards 0.4s;
}




.phone-section-title {
    margin: 6px 0 12px;

    font-size: 13px;

    font-weight: 700;

    color: #777;
}

.phone-lines {
    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.phone-lines strong {
    font-size: 14px;

    font-weight: 700;

    color: #222;
}

.phone-lines span {
    font-size: 12px;

    color: #8b8b8b;
}

@keyframes growBar {
    to {
        width: var(--w);
    }
}

.phone-icon {
    position: relative;
    display: grid;
    place-items: center;
}

.phone-icon span {
    width: 18px;
    height: 18px;

    position: relative;
}

.phone-icon:not(.purple):not(.green) span::before {
    content: '';

    position: absolute;

    left: 2px;
    bottom: -1px;

    width: 3px;
    height: 12px;

    background: white;

    box-shadow:
        6px -4px 0 white,
        12px -8px 0 white;

    border-radius: 3px;
}

.phone-icon.purple span::before {
    content: '';

    position: absolute;

    left: 50%;
    top: 50%;

    width: 12px;
    height: 12px;

    background: white;

    transform: translate(-50%, -50%) rotate(45deg);

    border-radius: 2px;
}

.phone-icon.green span::before {
    content: '';

    position: absolute;

    left: 3px;
    top: 6px;

    width: 11px;
    height: 6px;

    border-left: 3px solid white;
    border-bottom: 3px solid white;

    transform: rotate(-45deg);
}

/*==================================
  LANDING MOCKUP
==================================*/

/*======================
        HEADER
======================*/

.site-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 420px;
}

.site-nav {
    margin: 0 auto;
}

.site-logo {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: linear-gradient(135deg, #5b5cf6, #8485ff);
    box-shadow: 0 12px 28px rgba(91, 92, 246, 0.22);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav span {
    width: 38px;
    height: 6px;
    border-radius: 999px;
    background: #d7d7d7;
}

/*======================
         HERO
======================*/

.site-hero {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(160px, 34%);

    align-items: center;

    gap: clamp(18px, 3vw, 36px);
}

.site-copy {
    position: relative;
}

.site-hero-title.big {
    margin: 0;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #171717;
}

.site-hero-title.big span {
    color: #5b5cf6;
}

.site-description {
    margin: 18px 0 0;
    color: #7d7d7d;
    font-size: 13px;
    line-height: 1.6;
}

.site-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 26px;

    width: 125px;
    height: 40px;

    border-radius: 999px;

    background: #5b5cf6;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 14px 28px rgba(91, 92, 246, 0.22);
}

/*======================
        ART
======================*/

.site-art {
    position: relative;

    width: 100%;
    max-width: 190px;

    aspect-ratio: 1;

    margin-inline: auto;
}

.art-circle {
    position: absolute;
    inset: 30px;

    border-radius: 50%;

    background: linear-gradient(135deg, #5b5cf6, #8b8cff);

    box-shadow: 0 30px 60px rgba(91, 92, 246, 0.18);

    transform: translateY(0) rotate(0deg);
}

.site-art.animate .art-circle,
.art-circle.animate {
    animation: floatCircle 7s ease-in-out infinite;
}

.art-circle::before {
    content: '';

    position: absolute;

    left: 50%;
    top: 48%;

    width: 24px;
    height: 14px;

    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;

    transform: translate(-50%, -50%) rotate(-45deg);

    border-radius: 2px;
}

.art-ring {
    position: absolute;
    inset: 0;

    border-radius: 50%;

    border: 1px solid rgba(91, 92, 246, 0.14);
}

.art-card {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 16px;

    border: 1px solid #ececec;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);

    color: #666;

    font-size: 12px;
    font-weight: 700;
}

.art-card.one {
    width: 70px;
    height: 46px;

    left: -8px;
    top: 28px;

    transform: translateY(0) rotate(-5deg);
}

.art-card.two {
    width: 60px;
    height: 60px;

    right: -8px;
    top: 60px;

    transform: translateY(0) rotate(5deg);
}

.art-card.three {
    width: 78px;
    height: 50px;

    left: 12px;
    bottom: 4px;

    transform: translateY(0) rotate(-5deg);
}

/*======================
      FLOAT BADGES
======================*/
/*======================
        CONTENT
======================*/

/*======================
       FEATURE CARD
======================*/

/*======================
        FOOTER
======================*/

.site-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding: 18px;
}

.wrapper-footer-ws {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 420px;
    justify-content: space-between;
    align-items: center;
}

.footer-line {
    font-size: 11px;
    font-weight: 600;
    color: #a1a1a1;
    letter-spacing: 0.02em;
}

.footer-dots {
    display: flex;
    gap: 8px;
}

.footer-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    transition: 0.3s;
}

.footer-dots span:first-child {
    background: #5b5cf6;
}

.footer-dots span:hover {
    transform: scale(1.25);
}

/*======================
        ANIMATIONS
======================*/

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes badgeFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes badgeFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(8px) rotate(-2deg);
    }
}

@keyframes featureFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/*======================
   SUBTLE MOTION
======================*/

.site-art.animate .art-card.one,
.art-card.one.animate {
    animation: badgeFloat1 7s ease-in-out infinite;
}

.site-art.animate .art-card.two,
.art-card.two.animate {
    animation: badgeFloat2 8s ease-in-out infinite;
}

.site-art.animate .art-card.three,
.art-card.three.animate {
    animation: badgeFloat1 9s ease-in-out infinite;
}

.site-hero-button {
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.site-hero-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 18px 38px rgba(91, 92, 246, 0.28);
}

/*==================================================
    WEBSITE PREVIEW — BASE
==================================================*/

/*==================================================
    HEADER
==================================================*/

.site-header {
    display: flex;
    align-items: center;

    gap: 1.5rem;
}

.site-logo {
    width: 34px;
    aspect-ratio: 1;

    border-radius: 11px;

    background: linear-gradient(135deg, #5b5cf6, #8788ff);

    flex-shrink: 0;
}

.site-nav {
    flex: 1;

    display: flex;
    justify-content: center;
    gap: 16px;
}

.site-nav span {
    width: clamp(22px, 5vw, 42px);

    height: 6px;

    border-radius: 999px;

    background: #d6d6d6;
}

/*==================================================
    HERO
==================================================*/

.site-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(200px, 32%);

    align-items: center;

    gap: clamp(18px, 3vw, 40px);
}

.site-copy {
    min-width: 0;
}

.site-hero-title {
    margin: 0;
}

.site-hero-title.big {
    font-size: clamp(26px, 2.5vw, 34px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -0.04em;

    color: #171717;
}

.site-hero-title span {
    color: #5b5cf6;
}

.site-description {
    margin-top: 18px;

    font-size: 13px;

    line-height: 1.7;

    color: #7b7b7b;

    max-width: 260px;
}

.site-hero-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 126px;
    height: 42px;

    margin-top: 24px;

    border-radius: 999px;

    background: #5b5cf6;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 15px 28px rgba(91, 92, 246, 0.24);

    transition: 0.25s;
}

.site-hero-button:hover {
    transform: translateY(-2px);
}

.site-page {
    background: #f9f9f7;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 16px;
    align-items: center;
}