:root {
    --ink: #28213d;
    --muted: #706880;
    --purple: #6d50e5;
    --lavender: #f0edff;
    --paper: #faf9ff;
    --line: #e5e1ed
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.45
}

a {
    color: inherit
}

.wrap {
    width: min(1120px, calc(100% - 48px));
    margin: auto
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 750
}

.brand img {
    width: 37px;
    height: 37px;
    border-radius: 9px
}

.nav a:not(.brand) {
    color: var(--purple);
    font-weight: 650;
    text-decoration: none
}

.hero {
    padding: 72px 0 96px;
    background: radial-gradient(circle at 74% 27%, #ded7ff 0, transparent 24%), linear-gradient(145deg, #f9f8ff, #f0edff)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center
}

.app-mark {
    display: flex;
    align-items: center;
    gap: 17px;
    font-weight: 700;
    color: var(--muted)
}

.app-mark img {
    width: 88px;
    height: 88px;
    border-radius: 21px;
    box-shadow: 0 17px 34px #4b39933b
}

.eyebrow {
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 800;
    color: var(--purple);
    margin: 38px 0 12px
}

.hero h1 {
    font-size: clamp(43px, 5.4vw, 72px);
    letter-spacing: -.055em;
    line-height: 1.02;
    margin: 0 0 24px;
    max-width: 620px
}

.lead {
    font-size: 21px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 560px;
    margin: 0
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 34px;
    padding: 14px 20px;
    background: var(--ink);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700
}

.phone {
    width: min(320px, 100%);
    margin: auto;
    padding: 10px;
    border-radius: 43px;
    background: #292438;
    box-shadow: 0 30px 70px #40327a45
}

.phone img {
    display: block;
    width: 100%;
    border-radius: 35px
}

.section {
    padding: 96px 0
}

.section h2 {
    font-size: clamp(32px, 4vw, 50px);
    letter-spacing: -.045em;
    line-height: 1.07;
    margin: 0
}

.section-intro {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    margin: 17px 0 46px
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: feature
}

.feature {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    counter-increment: feature
}

.num {
    display: block;
    color: var(--purple);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 36px
}

.num::before {
    content: counter(feature, decimal-leading-zero)
}

.feature h3 {
    font-size: 22px;
    margin: 0 0 10px
}

.feature p {
    color: var(--muted);
    margin: 0
}

.gallery {
    background: #fff
}

.shots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: start
}

.shot {
    margin: 0;
    text-align: center
}

.shot img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 17px 35px #302a4a1c
}

.shot figcaption {
    color: var(--muted);
    font-size: 15px;
    margin-top: 15px
}

.support {
    padding: 96px 0;
    background: var(--ink);
    color: #fff
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px
}

.support h2 {
    font-size: 45px;
    line-height: 1.06;
    letter-spacing: -.045em;
    margin: 0 0 18px
}

.support p {
    color: #d5cfeb;
    font-size: 18px;
    max-width: 520px
}

.contact {
    border: 1px solid #ffffff2b;
    border-radius: 20px;
    padding: 28px
}

.contact small {
    display: block;
    color: #c1b8df;
    font-weight: 700;
    letter-spacing: .08em
}

.contact a {
    display: block;
    margin-top: 12px;
    font-size: 21px;
    font-weight: 700;
    color: #fff
}

.footer {
    position: relative;
    padding: 31px 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    color: var(--muted);
    font-size: 14px
}

.footer>span:first-child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.footer a {
    color: var(--purple);
    text-decoration: none
}

@media(max-width:760px) {
    .wrap {
        width: min(100% - 36px, 560px)
    }

    .nav {
        height: 72px
    }

    .hero {
        padding: 44px 0 64px
    }

    .hero-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .phone {
        max-width: 280px
    }

    .features,
    .shots {
        grid-template-columns: 1fr
    }

    .shots {
        max-width: 310px;
        margin: auto;
        gap: 40px
    }

    .section,
    .support {
        padding: 68px 0
    }

    .footer {
        flex-direction: column
    }

    .footer>span:first-child {
        position: static;
        transform: none;
        text-align: center
    }

    .hero h1 {
        font-size: 48px
    }
}
.shots{grid-template-columns:repeat(2,minmax(0,1fr));gap:32px}.shot img{max-width:100%}
.shot:first-child img{width:auto;height:clamp(210px,22vw,258px)}
@media(min-width:761px){.shots{grid-template-columns:.38fr 1fr;align-items:start}.shot:first-child{grid-column:1;grid-row:span 3}.shot:first-child img{width:100%;height:auto;max-height:none}.shot:nth-child(n+2){grid-column:2}}@media(max-width:760px){.shots{grid-template-columns:1fr}.shot:first-child img{width:auto;height:clamp(210px,55vw,258px)}}
@media(min-width:761px){.shots{grid-template-columns:.52fr 1fr}}
@media(min-width:761px){.shots{grid-template-columns:.46fr 1fr}}
