:root {
    --bg: #0c021a;
    --bg-deep: #080014;
    --surface: #120722;
    --surface-soft: #180b2b;
    --surface-bright: #211039;
    --ink: #ffffff;
    --muted: #b9aac7;
    --muted-deep: #82718f;
    --purple: #a051bb;
    --purple-deep: #6f2c91;
    --pink: #eb96bf;
    --pink-soft: #f3a2bc;
    --cyan: #d9b0ee;
    --line: rgba(235, 150, 191, .17);
    --line-strong: rgba(235, 150, 191, .32);
    --shadow: 0 28px 90px rgba(0, 0, 0, .34);
    --radius: 20px;
    --max-width: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: "SF Pro Display", "SF Pro Text", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font: inherit;
}

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

button,
input,
select {
    border: 0;
}

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

button {
    cursor: pointer;
}

.page-shell {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 73% 3%, rgba(111, 44, 145, .17), transparent 26rem),
        radial-gradient(circle at 6% 38%, rgba(160, 81, 187, .07), transparent 24rem),
        var(--bg);
}

.ambient {
    position: absolute;
    z-index: -2;
    border-radius: 999px;
    filter: blur(4px);
    pointer-events: none;
}

.ambient--one {
    top: 640px;
    right: -12rem;
    width: 31rem;
    height: 31rem;
    background: radial-gradient(circle, rgba(160, 81, 187, .15), transparent 68%);
}

.ambient--two {
    top: 2380px;
    left: -14rem;
    width: 34rem;
    height: 34rem;
    background: radial-gradient(circle, rgba(235, 150, 191, .09), transparent 68%);
}

.star-field {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .55;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 16%, rgba(255, 255, 255, .75) 0 1px, transparent 1.5px),
        radial-gradient(circle at 78% 12%, rgba(235, 150, 191, .75) 0 1px, transparent 1.5px),
        radial-gradient(circle at 66% 27%, rgba(255, 255, 255, .52) 0 1px, transparent 1.5px),
        radial-gradient(circle at 89% 41%, rgba(235, 150, 191, .48) 0 1px, transparent 1.5px),
        radial-gradient(circle at 13% 59%, rgba(255, 255, 255, .48) 0 1px, transparent 1.5px);
    background-size: 310px 270px, 390px 330px, 430px 370px, 510px 480px, 610px 520px;
}

.site-header {
    position: relative;
    z-index: 10;
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
    padding: 25px 0;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 16px;
    letter-spacing: -.02em;
}

.brand-logo {
    position: relative;
    display: block;
    width: 170px;
    height: 78px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 13px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.brand-logo img {
    position: absolute;
    top: -44px;
    left: -1px;
    display: block;
    width: 175px;
    max-width: none;
    height: 175px;
    object-fit: initial;
}

.brand-name {
    color: #f8effc;
}

.brand-name strong {
    color: var(--pink-soft);
    font-weight: 650;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(243, 162, 188, .6);
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(160, 81, 187, .9), rgba(111, 44, 145, .7));
    box-shadow: 0 0 24px rgba(235, 150, 191, .24), inset 0 1px 0 rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.brand-mark > span {
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--muted);
    font-size: 13px;
}

.nav-links a:not(.nav-button),
.support-link,
.text-arrow,
.button--link {
    transition: color .2s ease, opacity .2s ease;
}

.nav-links a:not(.nav-button):hover,
.support-link:hover,
.text-arrow:hover,
.button--link:hover {
    color: var(--pink-soft);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.nav-login {
    color: #d8c7e0;
    font-size: 12px;
    font-weight: 600;
    transition: color .2s ease;
}

.nav-login:hover {
    color: var(--pink-soft);
}

.menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    gap: 5px;
    place-content: center;
    border: 1px solid rgba(235, 150, 191, .3);
    border-radius: 8px;
    background: rgba(24, 11, 43, .8);
}

.menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 99px;
    background: #f0dff4;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-menu {
    position: absolute;
    z-index: 20;
    top: 82px;
    right: 0;
    left: 0;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    border: 1px solid rgba(235, 150, 191, .25);
    border-radius: 18px;
    background: rgba(17, 6, 33, .98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.site-menu[hidden] {
    display: none;
}

.site-menu__inner {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr .8fr;
    gap: 38px;
    padding: 34px;
}

.site-menu__intro h2 {
    max-width: 290px;
    margin: 12px 0 13px;
    font-size: 30px;
    line-height: 1.02;
}

.site-menu__intro p {
    max-width: 260px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.site-menu__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 13px;
}

.site-menu__links a {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 45px;
    padding: 0 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: #eadff0;
    font-size: 12px;
    transition: color .2s ease, padding .2s ease;
}

.site-menu__links a:hover {
    padding-left: 14px;
    color: var(--pink-soft);
}

.site-menu__links a span {
    color: #7d6989;
    font-size: 9px;
}

.site-menu__links a b {
    margin-left: auto;
    color: var(--pink-soft);
    font-size: 13px;
    font-weight: 400;
}

.site-menu__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
}

.site-menu__footer .button {
    width: 100%;
}

.site-menu__footer small {
    color: #887694;
    font-size: 9px;
    line-height: 1.5;
}

.nav-button,
.button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(235, 150, 191, .46);
    border-radius: 7px;
    background: var(--purple);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 11px 32px rgba(160, 81, 187, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-button {
    min-height: 39px;
    padding: 0 17px;
    font-size: 12px;
}

.nav-button:hover,
.button--primary:hover {
    transform: translateY(-2px);
    background: #b564c6;
    box-shadow: 0 15px 38px rgba(160, 81, 187, .35), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .91fr) minmax(0, 1.09fr);
    align-items: center;
    gap: 48px;
    width: min(100% - 48px, var(--max-width));
    min-height: 690px;
    margin: 0 auto;
    padding: 68px 0 86px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.eyebrow {
    color: var(--pink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    color: #d0b1df;
}

.kicker-dot,
.status-dot,
.online-pill b {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink-soft);
    box-shadow: 0 0 16px rgba(243, 162, 188, .9);
}

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

h1,
h2,
h3 {
    color: #fff;
    font-weight: 600;
    letter-spacing: -.055em;
}

.hero h1 {
    max-width: 670px;
    margin-bottom: 25px;
    font-size: clamp(44px, 5.4vw, 75px);
    line-height: .99;
}

.gradient-text {
    background: linear-gradient(95deg, #a051bb 3%, #eb96bf 93%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 520px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.hero-note {
    max-width: 520px;
    margin: 0 0 30px;
    color: var(--muted-deep);
    font-size: 12px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 50px;
}

.button {
    min-height: 51px;
    padding: 0 24px;
    font-size: 14px;
}

.button--link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    color: #d8c7e0;
    font-size: 14px;
    font-weight: 600;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 23px;
    max-width: 480px;
}

.proof-item {
    display: grid;
    gap: 5px;
}

.proof-item strong {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.proof-item span {
    color: var(--muted-deep);
    font-size: 10px;
    line-height: 1.35;
}

.proof-divider {
    width: 1px;
    height: 31px;
    background: var(--line-strong);
}

.hero-visual {
    position: relative;
    min-height: 474px;
    perspective: 1200px;
}

.hero-orbit {
    position: absolute;
    top: 12%;
    left: 8%;
    width: 87%;
    height: 84%;
    border: 1px solid rgba(235, 150, 191, .18);
    border-radius: 50%;
    transform: rotate(-19deg);
    box-shadow: 0 0 70px rgba(160, 81, 187, .12);
}

.hero-orbit--two {
    top: 10%;
    left: 19%;
    width: 72%;
    height: 88%;
    border-color: rgba(160, 81, 187, .16);
    transform: rotate(36deg);
}

.dashboard-window {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(243, 162, 188, .25);
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(39, 19, 56, .96), rgba(17, 6, 33, .97));
    box-shadow: 0 35px 80px rgba(0, 0, 0, .48), 0 0 70px rgba(160, 81, 187, .2);
    transform: rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
}

.dashboard-window--hero {
    top: 43px;
    left: 1%;
    width: 98%;
}

.window-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(4, 0, 14, .3);
    color: #806e8d;
    font-size: 7px;
}

.window-dots {
    display: flex;
    gap: 4px;
}

.window-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
}

.window-dots i:first-child {
    background: #eb96bf;
}

.window-lock {
    color: #ab82bc;
    font-size: 12px;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 45px 1fr;
    min-height: 345px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 15px 0 13px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    background: rgba(7, 1, 17, .4);
}

.mini-brand {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 6px;
    background: var(--purple);
    box-shadow: 0 0 17px rgba(160, 81, 187, .55);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.sidebar-lines {
    display: grid;
    gap: 14px;
}

.sidebar-lines i {
    width: 16px;
    height: 11px;
    border-radius: 3px;
    background: #38224b;
}

.sidebar-lines i.is-active {
    background: var(--pink-soft);
    box-shadow: 0 0 15px rgba(235, 150, 191, .42);
}

.sidebar-avatar {
    display: grid;
    width: 20px;
    height: 20px;
    margin-top: auto;
    place-items: center;
    border: 1px solid #6d4b78;
    border-radius: 50%;
    color: #d4bedc;
    font-size: 8px;
}

.dashboard-content {
    padding: 27px 28px 25px;
}

.dashboard-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.dashboard-heading small {
    color: #806e8d;
    font-size: 8px;
}

.dashboard-heading h2 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.online-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(235, 150, 191, .16);
    border-radius: 999px;
    background: rgba(235, 150, 191, .06);
    color: #c9aacb;
    font-size: 8px;
}

.online-pill b {
    width: 5px;
    height: 5px;
    background: #dd8fba;
}

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

.metric-card {
    display: grid;
    gap: 7px;
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
}

.metric-card span,
.metric-card small {
    color: #8d7b9b;
    font-size: 8px;
}

.metric-card strong {
    color: #f9f1fb;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.metric-card .positive {
    color: var(--pink-soft);
}

.chart-card {
    padding: 16px 14px 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
}

.chart-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #d9c9e1;
    font-size: 9px;
}

.chart-top small {
    color: #806e8d;
    font-size: 8px;
}

.chart-area {
    position: relative;
    height: 115px;
    margin-top: 12px;
    overflow: hidden;
}

.chart-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .7;
    background: repeating-linear-gradient(to bottom, transparent 0 27px, rgba(255, 255, 255, .07) 28px);
}

.chart-area::before,
.chart-area::after {
    position: absolute;
    bottom: 18px;
    z-index: 2;
    width: 7px;
    height: 7px;
    border: 2px solid #eb96bf;
    border-radius: 50%;
    background: #2b123d;
    content: "";
}

.chart-area::before {
    left: 35%;
}

.chart-area::after {
    right: 2%;
    background: #eb96bf;
    box-shadow: 0 0 15px rgba(235, 150, 191, .8);
}

.chart-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    opacity: .8;
    background: linear-gradient(180deg, rgba(235, 150, 191, .5), rgba(160, 81, 187, 0));
    clip-path: polygon(0 80%, 7% 76%, 15% 63%, 22% 69%, 30% 57%, 39% 64%, 47% 43%, 57% 52%, 64% 34%, 72% 48%, 79% 28%, 87% 35%, 100% 10%, 100% 100%, 0 100%);
}

.chart-line::after {
    position: absolute;
    inset: 0;
    border-top: 2px solid var(--pink-soft);
    clip-path: polygon(0 80%, 7% 76%, 15% 63%, 22% 69%, 30% 57%, 39% 64%, 47% 43%, 57% 52%, 64% 34%, 72% 48%, 79% 28%, 87% 35%, 100% 10%, 100% 14%, 87% 39%, 79% 32%, 72% 52%, 64% 38%, 57% 56%, 47% 47%, 39% 68%, 30% 61%, 22% 73%, 15% 67%, 7% 80%, 0 84%);
    content: "";
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(243, 162, 188, .26);
    border-radius: 9px;
    background: rgba(24, 11, 43, .93);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34);
    backdrop-filter: blur(12px);
}

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

.floating-card small {
    color: #8e7d9b;
    font-size: 8px;
}

.floating-card strong {
    margin-top: 2px;
    color: #fff;
    font-size: 10px;
}

.floating-card b {
    margin-left: auto;
    color: var(--pink-soft);
    font-size: 10px;
    font-weight: 600;
}

.floating-icon,
.growth-arrow {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 7px;
    background: rgba(160, 81, 187, .32);
    color: #eb96bf;
    font-size: 13px;
}

.floating-card--orders {
    right: -11px;
    bottom: 28px;
    width: 178px;
    padding: 10px;
}

.floating-card--growth {
    top: 9px;
    left: -22px;
    padding: 10px 14px 10px 10px;
}

.floating-card--growth strong {
    color: #fff;
    font-size: 13px;
}

.growth-arrow {
    border-radius: 50%;
    background: rgba(235, 150, 191, .16);
}

.partner-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
    padding: 20px 0 23px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.partner-label {
    color: #806e8d;
    font-size: 11px;
}

.partner-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 17px;
    color: #a38dad;
    font-size: 11px;
    font-weight: 600;
}

.partner-list i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--purple);
}

.section {
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
    padding: 145px 0;
}

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

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

.section-heading--center > p:last-child {
    max-width: 555px;
    margin: 22px auto 0;
}

.section-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    max-width: none;
    margin-bottom: 54px;
}

.section-heading--split > p {
    max-width: 355px;
    margin-bottom: 3px;
}

.eyebrow {
    margin-bottom: 18px;
}

.section h2,
.final-cta h2 {
    margin-bottom: 0;
    font-size: clamp(37px, 4.3vw, 59px);
    line-height: 1.03;
}

.section-heading p:last-child,
.showcase-copy > p:not(.eyebrow),
.final-cta > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 15px;
}

.feature-card {
    position: relative;
    min-height: 310px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(33, 16, 57, .74), rgba(16, 6, 29, .82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.feature-card--large {
    background:
        radial-gradient(circle at 80% 12%, rgba(235, 150, 191, .14), transparent 11rem),
        linear-gradient(145deg, rgba(44, 20, 65, .88), rgba(16, 6, 29, .82));
}

.feature-card::after {
    position: absolute;
    right: -42px;
    bottom: -58px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(235, 150, 191, .13);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 22px rgba(235, 150, 191, .025), 0 0 0 44px rgba(235, 150, 191, .02);
}

.feature-number,
.plan-tag {
    color: #8c789b;
    font-size: 10px;
    letter-spacing: .1em;
}

.feature-icon {
    display: grid;
    width: 43px;
    height: 43px;
    margin: 50px 0 24px;
    place-items: center;
    border: 1px solid rgba(235, 150, 191, .26);
    border-radius: 12px;
    background: rgba(160, 81, 187, .18);
    color: var(--pink-soft);
    font-size: 23px;
}

.feature-icon--spark {
    color: #f3c2db;
    text-shadow: 0 0 14px rgba(235, 150, 191, .8);
}

.feature-icon--qr {
    font-size: 27px;
}

.feature-icon img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(78%) sepia(17%) saturate(1114%) hue-rotate(271deg) brightness(98%) contrast(91%);
}

.feature-icon--qr img {
    width: 25px;
    height: 25px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.feature-card p {
    max-width: 310px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.62;
}

.feature-chip {
    display: inline-flex;
    margin-top: 23px;
    padding: 7px 10px;
    border: 1px solid rgba(235, 150, 191, .19);
    border-radius: 999px;
    color: #dab8df;
    font-size: 9px;
}

.feature-line {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 39px;
    margin-top: 31px;
}

.feature-line span {
    display: block;
    width: 19px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, var(--purple-deep), var(--pink-soft));
}

.feature-line span:nth-child(1) { height: 14px; opacity: .55; }
.feature-line span:nth-child(2) { height: 26px; opacity: .72; }
.feature-line span:nth-child(3) { height: 20px; opacity: .62; }
.feature-line span:nth-child(4) { height: 37px; box-shadow: 0 0 16px rgba(235, 150, 191, .3); }

.qr-art {
    display: grid;
    grid-template-columns: repeat(3, 7px);
    gap: 4px;
    margin-top: 31px;
}

.qr-art span {
    width: 7px;
    height: 7px;
    background: #a982b0;
}

.qr-art span:nth-child(2),
.qr-art span:nth-child(4),
.qr-art span:nth-child(8) {
    background: var(--pink-soft);
}

.section--showcase {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 90px;
}

.showcase-copy {
    max-width: 425px;
}

.showcase-copy > p:not(.eyebrow) {
    margin: 25px 0 30px;
}

.check-list {
    display: grid;
    gap: 15px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    color: #d7c9df;
    font-size: 13px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: rgba(160, 81, 187, .27);
    color: var(--pink-soft);
    font-size: 11px;
}

.text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pink-soft);
    font-size: 13px;
    font-weight: 600;
}

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

.phone-mockup {
    position: relative;
    z-index: 2;
    width: 278px;
    padding: 9px;
    border: 1px solid rgba(235, 150, 191, .42);
    border-radius: 32px;
    background: #1a0b2b;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .48), 0 0 75px rgba(160, 81, 187, .26);
    transform: rotate(7deg);
}

.phone-speaker {
    position: absolute;
    z-index: 3;
    top: 16px;
    left: 50%;
    width: 57px;
    height: 13px;
    border-radius: 999px;
    background: #080014;
    transform: translateX(-50%);
}

.phone-screen {
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #f9f3fa;
    color: #281a2e;
}

.store-cover {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 111px;
    padding: 0 14px 12px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 25%, rgba(235, 150, 191, .9), transparent 21%),
        linear-gradient(135deg, #321343, #9d4f9e 58%, #efadc9);
}

.cover-glow {
    position: absolute;
    top: -66px;
    right: -30px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, .06), 0 0 0 36px rgba(255, 255, 255, .05);
}

.store-logo {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 12px;
    background: rgba(18, 7, 34, .58);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.store-status {
    margin-left: 8px;
    color: #fff;
    font-size: 8px;
    text-transform: lowercase;
}

.store-info {
    padding: 14px 14px 0;
}

.store-info small {
    color: #a052ae;
    font-size: 8px;
    font-weight: 700;
}

.store-info h3 {
    margin: 4px 0 9px;
    color: #321b38;
    font-size: 16px;
    line-height: 1.05;
}

.store-meta {
    display: flex;
    gap: 12px;
    color: #80627f;
    font-size: 8px;
}

.store-tabs {
    display: flex;
    gap: 13px;
    margin: 18px 14px 10px;
    padding-bottom: 7px;
    overflow: hidden;
    border-bottom: 1px solid #eadfe9;
    color: #947a91;
    font-size: 8px;
    white-space: nowrap;
}

.store-tabs .active {
    color: #7f3f92;
    font-weight: 700;
}

.product-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 0 11px 9px;
    padding: 10px;
    border: 1px solid #eee3ed;
    border-radius: 11px;
    background: rgba(255, 255, 255, .66);
}

.product-row small {
    color: #a051bb;
    font-size: 7px;
    font-weight: 700;
}

.product-row h4 {
    margin: 3px 0;
    color: #39233d;
    font-size: 11px;
}

.product-row p {
    max-width: 125px;
    margin: 0 0 7px;
    color: #947f90;
    font-size: 7px;
}

.product-row strong {
    color: #7d3c90;
    font-size: 9px;
}

.product-art {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0b2cb, #a35bb3);
    color: #fff;
    font-size: 23px;
}

.product-art--two {
    background: linear-gradient(135deg, #d7a7ec, #74418c);
}

.phone-glow {
    position: absolute;
    width: 315px;
    height: 315px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 150, 191, .25), rgba(160, 81, 187, .16) 32%, transparent 70%);
    filter: blur(6px);
}

.showcase-badge {
    position: absolute;
    z-index: 4;
    right: 3%;
    bottom: 82px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px 11px 11px;
    border: 1px solid rgba(235, 150, 191, .23);
    border-radius: 10px;
    background: rgba(19, 7, 33, .91);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .31);
}

.showcase-badge > span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 7px;
    background: var(--purple);
    color: #fff;
    font-size: 14px;
}

.showcase-badge strong,
.showcase-badge small {
    display: block;
}

.showcase-badge strong {
    color: #fff;
    font-size: 10px;
}

.showcase-badge small {
    margin-top: 3px;
    color: var(--muted-deep);
    font-size: 8px;
}

.section--cases {
    padding-top: 110px;
}

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

.demo-carousel {
    overflow: hidden;
}

.demo-viewport {
    overflow: hidden;
}

.demo-track {
    display: flex;
    gap: 12px;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.demo-card {
    position: relative;
    flex: 0 0 calc((100% - 36px) / 4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: 235px;
    min-width: 0;
    padding: 22px 20px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(24, 11, 43, .72);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.demo-card:hover {
    border-color: var(--line-strong);
    background: rgba(37, 17, 58, .92);
    transform: translateY(-3px);
}

.demo-card__logo {
    display: grid;
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(235, 150, 191, .32);
    border-radius: 18px;
    background: #fff;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

.demo-card__logo img {
    width: 100%;
    height: 100%;
    padding: 5px;
    border-radius: 17px;
    object-fit: contain;
}

.demo-card__content {
    width: 100%;
    min-width: 0;
}

.demo-card__content strong,
.demo-card__content small {
    display: block;
}

.demo-card__content strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
}

.demo-card__content small {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
    color: #887694;
    font-size: 10px;
    line-height: 1.4;
}

.demo-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #69d995;
    box-shadow: 0 0 10px rgba(105, 217, 149, .75);
}

.demo-status.is-open {
    color: #a9dcbc;
}

.demo-status.is-closed {
    color: #e7a2b1;
}

.demo-status.is-closed .demo-status-dot {
    background: #ed849a;
    box-shadow: 0 0 10px rgba(237, 132, 154, .72);
}

.demo-status-detail {
    color: #887694;
}

.demo-card__arrow {
    position: absolute;
    top: 22px;
    right: 20px;
    color: var(--pink-soft);
    font-size: 17px;
}

.demo-carousel__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.demo-disclaimer {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--muted-deep);
    font-size: 10px;
    line-height: 1.65;
}

.section--businesses {
    text-align: center;
}

.business-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 850px;
    margin: 0 auto;
}

.business-tags span {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(24, 11, 43, .62);
    color: #d9c9e1;
    font-size: 11px;
}

.business-callout {
    margin: 28px auto 0;
    color: var(--pink-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
}

.carousel-button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: transparent;
    color: var(--pink-soft);
    font-size: 15px;
    transition: background .2s ease, color .2s ease;
}

.carousel-button:hover {
    background: var(--purple);
    color: #fff;
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 5px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #5a4568;
    transition: width .2s ease, background .2s ease;
}

.carousel-dot.is-active {
    width: 19px;
    background: var(--pink-soft);
}

.carousel-caption {
    margin-left: auto;
    color: #806e8d;
    font-size: 10px;
}

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

.plan-card {
    position: relative;
    display: flex;
    min-height: 455px;
    flex-direction: column;
    padding: 27px 23px 21px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(21, 8, 38, .86);
}

.plan-card.is-featured {
    border-color: rgba(235, 150, 191, .52);
    background:
        radial-gradient(circle at 50% 0%, rgba(235, 150, 191, .13), transparent 15rem),
        linear-gradient(160deg, rgba(48, 20, 67, .98), rgba(21, 8, 38, .9));
    box-shadow: 0 22px 55px rgba(160, 81, 187, .13);
}

.plan-ribbon {
    position: absolute;
    top: 17px;
    right: 15px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(235, 150, 191, .15);
    color: var(--pink-soft);
    font-size: 8px;
    font-weight: 700;
}

.plan-tag {
    margin-bottom: 20px;
    color: var(--pink-soft);
    text-transform: uppercase;
}

.plan-card h3 {
    margin-bottom: 11px;
    font-size: 24px;
}

.plan-card > p {
    min-height: 66px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.plan-price strong {
    color: #fff;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -.05em;
}

.plan-price span {
    color: #8d7b9b;
    font-size: 10px;
}

.annual-note {
    margin-top: 6px;
    color: var(--pink-soft);
    font-size: 9px;
}

.features {
    display: grid;
    gap: 9px;
    margin: 22px 0 25px;
    padding: 0;
    list-style: none;
}

.features li {
    position: relative;
    padding-left: 18px;
    color: #c9bdd1;
    font-size: 11px;
    line-height: 1.35;
}

.features li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--pink-soft);
    content: "✓";
}

.choose-plan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    padding: 0 13px;
    border: 1px solid rgba(235, 150, 191, .28);
    border-radius: 7px;
    background: transparent;
    color: #e8d9ed;
    font-size: 11px;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.choose-plan:hover,
.plan-card.is-selected .choose-plan {
    border-color: var(--pink-soft);
    background: var(--purple);
    color: #fff;
}

.signup-section {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
    gap: 75px;
    padding-top: 155px;
    padding-bottom: 135px;
}

.signup-aside {
    position: sticky;
    top: 25px;
    min-height: 620px;
    padding: 34px 30px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(235, 150, 191, .24);
    border-radius: 24px;
    background: #10051d;
    box-shadow: var(--shadow);
}

.signup-aside::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 2, 20, .24) 0%, rgba(10, 2, 20, .16) 42%, rgba(10, 2, 20, .58) 100%),
        linear-gradient(90deg, rgba(10, 2, 20, .78) 0%, rgba(10, 2, 20, .52) 46%, rgba(10, 2, 20, .05) 100%);
    content: "";
}

.signup-aside__image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.signup-aside > :not(.signup-aside__image) {
    position: relative;
    z-index: 2;
}

.signup-aside h2 {
    max-width: 390px;
    margin-bottom: 22px;
    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.05;
}

.signup-aside > p:not(.eyebrow) {
    max-width: 360px;
    margin-bottom: 42px;
    color: #e1d6e7;
    font-size: 15px;
    line-height: 1.65;
    text-shadow: 0 2px 14px rgba(5, 0, 12, .68);
}

.signup-aside__notes {
    display: grid;
    gap: 17px;
    margin-bottom: 35px;
}

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

.signup-aside__notes span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--pink-soft);
    font-size: 9px;
}

.signup-aside__notes p {
    margin: 0;
    color: #f3eaf6;
    font-size: 12px;
    text-shadow: 0 2px 12px rgba(5, 0, 12, .72);
}

.support-link {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    color: #dfc5de;
    font-size: 11px;
    text-shadow: 0 2px 12px rgba(5, 0, 12, .72);
}

.support-link strong {
    color: var(--pink-soft);
    font-weight: 600;
}

.signup-card {
    padding: 31px;
    border: 1px solid rgba(235, 150, 191, .23);
    border-radius: 24px;
    background:
        radial-gradient(circle at 97% 0%, rgba(235, 150, 191, .13), transparent 19rem),
        linear-gradient(145deg, rgba(38, 17, 55, .96), rgba(15, 5, 29, .97));
    box-shadow: var(--shadow);
}

.signup-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #937f9f;
    font-size: 10px;
}

.signup-card__header > div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #d4c4db;
}

.signup-card__header .status-dot {
    width: 6px;
    height: 6px;
    background: #c896d7;
    box-shadow: 0 0 13px rgba(200, 150, 215, .8);
}

.signup-card h2 {
    margin: 28px 0 9px;
    font-size: 37px;
    line-height: 1.03;
}

.signup-card > p {
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 13px;
}

.panel-benefits {
    display: grid;
    gap: 12px;
    margin: 28px 0 23px;
}

.panel-benefits > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 12px;
    border: 1px solid rgba(235, 150, 191, .13);
    border-radius: 9px;
    background: rgba(8, 0, 20, .25);
}

.panel-benefits > div > span {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    border-radius: 50%;
    background: rgba(160, 81, 187, .28);
    color: var(--pink-soft);
    font-size: 10px;
}

.panel-benefits p {
    display: grid;
    gap: 3px;
    margin: 0;
}

.panel-benefits strong {
    color: #eee2f1;
    font-size: 11px;
}

.panel-benefits small {
    color: #887694;
    font-size: 9px;
}

.signup-card__note {
    display: block;
    margin-top: 13px;
    color: #806e8d;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

.field--full {
    grid-column: 1 / -1;
}

.field > span,
.legal {
    color: #cbbdd3;
    font-size: 10px;
    font-weight: 600;
}

.field input,
.field select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    outline: 0;
    border: 1px solid rgba(235, 150, 191, .15);
    border-radius: 7px;
    background: rgba(8, 0, 20, .44);
    color: #fff;
    font-size: 12px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--pink-soft) 50%), linear-gradient(135deg, var(--pink-soft) 50%, transparent 50%);
    background-position: calc(100% - 16px) 19px, calc(100% - 12px) 19px;
    background-repeat: no-repeat;
    background-size: 4px 4px, 4px 4px;
}

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

.field input:focus,
.field select:focus {
    border-color: rgba(235, 150, 191, .62);
    background: rgba(28, 11, 47, .7);
    box-shadow: 0 0 0 3px rgba(235, 150, 191, .08);
}

.city-warning {
    grid-column: 1 / -1;
    margin-top: -4px;
    padding: 10px 12px;
    border: 1px solid rgba(235, 150, 191, .18);
    border-radius: 7px;
    background: rgba(235, 150, 191, .06);
    color: #d5adc9;
    font-size: 10px;
    line-height: 1.45;
}

.plan-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 47px;
    padding: 9px 12px;
    border: 1px solid rgba(235, 150, 191, .16);
    border-radius: 7px;
    background: rgba(160, 81, 187, .1);
    color: #a992b1;
    font-size: 10px;
}

.plan-mini strong {
    margin-right: auto;
    color: #eedff2;
    font-size: 11px;
}

.plan-mini b {
    color: var(--pink-soft);
    font-size: 11px;
    font-weight: 600;
}

.legal-consent {
    display: grid;
    gap: 13px;
    margin-top: 4px;
}

.legal {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-weight: 400;
    line-height: 1.45;
}

.legal input {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin: 0;
    accent-color: var(--purple);
}

.legal-policy {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.legal-policy summary {
    padding-top: 12px;
    cursor: pointer;
    color: var(--pink-soft);
    font-size: 10px;
}

.legal-policy__content {
    max-height: 220px;
    overflow: auto;
    padding: 14px 2px 3px;
    color: #a995b1;
    font-size: 10px;
    line-height: 1.55;
}

.legal-policy__content h3 {
    margin: 14px 0 5px;
    color: #e6d5eb;
    font-size: 11px;
    letter-spacing: -.02em;
}

.legal-policy__content p {
    margin-bottom: 9px;
}

.legal-policy__content ul {
    margin: 0 0 9px;
    padding-left: 17px;
}

.submit {
    width: 100%;
    margin-top: 25px;
}

.final-cta {
    position: relative;
    display: grid;
    justify-items: center;
    padding-top: 110px;
    padding-bottom: 150px;
    text-align: center;
}

.final-cta__glow {
    position: absolute;
    z-index: -1;
    top: 56px;
    left: 50%;
    width: min(75vw, 720px);
    height: 310px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(160, 81, 187, .2), transparent 69%);
    transform: translateX(-50%);
}

.final-cta > p:not(.eyebrow) {
    max-width: 420px;
    margin: 25px auto 30px;
}

.final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
}

footer {
    border-top: 1px solid var(--line);
    background: rgba(7, 0, 15, .35);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: min(100% - 48px, var(--max-width));
    min-height: 120px;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-copy {
    display: grid;
    gap: 7px;
    max-width: 340px;
}

.footer-copy p,
.footer-copy small,
.footer-links a {
    margin: 0;
    color: #806e8d;
    font-size: 10px;
    line-height: 1.55;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px 16px;
    max-width: 440px;
}

.footer-links a:hover {
    color: var(--pink-soft);
}

.privacy-main {
    width: min(100% - 48px, 860px);
    margin: 0 auto;
    padding: 75px 0 130px;
}

.privacy-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 42px;
    color: var(--pink-soft);
    font-size: 12px;
    font-weight: 600;
}

.privacy-heading {
    max-width: 680px;
    margin-bottom: 42px;
}

.privacy-heading h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .98;
}

.privacy-heading > p:last-child {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.privacy-card {
    padding: 30px 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(21, 8, 38, .82);
    box-shadow: var(--shadow);
}

.privacy-card .legal-policy {
    border-top: 0;
}

.privacy-card .legal-policy summary {
    display: none;
}

.privacy-card .legal-policy__content {
    max-height: none;
    overflow: visible;
    padding: 0;
    color: #c5b6ce;
    font-size: 13px;
    line-height: 1.75;
}

.privacy-card .legal-policy__content h3 {
    margin-top: 26px;
    font-size: 17px;
}

.privacy-card .legal-policy__content p {
    margin-bottom: 15px;
}

.privacy-card .legal-policy__content li {
    margin-bottom: 6px;
}

.privacy-cta {
    margin-top: 26px;
}

@media (max-width: 1050px) {
    .nav-links {
        gap: 18px;
    }

    .hero {
        gap: 20px;
    }

    .dashboard-content {
        padding: 22px 20px 20px;
    }

    .plans,
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-card {
        flex-basis: calc((100% - 12px) / 2);
    }

    .plan-card {
        min-height: 415px;
    }

    .signup-section {
        gap: 36px;
    }
}

@media (max-width: 800px) {
    .site-header,
    .hero,
    .partner-strip,
    .section,
    .footer-inner {
        width: min(100% - 32px, var(--max-width));
    }

    .site-header {
        padding: 18px 0;
    }

    .nav {
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 16px;
        font-size: 11px;
    }

    .site-menu__inner {
        grid-template-columns: 1fr 1.2fr;
    }

    .site-menu__footer {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
    }

    .site-menu__footer .button {
        width: auto;
    }

    .nav-button {
        order: 3;
        min-height: 34px;
        padding: 0 12px;
    }

    .hero {
        display: block;
        min-height: 0;
        padding: 70px 0 72px;
    }

    .hero-copy {
        max-width: 610px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-kicker,
    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-note {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-visual {
        max-width: 610px;
        min-height: 440px;
        margin: 50px auto 0;
    }

    .section {
        padding: 95px 0;
    }

    .feature-grid,
    .section--showcase,
    .signup-section {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 270px;
    }

    .section--showcase {
        gap: 45px;
    }

    .showcase-copy {
        max-width: 560px;
    }

    .showcase-visual {
        min-height: 520px;
    }

    .signup-aside {
        position: relative;
        top: auto;
        min-height: 510px;
    }

    .signup-aside > p:not(.eyebrow) {
        max-width: 560px;
    }

    .signup-card {
        max-width: 650px;
    }
}

@media (max-width: 560px) {
    .site-header,
    .hero,
    .partner-strip,
    .section,
    .footer-inner {
        width: min(100% - 24px, var(--max-width));
    }

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

    .site-header .brand {
        flex: 0 0 auto;
    }

    .brand-logo {
        width: 132px;
        height: 60px;
        border-radius: 11px;
    }

    .brand-logo img {
        top: -35px;
        left: -1px;
        width: 136px;
        height: 136px;
    }

    .site-header .brand-logo {
        width: 104px;
        height: 48px;
        border-radius: 9px;
    }

    .site-header .brand-logo img {
        top: -28px;
        width: 108px;
        height: 108px;
    }

    .nav-actions {
        flex: 0 0 auto;
        gap: 7px;
    }

    .nav-login {
        display: none;
    }

    .nav-links {
        justify-content: center;
    }

    .nav-links a:not(.nav-button) {
        display: none;
    }

    .nav-button {
        order: initial;
        min-height: 38px;
        padding: 0 10px;
        gap: 6px;
        white-space: nowrap;
        font-size: 10px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding-top: 52px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .hero-note {
        font-size: 11px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 36px;
    }

    .button--primary {
        width: 100%;
    }

    .hero-proof {
        gap: 13px;
    }

    .proof-item strong {
        font-size: 19px;
    }

    .proof-item span {
        font-size: 8px;
    }

    .hero-visual {
        min-height: 300px;
        margin-top: 33px;
        transform: scale(.78);
        transform-origin: top center;
    }

    .dashboard-window--hero {
        top: 15px;
    }

    .floating-card--growth {
        left: -9px;
    }

    .floating-card--orders {
        right: -20px;
    }

    .partner-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .partner-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
        font-size: 10px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading--center,
    .section-heading--split {
        margin-bottom: 39px;
    }

    .section-heading--split {
        display: block;
    }

    .section-heading--split > p {
        margin-top: 23px;
    }

    .section h2,
    .final-cta h2 {
        font-size: 39px;
    }

    .feature-card {
        min-height: 250px;
        padding: 22px;
    }

    .feature-icon {
        margin-top: 35px;
    }

    .showcase-visual {
        min-height: 450px;
    }

    .phone-mockup {
        width: 238px;
    }

    .phone-screen {
        min-height: 460px;
    }

    .showcase-badge {
        right: -4px;
        bottom: 45px;
    }

    .plans,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .demo-card {
        flex-basis: 100%;
    }

    .site-menu {
        top: 70px;
    }

    .site-menu__inner {
        display: block;
        padding: 24px 18px;
    }

    .site-menu__intro {
        margin-bottom: 20px;
    }

    .site-menu__intro h2 {
        font-size: 25px;
    }

    .site-menu__links {
        grid-template-columns: 1fr;
    }

    .site-menu__footer {
        display: grid;
        gap: 10px;
        margin-top: 22px;
    }

    .site-menu__footer .button {
        width: 100%;
    }

    .carousel-caption {
        display: none;
    }

    .plan-card > p {
        min-height: auto;
    }

    .field--full,
    .city-warning {
        grid-column: auto;
    }

    .signup-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .signup-aside {
        min-height: 570px;
        padding: 26px 22px;
        border-radius: 18px;
    }

    .signup-card h2 {
        font-size: 34px;
    }

    .signup-card__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .privacy-main {
        width: min(100% - 24px, 860px);
        padding-top: 48px;
    }

    .privacy-card {
        padding: 22px 18px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 22px 0;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .final-cta__actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .final-cta__actions .button--primary {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
