:root {
    --ink: #171717;
    --ink-soft: #262626;
    --muted: #686868;
    --line: #deded9;
    --paper: #ffffff;
    --wash: #f3f3ef;
    --yellow: #ffd95a;
    --green: #b7efb2;
    --blue: #b8e8ef;
    --orange: #ff704b;
    --radius-sm: 18px;
    --radius-md: 26px;
    --radius-lg: 38px;
    --shadow: 0 28px 80px rgba(22, 22, 22, .12);
    --container: 1290px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.wide-shell { width: min(calc(100% - 40px), 1520px); margin-inline: auto; }
.section-space { padding: 130px 0; }
.skip-link {
    position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px;
    border-radius: 999px; background: var(--ink); color: white;
}
.skip-link:focus { top: 16px; }

.site-header {
    position: fixed;
    z-index: 1000;
    top: 20px;
    left: 0;
    width: 100%;
    padding-inline: 20px;
}
.nav-shell {
    width: min(100%, var(--container));
    min-height: 70px;
    margin-inline: auto;
    padding: 9px 10px 9px 24px;
    display: grid;
    grid-template-columns: 210px 1fr 210px;
    align-items: center;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 40px rgba(23, 23, 23, .08);
    backdrop-filter: blur(18px);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled .nav-shell {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 46px rgba(23, 23, 23, .12);
}
.brand { display: inline-flex; align-items: center; width: 154px; }
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 30px; }
.nav-links a { color: #3f3f3f; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--orange); }
.nav-cta { justify-self: end; }
.nav-toggle {
    display: none;
    width: 46px; height: 46px; padding: 0;
    border: 0; border-radius: 50%; background: var(--ink);
}
.nav-toggle span {
    display: block; width: 18px; height: 1.5px; margin: 5px auto;
    background: white; transition: transform .25s ease;
}

.button {
    min-height: 50px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button span { transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(2px, -2px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--orange); }
.button-light, .button-white { background: white; color: var(--ink); border-color: #e1e1dc; }
.button-light:hover, .button-white:hover { border-color: var(--ink); }
.button-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: white; }

.eyebrow {
    width: fit-content;
    margin-bottom: 24px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #ecece7;
    color: #4a4a45;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.eyebrow-yellow { background: var(--yellow); color: var(--ink); }
.eyebrow-dark { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.12); }
.section-heading { max-width: 730px; margin: 0 auto 66px; text-align: center; }
.section-heading .eyebrow { margin-inline: auto; }
.section-heading h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 640;
}
.section-heading p { max-width: 600px; margin: 25px auto 0; color: var(--muted); font-size: 18px; }
.section-heading-light h2, .section-heading-light p { color: white; }
.section-heading-light p { color: rgba(255,255,255,.66); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 270px 0 0;
    overflow: clip;
    isolation: isolate;
}
.hero-backdrop {
    position: absolute; z-index: -2; inset: 0 0 auto; height: 760px;
    background:
        radial-gradient(circle at 50% 44%, rgba(255,255,255,.96) 0 19%, rgba(255,255,255,.62) 41%, rgba(255,255,255,.96) 74%),
        linear-gradient(115deg, #dff5ee 0%, #f5e5fb 38%, #fff1ce 72%, #dceff8 100%);
}
.hero-backdrop::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(23,23,23,.08) .7px, transparent .7px);
    background-size: 16px 16px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .75; animation: orb-float 10s ease-in-out infinite alternate; }
.hero-orb-one { width: 420px; height: 180px; left: 6%; top: 22%; background: rgba(172,232,213,.54); transform: rotate(-14deg); }
.hero-orb-two { width: 400px; height: 170px; right: 4%; top: 16%; background: rgba(232,193,246,.5); transform: rotate(16deg); animation-delay: -4s; }
@keyframes orb-float { to { transform: translateY(34px) rotate(3deg); } }
.hero-copy { position: relative; z-index: 3; max-width: 860px; text-align: center; }
.hero-copy .eyebrow { margin-inline: auto; animation: hero-in .7s ease both; }
.hero h1 {
    margin: 0;
    font-size: clamp(54px, 6.4vw, 92px);
    line-height: .92;
    letter-spacing: -.064em;
    font-weight: 650;
    animation: hero-in .8s .08s ease both;
}
.hero h1 span { color: #70706b; }
.hero-copy > p {
    max-width: 690px; margin: 28px auto 0; color: #595954;
    font-size: clamp(17px, 1.5vw, 20px); animation: hero-in .8s .16s ease both;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 36px; animation: hero-in .8s .24s ease both; }
@keyframes hero-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-business {
    position: absolute; z-index: 2;
    width: 58px; height: 58px;
    border: 5px solid rgba(255,255,255,.94);
    box-shadow: 0 13px 30px rgba(23,23,23,.16);
    overflow: hidden;
    animation: business-float 4.8s ease-in-out infinite alternate;
}
.hero-business img { width: 100%; height: 100%; object-fit: cover; }
.hero-business-one { top: 188px; left: 12%; border-radius: 50% 50% 8px 50%; }
.hero-business-two { top: 330px; left: 6%; border-radius: 50%; animation-delay: -.8s; }
.hero-business-three { top: 500px; left: 15%; border-radius: 8px 50% 50%; animation-delay: -1.7s; }
.hero-business-four { top: 226px; left: 25%; width: 46px; height: 46px; border-radius: 50% 8px 50% 50%; animation-delay: -2.2s; }
.hero-business-five { top: 186px; right: 11%; border-radius: 50% 50% 50% 8px; animation-delay: -1.3s; }
.hero-business-six { top: 344px; right: 6%; border-radius: 50% 8px 50% 50%; animation-delay: -2.7s; }
.hero-business-seven { top: 500px; right: 15%; border-radius: 50%; animation-delay: -.5s; }
.hero-business-eight { top: 235px; right: 25%; width: 46px; height: 46px; border-radius: 8px 50% 50% 50%; animation-delay: -3.1s; }
@keyframes business-float { to { transform: translateY(-13px) rotate(3deg); } }
.hero-media-wrap { position: relative; z-index: 4; margin-top: 112px; }
.hero-media-frame {
    position: relative;
    padding: 12px;
    border-radius: 34px;
    background: #deded9;
    box-shadow: var(--shadow);
}
.product-preview {
    min-height: 590px;
    display: grid;
    grid-template-columns: 82px 1fr;
    overflow: hidden;
    border-radius: 25px;
    background: #f8f8f4;
}
.preview-sidebar {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: #171717;
}
.preview-sidebar img { width: 35px; height: 35px; border-radius: 10px; }
.side-dot { width: 20px; height: 20px; border: 5px solid rgba(255,255,255,.15); border-radius: 7px; }
.side-dot.is-active { border-color: var(--yellow); }
.side-dot-bottom { margin-top: auto; border-radius: 50%; }
.preview-main { padding: 38px 42px 40px; }
.preview-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.preview-topbar > div:first-child { display: grid; gap: 3px; }
.preview-topbar strong { font-size: 23px; }
.preview-kicker { color: #81817c; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.preview-store {
    padding: 11px 16px; display: flex; align-items: center; gap: 9px;
    border: 1px solid #dfdfda; border-radius: 999px; background: white; font-size: 13px; font-weight: 700;
}
.preview-store span { width: 8px; height: 8px; border-radius: 50%; background: #57bd75; }
.preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.preview-stats article, .chart-card, .activity-card {
    padding: 22px; border: 1px solid #e6e6e0; border-radius: 18px; background: white;
}
.preview-stats article { display: grid; gap: 7px; }
.preview-stats span, .card-heading span { color: #777772; font-size: 12px; font-weight: 700; }
.preview-stats strong { font-size: 27px; letter-spacing: -.04em; }
.preview-stats small { color: #858580; font-size: 11px; }
.preview-stats small.up { color: #348a53; }
.preview-stats small.warn { color: #d45e3c; }
.preview-grid { display: grid; grid-template-columns: 1.5fr .85fr; gap: 15px; margin-top: 15px; }
.card-heading { display: flex; justify-content: space-between; align-items: flex-start; }
.card-heading > div { display: grid; gap: 3px; }
.card-heading strong { font-size: 15px; }
.card-heading small { color: #8c8c87; font-size: 10px; }
.chart-bars {
    height: 190px; margin-top: 20px; padding-top: 16px;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
    border-bottom: 1px solid #e5e5df;
    background: repeating-linear-gradient(to bottom, #efefe9 0 1px, transparent 1px 49px);
}
.chart-bars i {
    width: 9%; height: var(--h); display: block; border-radius: 8px 8px 0 0;
    background: linear-gradient(to top, #ff6c48, #ffb07b);
}
.chart-labels { display: flex; justify-content: space-between; margin-top: 9px; color: #979792; font-size: 9px; }
.activity-card ul { margin: 15px 0 0; padding: 0; list-style: none; }
.activity-card li { padding: 13px 0; display: flex; gap: 10px; border-top: 1px solid #ededE7; }
.activity-card li > div { display: grid; min-width: 0; }
.activity-card li strong { font-size: 11px; }
.activity-card li small { color: #8b8b86; font-size: 9px; }
.activity-icon {
    width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center;
    border-radius: 9px; background: #ffe1d8; color: #d94e2b; font-size: 10px; font-weight: 900;
}
.activity-icon.mint { background: #daf5e2; color: #26824a; }
.activity-icon.amber { background: #fff0bf; color: #a8780c; }
.live-dot { color: #4fbd70 !important; }
.hero-play {
    position: absolute; left: 50%; top: 50%; z-index: 5;
    width: 78px; height: 78px; display: grid; place-items: center;
    border: 7px solid rgba(255,255,255,.86); border-radius: 50%;
    color: white; background: var(--ink); box-shadow: 0 16px 35px rgba(23,23,23,.28);
    transform: translate(-50%, -50%); cursor: pointer; transition: transform .25s ease, background .25s ease;
}
.hero-play svg { width: 25px; margin-left: 3px; }
.hero-play:hover { background: var(--orange); transform: translate(-50%, -50%) scale(1.06); }

/* About */
.about { background: var(--wash); margin-top: 130px; }
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-wide {
    grid-column: 1 / -1;
    min-height: 430px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: white;
    background:
        radial-gradient(circle at 12% 10%, rgba(255,217,90,.22), transparent 30%),
        radial-gradient(circle at 90% 84%, rgba(184,232,239,.18), transparent 28%),
        #191919;
}
.about-wide-copy h3 { max-width: 520px; margin: 0 0 34px; font-size: clamp(36px, 4.2vw, 61px); line-height: 1; letter-spacing: -.055em; font-weight: 630; }
.check-list { margin: 30px 0 36px; padding: 0; display: grid; gap: 16px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: #4f4f4b; font-weight: 650; }
.check-list li span {
    width: 25px; height: 25px; flex: 0 0 25px; display: grid; place-items: center;
    border-radius: 50%; color: var(--ink); background: var(--green); font-size: 12px;
}
.check-list-large { margin: 0; gap: 0; }
.check-list-large li { padding: 22px 0; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.12); font-size: 17px; }
.check-list-large li:last-child { border-bottom: 0; }
.about-card { overflow: hidden; border-radius: var(--radius-lg); background: white; border: 1px solid #e5e5df; }
.about-card-visual {
    min-height: 330px; margin: 10px; padding: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 29px; color: white; background: #1b1b1b;
}
.location-visual { gap: 48px; background: radial-gradient(circle at 50% 0, #3a3930, #191919 62%); }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack img, .avatar-stack > span {
    width: 72px; height: 72px; margin-left: -17px;
    border: 5px solid #1d1d1d; border-radius: 50%; object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.avatar-stack > span { display: grid; place-items: center; color: var(--ink); background: var(--yellow); font-weight: 800; }
.sync-ring {
    width: 145px; height: 145px; display: grid; place-content: center; text-align: center;
    border-radius: 50%;
    background: radial-gradient(circle at center, #191919 57%, transparent 58%), conic-gradient(var(--green) 0 95%, rgba(255,255,255,.16) 95%);
}
.sync-ring strong { font-size: 30px; line-height: 1; }
.sync-ring small { margin-top: 6px; color: rgba(255,255,255,.58); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.role-profile { width: min(100%, 430px); padding: 27px; border: 1px solid rgba(255,255,255,.12); border-radius: 23px; background: #242424; box-shadow: 0 25px 40px rgba(0,0,0,.2); }
.role-profile-top { display: grid; grid-template-columns: 56px 1fr 28px; align-items: center; gap: 14px; }
.role-profile-top img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.role-profile-top div { display: grid; }
.role-profile-top strong { font-size: 15px; }
.role-profile-top span { color: rgba(255,255,255,.55); font-size: 11px; }
.role-profile-top .verified { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--green); }
.role-metrics { margin-top: 25px; padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.1); }
.role-metrics div { display: grid; gap: 2px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.role-metrics div:last-child { border: 0; }
.role-metrics strong { font-size: 21px; }
.role-metrics span { color: rgba(255,255,255,.45); font-size: 10px; }
.about-card-copy { padding: 32px 38px 40px; }
.about-card-copy > span { color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.about-card-copy h3 { margin: 12px 0 13px; font-size: 30px; line-height: 1.08; letter-spacing: -.04em; }
.about-card-copy p { margin: 0; color: var(--muted); }

/* Work */
.work { padding-bottom: 0; }
.work-shell, .integration-shell {
    position: relative; overflow: hidden;
    padding: 125px 0;
    border-radius: 48px;
    background: #181818;
}
.work-glow, .integration-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 8% 25%, rgba(255,217,90,.14), transparent 25%),
        radial-gradient(circle at 92% 78%, rgba(184,232,239,.13), transparent 28%);
}
.work-glow::after, .integration-glow::after {
    content: ""; position: absolute; inset: 0; opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent);
}
.work-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-card {
    min-height: 330px; padding: 38px;
    display: flex; flex-direction: column;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(10px);
}
.step-number {
    width: fit-content; padding: 8px 12px; border-radius: 999px;
    color: var(--ink); font-size: 12px; font-weight: 900;
}
.step-yellow { background: var(--yellow); }
.step-green { background: var(--green); }
.step-blue { background: var(--blue); }
.work-card h3 { margin: auto 0 15px; color: white; font-size: 27px; letter-spacing: -.04em; }
.work-card p { margin: 0; color: rgba(255,255,255,.58); }

/* Feature */
.feature { padding-bottom: 150px; }
.feature-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 78px; align-items: center; }
.feature-copy h2 { margin: 0; font-size: clamp(42px, 4.6vw, 68px); line-height: .98; letter-spacing: -.055em; font-weight: 640; }
.feature-visual { position: relative; min-height: 590px; padding: 24px; border-radius: var(--radius-lg); background: var(--wash); }
.feature-top { display: grid; grid-template-columns: 1.45fr .8fr; gap: 15px; }
.stock-watch, .sales-progress { padding: 25px; border-radius: 23px; background: white; border: 1px solid #e7e7e2; }
.mini-card-head { display: flex; justify-content: space-between; color: #73736e; font-size: 12px; font-weight: 700; }
.mini-card-head small { padding: 5px 8px; border-radius: 999px; color: #b95235; background: #fff0eb; }
.stock-item { margin-top: 34px; display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 13px; }
.product-mark { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; color: #c64e2e; background: #ffe6de; font-size: 12px; font-weight: 900; }
.stock-item > div { display: grid; }
.stock-item strong { font-size: 13px; }
.stock-item small { color: #92928d; font-size: 10px; }
.stock-count { color: #cf4f30; font-size: 11px; font-weight: 800; }
.stock-level { height: 7px; margin-top: 22px; overflow: hidden; border-radius: 999px; background: #ecece7; }
.stock-level span { display: block; width: 35%; height: 100%; border-radius: inherit; background: var(--orange); }
.stock-footer { margin-top: 11px; display: flex; justify-content: space-between; color: #969691; font-size: 9px; }
.stock-footer strong { color: var(--ink); }
.sales-progress { text-align: center; }
.sales-progress > span { display: block; text-align: left; color: #73736e; font-size: 12px; font-weight: 700; }
.progress-ring {
    width: 142px; height: 142px; margin: 28px auto 18px;
    display: grid; place-content: center; border-radius: 50%;
    background: radial-gradient(circle, white 58%, transparent 59%), conic-gradient(var(--orange) 0 78%, #ecece7 78%);
}
.progress-ring strong { font-size: 28px; line-height: 1; }
.progress-ring small { color: #91918c; font-size: 9px; }
.sales-progress p { margin: 0; color: #777772; font-size: 10px; }
.feature-bottom {
    position: absolute; left: 55px; right: 55px; bottom: 35px;
    min-height: 235px; padding: 38px;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
    overflow: hidden; border-radius: 28px; color: white;
    background: radial-gradient(circle at 100% 0, rgba(255,217,90,.25), transparent 32%), #1a1a1a;
    box-shadow: 0 28px 50px rgba(23,23,23,.18);
}
.feature-bottom > div:first-child > span { color: var(--yellow); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.feature-bottom h3 { max-width: 350px; margin: 14px 0 0; font-size: 34px; line-height: 1.04; letter-spacing: -.045em; }
.feature-locations { display: flex; }
.feature-locations img, .feature-locations > span {
    width: 62px; height: 62px; margin-left: -15px; border: 4px solid #1a1a1a; border-radius: 50%; object-fit: cover;
}
.feature-locations img:first-child { margin-left: 0; }
.feature-locations > span { display: grid; place-items: center; color: var(--ink); background: var(--yellow); font-weight: 800; }

/* Pricing */
.pricing { background: var(--wash); }
.pricing-switch {
    position: relative; width: fit-content; margin: 34px auto 0; padding: 5px;
    display: flex; border: 1px solid #dadad5; border-radius: 999px; background: white;
}
.pricing-switch button { min-width: 112px; padding: 10px 17px; border: 0; border-radius: 999px; color: #777772; background: transparent; cursor: pointer; font-size: 13px; font-weight: 750; }
.pricing-switch button.is-active { color: white; background: var(--ink); }
.pricing-switch > span {
    position: absolute; right: -84px; top: -22px; padding: 6px 11px;
    border-radius: 999px; color: var(--ink); background: var(--yellow);
    font-size: 10px; font-weight: 900; transform: rotate(9deg);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
    position: relative; height: 100%; padding: 42px 36px;
    border: 1px solid #deded8; border-radius: 30px; background: white;
}
.plan-name { color: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.price-card h3 { min-height: 64px; margin: 15px 0 28px; font-size: 26px; line-height: 1.12; letter-spacing: -.04em; }
.plan-price { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 27px; }
.plan-price strong { font-size: 55px; line-height: .9; letter-spacing: -.06em; transition: transform .2s ease; }
.plan-price strong.is-changing { transform: scale(.9); }
.plan-price span { color: #82827d; font-size: 12px; }
.price-card .button { width: 100%; }
.plan-features { margin: 33px 0 0; padding: 28px 0 0; display: grid; gap: 14px; border-top: 1px solid #e5e5df; list-style: none; }
.plan-features li { display: flex; gap: 10px; color: #5d5d58; font-size: 13px; }
.plan-features li span { color: #3d9b5d; font-weight: 900; }
.price-card-featured {
    padding: 7px; border-radius: 36px;
    background: linear-gradient(145deg, var(--yellow), #f6b5f1 46%, var(--blue));
}
.price-card-featured .price-card { border: 0; }
.popular-label {
    position: absolute; right: 27px; top: 26px; padding: 7px 10px;
    border-radius: 999px; color: var(--ink); background: var(--yellow); font-size: 9px; font-weight: 900; text-transform: uppercase;
}

/* Integration */
.integration { padding-bottom: 0; }
.integration-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.integration-card {
    min-height: 124px; padding: 23px 25px;
    display: grid; grid-template-columns: 60px 1fr 42px; align-items: center; gap: 18px;
    border: 1px solid rgba(255,255,255,.11); border-radius: 24px;
    color: white; background: rgba(255,255,255,.055); backdrop-filter: blur(10px);
}
.integration-icon {
    width: 60px; height: 60px; display: grid; place-items: center;
    border-radius: 18px; color: var(--ink); background: white; font-size: 21px; font-weight: 900;
}
.integration-icon.momo { background: var(--yellow); font-size: 16px; }
.integration-card h3 { margin: 0; font-size: 18px; }
.integration-card p { margin: 3px 0 0; color: rgba(255,255,255,.5); font-size: 12px; }
.integration-arrow {
    width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
    color: var(--ink); background: var(--green); font-weight: 900; transition: transform .25s ease;
}
.integration-card:hover .integration-arrow { transform: rotate(45deg); }
.integration-cta { position: relative; margin-top: 45px; text-align: center; }

/* Reviews */
.reviews { overflow: hidden; padding-bottom: 150px; }
.review-viewport { position: relative; width: 100%; overflow: hidden; }
.review-track {
    width: max-content; padding: 15px max(24px, calc((100vw - 1290px) / 2));
    display: flex; gap: 20px; transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.review-card {
    width: min(430px, calc(100vw - 48px)); min-height: 390px; padding: 36px;
    display: flex; flex-direction: column;
    border: 1px solid #e3e3de; border-radius: 29px; background: #f8f8f5;
    transform: scale(.96); opacity: .66; transition: transform .45s ease, opacity .45s ease, background .45s ease;
}
.review-card.is-active { background: white; box-shadow: 0 24px 60px rgba(23,23,23,.1); transform: scale(1); opacity: 1; }
.review-card > img { width: 70px; height: 70px; border-radius: 50% 50% 12px 50%; object-fit: cover; }
.review-card p { margin: 35px 0 32px; font-size: 24px; line-height: 1.35; letter-spacing: -.03em; }
.review-card > div { margin-top: auto; display: grid; }
.review-card strong { font-size: 14px; }
.review-card span { color: #8b8b86; font-size: 11px; }
.review-fade { position: absolute; z-index: 3; top: 0; bottom: 0; width: 9vw; pointer-events: none; }
.review-fade-left { left: 0; background: linear-gradient(to right, white, transparent); }
.review-fade-right { right: 0; background: linear-gradient(to left, white, transparent); }
.reviews-cta { margin-top: 45px; text-align: center; }

/* Footer */
.footer { padding: 90px 0 30px; color: white; background: #171717; }
.footer-top { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; padding-bottom: 70px; }
.footer-brand img { width: 180px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 420px; margin: 26px 0; color: rgba(255,255,255,.54); font-size: 16px; }
.footer-contact { display: flex; gap: 10px; }
.footer-contact a { padding: 10px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.76); font-size: 12px; }
.footer-contact a:hover { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links > div { display: grid; align-content: start; gap: 14px; }
.footer-links strong { margin-bottom: 9px; color: white; font-size: 13px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { padding-top: 27px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 11px; }

/* Modal */
.demo-modal {
    position: fixed; z-index: 2000; inset: 0; padding: 24px;
    display: grid; place-items: center; background: rgba(10,10,10,.75); backdrop-filter: blur(12px);
}
.demo-modal[hidden] { display: none; }
.demo-close {
    position: absolute; right: 28px; top: 26px; z-index: 2;
    width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
    color: white; background: rgba(255,255,255,.08); font-size: 27px; cursor: pointer;
}
.demo-dialog {
    width: min(1080px, 100%); max-height: calc(100vh - 60px); overflow: auto;
    display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px;
    padding: 54px; border-radius: 34px; background: white; box-shadow: var(--shadow);
}
.demo-copy { align-self: center; }
.demo-copy > span { color: var(--orange); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.demo-copy h2 { margin: 16px 0 20px; font-size: clamp(38px, 4vw, 58px); line-height: .96; letter-spacing: -.05em; }
.demo-copy p { margin: 0 0 28px; color: var(--muted); }
.demo-businesses { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.demo-businesses img { width: 100%; height: 220px; border-radius: 20px; object-fit: cover; }

.reveal { transform: translateY(22px); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { transform: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@media (max-width: 1100px) {
    .nav-shell { grid-template-columns: 170px 1fr 170px; }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 12px; }
    .hero-business-one, .hero-business-five { top: 160px; }
    .hero-business-four, .hero-business-eight { display: none; }
    .feature-grid { gap: 40px; }
    .feature-visual { min-height: 560px; }
    .feature-bottom { left: 40px; right: 40px; }
    .location-visual { gap: 20px; }
    .avatar-stack img, .avatar-stack > span { width: 60px; height: 60px; }
    .sync-ring { width: 120px; height: 120px; }
}

@media (max-width: 900px) {
    .section-space { padding: 95px 0; }
    .site-header { top: 12px; padding-inline: 12px; }
    .nav-shell { min-height: 62px; padding: 8px 8px 8px 18px; grid-template-columns: 1fr auto; }
    .brand { width: 140px; }
    .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute; left: 12px; right: 12px; top: 73px;
        padding: 18px; display: none; align-items: stretch; flex-direction: column; gap: 0;
        border: 1px solid #e1e1dc; border-radius: 25px; background: rgba(255,255,255,.97); box-shadow: var(--shadow);
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 12px; font-size: 14px; }
    .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
    .hero { padding-top: 205px; }
    .hero-business-one { left: 7%; top: 130px; }
    .hero-business-five { right: 7%; top: 130px; }
    .hero-business-two { left: 3%; }
    .hero-business-six { right: 3%; }
    .hero-business-three, .hero-business-seven { display: none; }
    .hero-media-wrap { margin-top: 85px; }
    .product-preview { min-height: 500px; grid-template-columns: 65px 1fr; }
    .preview-main { padding: 30px 25px; }
    .preview-grid { grid-template-columns: 1fr; }
    .activity-card { display: none; }
    .about { margin-top: 95px; }
    .about-wide { grid-template-columns: 1fr; gap: 40px; }
    .about-grid, .pricing-grid { grid-template-columns: 1fr; }
    .about-card { display: grid; grid-template-columns: 1fr 1fr; }
    .about-card-visual { min-height: 320px; }
    .about-card-copy { align-self: center; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card { min-height: 260px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-copy { max-width: 620px; }
    .integration-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .wide-shell { width: calc(100% - 18px); }
    .section-space { padding: 78px 0; }
    .section-heading { margin-bottom: 44px; }
    .section-heading h2 { font-size: 42px; }
    .section-heading p { font-size: 16px; }
    .hero { min-height: auto; padding-top: 175px; }
    .hero h1 { font-size: 46px; line-height: .96; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .button { width: min(100%, 285px); }
    .hero-business { width: 48px; height: 48px; border-width: 4px; }
    .hero-business-one { left: 7%; top: 112px; }
    .hero-business-five { right: 7%; top: 112px; }
    .hero-business-two { left: -8px; top: 330px; }
    .hero-business-six { right: -8px; top: 330px; }
    .hero-media-wrap { margin-top: 60px; width: calc(100% - 18px); }
    .hero-media-frame { padding: 7px; border-radius: 25px; }
    .product-preview { min-height: 385px; grid-template-columns: 48px 1fr; border-radius: 19px; }
    .preview-sidebar { padding: 17px 0; gap: 17px; }
    .preview-sidebar img { width: 28px; height: 28px; }
    .side-dot { width: 15px; height: 15px; border-width: 4px; }
    .preview-main { padding: 22px 14px; overflow: hidden; }
    .preview-topbar { margin-bottom: 18px; }
    .preview-topbar strong { font-size: 16px; }
    .preview-kicker { font-size: 8px; }
    .preview-store { padding: 8px; font-size: 0; }
    .preview-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .preview-stats article { padding: 13px; }
    .preview-stats article:last-child { display: none; }
    .preview-stats strong { font-size: 18px; }
    .preview-stats span { font-size: 9px; }
    .preview-grid { margin-top: 8px; }
    .chart-card { padding: 14px; }
    .chart-bars { height: 135px; gap: 7px; }
    .hero-play { width: 62px; height: 62px; border-width: 5px; }
    .about { margin-top: 78px; }
    .about-wide { min-height: 0; padding: 34px 25px; border-radius: 28px; }
    .about-wide-copy h3 { font-size: 38px; }
    .check-list-large li { padding: 17px 0; font-size: 14px; }
    .about-card { display: block; border-radius: 28px; }
    .about-card-visual { min-height: 260px; padding: 22px; border-radius: 21px; }
    .location-visual { flex-direction: column; }
    .avatar-stack img, .avatar-stack > span { width: 56px; height: 56px; }
    .sync-ring { width: 110px; height: 110px; }
    .about-card-copy { padding: 25px 25px 32px; }
    .about-card-copy h3 { font-size: 26px; }
    .work-shell, .integration-shell { padding: 80px 0; border-radius: 32px; }
    .work-card { min-height: 235px; padding: 29px; }
    .feature-copy h2 { font-size: 42px; }
    .feature-visual { min-height: 645px; padding: 12px; border-radius: 28px; }
    .feature-top { grid-template-columns: 1fr; }
    .sales-progress { display: grid; grid-template-columns: 1fr 130px; align-items: center; text-align: left; }
    .sales-progress > span { grid-column: 1 / -1; }
    .progress-ring { width: 110px; height: 110px; margin: 15px auto; grid-row: 2 / 4; grid-column: 2; }
    .sales-progress p { align-self: start; }
    .feature-bottom { left: 22px; right: 22px; bottom: 22px; min-height: 200px; padding: 27px; display: block; }
    .feature-bottom h3 { font-size: 28px; }
    .feature-locations { margin-top: 25px; }
    .feature-locations img, .feature-locations > span { width: 50px; height: 50px; }
    .pricing-switch > span { right: -13px; top: -32px; }
    .price-card { padding: 35px 27px; }
    .integration-card { grid-template-columns: 53px 1fr 38px; padding: 18px; }
    .integration-icon { width: 53px; height: 53px; border-radius: 15px; font-size: 17px; }
    .integration-arrow { width: 38px; height: 38px; }
    .review-card { min-height: 355px; padding: 29px; }
    .review-card p { font-size: 21px; }
    .review-fade { width: 4vw; }
    .footer { padding-top: 70px; }
    .footer-links { grid-template-columns: 1fr 1fr; row-gap: 45px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .demo-dialog { padding: 30px; grid-template-columns: 1fr; }
    .demo-businesses img { height: 135px; }
}

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