:root {
    --bg: #f6f8fc;
    --bg-soft: #ffffff;
    --bg-section: #edf2f8;
    --bg-strong: #dde5ef;
    --surface: rgba(255, 255, 255, .88);
    --surface-solid: #ffffff;
    --surface-inverse: #10192b;
    --text: #10192b;
    --text-soft: #3b495e;
    --text-muted: #6b7a92;
    --line: rgba(15, 23, 42, .08);
    --line-strong: rgba(15, 23, 42, .14);
    --panel-shell-line: rgba(15, 23, 42, .08);
    --panel-card-line: rgba(15, 23, 42, .07);
    --panel-shell-shadow: 0 22px 46px rgba(15, 23, 42, .08);
    --primary: #5b6df7;
    --primary-deep: #4459ea;
    --secondary: #788bff;
    --secondary-soft: rgba(120, 139, 255, .12);
    --reward: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --ink-1: #0d1527;
    --ink-2: #141d31;
    --ink-3: #1a2640;
    --accent-ghost: rgba(91, 109, 247, .14);
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, .05);
    --shadow-md: 0 18px 48px rgba(15, 23, 42, .08);
    --shadow-lg: 0 32px 84px rgba(15, 23, 42, .14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --container: 1180px;
    --section-space: 104px;
    --section-space-mobile: 64px;
    --font-display: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --ease: .22s ease
}

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

.section {
    padding: var(--section-space) 0
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(237, 242, 248, .82));
    border-top: 1px solid rgba(15, 23, 42, .05);
    border-bottom: 1px solid rgba(15, 23, 42, .05)
}

.section--tight {
    padding-top: 22px;
    padding-bottom: 18px
}

.section--quiet {
    padding-top: 72px;
    padding-bottom: 72px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(91, 109, 247, .3)
}

.section-title {
    margin: 16px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: .98;
    letter-spacing: -.04em;
    text-wrap: balance
}

.section-text {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    line-height: 1.68;
    color: var(--text-soft)
}

.card {
    background: #ffffffd1;
    border: 1px solid var(--panel-shell-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px)
}

@media(max-width:720px) {
    .container {
        width: min(100% - 24px, var(--container))
    }

    .section {
        padding: var(--section-space-mobile) 0
    }

    .section--quiet {
        padding-top: 44px;
        padding-bottom: 44px
    }

    .section--tight {
        padding-top: 18px;
        padding-bottom: 16px
    }
}

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

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

html:focus-within {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-body);
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(99, 102, 241, .09), transparent 26%), radial-gradient(circle at 100% 6%, rgba(139, 92, 246, .07), transparent 22%), radial-gradient(circle at 12% 48%, rgba(16, 185, 129, .04), transparent 18%), linear-gradient(180deg, #f8fafc 0% 34%, #f1f5f9);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased
}

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

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%
}

button,
input,
textarea,
select {
    font: inherit
}

button {
    cursor: pointer
}

:focus-visible {
    outline: 2px solid rgba(99, 102, 241, .55);
    outline-offset: 3px
}

main {
    overflow: clip
}

#main-content {
    scroll-margin-top: 96px
}

@media(max-width:720px) {
    body {
        padding-bottom: 84px
    }

    html {
        scroll-padding-top: 88px
    }

    #main-content {
        scroll-margin-top: 80px
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform var(--ease), border-color var(--ease), background-color var(--ease), box-shadow var(--ease)
}

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

.button:focus-visible {
    transform: translateY(-1px)
}

.button--md {
    min-height: 52px;
    padding: 0 22px;
    font-size: 15px
}

.button--lg {
    min-height: 58px;
    padding: 0 26px;
    font-size: 16px
}

.button--full {
    width: 100%
}

.button--primary {
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    color: var(--bg-soft);
    box-shadow: 0 16px 32px rgba(68, 89, 234, .24)
}

.button--primary:hover {
    box-shadow: 0 20px 36px rgba(68, 89, 234, .3)
}

.button--primary:focus-visible {
    box-shadow: 0 20px 36px rgba(68, 89, 234, .3)
}

.button--secondary {
    background: rgba(255, 255, 255, .9);
    border-color: rgba(15, 23, 42, .08);
    color: var(--text);
    box-shadow: 0 10px 20px rgba(15, 23, 42, .05)
}

.button--secondary:hover,
.button--secondary:focus-visible {
    border-color: var(--accent-ghost);
    background: rgba(255, 255, 255, .98);
    color: var(--primary-deep);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08)
}

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(250, 251, 255, .82);
    border-bottom: 1px solid rgba(15, 23, 42, .05)
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none
}

.brand__wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-family: var(--font-display);
    font-size: 1.78rem;
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.05em;
    color: var(--text)
}

.brand__wordmark-boost {
    color: var(--text)
}

.brand__wordmark-grow {
    color: var(--primary-deep)
}

.brand__wordmark--footer {
    font-size: 1.4rem;
    letter-spacing: -.045em
}

@media(max-width:720px) {
    .header__inner {
        min-height: 72px
    }

    .brand__wordmark {
        font-size: 1.5rem
    }

    .brand__wordmark--footer {
        font-size: 1.22rem
    }

    .header .button {
        display: none
    }
}

.footer {
    padding: 42px 0 54px;
    border-top: 0;
    background: transparent
}

.footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 0 0;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
    background: transparent;
    box-shadow: none
}

.footer__copy {
    max-width: 34rem
}

.footer__brand {
    display: inline-flex;
    align-items: center
}

.footer p,
.footer a,
.footer span {
    color: var(--text-soft)
}

.footer p {
    max-width: none;
    margin: 10px 0 0;
    line-height: 1.6
}

.footer__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-size: 14px;
    text-align: right
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.footer__action,
.footer__link {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .84);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    line-height: 1;
    text-align: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--ease), border-color var(--ease), background-color var(--ease), color var(--ease), box-shadow var(--ease)
}

.footer__action:hover,
.footer__link:hover,
.footer__action:focus-visible,
.footer__link:focus-visible {
    outline: none;
    transform: translateY(-1px);
    color: var(--primary-deep);
    border-color: var(--accent-ghost);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06)
}

@media(max-width:720px) {
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 18px
    }

    .footer__meta {
        align-items: flex-start;
        text-align: left
    }

    .footer__links {
        justify-content: flex-start
    }
}

.heading--center {
    text-align: center;
    margin-inline: auto
}

.heading--center .section-text {
    margin-inline: auto
}

.privacy-back {
    position: sticky;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    width: fit-content;
    margin: 28px auto 0;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(16, 25, 43, .88);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .16);
    backdrop-filter: blur(14px);
    color: #f8fafc;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform var(--ease), border-color var(--ease), background-color var(--ease), box-shadow var(--ease), color var(--ease)
}

.privacy-back:before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg)
}

.privacy-back:hover,
.privacy-back:focus-visible {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(199, 210, 254, .16);
    background: rgba(16, 25, 43, .94);
    box-shadow: 0 22px 38px rgba(15, 23, 42, .2)
}

@media(max-width:720px) {
    .privacy-back {
        bottom: 18px;
        min-height: 42px;
        padding: 0 16px
    }
}

.heading--center .eyebrow {
    justify-content: center
}

.privacy-page {
    position: relative;
    isolation: isolate;
    padding-top: 24px;
    padding-bottom: 30px
}

.privacy-page:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, .94), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(99, 102, 241, .1), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(248, 250, 252, .1));
    filter: blur(16px);
    pointer-events: none
}

.privacy {
    max-width: none;
    width: 100%;
    padding: 28px;
    border-radius: 36px;
    border: 1px solid rgba(15, 23, 42, .07);
    background:
        radial-gradient(circle at 86% 12%, rgba(91, 109, 247, .12), transparent 20%),
        linear-gradient(180deg, var(--ink-1), var(--ink-2));
    box-shadow: 0 28px 60px rgba(15, 23, 42, .18)
}

.privacy .heading {
    margin: 0
}

.privacy .heading .eyebrow,
.privacy .heading .section-title,
.privacy .heading .section-text {
    color: #f8fafc
}

.privacy .heading .section-text {
    max-width: 52rem;
    color: rgba(226, 232, 240, .76)
}

.privacy .heading .eyebrow:before {
    background: rgba(226, 232, 240, .22)
}

.privacy section {
    margin-top: 14px;
    padding: 18px 20px;
    border-top: 0;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .94));
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05)
}

.privacy h2 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.1;
    letter-spacing: -.03em
}

.privacy p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-soft)
}

@media(max-width:720px) {
    .privacy {
        padding: 18px;
        border-radius: 26px
    }

    .privacy p {
        font-size: 15px;
        line-height: 1.6
    }

    .privacy-page {
        padding-top: 14px;
        padding-bottom: 18px
    }
}

.mobile-cta {
    display: none
}

@media(max-width:720px) {
    .mobile-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        padding: 10px 0 calc(14px + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, rgba(248, 250, 252, .82), rgba(248, 250, 252, .96));
        border-top: 1px solid rgba(15, 23, 42, .06);
        backdrop-filter: blur(18px)
    }

    .mobile-cta .button {
        min-height: 54px;
        box-shadow: 0 16px 28px rgba(79, 70, 229, .22)
    }
}

.prototype-shot {
    --frame-width: 375px;
    --frame-height: 748px;
    --frame-scale: .665;
    --shell-padding: 10px;
    --shell-width-raw: calc(var(--frame-width) + (var(--shell-padding) * 2));
    --shell-height-raw: calc(var(--frame-height) + (var(--shell-padding) * 2));
    --shell-width: calc(var(--shell-width-raw) * var(--frame-scale));
    --shell-height: calc(var(--shell-height-raw) * var(--frame-scale));
    position: relative;
    width: var(--shell-width);
    height: var(--shell-height);
    flex: 0 0 var(--shell-width)
}

.prototype-shot__scale {
    width: var(--shell-width-raw);
    height: var(--shell-height-raw);
    transform: scale(var(--frame-scale));
    transform-origin: top left
}

.prototype-shot__shell {
    width: var(--shell-width-raw);
    height: var(--shell-height-raw);
    padding: var(--shell-padding);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(226, 232, 240, .94));
    border: 1px solid rgba(15, 23, 42, .12);
    box-shadow: 0 22px 46px rgba(15, 23, 42, .14), inset 0 1px 0 rgba(255, 255, 255, .72), inset 0 -10px 20px rgba(148, 163, 184, .08)
}

.prototype-shot__viewport {
    position: relative;
    width: var(--frame-width);
    height: var(--frame-height);
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    border: 1px solid rgba(15, 23, 42, .1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55)
}

.screen {
    position: relative;
    width: 375px;
    height: 748px;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    color: #0f172a;
    font-family: var(--font-body)
}

.stack {
    position: relative;
    width: 100%;
    height: 100%
}

.hero-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    box-sizing: border-box;
    background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .26), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, .05), rgba(79, 70, 229, .04));
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, .09), inset 0 1px 0 rgba(255, 255, 255, .3)
}

.hero-row,
.meta-row,
.section-head,
.banner-row,
.leader-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start
}

.hero-pill {
    justify-self: end;
    align-self: start;
    margin-top: 2px
}

.score-wrap {
    display: flex;
    align-items: flex-end;
    gap: 6px
}

.score-icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: rgba(79, 70, 229, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #4338ca;
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, .1)
}

.score-value {
    font-size: 38px;
    line-height: .82;
    font-weight: 900;
    letter-spacing: -1.4px;
    color: #0f172a;
    text-shadow: none
}

.score-label,
.muted,
.welcome-copy p,
.task-card p,
.banner-copy p {
    color: #64748b
}

.score-label {
    font-size: 14px;
    line-height: 1;
    padding-bottom: 3px;
    font-weight: 700;
    color: #475569
}

.muted {
    margin-top: 7px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b
}

.coin-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px 8px 11px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .94));
    border: 1px solid rgba(15, 23, 42, .07);
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .72)
}

.progress {
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, .06)
}

.progress>div {
    width: 27%;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(99, 102, 241, .35)
}

.meta-row {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-align: right
}

.meta-row strong {
    display: block;
    margin-left: auto;
    color: #0f172a;
    letter-spacing: -.02em
}

.welcome {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 10px;
    align-items: center
}

.welcome-section {
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    width: auto
}

.mascot-shell {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(241, 245, 249, .94));
    border: 1px solid rgba(15, 23, 42, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08)
}

.mascot-shell img {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9)
}

.welcome-copy {
    position: relative;
    background: rgba(255, 255, 255, .98);
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .07)
}

.welcome-copy strong {
    display: block;
    font-size: 13px;
    line-height: 1.2
}

.welcome-copy p {
    margin: 6px 0 0;
    font-size: 11px;
    line-height: 1.35
}

.welcome-copy p:last-child {
    margin-top: 4px
}

.section-head {
    padding: 0;
    margin-bottom: 8px
}

.section-head h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -.5px;
    line-height: 1
}

.tasks-strip {
    position: relative
}

.tasks-section {
    position: absolute;
    top: 228px;
    left: 0;
    right: 0;
    width: auto
}

.tasks-strip:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38px;
    background: linear-gradient(90deg, #f8fafc00, #eef2fff5);
    pointer-events: none
}

.scroll-x {
    display: flex;
    gap: 10px;
    overflow: hidden
}

.task-card {
    min-width: 236px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .06), 0 10px 24px rgba(15, 23, 42, .07);
    border-left: 4px solid rgba(79, 70, 229, .78);
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 2px;
    min-height: 124px
}

.task-card--secondary {
    min-width: 160px;
    max-width: 160px
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 8px;
    background: #6366f114;
    border: 1px solid rgba(99, 102, 241, .14);
    color: #6366f1;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px
}

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

.task-score {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6366f1;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap
}

.task-card h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.08;
    min-height: 24px
}

.task-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.18;
    min-height: 22px
}

.task-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 30px;
    margin-top: 2px;
    color: #64748b;
    font-size: 11px
}

.task-footer--preview {
    justify-content: flex-start
}

.task-cta {
    padding: 8px 14px;
    border-radius: 999px;
    background: #6366f1;
    color: #fff;
    font-size: 11px;
    font-weight: 700
}

.banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 122px;
    box-shadow: 0 20px 34px rgba(15, 23, 42, .18);
    background: linear-gradient(180deg, #0f172a, #1e293b)
}

.banner-section {
    position: absolute;
    top: 406px;
    left: 0;
    right: 0;
    width: auto
}

.banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .18), transparent), radial-gradient(circle at 78% 26%, rgba(255, 255, 255, .12), transparent 40%)
}

.banner-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 16px;
    display: grid;
    gap: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.banner-copy h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    text-shadow: 0 1px 2px rgba(15, 23, 42, .18)
}

.banner-copy p {
    margin: 6px 0 0;
    color: rgba(226, 232, 240, .9);
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(15, 23, 42, .16)
}

.banner-note {
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right
}

.banner-coins {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f8fafc;
    font-size: 18px;
    font-weight: 800
}

.banner-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .18)
}

.leaderboard {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .98));
    border-radius: 24px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .06), 0 12px 24px rgba(15, 23, 42, .07);
    overflow: hidden
}

.leaderboard-section {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto
}

.leader-row {
    padding: 10px 12px;
    font-size: 13px
}

.leader-row+.leader-row {
    border-top: 1px solid #e2e8f0
}

.leader-row--top {
    background: linear-gradient(90deg, #f8fafcfa, #fffffff5)
}

.leader-rank {
    width: 22px;
    text-align: center;
    font-weight: 800;
    color: #f59e0b
}

.leader-rank--muted {
    color: #94a3b8
}

.leader-rank--soft {
    color: #64748b
}

.leader-main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1
}

.leader-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover
}

.leader-avatar--metric {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #e0e7ff, #eef2ff);
    border: 1px solid rgba(79, 70, 229, .14);
    color: #312e81;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.leader-score {
    font-size: 13px;
    font-weight: 800
}

.leader-badge {
    position: relative
}

.leader-badge:after {
    content: none
}

@media(max-width:720px) {
    .prototype-shot {
        width: 257px;
        flex-basis: 257px
    }
}

.hero {
    position: relative;
    isolation: isolate;
    padding-top: 18px;
    padding-bottom: 32px
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .96), transparent 30%), radial-gradient(circle at 72% 12%, rgba(255, 255, 255, .84), transparent 26%), radial-gradient(circle at 52% 38%, rgba(79, 70, 229, .05), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(248, 250, 252, .12));
    pointer-events: none
}

.hero__top {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 252px;
    gap: 20px;
    align-items: start
}

.hero__content {
    max-width: none;
    display: grid;
    align-content: start;
    padding-top: 10px
}

.hero__render {
    width: fit-content;
    justify-self: end;
    align-self: start
}

.hero__intro h1 {
    margin: 8px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.4vw, 4.3rem);
    line-height: .9;
    letter-spacing: -.07em;
    text-wrap: balance;
    max-width: 14.4ch
}

.hero__intro .hero__accent {
    color: var(--primary)
}

.hero__intro .hero__accent-secondary {
    color: var(--secondary)
}

.hero__intro p {
    max-width: 34rem;
    margin: 14px 0 0;
    font-size: 1.06rem;
    line-height: 1.58;
    color: var(--text-soft)
}

.hero__flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4
}

.hero__flow span:before {
    content: none
}

.hero__flow span {
    margin: 0 10px;
    color: #6366f18c;
    font-weight: 700
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

@media(max-width:1180px) {
    .hero__top {
        grid-template-columns: minmax(0, 1.28fr) 264px;
        gap: 10px
    }

    .hero__intro h1 {
        max-width: 14.2ch
    }
}

@media(max-width:1100px) {
    .hero {
        padding-bottom: 24px
    }

    .hero__top {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .hero__content {
        max-width: none
    }

    .hero__render {
        width: fit-content;
        justify-self: center
    }

    .hero__intro h1 {
        max-width: 12.5ch
    }
}

@media(max-width:720px) {
    .hero {
        padding-top: 14px;
        padding-bottom: 20px
    }

    .hero__intro h1 {
        max-width: none;
        font-size: clamp(2.15rem, 8.8vw, 2.9rem);
        line-height: .94
    }

    .hero__actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 16px
    }

    .hero__flow {
        margin-top: 14px;
        font-size: 12.5px
    }
}

.problem-section {
    position: relative;
    isolation: isolate
}

.problem-section:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .86), transparent 26%), radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .68), transparent 24%), radial-gradient(circle at 48% 42%, rgba(239, 68, 68, .05), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(248, 250, 252, .14));
    filter: blur(16px);
    pointer-events: none
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px
}

.problem-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--panel-card-line);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .05)
}

.problem-card--tint {
    background: linear-gradient(135deg, rgba(239, 68, 68, .04), rgba(255, 255, 255, .94))
}

.problem-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -.05em
}

.problem-card p {
    margin: 14px 0 0;
    color: var(--text-soft);
    line-height: 1.68
}

@media(max-width:1100px) {
    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:720px) {
    .problem-grid {
        grid-template-columns: 1fr;
        margin-top: 28px
    }
}

.solution-section {
    position: relative;
    isolation: isolate
}

.solution-section:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 14% 16%, rgba(255, 255, 255, .88), transparent 28%), radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .72), transparent 24%), radial-gradient(circle at 48% 42%, rgba(79, 70, 229, .06), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(248, 250, 252, .14));
    filter: blur(16px);
    pointer-events: none
}

.solution {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 20px;
    align-items: start
}

.solution__intro {
    max-width: 42rem
}

.solution__panel {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .9));
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .06)
}

.solution__panel-lead {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: none;
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1e293b, #312e81);
    color: #fff;
    box-shadow: 0 18px 34px rgba(30, 41, 59, .18)
}

.solution__panel-lead p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: .98rem;
    line-height: 1.52
}

.solution__list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: start;
    gap: 10px
}

.solution__list:before {
    content: none
}

.solution__item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center
}

.solution__rail {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.solution__number {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    box-shadow: 0 10px 20px rgba(79, 70, 229, .18);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    color: #fff
}

.solution__card {
    min-height: 0;
    padding: 14px 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--panel-card-line);
    box-shadow: 0 10px 20px rgba(15, 23, 42, .05)
}

.solution__card--tint {
    background: linear-gradient(135deg, rgba(79, 70, 229, .05), rgba(255, 255, 255, .98))
}

.solution__card p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.18;
    letter-spacing: -.04em
}

@media(max-width:1100px) {
    .solution {
        grid-template-columns: 1fr
    }
}

@media(max-width:720px) {
    .solution__panel {
        padding: 18px;
        border-radius: 24px
    }

    .solution__item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px
    }

    .solution__number {
        width: 36px;
        height: 36px;
        font-size: 12px
    }

    .solution__card {
        padding: 14px 16px
    }
}

.mechanics-section {
    position: relative;
    isolation: isolate;
    padding-bottom: 20px
}

.mechanics-section:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 14% 16%, rgba(255, 255, 255, .78), transparent 28%), radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .62), transparent 24%), radial-gradient(circle at 48% 42%, rgba(15, 23, 42, .03), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, .36), rgba(248, 250, 252, .08));
    filter: blur(16px);
    pointer-events: none
}

.mechanics-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
    margin-top: 26px
}

.mechanics-item {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 100%;
    padding: 18px 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, .06);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04)
}

.mechanics-item:nth-child(2n) {
    background: linear-gradient(135deg, rgba(15, 23, 42, .02), rgba(255, 255, 255, .92))
}

.mechanics-item__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap
}

.mechanics-item__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f172a, #334155);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .12)
}

.mechanics-item__eyebrow {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.mechanics-item h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.08;
    letter-spacing: -.045em;
    color: var(--text)
}

.mechanics-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.52;
    color: var(--text-soft)
}

@media(max-width:1200px) {
    .mechanics-list {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .mechanics-item {
        min-height: 0
    }
}

@media(max-width:720px) {
    .mechanics-list {
        grid-template-columns: 1fr;
        margin-top: 20px
    }

    .mechanics-item {
        padding: 16px 16px 18px;
        gap: 8px
    }
}

.benefits-section {
    position: relative;
    isolation: isolate
}

.benefits-section:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .88), transparent 26%), radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .72), transparent 24%), radial-gradient(circle at 48% 42%, rgba(79, 70, 229, .08), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, .57), rgba(248, 250, 252, .14));
    filter: blur(16px);
    pointer-events: none
}

.benefits {
    display: grid;
    gap: 18px
}

.benefits__panel {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 36px;
    background: linear-gradient(180deg, var(--ink-1), var(--ink-2));
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 28px 56px rgba(15, 23, 42, .16)
}

.benefits__main {
    display: grid;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none
}

.benefits__label,
.benefits__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff
}

.benefits__label {
    width: fit-content;
    padding: 0 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none
}

.benefits__index {
    justify-content: flex-start;
    min-width: 0;
    min-height: auto;
    width: auto;
    padding: 0;
    border-radius: 0;
    background: none;
    color: #475569;
    border: 0;
    box-shadow: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.benefits__main h3 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(1.94rem, 2.55vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -.055em;
    color: #fff
}

.benefits__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 6px
}

.benefits__metric {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 116px;
    padding: 20px 20px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .06)
}

.benefits__metric strong {
    margin: 0;
    font-size: 1.26rem;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff
}

.benefits__metric span {
    font-size: 12.5px;
    line-height: 1.52;
    color: rgba(255, 255, 255, .72)
}

.benefits__side {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-content: start
}

.benefits__item {
    display: block;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .94));
    box-shadow: none
}

.benefits__item--tint {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 245, 249, .94))
}

.benefits__copy {
    display: grid;
    gap: 12px
}

.benefits__copy p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.62;
    color: #475569
}

@media(max-width:1100px) {
    .benefits__metrics {
        grid-template-columns: 1fr
    }

    .benefits__side {
        grid-template-columns: 1fr
    }
}

@media(max-width:720px) {
    .benefits {
        gap: 18px
    }

    .benefits__panel {
        gap: 12px;
        padding: 16px;
        border-radius: 26px
    }

    .benefits__main {
        padding: 18px;
        border-radius: 22px
    }

    .benefits__metrics {
        margin-top: 14px
    }

    .benefits__item {
        padding: 14px;
        border-radius: 18px
    }
}

.faq-section {
    position: relative;
    overflow: hidden;
    isolation: isolate
}

.faq-section:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .84), transparent 26%), radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .68), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(248, 250, 252, .1));
    filter: blur(16px);
    pointer-events: none
}

.faq-section .container {
    position: relative;
    z-index: 1
}

.faq-panel {
    width: 100%;
    max-width: none;
    margin: 24px 0 0
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
}

.faq-item {
    border-radius: 20px;
    border: 1px solid var(--panel-card-line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
    overflow: hidden
}

.faq-item--tint {
    background: rgba(255, 255, 255, .96)
}

.faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    list-style: none;
    cursor: pointer;
    padding: 16px 18px
}

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

.faq-item summary span {
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 800;
    color: var(--text)
}

.faq-item summary i {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(248, 250, 252, .94);
    flex-shrink: 0
}

.faq-item summary i:before,
.faq-item summary i:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    border-radius: 999px
}

.faq-item summary i:before {
    width: 14px;
    height: 2px
}

.faq-item summary i:after {
    width: 2px;
    height: 14px
}

.faq-item[open] summary i:after {
    opacity: 0
}

.faq-answer {
    padding: 0 18px 16px
}

.faq-answer p {
    max-width: 720px;
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.55
}

@media(max-width:900px) {
    .faq-panel {
        margin-top: 18px
    }

    .faq-item {
        border-radius: 18px
    }

    .faq-item summary {
        padding: 16px 18px;
        gap: 12px
    }

    .faq-item summary span {
        font-size: 17px
    }

    .faq-answer {
        padding: 0 18px 16px
    }

    .faq-answer p {
        font-size: 15px
    }
}

@media(max-width:640px) {
    .faq-panel {
        margin-top: 16px
    }

    .faq-item {
        border-radius: 18px
    }

    .faq-item summary {
        padding: 16px
    }

    .faq-item summary span {
        font-size: 16px;
        line-height: 1.18
    }

    .faq-item summary i {
        width: 28px;
        height: 28px
    }

    .faq-answer {
        padding: 0 16px 16px
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.55
    }
}

.lead-form {
    padding: 16px;
    width: 100%;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid var(--panel-shell-line);
    background: linear-gradient(180deg, #fffffff5, #f8fafcf0);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08)
}

.lead-form--modal {
    margin-top: 18px;
    max-width: 100%;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08)
}

.lead-form__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px
}

.lead-form__top strong {
    display: block;
    font-size: 22px;
    line-height: 1.04;
    letter-spacing: -.05em
}

.lead-form__top p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.5
}

.lead-form__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #6366f114;
    color: var(--primary-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.lead-form__grid {
    display: grid;
    gap: 8px
}

.lead-form__choice {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0
}

.lead-form__choice legend {
    margin-bottom: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-soft)
}

.lead-form__choice-options {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 5px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: linear-gradient(180deg, #ffffffd9, #f8fafce8);
    box-shadow: inset 0 1px rgba(255, 255, 255, .72)
}

.lead-form__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    box-shadow: none;
    cursor: pointer;
    transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease)
}

.lead-form__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    inline-size: 1px;
    block-size: 1px;
    margin: 0
}

.lead-form__option span {
    font-size: 13px;
    font-weight: 800;
    color: inherit
}

.lead-form__option.is-active {
    background: #fff;
    border-color: rgba(99, 102, 241, .14);
    color: var(--primary-deep);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06), inset 0 1px rgba(255, 255, 255, .85)
}

.lead-form__contact-field {
    gap: 7px
}

.lead-form__honeypot {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap
}

.lead-form label {
    display: grid;
    gap: 7px
}

.lead-form span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-soft)
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 16px;
    padding: 0 14px;
    background: #f8fafcfa;
    color: var(--text);
    box-shadow: inset 0 1px #ffffffb3;
    transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease)
}

.lead-form textarea {
    min-height: 92px;
    padding: 12px 14px;
    resize: vertical
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: var(--text-muted)
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: #6366f173;
    box-shadow: 0 0 0 4px #6366f11a, inset 0 1px #ffffffd1;
    background: #fff
}

.lead-form__consent {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5
}

.lead-form__consent input {
    min-height: 16px;
    width: 16px;
    margin: 2px 0 0
}

.lead-form__consent a,
.lead-form__note a,
.inline-action {
    color: var(--primary-deep);
    font-weight: 700;
    text-decoration: none
}

.lead-form__inline-link {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 2px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--primary-deep);
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform var(--ease), color var(--ease), background-color var(--ease), box-shadow var(--ease)
}

.lead-form__inline-link:hover,
.lead-form__inline-link:focus-visible,
.lead-form__consent a:hover,
.lead-form__consent a:focus-visible,
.inline-action:hover,
.inline-action:focus-visible {
    outline: none;
    transform: translateY(-1px);
    background: rgba(99, 102, 241, .08);
    color: #4338ca;
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, .08)
}

.lead-form__submit {
    margin-top: 10px;
    display: grid;
    gap: 8px
}

.lead-form__note,
.lead-form__status {
    margin: 0;
    font-size: 13px;
    line-height: 1.55
}

.lead-form__note {
    color: var(--text-muted)
}

.lead-form__status {
    min-height: 20px;
    color: var(--text-soft);
    font-weight: 700
}

.lead-form__status[data-state="loading"] {
    color: var(--text-soft)
}

.lead-form__status[data-state="success"] {
    color: #0f766e
}

.lead-form__status[data-state="error"] {
    color: #b42318
}

.modal[hidden] {
    display: none
}

body.modal-open {
    overflow: hidden
}

.modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    isolation: isolate
}

.modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .58);
    backdrop-filter: blur(12px)
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-width: 100%;
    max-height: calc(100dvh - 40px);
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, .08);
    background:
        radial-gradient(circle at 86% 12%, rgba(99, 102, 241, .12), transparent 20%),
        linear-gradient(180deg, #0b1120, #111827);
    box-shadow: 0 28px 72px rgba(15, 23, 42, .28);
    overflow-x: hidden;
    overflow-y: auto
}

.modal__content {
    width: 100%;
    padding: 22px 22px 20px
}

.modal .lead-form--modal {
    border-color: rgba(15, 23, 42, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .985), rgba(248, 250, 252, .96));
    box-shadow: 0 16px 34px rgba(15, 23, 42, .1)
}

.modal__content h3 {
    margin: 14px 0 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.02;
    letter-spacing: -.05em;
    color: #f8fafc
}

.modal__content p {
    margin: 12px 0 0;
    color: rgba(226, 232, 240, .76);
    line-height: 1.6
}

.modal .lead-form__consent {
    margin-top: 10px
}

.modal .lead-form__consent,
.modal .lead-form__consent span {
    color: var(--text-soft)
}

.modal .lead-form__inline-link,
.modal .lead-form__consent a,
.modal .inline-action {
    color: var(--primary-deep)
}

.modal .lead-form__status[data-state="loading"] {
    color: var(--text-soft)
}

.modal .lead-form__status[data-state="success"] {
    color: #0f766e
}

.modal .lead-form__status[data-state="error"] {
    color: #b42318
}

.modal__content a {
    color: #c7d2fe;
    font-weight: 700
}

.modal__content .eyebrow {
    color: #c7d2fe
}

.modal__content .eyebrow:before {
    background: rgba(199, 210, 254, .22)
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .14);
    background: rgba(255, 255, 255, .08);
    color: #f8fafc;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12)
}

.modal__close:hover,
.modal__close:focus-visible {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(199, 210, 254, .18);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .16)
}

.modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

.modal__actions .button--secondary {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(199, 210, 254, .16);
    color: #f8fafc;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .14)
}

.modal__actions .button--secondary:hover,
.modal__actions .button--secondary:focus-visible {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(199, 210, 254, .26);
    color: #fff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, .18)
}

@media(max-width:720px) {
    .lead-form {
        padding: 18px;
        border-radius: 24px
    }

    .lead-form__top {
        flex-direction: column;
        align-items: flex-start
    }

    .modal {
        padding: 12px
    }

    .modal__dialog {
        max-height: calc(100dvh - 24px);
        border-radius: 24px
    }

    .modal__content {
        padding: 18px 16px 16px
    }

    .modal__actions {
        display: grid
    }
}

.cta-section {
    position: relative;
    isolation: isolate;
    padding-bottom: 16px
}

.cta-section:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 14% 16%, rgba(255, 255, 255, .82), transparent 26%), radial-gradient(circle at 84% 18%, rgba(79, 70, 229, .08), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, .44), rgba(248, 250, 252, .08));
    filter: blur(16px);
    pointer-events: none
}

.cta-wrap {
    position: relative;
    overflow: hidden;
    padding: 0;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none
}

.cta-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0
}

.cta-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    align-items: start;
    width: 100%;
    gap: 24px;
    max-width: none;
    margin: 0 auto;
    padding: 34px 36px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(circle at 90% 14%, rgba(91, 109, 247, .16), transparent 18%),
        linear-gradient(180deg, var(--ink-1), var(--ink-2));
    box-shadow: 0 24px 48px rgba(15, 23, 42, .18)
}

.cta-stack .heading {
    max-width: none;
    margin: 0;
    padding-top: 6px
}

.cta-stack .heading .section-text {
    margin-left: 0;
    margin-right: 0
}

.cta-stack .heading .eyebrow {
    justify-content: flex-start;
    background: none;
    border-color: transparent;
    color: #f8fafc;
    letter-spacing: .18em
}

.cta-stack .heading .section-title,
.cta-stack .heading .section-text,
.cta-stack .heading .eyebrow {
    max-width: 580px
}

.cta-stack .heading .section-title {
    max-width: 10.5ch;
    color: #f8fafc;
    font-size: clamp(2.3rem, 3.6vw, 3.4rem);
    line-height: .96
}

.cta-stack .heading .section-text {
    color: rgba(226, 232, 240, .76)
}

.cta-stack .heading .eyebrow:before {
    width: 28px;
    background: rgba(226, 232, 240, .22)
}

.cta-wrap .lead-form {
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, .98)
}

@media(max-width:720px) {
    .cta-stack {
        padding: 18px;
        border-radius: 24px
    }

    .cta-wrap {
        padding: 0
    }

    .section-title {
        margin-top: 14px
    }

    .section-text {
        margin-top: 14px;
        line-height: 1.6
    }
}

.coin-mark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 7px;
    background: linear-gradient(180deg, #e4eafc, #ccd7ff);
    border: 1px solid rgba(68, 89, 234, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72)
}

.coin-mark:before {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    height: 8px;
    border-radius: 3px 3px 2px 2px;
    background: linear-gradient(180deg, var(--primary-deep), var(--primary))
}

.coin-mark:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .88)
}

/* Redesign system */

.header {
    background: rgba(255, 255, 255, .72);
    border-bottom: 1px solid rgba(15, 23, 42, .06)
}

.header__inner {
    min-height: 92px;
    padding: 10px 0
}

.brand {
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04)
}

.header .button {
    box-shadow: 0 18px 32px rgba(68, 89, 234, .18)
}

.section--soft {
    background: transparent;
    border-top: 0;
    border-bottom: 0
}

.hero {
    padding-top: 30px;
    padding-bottom: 44px
}

.hero:before {
    background:
        radial-gradient(circle at 10% 14%, rgba(255, 255, 255, .98), transparent 32%),
        radial-gradient(circle at 78% 12%, rgba(129, 140, 248, .12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(241, 245, 249, .34))
}

.hero__top {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: center
}

.hero__content {
    padding-top: 0
}

.hero__intro .eyebrow {
    color: var(--primary-deep)
}

.hero__intro .eyebrow:before {
    background: rgba(68, 89, 234, .24)
}

.hero__intro h1 {
    max-width: 660px;
    font-size: clamp(3.1rem, 5vw, 4.9rem);
    line-height: .92;
    letter-spacing: -.075em
}

.hero__intro p {
    max-width: 32rem;
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.68;
    color: #475569
}

.hero__actions {
    margin-top: 28px
}

.hero__render {
    width: 100%;
    max-width: 620px
}

.hero-stage {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 36px;
    border: 1px solid rgba(15, 23, 42, .08);
    background:
        radial-gradient(circle at 86% 12%, rgba(91, 109, 247, .2), transparent 18%),
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, .12), transparent 22%),
        linear-gradient(180deg, var(--ink-1), var(--ink-2));
    box-shadow: 0 34px 80px rgba(15, 23, 42, .24)
}

.hero-stage:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .42), transparent 86%);
    pointer-events: none
}

.hero-stage__top,
.hero-stage__board-head,
.hero-panel__head,
.hero-snapshot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.hero-stage__top {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    justify-content: flex-start
}

.hero-stage__eyebrow {
    color: rgba(226, 232, 240, .74);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.hero-stage__grid {
    display: none
}

.hero-stage__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, .88fr);
    gap: 14px;
    align-items: stretch
}

.hero-stage__board,
.hero-stage__side {
    min-height: 0
}

.hero-stage__board {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, .14);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03))
}

.hero-stage__board-head {
    display: block
}

.hero-stage__headline {
    display: block;
    max-width: 420px;
    margin-top: 0;
    color: #f8fafc;
    font-size: 1.6rem;
    line-height: 1.02;
    letter-spacing: -.05em
}

.hero-stage__signal {
    display: grid;
    grid-template-columns: minmax(124px, .74fr) minmax(0, 1.26fr);
    gap: 14px;
    align-items: stretch;
    min-height: 132px;
    padding: 12px 14px 12px 12px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(99, 102, 241, .15), rgba(15, 23, 42, .34));
    border: 1px solid rgba(129, 140, 248, .14)
}

.hero-stage__signal-main {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    align-self: stretch;
    justify-self: start;
    height: 100%;
    padding: 0
}

.hero-stage__signal-main span,
.hero-stage__stat span {
    display: block;
    color: rgba(226, 232, 240, .72);
    font-size: 11px;
    line-height: 1.36
}

.hero-stage__signal-main strong {
    display: block;
    margin-top: 0;
    align-self: start;
    color: #fff;
    font-size: 2.55rem;
    line-height: .88;
    letter-spacing: -.08em
}

.hero-stage__signal-main small {
    display: block;
    margin-top: 0;
    color: rgba(226, 232, 240, .74);
    font-size: 13px;
    font-weight: 600
}

.hero-stage__bars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    align-items: end;
    align-self: end;
    min-height: 100%;
    padding-left: 2px
}

.hero-stage__bars span {
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, rgba(224, 231, 255, .94), rgba(99, 102, 241, .32))
}

.hero-stage__bars span:nth-child(1) {
    height: 36%
}

.hero-stage__bars span:nth-child(2) {
    height: 52%
}

.hero-stage__bars span:nth-child(3) {
    height: 46%
}

.hero-stage__bars span:nth-child(4) {
    height: 74%
}

.hero-stage__bars span:nth-child(5) {
    height: 88%
}

.hero-stage__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px
}

.hero-stage__stat {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 0;
    padding: 11px 14px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, .12);
    background: rgba(15, 23, 42, .42)
}

.hero-stage__stat strong {
    display: block;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1;
    letter-spacing: -.04em
}

.hero-stage__side {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    align-content: stretch;
    height: 100%
}

.hero-panel {
    min-height: 0;
    padding: 16px 18px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, .12);
    background: rgba(15, 23, 42, .42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03)
}

.hero-panel--overview {
    background: linear-gradient(180deg, rgba(99, 102, 241, .16), rgba(15, 23, 42, .46))
}

.hero-panel--focus {
    background: rgba(255, 255, 255, .96)
}

.hero-panel__label {
    margin: 0;
    color: rgba(148, 163, 184, .88);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.hero-panel--focus .hero-panel__label {
    color: #6366f1
}

.hero-panel__head {
    justify-content: flex-start
}

.hero-panel__title {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 1.26rem;
    line-height: 1.06;
    letter-spacing: -.05em
}

.hero-panel__body {
    margin: 8px 0 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.58
}

.hero-panel--focus {
    display: grid;
    align-content: start;
    gap: 0
}

.hero-snapshot-row strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -.02em
}

.hero-snapshot-row span {
    color: rgba(226, 232, 240, .72);
    font-size: 13px;
    line-height: 1.45
}

.hero-snapshot-row {
    padding: 11px 0;
    border-top: 1px solid rgba(148, 163, 184, .12)
}

.hero-snapshot-row:first-of-type {
    margin-top: 4px
}

.problem-section .container,
.mechanics-section .container,
.faq-section .container {
    padding: 32px;
    border-radius: 34px;
    border: 1px solid rgba(15, 23, 42, .07);
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .92));
    box-shadow: 0 24px 52px rgba(15, 23, 42, .07)
}

.problem-section {
    padding-top: 10px
}

.problem-grid {
    gap: 16px
}

.problem-card {
    position: relative;
    padding: 26px 24px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(15, 23, 42, .07);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04)
}

.problem-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0f172a, #4f46e5)
}

.problem-card--tint {
    background: linear-gradient(180deg, #ffffff, #f8fafc)
}

.solution {
    padding: 34px;
    border-radius: 36px;
    background: linear-gradient(180deg, #0f172a, #111827);
    box-shadow: 0 28px 56px rgba(15, 23, 42, .18)
}

.solution__intro .eyebrow,
.solution__intro .section-title,
.solution__intro .section-text {
    color: #f8fafc
}

.solution__intro .section-text {
    color: rgba(226, 232, 240, .74)
}

.solution__intro .eyebrow:before {
    background: rgba(226, 232, 240, .22)
}

.solution__panel {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none
}

.solution__panel-lead {
    background: linear-gradient(180deg, rgba(99, 102, 241, .18), rgba(99, 102, 241, .1));
    border: 1px solid rgba(129, 140, 248, .16)
}

.solution__number {
    background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none
}

.solution__card,
.solution__card--tint {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(148, 163, 184, .14);
    box-shadow: none
}

.solution__card p {
    color: #f8fafc
}

.mechanics-section {
    padding-bottom: 10px
}

.mechanics-list {
    gap: 16px
}

.mechanics-item {
    padding: 24px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(15, 23, 42, .07);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04)
}

.mechanics-item:nth-child(2n) {
    background: linear-gradient(180deg, #f8fafc, #eef2ff)
}

.mechanics-item__number {
    background: linear-gradient(180deg, #111827, #334155)
}

.benefits-section {
    padding-top: 8px
}

.faq-list {
    gap: 12px
}

.faq-item {
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04)
}

.faq-item summary {
    padding: 18px 20px
}

.faq-answer {
    padding: 0 20px 18px
}

.cta-section {
    padding-top: 8px
}
.cta-wrap .lead-form {
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .16)
}


@media(max-width:1180px) {
    .hero__top {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .hero__render {
        max-width: none
    }

    .hero__intro h1 {
        max-width: 12ch
    }

    .hero-stage__layout {
        grid-template-columns: 1fr
    }

    .cta-stack {
        grid-template-columns: 1fr
    }

    .cta-stack .heading {
        max-width: 520px;
        padding-top: 0
    }

    .cta-stack .heading .section-title {
        max-width: 12ch
    }
}

@media(max-width:860px) {
    .hero-stage__signal {
        grid-template-columns: minmax(112px, .74fr) minmax(0, 1.26fr);
        gap: 12px;
        min-height: 120px
    }

    .hero-stage__signal-main strong {
        font-size: 2.25rem
    }

    .hero-stage__bars {
        min-height: 84px
    }
}

@media(max-width:720px) {
    .hero {
        padding-top: 16px;
        padding-bottom: 28px
    }

    .hero__intro h1 {
        max-width: none;
        font-size: clamp(2.35rem, 9vw, 3.2rem)
    }

    .hero-stage {
        padding: 16px;
        border-radius: 26px
    }

    .hero-stage__grid {
        grid-template-columns: 1fr
    }

    .hero-stage__headline {
        max-width: none;
        font-size: 1.34rem
    }

    .hero-stage__signal {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
        padding: 14px
    }

    .hero-stage__signal-main {
        grid-template-rows: auto auto auto;
        align-content: start;
        gap: 8px;
        height: auto
    }

    .hero-stage__signal-main strong {
        font-size: 2.45rem
    }

    .hero-stage__bars {
        min-height: 88px;
        padding-left: 0
    }

    .hero-stage__stats {
        grid-template-columns: 1fr
    }

    .problem-section .container,
    .mechanics-section .container,
    .faq-section .container {
        padding: 18px;
        border-radius: 24px
    }

    .solution {
        padding: 18px;
        border-radius: 26px
    }

    .benefits__panel {
        padding: 16px;
        border-radius: 26px
    }

    .cta-stack {
        padding: 18px;
        border-radius: 24px
    }

    .footer__inner {
        padding: 18px;
        border-radius: 22px
    }
}

@media(max-width:480px) {
    .hero-stage__signal-main strong {
        font-size: 2.2rem
    }

    .hero-stage__stat {
        gap: 12px;
        padding: 10px 12px
    }

    .hero-stage__stat strong {
        font-size: 1.08rem
    }

    .hero-panel {
        padding: 14px 16px
    }

    .hero-panel__title {
        font-size: 1.16rem
    }

    .benefits__label {
        min-height: 26px;
        font-size: 10px
    }

    .benefits__metric strong {
        font-size: 1.16rem
    }

    .faq-item summary span {
        font-size: 15px
    }
}
