.hero {
    position: relative;
    overflow: visible;
    padding: 2.8rem 0 10px;
    text-align: center;
    background: #f6f4ff;
}
.hero__blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(520px 280px at 12% 18%, rgba(167, 139, 250, .38), transparent 70%),
        radial-gradient(460px 260px at 88% 12%, rgba(147, 197, 253, .42), transparent 70%),
        radial-gradient(380px 220px at 70% 55%, rgba(196, 181, 253, .28), transparent 70%),
        radial-gradient(340px 200px at 22% 62%, rgba(233, 213, 255, .5), transparent 70%);
}
.hero__inner { position: relative; z-index: 1; }
.hero h1 {
    font-size: clamp(2.5rem, 6.4vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 600;
    margin: 0 auto 1rem;
}
.hero__lead {
    max-width: 560px;
    margin: 0 auto 1.7rem;
    color: var(--muted);
    font-size: 1.12rem;
}
.hero__ctas { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; }
.hero__stage {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 24px));
    margin: 3.4rem auto 0;
    overflow: visible;
    will-change: transform;
}
.hero-shot {
    width: calc(100% - 88px);
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e9ff;
    box-shadow: 0 28px 80px rgba(13, 6, 45, .12);
    max-height: min(560px, 58vw);
}
.hero-shot img {
    display: block;
    width: 100%;
    height: min(560px, 58vw);
    object-fit: cover;
    object-position: top center;
}
.desk-mock {
    background: #fff;
    overflow: hidden;
    text-align: left;
}
.desk-mock__bar {
    display: flex; align-items: center; gap: 1.2rem; padding: 1rem 1.3rem;
    border-bottom: 1px solid var(--border); color: var(--muted); font-weight: 600; font-size: .92rem;
}
.desk-mock__logo { color: var(--ink); display: inline-flex; gap: .45rem; align-items: center; }
.desk-mock__avatars { margin-left: auto; }
.desk-mock__body { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.2rem; background: #f7f8ff; }
.desk-col { background: #fff; border-radius: 16px; padding: .9rem; min-height: 210px; border: 1px solid #eef0fb; }
.desk-col strong { display: block; margin-bottom: .8rem; }
.desk-card { background: #fafbff; border: 1px solid var(--border); border-radius: 12px; padding: .8rem; margin-bottom: .7rem; }
.desk-card em { display: block; font-style: normal; font-weight: 600; }
.desk-card small { color: var(--accent); font-weight: 600; }
.desk-card--blue small { color: #2563eb; }
.desk-card--gold small { color: #d97706; }
.desk-card--green small { color: #16a34a; }
.float-chip {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    will-change: transform;
}
.float-chip__bob {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #fff;
    border-radius: 999px;
    padding: .5rem 1rem;
    box-shadow: 0 12px 32px rgba(13, 6, 45, .14);
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap;
    animation: hero-bob 3.8s ease-in-out infinite;
}
.float-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; flex-shrink: 0; }
.float-chip--tl { left: 0; top: 7%; }
.float-chip--tr { right: 0; top: -10px; }
.float-chip--tr i { background: #3b82f6; }
.float-chip--tr .float-chip__bob { animation-duration: 4.4s; animation-delay: .2s; }
.float-chip--ml { left: 0; top: 46%; }
.float-chip--ml i { background: #f59e0b; }
.float-chip--ml .float-chip__bob { animation-duration: 3.4s; animation-delay: .45s; }
.float-chip--mr { right: 0; top: 54%; }
.float-chip--mr i { background: #16a34a; }
.float-chip--mr .float-chip__bob { animation-duration: 4.8s; animation-delay: .1s; }
@keyframes hero-bob {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
}
@keyframes hero-stage-rise {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -56px, 0); }
}
@keyframes hero-chip-rise-tl { to { transform: translate3d(-8px, -28px, 0); } }
@keyframes hero-chip-rise-tr { to { transform: translate3d(8px, -40px, 0); } }
@keyframes hero-chip-rise-ml { to { transform: translate3d(-12px, -22px, 0); } }
@keyframes hero-chip-rise-mr { to { transform: translate3d(12px, -34px, 0); } }
@supports (animation-timeline: scroll()) {
    .hero__stage {
        animation: hero-stage-rise linear both;
        animation-timeline: scroll(root);
        animation-range: 0 480px;
    }
    .float-chip--tl {
        animation: hero-chip-rise-tl linear both;
        animation-timeline: scroll(root);
        animation-range: 0 480px;
    }
    .float-chip--tr {
        animation: hero-chip-rise-tr linear both;
        animation-timeline: scroll(root);
        animation-range: 0 480px;
    }
    .float-chip--ml {
        animation: hero-chip-rise-ml linear both;
        animation-timeline: scroll(root);
        animation-range: 0 480px;
    }
    .float-chip--mr {
        animation: hero-chip-rise-mr linear both;
        animation-timeline: scroll(root);
        animation-range: 0 480px;
    }
}
.hero .lp-btn--ghost { background: #fff; }
@media (prefers-reduced-motion: reduce) {
    .float-chip__bob,
    .hero__stage,
    .float-chip--tl,
    .float-chip--tr,
    .float-chip--ml,
    .float-chip--mr { animation: none; }
}

.pricing .lp-wrap,
.compare-sec .lp-wrap { width: min(1240px, calc(100% - 32px)); }
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.4rem;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.03em; line-height: 1.2; margin: 0 0 .7rem; }
.section-head p { margin: 0; color: var(--muted); }
.section-head--left { text-align: left; margin-left: 0; max-width: none; }
.pricing .section-head { margin-bottom: 2rem; }
.features, .why, .steps, .quotes, .pricing, .compare-sec, .faq { padding: 5rem 0; }
.features { background: linear-gradient(180deg, #fff, #f7f5ff); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: 0 10px 30px rgba(13,6,45,.04); }
.feature__icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: .8rem; }
.feature h3 { margin: 0 0 .4rem; }
.steps code { font-size: .85em; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: .1rem .35rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stats article { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.4rem; }
.stats h3 { font-size: 2.4rem; margin: 0 0 .4rem; letter-spacing: -.04em; }

.steps { background: #f7f5ff; }
.steps__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start; }
.steps__tabs { display: grid; gap: .8rem; }
.steps__tabs button {
    text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 18px;
    padding: 1.1rem 1.2rem; cursor: pointer; font-family: inherit;
}
.steps__tabs button.is-active { border-color: var(--accent); box-shadow: 0 10px 24px rgba(96,73,231,.12); }
.steps__tabs span { font-weight: 800; color: var(--accent); display: block; }
.steps__tabs strong { display: block; margin: .2rem 0 .3rem; font-size: 1.05rem; }
.steps__tabs small { color: var(--muted); }

.quotes__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.quotes article { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.4rem; }
.quotes article p { font-size: 1.05rem; }
.quotes article div { display: flex; flex-direction: column; color: var(--muted); }
.quotes strong { color: var(--ink); }

.price-toggle { display: inline-flex; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 4px; margin: 1.15rem auto 0; }
.price-toggle button { border: 0; background: transparent; padding: .55rem 1.2rem; border-radius: 999px; font-family: inherit; font-weight: 700; cursor: pointer; }
.price-toggle button.is-active { background: var(--ink); color: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 1.35rem 1.25rem 1.4rem; position: relative; display: flex; flex-direction: column; }
.price-card.is-popular { border-color: var(--accent); box-shadow: 0 18px 40px rgba(96,73,231,.12); }
.price-card__pop { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; padding: .28rem .6rem; border-radius: 999px; }
.price-card h3 { margin: 0 0 .25rem; font-size: 1.35rem; padding-right: 5.5rem; }
.price-card__for { display: inline-block; margin-bottom: .45rem; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.price-card p { color: var(--muted); font-size: .9rem; margin: 0; min-height: 3.2em; }
.price-card__amount { margin: 1rem 0 1rem; }
.price-card__amount strong { font-size: 1.7rem; letter-spacing: -.03em; }
.price-card__amount span { color: var(--muted); font-weight: 600; font-size: .85rem; }
.price-card h4 { margin: 1.15rem 0 .55rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.price-card li { display: flex; gap: .5rem; font-size: .88rem; line-height: 1.4; }
.price-card li i { color: var(--success); margin-top: .28rem; flex-shrink: 0; }
.price-footnote { text-align: center; margin: 1.6rem 0 0; }
.price-footnote a { color: var(--accent); font-weight: 700; text-decoration: none; }
.price-footnote a:hover { text-decoration: underline; }

.compare-sec { background: #f7f5ff; }
.compare-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 10px 30px rgba(13,6,45,.04); }
.compare { width: 100%; min-width: 820px; border-collapse: collapse; }
.compare th, .compare td { padding: .75rem .9rem; text-align: center; border-bottom: 1px solid var(--border); font-size: .9rem; vertical-align: middle; }
.compare thead th { background: #0d062d; color: #fff; font-size: .82rem; font-weight: 700; }
.compare thead th:first-child { text-align: left; border-radius: 20px 0 0 0; }
.compare thead th:last-child { border-radius: 0 20px 0 0; }
.compare thead th.is-popular { background: var(--accent); }
.compare__price { display: block; margin-top: .25rem; font-weight: 600; font-size: .75rem; opacity: .8; }
.compare tbody th[scope="row"] { text-align: left; font-weight: 600; color: var(--ink); background: #fff; position: sticky; left: 0; min-width: 220px; }
.compare__group th { text-align: left; background: #f7f5ff; color: var(--accent); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .65rem .9rem; }
.compare__yes { color: var(--success); }
.compare__no { color: #c5c0d8; font-weight: 700; }
.compare__val { font-weight: 700; font-size: .82rem; }

.faq { background: #f7f5ff; }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; }
.faq__list details { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1rem 1.1rem; margin-bottom: .7rem; }
.faq__list summary { cursor: pointer; font-weight: 700; }
.faq__list p { color: var(--muted); margin: .6rem 0 0; }

.cta-band { padding: 4.5rem 0 5.5rem; }
.cta-band__inner {
    background:
        radial-gradient(ellipse 70% 80% at 10% 20%, rgba(96, 73, 231, .35), transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 80%, rgba(96, 73, 231, .18), transparent 50%),
        var(--ink);
    color: #fff;
    border-radius: 32px;
    padding: clamp(1.6rem, 3vw, 2.6rem);
}
.cta-band__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
    gap: clamp(1.4rem, 3vw, 2.4rem);
    align-items: stretch;
}
.cta-band__copy { padding: .4rem .2rem; display: flex; flex-direction: column; justify-content: center; }
.cta-band__kicker {
    margin: 0 0 .55rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b7adf8;
}
.cta-band h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.45rem);
    letter-spacing: -.03em;
    margin: 0 0 .7rem;
    line-height: 1.15;
}
.cta-band__copy > p { color: #cfc8ea; margin: 0 0 1.4rem; max-width: 34rem; }
.cta-band__meta {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    display: grid;
    gap: .85rem;
}
.cta-band__meta li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}
.cta-band__meta i {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #ddd6ff;
    flex-shrink: 0;
}
.cta-band__meta span {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9f96d4;
    margin-bottom: .15rem;
}
.cta-band__meta a,
.cta-band__meta strong {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
}
.cta-band__meta a:hover { color: #ddd6ff; }
.lp-btn--ghost-light {
    align-self: flex-start;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
}
.lp-btn--ghost-light:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .4); }

.cta-band__panel {
    background: #fff;
    color: var(--ink);
    border-radius: 24px;
    padding: clamp(1.15rem, 2.4vw, 1.55rem);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
}
.cta-band__panel .flash { margin-bottom: 1rem; }
.contact-form { display: grid; gap: .85rem; }
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}
.contact-form__field { display: grid; gap: .35rem; min-width: 0; }
.contact-form__field > span {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b6488;
}
.contact-form__field em { font-style: normal; font-weight: 600; text-transform: none; letter-spacing: 0; color: #9b95b5; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e4e0f2;
    border-radius: 14px;
    padding: .85rem 1rem;
    font: inherit;
    color: var(--ink);
    background: #faf9ff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.45; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(96, 73, 231, .14);
}
.contact-form__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .15rem;
}
.contact-form__foot p {
    margin: 0;
    color: #8b84a8;
    font-size: .78rem;
    font-weight: 600;
    max-width: 16rem;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .price-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
    .features__grid, .stats, .quotes__grid, .faq__grid, .steps__grid, .desk-mock__body { grid-template-columns: 1fr 1fr; }
    .float-chip { display: none; }
    .hero-shot { width: 100%; }
    .cta-band__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .features__grid, .stats, .price-grid, .quotes__grid, .faq__grid, .steps__grid, .desk-mock__body { grid-template-columns: 1fr; }
    .desk-mock__bar span:nth-child(n+3):not(.desk-mock__avatars) { display: none; }
    .price-card h3 { padding-right: 0; }
    .contact-form__row { grid-template-columns: 1fr; }
    .contact-form__foot { flex-direction: column; align-items: stretch; }
    .contact-form__foot .lp-btn { width: 100%; justify-content: center; }
}

html.js-reveal .hero__inner h1,
html.js-reveal .hero__lead,
html.js-reveal .hero__ctas,
html.js-reveal .section-head,
html.js-reveal .feature,
html.js-reveal .stats article,
html.js-reveal .steps__grid > *,
html.js-reveal .quotes article,
html.js-reveal .price-toggle,
html.js-reveal .price-card,
html.js-reveal .price-footnote,
html.js-reveal .compare-wrap,
html.js-reveal .faq__list details,
html.js-reveal .cta-band__inner,
html.js-reveal .lp-footer__grid > * {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1),
        box-shadow .25s ease;
    transition-delay: var(--rv, 0ms);
}
html.js-reveal .hero__stage {
    opacity: 0;
    transition: opacity 1s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--rv, 0ms);
}
html.js-reveal .hero__inner h1 { transform: translate3d(0, 22px, 0); }
html.js-reveal .feature,
html.js-reveal .price-card,
html.js-reveal .quotes article,
html.js-reveal .stats article {
    transform: translate3d(0, 36px, 0) scale(.985);
}
html.js-reveal .is-in:not(.hero__stage) {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}
html.js-reveal .hero__stage.is-in { opacity: 1; }
html.js-reveal .feature.is-in:hover,
html.js-reveal .price-card.is-in:hover,
html.js-reveal .quotes article.is-in:hover,
html.js-reveal .stats article.is-in:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 18px 40px rgba(13, 6, 45, .1);
}
@media (prefers-reduced-motion: reduce) {
    html.js-reveal .hero__inner h1,
    html.js-reveal .hero__lead,
    html.js-reveal .hero__ctas,
    html.js-reveal .hero__stage,
    html.js-reveal .section-head,
    html.js-reveal .feature,
    html.js-reveal .stats article,
    html.js-reveal .steps__grid > *,
    html.js-reveal .quotes article,
    html.js-reveal .price-toggle,
    html.js-reveal .price-card,
    html.js-reveal .price-footnote,
    html.js-reveal .compare-wrap,
    html.js-reveal .faq__list details,
    html.js-reveal .cta-band__inner,
    html.js-reveal .lp-footer__grid > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
