:root {
    --ink: #19132c;
    --muted: #6d6880;
    --line: #e7e3ee;
    --paper: #ffffff;
    --soft: #f7f5fa;
    --violet-950: #100a24;
    --violet-900: #1c103d;
    --violet-800: #32106f;
    --violet-700: #5620b8;
    --violet-600: #7137da;
    --violet-500: #8d5bf0;
    --lime: #c9f64b;
    --lime-strong: #b7eb28;
    --green: #25d366;
    --orange: #ff9559;
    --shadow-sm: 0 16px 40px rgba(28, 16, 61, .08);
    --shadow-md: 0 28px 80px rgba(28, 16, 61, .15);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

:focus-visible {
    outline: 3px solid rgba(201, 246, 75, .9);
    outline-offset: 3px;
}

.site-shell {
    overflow: hidden;
}

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

.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(16, 10, 36, .84);
    backdrop-filter: blur(18px);
}

.topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: #eeeef1;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.brand-copy small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .62);
    font-size: .73rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    font-weight: 650;
    transition: color .18s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link {
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
    font-weight: 700;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 850;
    letter-spacing: -.01em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.button span[aria-hidden="true"] {
    transition: transform .18s ease;
}

.button:hover span[aria-hidden="true"] {
    transform: translateX(3px);
}

.button-small {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 12px;
    font-size: .86rem;
}

.button-large {
    min-height: 58px;
    padding: 0 26px;
}

.button-primary {
    color: #1b112c;
    background: var(--lime);
    box-shadow: 0 15px 34px rgba(201, 246, 75, .16);
}

.button-primary:hover {
    background: var(--lime-strong);
    box-shadow: 0 18px 42px rgba(201, 246, 75, .24);
}

.button-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
}

.button-outline:hover {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .09);
}

.button-light {
    color: var(--violet-950);
    background: #fff;
    box-shadow: 0 18px 40px rgba(16, 10, 36, .18);
}

.button-block {
    width: 100%;
}

.hero {
    position: relative;
    padding: 154px 0 94px;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(113, 55, 218, .12), transparent 42%),
        var(--violet-950);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
}

.hero-glow-one {
    top: 10%;
    left: -12%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(113, 55, 218, .32), transparent 68%);
}

.hero-glow-two {
    right: -9%;
    bottom: -22%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 91, 240, .24), transparent 67%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
    align-items: center;
    gap: 62px;
}

.offer-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--violet-700);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.offer-pill {
    padding: 9px 13px;
    color: #eee4ff;
    border: 1px solid rgba(201, 246, 75, .2);
    border-radius: 999px;
    background: rgba(201, 246, 75, .08);
    letter-spacing: .08em;
}

.offer-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(201, 246, 75, .1);
}

.hero h1 {
    max-width: 720px;
    margin: 23px 0 24px;
    font-size: clamp(3.25rem, 5.65vw, 5.6rem);
    line-height: .94;
    letter-spacing: -.07em;
}

.hero h1 span {
    color: var(--lime);
}

.hero-lead {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.14rem;
    line-height: 1.75;
}

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

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 23px;
}

.hero-reassurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .64);
    font-size: .78rem;
    font-weight: 650;
}

.hero-reassurance i {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: var(--violet-950);
    border-radius: 50%;
    background: var(--lime);
    font-size: .68rem;
    font-style: normal;
    font-weight: 950;
}

.price-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.price-inline small,
.price-inline strong {
    display: block;
}

.price-inline small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .54);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-inline strong {
    color: var(--lime);
    font-size: 2.15rem;
    line-height: 1;
    letter-spacing: -.05em;
}

.price-inline strong sup {
    font-size: .72rem;
    letter-spacing: 0;
}

.price-inline strong span {
    color: rgba(255, 255, 255, .66);
    font-size: .78rem;
    letter-spacing: 0;
}

.price-inline p {
    margin: 0;
    padding-left: 24px;
    color: rgba(255, 255, 255, .52);
    border-left: 1px solid rgba(255, 255, 255, .12);
    font-size: .78rem;
    line-height: 1.55;
}

.hero-visual {
    position: relative;
    min-height: 610px;
    display: grid;
    align-items: center;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.orbit-one {
    inset: 5% 4% 3% 2%;
}

.orbit-two {
    inset: 16% 14% 12% 12%;
}

.app-window {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 30px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 40px 110px rgba(0, 0, 0, .34);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.app-topline,
.app-heading,
.customer-row {
    display: flex;
    align-items: center;
}

.app-topline {
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .86rem;
    font-weight: 900;
}

.app-brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    color: #347315;
    border-radius: 999px;
    background: #effbdc;
    font-size: .68rem;
    font-weight: 800;
}

.live-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #65b22d;
}

.app-heading {
    justify-content: space-between;
    padding: 26px 0 18px;
}

.app-heading small,
.app-heading strong {
    display: block;
}

.app-heading small {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
}

.app-heading strong {
    font-size: 1.2rem;
    letter-spacing: -.025em;
}

.app-menu {
    color: #9994a6;
    letter-spacing: 2px;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--soft);
}

.metric-card span,
.metric-card strong,
.metric-card small {
    display: block;
}

.metric-card span {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 750;
}

.metric-card strong {
    margin-top: 8px;
    font-size: 1.72rem;
    letter-spacing: -.05em;
}

.metric-card small {
    margin-top: 4px;
    color: #958fa3;
    font-size: .62rem;
}

.metric-main {
    color: #fff;
    border-color: var(--violet-700);
    background: linear-gradient(145deg, var(--violet-700), var(--violet-900));
}

.metric-main span,
.metric-main small {
    color: rgba(255, 255, 255, .68);
}

.customer-list {
    margin-top: 13px;
    border: 1px solid var(--line);
    border-radius: 19px;
    overflow: hidden;
}

.customer-row {
    gap: 12px;
    padding: 14px 15px;
    background: #fff;
}

.customer-row + .customer-row {
    border-top: 1px solid var(--line);
}

.avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: .65rem;
    font-weight: 900;
}

.avatar-purple {
    color: #5f2eb5;
    background: #eee6ff;
}

.avatar-green {
    color: #217c46;
    background: #e2f8ea;
}

.avatar-orange {
    color: #a24f23;
    background: #ffeadf;
}

.customer-info {
    min-width: 0;
    flex: 1;
}

.customer-info strong,
.customer-info small {
    display: block;
}

.customer-info strong {
    font-size: .76rem;
}

.customer-info small {
    margin-top: 3px;
    overflow: hidden;
    color: #8a8495;
    font-size: .6rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.action-chip {
    flex: 0 0 auto;
    padding: 6px 9px;
    color: var(--violet-700);
    border-radius: 8px;
    background: #f1ebfc;
    font-size: .62rem;
    font-weight: 850;
}

.floating-message,
.floating-order {
    position: absolute;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.floating-message {
    right: -32px;
    bottom: 28px;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 17px;
    background: rgba(255, 255, 255, .96);
}

.message-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 12px;
    background: var(--violet-700);
}

.floating-message small,
.floating-message strong {
    display: block;
}

.floating-message small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: .62rem;
}

.floating-message strong {
    font-size: .72rem;
}

.message-check {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-left: auto;
    color: #235e2c;
    border-radius: 50%;
    background: #dcf8df;
    font-size: .65rem;
    font-weight: 900;
}

.floating-order {
    top: 54px;
    left: -28px;
    min-width: 185px;
    padding: 15px 17px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 17px;
    background: rgba(50, 16, 111, .94);
    backdrop-filter: blur(14px);
}

.floating-order span,
.floating-order strong,
.floating-order small {
    display: block;
}

.floating-order span {
    color: var(--lime);
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.floating-order strong {
    margin-top: 6px;
    font-size: .75rem;
}

.floating-order small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .58);
    font-size: .58rem;
}

.visual-caption {
    position: absolute;
    right: 8px;
    bottom: -16px;
    z-index: 3;
    margin: 0;
    color: rgba(255, 255, 255, .38);
    font-size: .64rem;
}

.pain-strip {
    color: #fff;
    background: var(--violet-700);
}

.pain-strip-grid {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 26px;
}

.pain-strip p,
.pain-strip strong {
    margin: 0;
}

.pain-strip p {
    color: rgba(255, 255, 255, .7);
    font-size: .86rem;
}

.pain-strip strong {
    font-size: .95rem;
}

.pain-strip a {
    justify-self: end;
    color: var(--lime);
    font-size: .78rem;
    font-weight: 850;
}

.section {
    padding: 108px 0;
}

.section-heading {
    max-width: 760px;
}

.section-heading.centered {
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2,
.value-intro h2,
.store-copy h2,
.experience-copy h2,
.pricing-copy h2,
.lead-copy h2,
.faq-heading h2 {
    margin: 16px 0 18px;
    font-size: clamp(2.35rem, 4.5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.section-heading p,
.value-intro p,
.store-copy > p,
.experience-copy p,
.pricing-copy > p,
.lead-copy > p,
.faq-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.problem-section {
    background: #fff;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.journey-card {
    position: relative;
    min-height: 330px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.journey-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #f5f1fb;
}

.journey-card.featured {
    color: #fff;
    border-color: var(--violet-700);
    background: var(--violet-700);
    box-shadow: 0 25px 60px rgba(86, 32, 184, .24);
}

.journey-card.featured::after {
    background: rgba(201, 246, 75, .09);
}

.journey-card.success {
    border-color: #dcebbd;
    background: #f7fce9;
}

.journey-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #b3aebd;
    font-size: .68rem;
    font-weight: 900;
}

.featured .journey-number {
    color: rgba(255, 255, 255, .52);
}

.journey-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 56px;
    border-radius: 18px;
    font-size: 1.4rem;
    font-weight: 900;
}

.icon-sale {
    color: var(--violet-700);
    background: #eee7fb;
}

.icon-spark {
    color: var(--violet-950);
    background: var(--lime);
}

.icon-chat {
    color: #217341;
    background: #ddf8e7;
}

.icon-return {
    color: #567b0a;
    background: #e5f6bb;
}

.journey-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 1.23rem;
    line-height: 1.22;
    letter-spacing: -.03em;
}

.journey-card p {
    position: relative;
    z-index: 2;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.65;
}

.journey-card.featured p {
    color: rgba(255, 255, 255, .7);
}

.value-section {
    color: #fff;
    background: var(--violet-950);
}

.value-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: start;
    gap: 78px;
}

.value-intro {
    position: sticky;
    top: 126px;
}

.eyebrow-light {
    color: var(--lime);
}

.value-intro p,
.experience-copy p,
.lead-copy > p {
    color: rgba(255, 255, 255, .68);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--lime);
    font-size: .88rem;
    font-weight: 850;
}

.value-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.value-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 246, 75, .34);
    background: rgba(255, 255, 255, .075);
}

.value-kicker {
    color: var(--lime);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.value-card h3 {
    margin: 20px 0 14px;
    font-size: 1.36rem;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.value-card > p {
    margin: 0;
    color: rgba(255, 255, 255, .57);
    font-size: .83rem;
    line-height: 1.65;
}

.mini-proof {
    margin-top: auto;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    background: rgba(0, 0, 0, .13);
}

.mini-proof span,
.mini-proof strong {
    display: block;
}

.mini-proof span {
    color: rgba(255, 255, 255, .44);
    font-size: .62rem;
}

.mini-proof strong {
    margin-top: 4px;
    font-size: .76rem;
}

.store-section {
    background: var(--soft);
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 104px;
}

.store-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.store-visual::before {
    content: "";
    position: absolute;
    inset: 10% 3%;
    border-radius: 50%;
    background: radial-gradient(circle, #e3d4fb, transparent 68%);
}

.store-phone {
    position: relative;
    z-index: 2;
    width: 310px;
    min-height: 560px;
    padding: 23px 18px 18px;
    border: 8px solid var(--violet-950);
    border-radius: 43px;
    background: #fff;
    box-shadow: 0 35px 80px rgba(42, 20, 82, .22);
    transform: rotate(-3deg);
}

.phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 72px;
    height: 5px;
    border-radius: 999px;
    background: var(--violet-950);
    transform: translateX(-50%);
}

.phone-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 3px 15px;
}

.phone-logo {
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 10px;
}

.phone-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-head strong,
.phone-head small {
    display: block;
}

.phone-head strong {
    font-size: .76rem;
}

.phone-head small {
    margin-top: 2px;
    color: var(--muted);
    font-size: .58rem;
}

.phone-cover {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    border-radius: 20px;
    background:
        radial-gradient(circle at 78% 18%, rgba(201, 246, 75, .55), transparent 23%),
        linear-gradient(145deg, var(--violet-700), var(--violet-950));
}

.phone-cover span {
    color: var(--lime);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.phone-cover strong {
    max-width: 190px;
    margin-top: 7px;
    font-size: 1.22rem;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.phone-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.phone-products > div {
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.phone-products > div > span {
    display: block;
    height: 85px;
    border-radius: 10px;
    background: linear-gradient(145deg, #e5dcf4, #f7f4fb);
}

.phone-products > div:nth-child(2) > span {
    background: linear-gradient(145deg, #e0edc3, #f6faec);
}

.phone-products strong,
.phone-products small {
    display: block;
}

.phone-products strong {
    margin-top: 8px;
    font-size: .58rem;
}

.phone-products small {
    margin-top: 3px;
    color: var(--violet-700);
    font-size: .52rem;
}

.phone-button {
    margin-top: 13px;
    padding: 12px;
    color: #fff;
    border-radius: 12px;
    background: var(--green);
    text-align: center;
    font-size: .66rem;
    font-weight: 900;
}

.store-bubble {
    position: absolute;
    z-index: 3;
    min-width: 155px;
    padding: 15px 17px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.store-bubble strong,
.store-bubble span {
    display: block;
}

.store-bubble strong {
    font-size: .82rem;
}

.store-bubble span {
    margin-top: 3px;
    color: var(--muted);
    font-size: .64rem;
}

.bubble-one {
    top: 115px;
    right: 0;
}

.bubble-two {
    left: 0;
    bottom: 120px;
}

.store-copy h2 {
    max-width: 580px;
}

.check-list {
    display: grid;
    gap: 15px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #454052;
    font-size: .9rem;
    font-weight: 750;
}

.check-list span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: var(--violet-950);
    border-radius: 50%;
    background: var(--lime);
    font-size: .72rem;
    font-weight: 950;
}

.experience-section {
    padding-top: 0;
    background: var(--soft);
}

.experience-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    padding: 68px;
    overflow: hidden;
    color: #fff;
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 10%, rgba(113, 55, 218, .65), transparent 38%),
        var(--violet-950);
}

.experience-quote {
    position: absolute;
    top: -62px;
    right: 32%;
    color: rgba(201, 246, 75, .07);
    font-family: Georgia, serif;
    font-size: 20rem;
    line-height: 1;
}

.experience-copy,
.experience-points {
    position: relative;
    z-index: 2;
}

.experience-copy h2 {
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.experience-points {
    display: grid;
    align-content: center;
}

.experience-points div {
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.experience-points div:last-child {
    border-bottom: 0;
}

.experience-points strong,
.experience-points span {
    display: block;
}

.experience-points strong {
    font-size: .94rem;
}

.experience-points span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
}

.pricing-section {
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    align-items: center;
    gap: 100px;
}

.pricing-copy h2 {
    max-width: 690px;
}

.pricing-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
    margin-top: 32px;
}

.pricing-notes span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4f495b;
    font-size: .84rem;
    font-weight: 750;
}

.pricing-notes i {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    color: var(--violet-950);
    border-radius: 50%;
    background: var(--lime);
    font-size: .62rem;
    font-style: normal;
    font-weight: 950;
}

.price-card {
    position: relative;
    padding: 44px;
    overflow: hidden;
    border: 1px solid #ded6eb;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(50, 16, 111, .16);
}

.price-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(201, 246, 75, .25);
}

.price-ribbon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 7px 10px;
    color: var(--violet-700);
    border-radius: 8px;
    background: #eee6fc;
    font-size: .62rem;
    font-weight: 950;
    letter-spacing: .1em;
}

.price-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 26px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 750;
}

.price-main {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}

.price-main sup {
    margin: 13px 6px 0 0;
    font-size: .9rem;
    font-weight: 900;
}

.price-main > strong {
    font-size: 6.8rem;
    line-height: .9;
    letter-spacing: -.09em;
}

.price-main > div {
    margin: 16px 0 0 8px;
}

.price-main b,
.price-main span {
    display: block;
}

.price-main b {
    font-size: 1.5rem;
}

.price-main span {
    margin-top: 3px;
    color: var(--muted);
    font-size: .7rem;
}

.price-equivalent {
    margin: 20px 0;
    padding-bottom: 20px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
}

.price-equivalent strong {
    color: var(--violet-700);
}

.price-after {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.price-after span {
    color: var(--muted);
    font-size: .72rem;
}

.price-after strong {
    font-size: .88rem;
}

.price-whatsapp {
    display: block;
    margin-top: 17px;
    color: var(--violet-700);
    text-align: center;
    font-size: .78rem;
    font-weight: 800;
}

.price-disclaimer {
    display: block;
    margin-top: 18px;
    color: #9993a1;
    text-align: center;
    font-size: .62rem;
    line-height: 1.5;
}

.lead-section {
    color: #fff;
    background: var(--violet-700);
}

.lead-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 85px;
}

.lead-copy h2 {
    max-width: 560px;
}

.lead-next {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.lead-next > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.lead-next > div > span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--violet-950);
    border-radius: 11px;
    background: var(--lime);
    font-size: .72rem;
    font-weight: 950;
}

.lead-next p,
.lead-next strong,
.lead-next small {
    margin: 0;
}

.lead-next strong,
.lead-next small {
    display: block;
}

.lead-next strong {
    font-size: .82rem;
}

.lead-next small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .57);
    font-size: .68rem;
}

.lead-form-wrap {
    padding: 42px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(16, 10, 36, .28);
}

.form-heading span,
.form-heading strong {
    display: block;
}

.form-heading span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 750;
}

.form-heading strong {
    margin-top: 6px;
    font-size: 1.45rem;
    letter-spacing: -.035em;
}

.lead-form-wrap form {
    margin-top: 27px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: #484152;
    font-size: .72rem;
    font-weight: 850;
}

.field label small {
    color: #9a94a3;
    font-weight: 650;
}

.field input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    color: var(--ink);
    border: 1px solid #ded9e5;
    border-radius: 12px;
    background: #fbfafc;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input::placeholder {
    color: #aaa5b1;
}

.field input:focus {
    border-color: var(--violet-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(113, 55, 218, .1);
}

.validation {
    display: block;
    margin-top: 5px;
    color: #bd3030;
    font-size: .67rem;
    font-weight: 700;
}

.validation-summary-errors {
    margin-top: 18px;
    padding: 12px 14px;
    color: #8f2222;
    border: 1px solid #f2c9c9;
    border-radius: 11px;
    background: #fff2f2;
    font-size: .74rem;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 18px;
}

.form-submit {
    min-height: 56px;
    border: 0;
}

.form-privacy {
    margin: 12px 0 0;
    color: #9993a2;
    text-align: center;
    font-size: .62rem;
    line-height: 1.5;
}

.faq-section {
    background: var(--soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
    gap: 90px;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.dark-link {
    color: var(--violet-700);
}

.faq-list {
    border-top: 1px solid #dcd7e3;
}

.faq-list details {
    border-bottom: 1px solid #dcd7e3;
}

.faq-list summary {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font-size: .96rem;
    font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--violet-700);
    border: 1px solid #d8d1e2;
    border-radius: 50%;
    transition: transform .18s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 690px;
    margin: -4px 50px 25px 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.7;
}

.final-cta {
    padding: 82px 0;
    color: #fff;
    background: var(--violet-950);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta-inner > div > span {
    color: var(--lime);
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.final-cta h2 {
    max-width: 720px;
    margin: 11px 0 0;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.footer {
    padding: 32px 0;
    color: rgba(255, 255, 255, .66);
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #0b0718;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.footer-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: #fff;
    font-size: .9rem;
}

.footer-brand span {
    margin-top: 2px;
    font-size: .65rem;
}

.footer-grid > p {
    margin: 0;
    font-size: .72rem;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .7rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
}

.mobile-conversion-bar {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, .9fr);
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 6vw, 4.7rem);
    }

    .hero-visual {
        min-height: 540px;
    }

    .floating-order {
        left: -10px;
    }

    .floating-message {
        right: -5px;
    }

    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journey-card {
        min-height: 285px;
    }

    .value-layout,
    .store-grid,
    .pricing-grid,
    .lead-card,
    .faq-grid {
        gap: 55px;
    }

    .store-grid {
        grid-template-columns: .9fr 1.1fr;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 84px 0;
    }

    .hero {
        padding: 132px 0 78px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

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

    .hero-visual {
        width: min(650px, 100%);
        min-height: 570px;
        margin: 0 auto;
    }

    .pain-strip-grid {
        grid-template-columns: 1fr auto;
    }

    .pain-strip p {
        display: none;
    }

    .value-layout,
    .store-grid,
    .pricing-grid,
    .lead-card,
    .faq-grid,
    .experience-card {
        grid-template-columns: 1fr;
    }

    .value-intro,
    .faq-heading {
        position: static;
    }

    .value-intro {
        max-width: 680px;
    }

    .store-grid {
        gap: 30px;
    }

    .store-visual {
        order: 2;
    }

    .store-copy {
        order: 1;
    }

    .experience-card {
        gap: 30px;
        padding: 52px;
    }

    .experience-points {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .experience-points div {
        border-right: 1px solid rgba(255, 255, 255, .12);
        border-bottom: 0;
    }

    .experience-points div:last-child {
        border-right: 0;
    }

    .price-card {
        width: min(500px, 100%);
    }

    .lead-card {
        align-items: start;
    }

    .lead-copy {
        max-width: 680px;
    }

    .faq-heading {
        max-width: 620px;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr auto;
    }

    .footer-grid > p {
        display: none;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 76px;
    }

    body {
        padding-bottom: 72px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar-inner {
        min-height: 68px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .brand-copy strong {
        font-size: .96rem;
    }

    .brand-copy small,
    .login-link {
        display: none;
    }

    .button-small {
        min-height: 38px;
        padding: 0 13px;
        font-size: .75rem;
    }

    .hero {
        padding: 112px 0 62px;
    }

    .offer-pill {
        padding: 8px 10px;
        font-size: .63rem;
    }

    .hero h1 {
        margin-top: 19px;
        font-size: clamp(2.8rem, 14vw, 4rem);
        line-height: .96;
    }

    .hero-lead {
        font-size: .98rem;
        line-height: 1.65;
    }

    .hero-actions {
        display: grid;
    }

    .button-large {
        width: 100%;
        min-height: 54px;
        padding: 0 18px;
        font-size: .86rem;
    }

    .hero-reassurance {
        display: grid;
        gap: 10px;
    }

    .price-inline {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .price-inline p {
        padding: 0;
        border: 0;
    }

    .hero-visual {
        min-height: 475px;
    }

    .app-window {
        padding: 15px;
        border-radius: 22px;
        transform: none;
    }

    .app-heading {
        padding: 20px 0 14px;
    }

    .app-heading strong {
        font-size: .92rem;
    }

    .metric-card {
        padding: 13px;
    }

    .metric-card span {
        min-height: 26px;
    }

    .metric-card strong {
        font-size: 1.3rem;
    }

    .customer-row {
        gap: 9px;
        padding: 11px;
    }

    .avatar {
        width: 31px;
        height: 31px;
    }

    .customer-info small {
        max-width: 150px;
    }

    .floating-order {
        top: -13px;
        left: 8px;
        min-width: 160px;
    }

    .floating-message {
        right: 4px;
        bottom: 2px;
        min-width: 260px;
        padding: 12px;
    }

    .visual-caption {
        display: none;
    }

    .pain-strip-grid {
        min-height: 70px;
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 13px 0;
        text-align: center;
    }

    .pain-strip a {
        justify-self: center;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading.centered {
        margin-bottom: 35px;
        text-align: left;
    }

    .section-heading h2,
    .value-intro h2,
    .store-copy h2,
    .experience-copy h2,
    .pricing-copy h2,
    .lead-copy h2,
    .faq-heading h2 {
        font-size: 2.35rem;
    }

    .section-heading p,
    .value-intro p,
    .store-copy > p,
    .experience-copy p,
    .pricing-copy > p,
    .lead-copy > p,
    .faq-heading p {
        font-size: .9rem;
        line-height: 1.68;
    }

    .journey-grid,
    .value-cards,
    .pricing-notes,
    .form-row,
    .experience-points {
        grid-template-columns: 1fr;
    }

    .journey-card {
        min-height: auto;
        padding: 23px;
    }

    .journey-icon {
        margin-bottom: 34px;
    }

    .value-layout {
        gap: 38px;
    }

    .value-card {
        min-height: 290px;
    }

    .store-visual {
        min-height: 560px;
    }

    .store-phone {
        width: 275px;
        min-height: 510px;
    }

    .bubble-one {
        right: -4px;
    }

    .bubble-two {
        left: -3px;
    }

    .experience-card {
        width: calc(100% - 28px);
        padding: 34px 25px;
        border-radius: 25px;
    }

    .experience-points {
        gap: 0;
    }

    .experience-points div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .price-card,
    .lead-form-wrap {
        padding: 28px 22px;
        border-radius: 23px;
    }

    .price-main > strong {
        font-size: 5.8rem;
    }

    .price-after {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .lead-card {
        gap: 42px;
    }

    .faq-grid {
        gap: 38px;
    }

    .faq-list summary {
        min-height: 74px;
        font-size: .86rem;
    }

    .final-cta {
        padding: 64px 0;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }

    .footer {
        padding: 26px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .mobile-conversion-bar {
        position: fixed;
        z-index: 120;
        right: 10px;
        bottom: 9px;
        left: 10px;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 9px 13px 9px 16px;
        color: var(--violet-950);
        border: 1px solid rgba(255, 255, 255, .7);
        border-radius: 17px;
        background: var(--lime);
        box-shadow: 0 15px 40px rgba(16, 10, 36, .34);
    }

    .mobile-conversion-bar span small,
    .mobile-conversion-bar span strong {
        display: block;
    }

    .mobile-conversion-bar span small {
        font-size: .58rem;
        font-weight: 750;
    }

    .mobile-conversion-bar span strong {
        font-size: .82rem;
    }

    .mobile-conversion-bar b {
        padding: 10px 12px;
        color: #fff;
        border-radius: 11px;
        background: var(--violet-950);
        font-size: .7rem;
    }
}

@media (max-width: 380px) {
    .topbar-actions .button span {
        display: none;
    }

    .topbar-actions .button {
        padding: 0 11px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .customer-info small {
        max-width: 112px;
    }

    .action-chip {
        display: none;
    }

    .store-phone {
        width: 248px;
    }

    .store-bubble {
        min-width: 132px;
        padding: 12px;
    }
}

/* Identidade cromática DotSaaS: violeta, azul e superfícies luminosas. */
:root {
    --ink: #14213d;
    --muted: #5f6f86;
    --line: #dce3ed;
    --paper: #ffffff;
    --soft: #f5f7fb;
    --violet-950: #121e37;
    --violet-900: #1b2650;
    --violet-800: #321178;
    --violet-700: #5b2be0;
    --violet-600: #6534e8;
    --violet-500: #7a4df0;
    --lime: #5b2be0;
    --lime-strong: #3d179f;
    --shadow-sm: 0 16px 40px rgba(29, 42, 68, .08);
    --shadow-md: 0 28px 80px rgba(29, 42, 68, .14);
}

:focus-visible {
    outline-color: rgba(91, 43, 224, .65);
}

.topbar {
    border-bottom-color: rgba(220, 227, 237, .9);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 28px rgba(29, 42, 68, .04);
}

.brand-mark {
    border-color: #e1e6ee;
    background: #f4f6fa;
}

.brand-copy strong {
    color: var(--ink);
}

.brand-copy small {
    color: var(--muted);
}

.desktop-nav a,
.login-link {
    color: #415168;
}

.desktop-nav a:hover,
.login-link:hover {
    color: var(--violet-700);
}

.button-primary {
    color: #fff;
    background: var(--violet-700);
    box-shadow: 0 15px 34px rgba(91, 43, 224, .2);
}

.button-primary:hover {
    background: var(--lime-strong);
    box-shadow: 0 18px 42px rgba(91, 43, 224, .28);
}

.hero {
    color: var(--ink);
    background:
        radial-gradient(circle at 82% 8%, rgba(91, 43, 224, .13), transparent 28%),
        linear-gradient(180deg, #f8f9fd 0%, #ffffff 100%);
}

.hero::before {
    opacity: .7;
    background-image:
        linear-gradient(rgba(91, 43, 224, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 43, 224, .035) 1px, transparent 1px);
}

.hero-glow-one {
    background: radial-gradient(circle, rgba(91, 43, 224, .16), transparent 68%);
}

.hero-glow-two {
    background: radial-gradient(circle, rgba(56, 94, 222, .13), transparent 67%);
}

.offer-pill {
    color: var(--violet-700);
    border-color: rgba(91, 43, 224, .2);
    background: rgba(91, 43, 224, .07);
}

.offer-pulse {
    background: var(--violet-700);
    box-shadow: 0 0 0 5px rgba(91, 43, 224, .1);
}

.hero h1 span,
.price-inline strong {
    color: var(--violet-700);
}

.hero-lead {
    color: var(--muted);
}

.hero .button-outline {
    color: #263750;
    border-color: #cbd5e3;
    background: rgba(255, 255, 255, .78);
}

.hero .button-outline:hover {
    border-color: #aebbd0;
    background: #fff;
}

.hero-reassurance span,
.price-inline p,
.price-inline strong span,
.price-inline small {
    color: #6d7b8f;
}

.hero-reassurance i {
    color: #fff;
    background: var(--violet-700);
}

.price-inline {
    border-top-color: #dce3ed;
}

.price-inline p {
    border-left-color: #dce3ed;
}

.visual-orbit {
    border-color: rgba(91, 43, 224, .1);
}

.app-window {
    border-color: rgba(190, 201, 218, .9);
    box-shadow: 0 32px 74px rgba(42, 53, 79, .2);
}

.visual-caption {
    color: #8794a7;
}

.pain-strip {
    background: linear-gradient(90deg, #4b21c4, #6232e7);
}

.pain-strip a {
    color: #fff;
}

.journey-card::after {
    background: #eef1f7;
}

.journey-card.featured {
    border-color: var(--violet-700);
    background: linear-gradient(145deg, #4b21c4, #6534e8);
    box-shadow: 0 25px 60px rgba(91, 43, 224, .22);
}

.journey-card.featured::after {
    background: rgba(255, 255, 255, .08);
}

.journey-card.success {
    border-color: #cfe0ff;
    background: #f4f8ff;
}

.icon-spark {
    color: #fff;
    background: var(--violet-700);
}

.icon-return {
    color: #2859b8;
    background: #e5eeff;
}

.value-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(91, 43, 224, .24), transparent 34%),
        var(--violet-950);
}

.eyebrow-light,
.value-section .text-link,
.value-kicker,
.final-cta-inner > div > span {
    color: #bda9ff;
}

.value-card:hover {
    border-color: rgba(167, 139, 250, .42);
}

.store-visual {
    color: #fff;
    background: linear-gradient(145deg, #4b21c4, #6d41e8);
    box-shadow: 0 28px 70px rgba(91, 43, 224, .2);
}

.experience-card {
    background:
        radial-gradient(circle at 85% 10%, rgba(91, 43, 224, .72), transparent 38%),
        var(--violet-950);
}

.experience-quote {
    color: rgba(167, 139, 250, .08);
}

.pricing-notes i {
    color: #fff;
    background: var(--violet-700);
}

.price-card {
    border-color: #dce3ed;
    box-shadow: 0 34px 90px rgba(42, 53, 79, .14);
}

.price-card::before {
    background: rgba(91, 43, 224, .1);
}

.lead-section {
    background: linear-gradient(135deg, #321178 0%, #5b2be0 54%, #385ede 100%);
}

.lead-next > div > span {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .14);
}

.lead-form-wrap {
    box-shadow: 0 34px 90px rgba(20, 8, 57, .25);
}

.field input:focus {
    border-color: var(--violet-500);
    box-shadow: 0 0 0 4px rgba(91, 43, 224, .1);
}

.final-cta {
    background:
        radial-gradient(circle at 85% 10%, rgba(91, 43, 224, .3), transparent 38%),
        var(--violet-950);
}

.footer {
    background: #0d172b;
}

@media (max-width: 640px) {
    .mobile-conversion-bar {
        color: #fff;
        border-color: rgba(255, 255, 255, .34);
        background: var(--violet-700);
        box-shadow: 0 15px 40px rgba(40, 21, 101, .34);
    }

    .mobile-conversion-bar b {
        color: var(--violet-700);
        background: #fff;
    }
}
