﻿
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #12122a;
    --muted: #66667a;
    --line: #e8e8f0;
    --soft: #f7f7fb;
    --violet: #514cdb;
    --violet2: #796cff;
    --pink: #f3448b;
    --cyan: #43d4e6;
    --green: #19a974;
    --white: #fff;
    --shadow: 0 26px 80px rgba(34,32,85,.14)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Arial,sans-serif;
    color: var(--ink);
    line-height: 1.55;
    background: #fff;
    margin-top: -25px;
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px,calc(100% - 40px));
    margin: auto
}

.announcement {
    background: #111125;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px
}

    .announcement a {
        color: #bebaff;
        font-weight: 700
    }

.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(232,232,240,.85)
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 28px
}

.logo {
    width: 150px;
    display: flex;
    align-items: center
}

.menu {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: auto
}

.menu-item {
    position: relative
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 14px;
    border-radius: 999px;
    font-weight: 650;
    color: #292945;
    font-size: 15px
}

    .menu-link:hover, .menu-link.active {
        background: #efefff;
        color: var(--violet)
    }

.chev {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px)
}



.menu-item:hover .dropdown, .menu-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
}

.drop-link {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    padding: 11px;
    border-radius: 13px
}

    .drop-link:hover {
        background: var(--soft)
    }

.drop-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg,#eeedff,#fff);
    display: grid;
    place-items: center;
    color: var(--violet);
    font-weight: 800
}

.drop-link b {
    display: block;
    font-size: 14px;
    margin-bottom: 2px
}

.drop-link small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35
}

.demo-btn, .btn-primary {
    background: var(--violet);
    color: #fff !important;
    border-radius: 999px;
    padding: 13px 21px !important;
    font-weight: 750;
    box-shadow: 0 10px 26px rgba(81,76,219,.24)
}

    .demo-btn:hover, .btn-primary:hover {
        background: #413ccd;
        transform: translateY(-1px)
    }

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: var(--soft);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 22px
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background: radial-gradient(circle at 87% 10%,rgba(67,212,230,.24),transparent 25%), radial-gradient(circle at 68% 53%,rgba(243,68,139,.14),transparent 29%), linear-gradient(180deg,#fafaff 0%,#fff 100%)
}

    .hero:before {
        content: "";
        position: absolute;
        inset: -10% -20% auto 42%;
        height: 560px;
        background: linear-gradient(135deg,#514cdb,#8c62ff 45%,#ee4b91 72%,#46d7e5);
        transform: rotate(-11deg);
        border-radius: 100px;
        opacity: .08
    }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 64px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #efefff;
    color: #4842cb;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 5px rgba(243,68,139,.12)
}

h1 {
    font-size: clamp(44px,6vw,75px);
    line-height: 1.03;
    letter-spacing: -4px;
    margin: 22px 0
}

.gradient-text {
    background: linear-gradient(90deg,var(--violet),#8f61f5 48%,var(--pink));
    -webkit-background-clip: text;
    color: transparent
}

.lead {
    font-size: 19px;
    color: var(--muted);
    max-width: 630px
}

.hero-actions {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 750;
    border: 1px solid transparent;
    transition: .2s
}

.btn-secondary {
    border-color: #dcdce8;
    background: #fff
}

    .btn-secondary:hover {
        border-color: #bfbce9;
        color: var(--violet)
    }

.hero-proof {
    display: flex;
    gap: 24px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap
}

    .hero-proof span:before {
        content: "✓";
        color: var(--green);
        font-weight: 800;
        margin-right: 7px
    }

.store-window {
    background: #15152d;
    border-radius: 28px;
    padding: 15px;
    box-shadow: 0 35px 90px rgba(28,27,75,.27);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg)
}

.browser-bar {
    display: flex;
    gap: 6px;
    padding: 3px 4px 13px
}

    .browser-bar i {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #ff6c6c
    }

        .browser-bar i:nth-child(2) {
            background: #ffd166
        }

        .browser-bar i:nth-child(3) {
            background: #4dd599
        }

.store-preview {
    background: #fff;
    border-radius: 18px;
    overflow: hidden
}

.store-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid #eee
}

.store-brand {
    font-weight: 800;
    letter-spacing: -1px
}

.store-links {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #65657a
}

.store-hero {
    padding: 29px;
    background: linear-gradient(135deg,#f2efff,#fbf5ff);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
    align-items: center
}

    .store-hero h3 {
        font-size: 30px;
        line-height: 1.05;
        margin: 0 0 10px;
        letter-spacing: -1.4px
    }

    .store-hero p {
        font-size: 12px;
        color: #6d6b7d
    }

.mock-product {
    height: 164px;
    border-radius: 22px;
    background: linear-gradient(145deg,#6b60e8,#f45a96);
    position: relative
}

    .mock-product:before {
        content: "";
        position: absolute;
        width: 80px;
        height: 112px;
        border-radius: 38px 38px 18px 18px;
        background: #fff;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        box-shadow: 0 18px 35px rgba(35,24,90,.18)
    }

.product-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px;
    padding: 15px
}

.product-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 8px
}

.product-image {
    height: 62px;
    border-radius: 8px;
    background: linear-gradient(135deg,#e9e7ff,#f9dbe8)
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg,#d9f6f8,#ece9ff)
}

.product-card:nth-child(3) .product-image {
    background: linear-gradient(135deg,#fff1cc,#f6dff0)
}

.product-card b {
    font-size: 9px
}

.product-card span {
    display: block;
    color: #777;
    font-size: 8px
}

.section {
    padding: 100px 0
}

    .section.soft {
        background: var(--soft)
    }

.section-head {
    max-width: 760px;
    margin-bottom: 48px
}

.kicker {
    font-size: 13px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--violet);
    font-weight: 800
}

h2 {
    font-size: clamp(34px,4vw,52px);
    line-height: 1.08;
    letter-spacing: -2.4px;
    margin: 14px 0
}

.section-head p, .section-copy p {
    color: var(--muted);
    font-size: 17px
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    transition: .25s
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 50px rgba(35,34,82,.10)
    }

.icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,#ecebff,#fff);
    color: var(--violet);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 20px
}

.card h3 {
    font-size: 21px;
    margin: 0 0 9px
}

.card p {
    color: var(--muted);
    margin: 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.visual-card {
    background: linear-gradient(145deg,#17172c,#28275a);
    border-radius: 30px;
    padding: 25px;
    min-height: 420px;
    box-shadow: var(--shadow);
    color: #fff;
    position: relative;
    overflow: hidden
}

    .visual-card:after {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(105,97,255,.34);
        right: -70px;
        top: -80px
    }

.process {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 2
}

.process-step {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    padding: 13px
}

    .process-step b {
        width: 31px;
        height: 31px;
        border-radius: 10px;
        background: #fff;
        color: var(--violet);
        display: grid;
        place-items: center
    }

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 28px
}

.check-item {
    display: flex;
    gap: 10px;
    color: #404055
}

    .check-item:before {
        content: "✓";
        width: 23px;
        height: 23px;
        border-radius: 50%;
        background: #e8f8f2;
        color: var(--green);
        display: grid;
        place-items: center;
        font-weight: 900;
        flex: 0 0 auto
    }

.template-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.template {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: #fff
}

.template-preview {
    height: 235px;
    padding: 16px;
    background: #f8f7fc
}

.template-screen {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(30,30,75,.10);
    overflow: hidden
}

.template-top {
    height: 28px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px
}

    .template-top i {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #ddd
    }

.template-banner {
    height: 88px;
    background: linear-gradient(135deg,#665ae6,#f15b97)
}

.template:nth-child(2) .template-banner {
    background: linear-gradient(135deg,#161626,#55526d)
}

.template:nth-child(3) .template-banner {
    background: linear-gradient(135deg,#42cbdc,#6d65e7)
}

.template-products {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
    padding: 9px
}

    .template-products i {
        height: 54px;
        border-radius: 6px;
        background: #f0eff7
    }

.template-body {
    padding: 20px
}

    .template-body h3 {
        margin: 0 0 6px
    }

    .template-body p {
        margin: 0;
        color: var(--muted)
    }

.cta {
    padding: 50px;
    background: linear-gradient(135deg,#17172d,#393579 60%,#514cdb);
    border-radius: 34px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    overflow: hidden;
    position: relative
}

    .cta h2 {
        margin: 0 0 10px
    }

    .cta p {
        color: #d3d2ef;
        margin: 0
    }

    .cta .btn {
        background: #fff;
        color: #28255f;
        flex: 0 0 auto
    }

footer {
    background: #111125;
    color: #fff;
    padding: 70px 0 26px;
    margin-top: 100px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4,1fr);
    gap: 35px
}

.footer-desc {
    color: #aaaabd;
    max-width: 320px
}

.footer-col h4 {
    margin-top: 0
}

.footer-col a {
    display: block;
    color: #aaaabd;
    margin: 10px 0;
    font-size: 14px
}

    .footer-col a:hover {
        color: #fff
    }

.copyright {
    border-top: 1px solid #2b2b40;
    margin-top: 45px;
    padding-top: 24px;
    color: #8e8ea3;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .65s
}

    .reveal.visible {
        opacity: 1;
        transform: none
    }

@media(max-width:980px) {
    .menu {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 15px 20px;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch
    }

        .menu.open {
            display: flex
        }

    .mobile-toggle {
        display: block
    }

    .dropdown {
        position: static;
        width: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding-left: 12px
    }

    .menu-item.open .dropdown {
        display: block
    }

    .menu-link {
        justify-content: space-between
    }

    .hero-grid, .split {
        grid-template-columns: 1fr
    }

    .store-window {
        transform: none;
        max-width: 650px
    }

    .cards-3, .template-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media(max-width:640px) {
    .container {
        width: min(100% - 26px,1180px)
    }

    .nav {
        height: 70px
    }

    .logo {
        width: 128px
    }

    .menu {
        top: 70px
    }

    .hero {
        padding: 62px 0
    }

    .hero-grid {
        gap: 38px
    }

    h1 {
        font-size: 44px;
        letter-spacing: -2.5px
    }

    .lead {
        font-size: 17px
    }

    .section {
        padding: 72px 0
    }

    .cards-3, .template-grid {
        grid-template-columns: 1fr
    }

    .check-list {
        grid-template-columns: 1fr
    }

    .cta {
        padding: 32px;
        display: block
    }

        .cta .btn {
            margin-top: 24px
        }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

        .footer-grid > div:first-child {
            grid-column: 1/-1
        }

    .copyright {
        display: block
    }

    .store-links {
        display: none
    }
}
