@charset "UTF-8";

:root {
    --landing-ink: #15111f;
    --landing-muted: #6e6879;
    --landing-line: rgba(34, 25, 48, .1);
    --landing-purple: #119dcc;
    --landing-purple-dark: #0879a5;
    --landing-pink: #f0b429;
    --landing-peach: #ffdc57;
    --landing-mint: #8bc63f;
    --landing-paper: #f8fbf7;
    --landing-radius: 28px;
    --pointer-x: 50vw;
    --pointer-y: 30vh;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--landing-ink);
    background: var(--landing-paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

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

button {
    color: inherit;
    font: inherit;
}

.landing-skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--landing-ink);
    font-size: 13px;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.landing-skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(17, 157, 204, .42);
    outline-offset: 4px;
}

.landing-container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.landing-pointer-glow {
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 520px;
    height: 520px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(133, 98, 255, .11), transparent 67%);
    transform: translate(calc(var(--pointer-x) - 50%), calc(var(--pointer-y) - 50%));
    transition: opacity .3s;
}

.landing-noise {
    position: fixed;
    inset: 0;
    z-index: 20;
    opacity: .032;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.landing-nav {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    display: flex;
    align-items: center;
    transition: background .25s, box-shadow .25s, backdrop-filter .25s;
}

.landing-nav.is-scrolled {
    background: rgba(251, 250, 255, .82);
    box-shadow: 0 1px 0 rgba(45, 34, 61, .08);
    backdrop-filter: blur(18px);
}

.landing-nav-inner,
.landing-nav-actions,
.landing-nav-links,
.landing-brand {
    display: flex;
    align-items: center;
}

.landing-nav-inner {
    justify-content: space-between;
    gap: 30px;
}

.landing-brand {
    gap: 10px;
    font-size: 23px;
    font-weight: 760;
    letter-spacing: -.055em;
}

.landing-brand-logo {
    width: 104px;
    height: 48px;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 6px 10px rgba(8, 63, 85, .12));
}

.landing-brand-dot {
    color: var(--landing-purple);
}

.landing-brand-mark {
    position: relative;
    width: 31px;
    height: 31px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background: #17131f;
    box-shadow: 0 8px 20px rgba(30, 20, 47, .18);
}

.landing-brand-mark > span {
    position: absolute;
    display: block;
    width: 6px;
    border-radius: 8px;
    background: #fff;
    transform: rotate(35deg);
}

.landing-brand-mark > span:nth-child(1) {
    height: 15px;
    left: 8px;
    bottom: 6px;
}

.landing-brand-mark > span:nth-child(2) {
    height: 21px;
    left: 13px;
    bottom: 5px;
    background: #b8a7ff;
}

.landing-brand-mark > span:nth-child(3) {
    height: 11px;
    left: 19px;
    bottom: 7px;
    background: #ffb6db;
}

.landing-nav-links {
    gap: 32px;
    margin-left: auto;
}

.landing-nav-links a,
.landing-link-login {
    color: #5f5969;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s;
}

.landing-nav-links a:hover,
.landing-link-login:hover {
    color: var(--landing-ink);
}

.landing-nav-actions {
    gap: 22px;
}

.landing-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.015em;
    transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}

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

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

.landing-button-dark {
    color: #fff;
    background: #18141f;
    box-shadow: 0 10px 26px rgba(24, 20, 31, .16);
}

.landing-button-dark:hover {
    box-shadow: 0 14px 32px rgba(24, 20, 31, .23);
}

.landing-button-primary {
    position: relative;
    color: #fff;
    background: linear-gradient(125deg, #6244ea, #8869f8 60%, #a279f7);
    box-shadow: 0 16px 36px rgba(100, 68, 234, .28), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.landing-button-primary::after {
    position: absolute;
    inset: 1px;
    content: "";
    pointer-events: none;
    border-radius: 12px;
    background: linear-gradient(110deg, rgba(255, 255, 255, .15), transparent 45%);
}

.landing-button-primary:hover {
    box-shadow: 0 20px 42px rgba(100, 68, 234, .38);
}

.landing-button-ghost {
    border-color: rgba(41, 31, 53, .11);
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 8px 22px rgba(44, 34, 59, .05);
    backdrop-filter: blur(10px);
}

.landing-button-ghost:hover {
    border-color: rgba(93, 64, 229, .24);
    background: #fff;
}

.landing-button-light {
    color: #16121e;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.landing-hero {
    position: relative;
    min-height: 1080px;
    padding: 170px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, .98) 0 19%, transparent 47%),
        linear-gradient(180deg, #fbfaff 0%, #f8f6ff 62%, #fff 100%);
}

.landing-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .38;
    background-image:
        linear-gradient(rgba(77, 56, 105, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 56, 105, .05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.landing-aurora {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}

.landing-aurora-one {
    top: 50px;
    left: -9%;
    width: 540px;
    height: 430px;
    opacity: .6;
    background: radial-gradient(circle at 50%, rgba(255, 179, 220, .52), rgba(255, 217, 164, .3) 43%, transparent 71%);
    animation: landing-float 9s ease-in-out infinite alternate;
}

.landing-aurora-two {
    top: 110px;
    right: -11%;
    width: 590px;
    height: 500px;
    opacity: .62;
    background: radial-gradient(circle at 50%, rgba(146, 121, 255, .48), rgba(127, 215, 239, .25) 45%, transparent 72%);
    animation: landing-float 11s ease-in-out -3s infinite alternate-reverse;
}

.landing-hero-copy {
    position: relative;
    z-index: 2;
    width: min(880px, 100%);
    margin: 0 auto 74px;
    text-align: center;
}

.landing-eyebrow,
.landing-kicker {
    color: #725bd3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(116, 88, 211, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 8px 26px rgba(89, 64, 133, .07);
    backdrop-filter: blur(12px);
}

.landing-eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-purple), var(--landing-pink));
    box-shadow: 0 0 0 5px rgba(118, 89, 246, .09);
}

.landing-hero h1 {
    margin: 28px 0 24px;
    font-size: clamp(54px, 7.4vw, 98px);
    font-weight: 760;
    line-height: .96;
    letter-spacing: -.072em;
}

.landing-hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(100deg, #7453f2 10%, #c16cdb 52%, #f28d9f 91%);
    -webkit-background-clip: text;
    background-clip: text;
}

.landing-hero-copy > p {
    max-width: 735px;
    margin: 0 auto;
    color: var(--landing-muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
    letter-spacing: -.02em;
}

.landing-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.landing-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 26px;
    color: #777080;
    font-size: 12px;
    font-weight: 650;
}

.landing-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.landing-trust-row i {
    color: #7a5be8;
}

.landing-product-stage {
    position: relative;
    z-index: 2;
    width: min(1110px, 100%);
    margin: 0 auto;
    perspective: 1400px;
}

.landing-app-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(71, 51, 98, .15);
    border-radius: 25px;
    background: rgba(255, 255, 255, .76);
    box-shadow:
        0 70px 130px rgba(73, 53, 104, .19),
        0 24px 50px rgba(60, 42, 90, .1),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: rotateX(1.2deg);
    backdrop-filter: blur(20px);
}

.landing-window-bar {
    height: 54px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid rgba(49, 36, 67, .08);
    background: rgba(249, 247, 253, .88);
}

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

.landing-window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e3dfe9;
}

.landing-window-dots span:first-child {
    background: #ff8e9c;
}

.landing-window-dots span:nth-child(2) {
    background: #ffc871;
}

.landing-window-dots span:nth-child(3) {
    background: #80d6ac;
}

.landing-window-address {
    min-width: 280px;
    padding: 7px 25px;
    border: 1px solid rgba(49, 36, 67, .08);
    border-radius: 9px;
    color: #8d8794;
    background: rgba(255, 255, 255, .75);
    font-size: 10px;
    text-align: center;
}

.landing-window-address i {
    margin-right: 5px;
    color: #6eae8d;
}

.landing-window-avatar {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    justify-self: end;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #7e61e8, #e07bad);
    font-size: 9px;
    font-weight: 800;
}

.landing-window-body {
    min-height: 570px;
    display: grid;
    grid-template-columns: 66px 1fr;
}

.landing-demo-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 10px;
    border-right: 1px solid rgba(48, 35, 66, .07);
    background: rgba(248, 246, 252, .76);
}

.landing-demo-logo {
    width: 45px;
    margin-bottom: 11px;
}

.landing-demo-brand-logo {
    width: 45px;
    height: 29px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.landing-demo-sidebar button,
.landing-demo-heading button {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: #928a9c;
    background: transparent;
}

.landing-demo-sidebar button.active {
    color: #fff;
    background: linear-gradient(135deg, #674be3, #896cf2);
    box-shadow: 0 10px 22px rgba(106, 76, 225, .25);
}

.landing-sidebar-spacer {
    flex: 1;
}

.landing-demo-content {
    padding: 26px 30px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(249, 247, 253, .85));
}

.landing-demo-heading,
.landing-demo-card-head,
.landing-space-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.landing-demo-heading > div {
    display: flex;
    flex-direction: column;
}

.landing-demo-heading span,
.landing-demo-card small,
.landing-space-card small {
    color: #918a99;
    font-size: 10px;
}

.landing-demo-heading strong {
    font-size: 21px;
    letter-spacing: -.04em;
}

.landing-demo-heading button {
    border: 1px solid rgba(54, 40, 73, .08);
    color: #5e5667;
    background: #fff;
}

.landing-demo-heading button span {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ed6a92;
}

.landing-command {
    position: relative;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 22px 0 15px;
    padding: 13px 15px;
    overflow: hidden;
    border: 1px solid rgba(104, 74, 211, .15);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 35px rgba(70, 49, 98, .08);
}

.landing-command::after {
    position: absolute;
    right: 20%;
    bottom: -50px;
    width: 170px;
    height: 80px;
    content: "";
    border-radius: 50%;
    background: rgba(152, 112, 244, .14);
    filter: blur(25px);
}

.landing-command-spark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, #7457e9, #c36ace);
}

.landing-command > div {
    display: flex;
    flex-direction: column;
}

.landing-command small {
    color: #9b92a2;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.landing-command strong {
    font-size: 13px;
}

.landing-command-key {
    z-index: 1;
    margin-left: auto;
    padding: 4px 7px;
    border: 1px solid rgba(58, 42, 79, .1);
    border-radius: 6px;
    color: #908898;
    background: #faf9fc;
    font-size: 9px;
}

.landing-demo-filters {
    display: flex;
    gap: 7px;
    overflow: auto;
    scrollbar-width: none;
}

.landing-demo-filters button {
    padding: 6px 10px;
    border: 0;
    border-radius: 8px;
    color: #8b8492;
    background: transparent;
    font-size: 9px;
    white-space: nowrap;
    cursor: pointer;
}

.landing-demo-filters button.active {
    color: #6548d6;
    background: #eee9ff;
    font-weight: 700;
}

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

.landing-demo-card {
    min-height: 132px;
    padding: 16px;
    border: 1px solid rgba(51, 37, 69, .075);
    border-radius: 15px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 25px rgba(49, 35, 68, .045);
}

.landing-demo-card-wide {
    min-height: 188px;
    grid-column: span 3;
}

.landing-demo-card-accent {
    display: flex;
    flex-direction: column;
    grid-row: span 1;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .26), transparent 42%),
        linear-gradient(145deg, #7655e6, #9a6be9 53%, #d477b9);
    box-shadow: 0 16px 32px rgba(112, 75, 215, .2);
}

.landing-demo-card strong {
    display: block;
    font-size: 15px;
    letter-spacing: -.03em;
}

.landing-demo-card-wide strong {
    font-size: 23px;
}

.landing-demo-card-accent small,
.landing-demo-card-accent p {
    color: rgba(255, 255, 255, .72);
}

.landing-demo-card-accent p {
    margin: 2px 0 14px;
    font-size: 9px;
}

.landing-demo-card-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, .18);
}

.landing-positive {
    padding: 5px 8px;
    border-radius: 8px;
    color: #258b62;
    background: #e9f9f2;
    font-size: 9px;
    font-weight: 700;
}

.landing-chart {
    height: 78px;
    display: flex;
    align-items: end;
    gap: 9px;
    margin-top: 9px;
    border-bottom: 1px solid #eeeaf3;
}

.landing-chart span {
    height: var(--h);
    flex: 1;
    border-radius: 5px 5px 1px 1px;
    background: linear-gradient(to top, #e9e4f7, #d8d0ef);
}

.landing-chart span.active {
    background: linear-gradient(to top, #7656e9, #ad85f2);
    box-shadow: 0 5px 14px rgba(117, 84, 233, .22);
}

.landing-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    color: #aba5af;
    font-size: 7px;
}

.landing-avatar-stack {
    display: flex;
    align-items: center;
}

.landing-avatar-stack span,
.landing-avatar-stack b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-right: -5px;
    border: 2px solid rgba(123, 86, 222, .85);
    border-radius: 50%;
    color: #7659bd;
    background: #f7eaff;
    font-size: 7px;
}

.landing-avatar-stack b {
    color: #fff;
    background: rgba(255, 255, 255, .18);
    font-weight: 700;
}

.landing-card-icon-soft {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #3e9b79;
    background: #e8f8f1;
}

.landing-card-icon-violet {
    color: #7759e9;
    background: #efebff;
}

.landing-mini-list {
    display: grid;
    gap: 8px;
    margin-top: 13px;
}

.landing-mini-list span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7e7785;
    font-size: 8px;
}

.landing-mini-list i {
    width: 7px;
    height: 7px;
    color: #66bd94;
    border-radius: 50%;
    background: #eadff5;
}

.landing-mini-list .bi {
    width: auto;
    height: auto;
    background: none;
}

.landing-mini-list b {
    margin-left: auto;
    color: #42394a;
}

.landing-note-lines {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.landing-note-lines span {
    height: 6px;
    border-radius: 5px;
    background: #ece8f1;
}

.landing-note-lines span:nth-child(2) {
    width: 82%;
}

.landing-note-lines span:nth-child(3) {
    width: 60%;
}

.landing-demo-security {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 11px;
    grid-column: span 2;
}

.landing-lock {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: #1b1721;
}

.landing-demo-security > div:nth-child(2) {
    flex: 1;
}

.landing-floating-pill {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    border: 1px solid rgba(69, 51, 91, .09);
    border-radius: 12px;
    color: #5f5768;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 35px rgba(66, 45, 93, .12);
    font-size: 10px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    animation: landing-pill 4s ease-in-out infinite alternate;
}

.landing-pill-left {
    top: 21%;
    left: -56px;
}

.landing-pill-left i {
    color: #4aaa7d;
}

.landing-pill-right {
    right: -48px;
    bottom: 20%;
    animation-delay: -1.5s;
}

.landing-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5fc495;
    box-shadow: 0 0 0 5px rgba(95, 196, 149, .13);
}

.landing-orbit {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(112, 81, 208, .11);
    border-radius: 50%;
}

.landing-orbit-one {
    inset: -90px 7%;
    transform: rotate(-8deg);
}

.landing-orbit-two {
    inset: -40px -8%;
    transform: rotate(6deg);
}

.landing-scroll-cue {
    position: relative;
    z-index: 2;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 52px auto 0;
    color: #8b8492;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.landing-scroll-cue span {
    width: 20px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    border: 1px solid rgba(61, 47, 79, .2);
    border-radius: 12px;
}

.landing-scroll-cue span::after {
    width: 3px;
    height: 6px;
    margin-top: 6px;
    content: "";
    border-radius: 5px;
    background: #8979b3;
    animation: landing-scroll 1.8s infinite;
}

.landing-section {
    position: relative;
    padding: 120px 0;
}

.landing-section-heading {
    display: grid;
    grid-template-columns: 1.15fr .7fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.landing-section-heading h2,
.landing-experience h2,
.landing-security-copy h2,
.landing-final h2 {
    margin: 12px 0 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.06em;
}

.landing-section-heading h2 em,
.landing-security-copy h2 em,
.landing-final h2 em {
    color: #8060eb;
    font-family: Georgia, serif;
    font-weight: 500;
}

.landing-section-heading > p {
    margin: 0 0 8px;
    color: var(--landing-muted);
    font-size: 17px;
}

.landing-modules {
    background: #fff;
}

.landing-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.landing-feature {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: span 4;
    padding: 29px;
    overflow: hidden;
    border: 1px solid rgba(47, 35, 62, .08);
    border-radius: var(--landing-radius);
    background: #f8f7fa;
    box-shadow: 0 18px 50px rgba(48, 34, 68, .055);
}

.landing-feature::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, .7), transparent 48%);
}

.landing-feature > * {
    position: relative;
    z-index: 1;
}

.landing-feature-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-feature-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(49, 37, 64, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 9px 22px rgba(51, 35, 73, .07);
    font-size: 20px;
}

.landing-feature-number {
    color: rgba(55, 42, 70, .28);
    font-family: Georgia, serif;
    font-size: 15px;
}

.landing-feature h3 {
    max-width: 440px;
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.045em;
}

.landing-feature p {
    margin: 0;
    color: #77707f;
    font-size: 14px;
}

.landing-feature-finance {
    grid-column: span 7;
    background: linear-gradient(145deg, #f3f7f5, #eef8f4);
}

.landing-feature-training {
    grid-column: span 5;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .18), transparent 35%),
        linear-gradient(145deg, #6849d4, #8660e6 55%, #b76dd0);
}

.landing-feature-training p,
.landing-feature-training .landing-feature-number {
    color: rgba(255, 255, 255, .67);
}

.landing-feature-training .landing-feature-icon {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .14);
}

.landing-feature-notes {
    grid-column: span 5;
    background: linear-gradient(145deg, #fff9f2, #fff2e5);
}

.landing-feature-security {
    grid-column: span 7;
    color: #fff;
    background: linear-gradient(145deg, #1a1720, #2d2638);
}

.landing-feature-security p,
.landing-feature-security .landing-feature-number {
    color: rgba(255, 255, 255, .58);
}

.landing-feature-security .landing-feature-icon {
    border-color: rgba(255, 255, 255, .1);
    color: #c9b9ff;
    background: rgba(255, 255, 255, .08);
}

.landing-feature-dashboard {
    min-height: 420px;
    flex-direction: row;
    align-items: center;
    grid-column: span 12;
    background:
        radial-gradient(circle at 80% 20%, rgba(199, 172, 255, .5), transparent 30%),
        linear-gradient(145deg, #eee8ff, #f8f5ff);
}

.landing-feature-dashboard > div:first-child {
    width: 52%;
}

.landing-feature-dashboard a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #6548d5;
    font-size: 13px;
    font-weight: 750;
}

.landing-finance-visual,
.landing-training-visual,
.landing-password-visual {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 18px;
    border: 1px solid rgba(52, 86, 69, .08);
    border-radius: 19px;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
}

.landing-finance-ring {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: conic-gradient(#51af83 72%, #dfece5 0);
    box-shadow: inset 0 0 0 13px rgba(255, 255, 255, .92);
}

.landing-finance-ring b {
    align-self: end;
    font-size: 17px;
}

.landing-finance-ring small {
    align-self: start;
    margin-top: -4px;
    color: #7a887f;
    font-size: 8px;
}

.landing-finance-visual > div {
    flex: 1;
}

.landing-finance-visual > div span {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 7px 0;
    color: #737c76;
    font-size: 10px;
}

.landing-finance-visual > div b {
    color: #25382f;
    font-size: 12px;
}

.landing-training-visual {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .1);
}

.landing-date-card {
    width: 58px;
    height: 66px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 8px;
    border-radius: 14px;
    color: #704bd0;
    background: #fff;
}

.landing-date-card strong {
    font-size: 23px;
    line-height: 1;
}

.landing-date-card span {
    font-size: 8px;
    font-weight: 800;
}

.landing-training-visual > div:nth-child(2) {
    flex: 1;
}

.landing-training-visual strong,
.landing-training-visual span {
    display: block;
}

.landing-training-visual span {
    color: rgba(255, 255, 255, .66);
    font-size: 9px;
}

.landing-progress {
    height: 4px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 5px;
    background: rgba(255, 255, 255, .16);
}

.landing-progress i {
    width: 72%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #fff;
}

.landing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.landing-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(137, 80, 29, .1);
    border-radius: 999px;
    color: #9b643b;
    background: rgba(255, 255, 255, .58);
    font-size: 10px;
}

.landing-password-visual {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .07);
}

.landing-password-visual span {
    color: #a59ca9;
    letter-spacing: .1em;
}

.landing-password-visual > i {
    color: #8d8293;
}

.landing-password-visual b {
    margin-left: auto;
    color: #8ed7b6;
    font-size: 10px;
}

.landing-dashboard-visual {
    position: relative;
    width: 44%;
    height: 315px;
    perspective: 900px;
}

.landing-widget {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(66, 45, 99, .12);
    border-radius: 17px;
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 20px 38px rgba(75, 51, 113, .13);
    backdrop-filter: blur(12px);
    transform: rotateY(-8deg) rotateX(3deg);
}

.landing-widget i {
    color: #7053d9;
}

.landing-widget-a {
    top: 18px;
    left: 12%;
    width: 142px;
    height: 94px;
}

.landing-widget-b {
    top: 39px;
    right: -4%;
    width: 128px;
    height: 72px;
}

.landing-widget-c {
    top: 131px;
    left: 0;
    width: 88px;
    height: 110px;
    font-size: 25px;
}

.landing-widget-d {
    right: 1%;
    bottom: 20px;
    width: 105px;
    height: 116px;
    font-size: 26px;
}

.landing-widget-e {
    right: 24%;
    bottom: 52px;
    width: 115px;
    height: 142px;
    background: linear-gradient(145deg, rgba(122, 85, 224, .9), rgba(207, 112, 189, .86));
}

.landing-experience {
    padding-top: 70px;
    background: #fff;
}

.landing-experience-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    padding: 70px;
    overflow: hidden;
    border-radius: 38px;
    background:
        radial-gradient(circle at 95% 10%, rgba(211, 192, 255, .8), transparent 28%),
        linear-gradient(135deg, #f6f3ff, #eee8fd);
}

.landing-experience-copy > p {
    max-width: 490px;
    color: #6f6878;
}

.landing-steps {
    display: grid;
    gap: 6px;
    margin-top: 35px;
}

.landing-steps button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px;
    border: 1px solid transparent;
    border-radius: 15px;
    text-align: left;
    background: transparent;
    cursor: pointer;
}

.landing-steps button.active {
    border-color: rgba(79, 54, 122, .09);
    background: rgba(255, 255, 255, .66);
    box-shadow: 0 12px 30px rgba(67, 45, 102, .08);
}

.landing-steps button > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    color: #8069aa;
    background: rgba(255, 255, 255, .7);
    font-family: Georgia, serif;
    font-size: 11px;
}

.landing-steps button.active > span {
    color: #fff;
    background: #7152df;
}

.landing-steps strong,
.landing-steps small {
    display: block;
}

.landing-steps strong {
    font-size: 13px;
}

.landing-steps small {
    color: #847d8c;
    font-size: 10px;
}

.landing-experience-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
}

.landing-space-card {
    width: min(440px, 100%);
    padding: 23px;
    border: 1px solid rgba(62, 43, 89, .11);
    border-radius: 24px;
    background: rgba(255, 255, 255, .81);
    box-shadow: 0 35px 75px rgba(70, 46, 106, .18);
    backdrop-filter: blur(20px);
    transform: rotate(2deg);
}

.landing-card-brand-logo {
    width: 62px;
    height: 38px;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
}

.landing-space-card-head {
    justify-content: flex-start;
}

.landing-space-card-head > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.landing-space-card-head > i {
    margin-left: auto;
    color: #958d9d;
}

.landing-space-members {
    display: flex;
    margin: 28px 0 20px;
}

.landing-space-members span,
.landing-space-members button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-right: -7px;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #694cbd;
    background: #e9e0ff;
    font-size: 9px;
    font-weight: 800;
}

.landing-space-members span:nth-child(2) {
    color: #9d5d70;
    background: #ffe0e8;
}

.landing-space-members span:nth-child(3) {
    color: #407e67;
    background: #dff5ec;
}

.landing-space-members button {
    color: #6e6575;
    background: #fff;
}

.landing-space-apps {
    display: grid;
    gap: 8px;
}

.landing-space-apps span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border: 1px solid rgba(52, 38, 71, .07);
    border-radius: 12px;
    color: #4e4656;
    background: rgba(248, 246, 251, .8);
    font-size: 11px;
    font-weight: 650;
}

.landing-space-apps span i {
    color: #7559dd;
}

.landing-space-apps span b {
    margin-left: auto;
    color: #55a47d;
    font-size: 8px;
    text-transform: uppercase;
}

.landing-space-apps span:last-child {
    justify-content: center;
    border-style: dashed;
    color: #847c8c;
    background: transparent;
}

.landing-cursor-card {
    position: absolute;
    right: -10px;
    bottom: 57px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 11px;
    color: #fff;
    background: #1b1720;
    box-shadow: 0 16px 35px rgba(29, 23, 36, .25);
    font-size: 9px;
    animation: landing-pill 3.5s ease-in-out infinite alternate-reverse;
}

.landing-cursor-card i {
    color: #b9a6ff;
}

.landing-security-section {
    color: #fff;
    background: #15121a;
}

.landing-security-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 12% 30%, rgba(113, 80, 217, .2), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(222, 106, 163, .11), transparent 28%);
}

.landing-security-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: center;
    gap: 110px;
}

.landing-security-copy p {
    max-width: 570px;
    margin: 24px 0 32px;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
}

.landing-security-list {
    display: grid;
}

.landing-security-list > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.landing-security-list > div > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    color: #c3b3ff;
    background: rgba(255, 255, 255, .05);
}

.landing-security-list strong {
    display: block;
    margin-bottom: 5px;
}

.landing-security-list p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
}

.landing-faq {
    background:
        radial-gradient(circle at 12% 15%, rgba(58, 197, 248, .12), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(253, 216, 47, .13), transparent 26%),
        #f8fbf7;
}

.landing-faq-list {
    max-width: 920px;
    margin-inline: auto;
    border-top: 1px solid rgba(8, 85, 112, .12);
}

.landing-faq-list details {
    border-bottom: 1px solid rgba(8, 85, 112, .12);
}

.landing-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 4px;
    cursor: pointer;
    list-style: none;
    color: #172129;
    font-size: 18px;
    font-weight: 760;
}

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

.landing-faq-list summary i {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #087fa8;
    background: #e7f7fb;
    font-size: 14px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.landing-faq-list details[open] summary i {
    color: #fff;
    background: linear-gradient(135deg, #0a91ba, #69a841);
    transform: rotate(45deg);
}

.landing-faq-list p {
    max-width: 760px;
    margin: -7px 0 24px;
    padding: 0 52px 0 4px;
    color: #687078;
    font-size: 15px;
}

.landing-final {
    padding: 120px 0;
    background: #fff;
}

.landing-final-card {
    position: relative;
    padding: 105px 30px;
    overflow: hidden;
    border-radius: 40px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, .82), transparent 42%),
        linear-gradient(135deg, #f0ebff, #fcebf4 55%, #fff1e5);
}

.landing-final-card::before,
.landing-final-card::after {
    position: absolute;
    width: 270px;
    height: 270px;
    content: "";
    border: 1px solid rgba(119, 85, 221, .12);
    border-radius: 50%;
}

.landing-final-card::before {
    top: -120px;
    left: -70px;
}

.landing-final-card::after {
    right: -70px;
    bottom: -150px;
}

.landing-final-card > * {
    position: relative;
    z-index: 1;
}

.landing-final h2 {
    margin-bottom: 20px;
}

.landing-final p {
    margin: 0 auto 32px;
    color: #706978;
    font-size: 17px;
}

.landing-final-card > div:last-child {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-footer {
    padding: 34px 0;
    border-top: 1px solid rgba(48, 36, 62, .08);
    background: #fff;
}

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

.landing-footer p {
    margin: 0;
    color: #8a838f;
    font-size: 12px;
    text-align: center;
}

.landing-footer > div > div {
    display: flex;
    gap: 22px;
    color: #655e6d;
    font-size: 12px;
    font-weight: 650;
}

/* Palette alignée sur le logo historique Lappli.com. */
.landing-pointer-glow {
    background: radial-gradient(circle, rgba(17, 157, 204, .12), transparent 67%);
}

.landing-nav.is-scrolled {
    background: rgba(248, 251, 247, .86);
}

.landing-button-primary {
    background: linear-gradient(125deg, #0879a5, #109cbc 58%, #4d9659);
    box-shadow: 0 16px 36px rgba(8, 121, 165, .26), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.landing-button-primary:hover {
    box-shadow: 0 20px 42px rgba(8, 121, 165, .36);
}

.landing-aurora-one {
    background: radial-gradient(circle at 50%, rgba(255, 216, 47, .34), rgba(139, 198, 63, .22) 43%, transparent 71%);
}

.landing-aurora-two {
    background: radial-gradient(circle at 50%, rgba(58, 197, 248, .4), rgba(139, 198, 63, .2) 45%, transparent 72%);
}

.landing-hero h1 span,
.landing-section-heading h2 em,
.landing-security-copy h2 em,
.landing-final h2 em {
    color: transparent;
    background: linear-gradient(100deg, #08a9dc 8%, #82bd35 54%, #f0ad19 92%);
    -webkit-background-clip: text;
    background-clip: text;
}

.landing-demo-sidebar button.active {
    background: linear-gradient(135deg, #087ca8, #20a9bf);
    box-shadow: 0 10px 22px rgba(8, 124, 168, .24);
}

.landing-demo-card-accent,
.landing-feature-training {
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .2), transparent 38%),
        linear-gradient(145deg, #0876a3, #0e9db8 55%, #72a93c);
}

.landing-date-card,
.landing-feature-dashboard a,
.landing-widget i,
.landing-space-apps span i {
    color: #087fa8;
}

.landing-feature-dashboard {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 216, 47, .32), transparent 30%),
        linear-gradient(145deg, #e8f7fb, #f5fae9);
}

.landing-widget-e {
    background: linear-gradient(145deg, rgba(14, 157, 190, .92), rgba(130, 189, 53, .88));
}

.landing-experience-panel {
    background:
        radial-gradient(circle at 95% 10%, rgba(255, 222, 88, .54), transparent 28%),
        linear-gradient(135deg, #effafd, #f4fae8);
}

.landing-steps button.active > span {
    background: #0c8fb8;
}

.landing-security-section::before {
    background:
        radial-gradient(circle at 12% 30%, rgba(25, 169, 211, .18), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(240, 180, 41, .11), transparent 28%);
}

.landing-security-list > div > span,
.landing-cursor-card i {
    color: #70cce5;
}

.landing-final-card {
    background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, .82), transparent 42%),
        linear-gradient(135deg, #e8f8fc, #f3fae5 55%, #fff8dc);
}

.landing-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .75, .25, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.landing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes landing-float {
    to {
        transform: translate3d(40px, 25px, 0) scale(1.06);
    }
}

@keyframes landing-pill {
    to {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes landing-scroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(11px);
    }
}

@media (max-width: 1050px) {
    .landing-nav-links {
        display: none;
    }

    .landing-hero {
        min-height: auto;
    }

    .landing-pill-left {
        left: -15px;
    }

    .landing-pill-right {
        right: -15px;
    }

    .landing-window-body {
        min-height: 520px;
    }

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

    .landing-demo-card-wide {
        grid-column: span 2;
    }

    .landing-demo-card-accent {
        grid-column: span 1;
    }

    .landing-demo-security {
        grid-column: span 1;
    }

    .landing-feature,
    .landing-feature-finance,
    .landing-feature-training,
    .landing-feature-security {
        grid-column: span 6;
    }

    .landing-feature-dashboard {
        grid-column: span 12;
    }

    .landing-experience-panel {
        gap: 30px;
        padding: 50px 42px;
    }

    .landing-security-grid {
        gap: 55px;
    }
}

@media (max-width: 760px) {
    .landing-container {
        width: min(100% - 28px, 1240px);
    }

    .landing-nav {
        height: 70px;
    }

    .landing-brand {
        font-size: 20px;
    }

    .landing-brand-logo {
        width: 92px;
        height: 42px;
    }

    .landing-nav .landing-brand-mark {
        width: 28px;
        height: 28px;
    }

    .landing-nav-actions {
        gap: 9px;
    }

    .landing-link-login {
        display: inline-flex;
        font-size: 11px;
    }

    .landing-button-small {
        min-height: 38px;
        padding: 0 10px;
        font-size: 10px;
    }

    .landing-hero {
        padding: 120px 0 68px;
    }

    .landing-hero-copy {
        margin-bottom: 48px;
    }

    .landing-eyebrow {
        font-size: 9px;
    }

    .landing-hero h1 {
        margin-top: 22px;
        font-size: clamp(47px, 15vw, 68px);
        letter-spacing: -.065em;
    }

    .landing-hero-copy > p {
        font-size: 16px;
    }

    .landing-hero-actions {
        display: grid;
    }

    .landing-hero-actions .landing-button {
        width: 100%;
    }

    .landing-trust-row {
        gap: 10px 16px;
    }

    .landing-floating-pill,
    .landing-orbit,
    .landing-scroll-cue {
        display: none;
    }

    .landing-app-window {
        margin-inline: -6px;
        border-radius: 18px;
        transform: none;
    }

    .landing-window-bar {
        grid-template-columns: auto 1fr auto;
        padding: 0 11px;
    }

    .landing-window-address {
        min-width: 0;
        margin-inline: 10px;
        padding-inline: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .landing-window-body {
        min-height: 420px;
        grid-template-columns: 48px 1fr;
    }

    .landing-demo-sidebar {
        padding: 12px 5px;
    }

    .landing-demo-sidebar button {
        width: 34px;
        height: 34px;
    }

    .landing-demo-content {
        padding: 18px 13px;
        overflow: hidden;
    }

    .landing-demo-heading strong {
        font-size: 15px;
    }

    .landing-command {
        min-height: 60px;
        margin-top: 15px;
        padding: 9px;
    }

    .landing-command-spark {
        width: 34px;
        height: 34px;
    }

    .landing-command strong {
        font-size: 10px;
    }

    .landing-command-key {
        display: none;
    }

    .landing-demo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .landing-demo-card,
    .landing-demo-card-wide,
    .landing-demo-card-accent,
    .landing-demo-security {
        min-width: 0;
        grid-column: span 1;
    }

    .landing-demo-card-wide {
        min-height: 150px;
        grid-column: span 2;
    }

    .landing-demo-card-accent {
        display: none;
    }

    .landing-chart {
        height: 55px;
    }

    .landing-section {
        padding: 82px 0;
    }

    .landing-section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 38px;
    }

    .landing-section-heading h2,
    .landing-experience h2,
    .landing-security-copy h2,
    .landing-final h2 {
        font-size: 41px;
    }

    .landing-section-heading > p,
    .landing-security-copy p {
        font-size: 15px;
    }

    .landing-bento {
        display: grid;
        grid-template-columns: 1fr;
    }

    .landing-feature,
    .landing-feature-finance,
    .landing-feature-training,
    .landing-feature-security,
    .landing-feature-dashboard {
        min-height: 350px;
        grid-column: 1;
    }

    .landing-feature-dashboard {
        min-height: 560px;
        flex-direction: column;
        align-items: stretch;
    }

    .landing-feature-dashboard > div:first-child,
    .landing-dashboard-visual {
        width: 100%;
    }

    .landing-dashboard-visual {
        height: 260px;
    }

    .landing-experience {
        padding-top: 25px;
    }

    .landing-experience-panel {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        border-radius: 28px;
    }

    .landing-experience-visual {
        min-height: 430px;
    }

    .landing-cursor-card {
        right: 0;
        bottom: 12px;
    }

    .landing-security-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .landing-faq-list summary {
        padding: 21px 2px;
        font-size: 16px;
    }

    .landing-faq-list p {
        padding-right: 12px;
    }

    .landing-final {
        padding: 70px 0;
    }

    .landing-final-card {
        padding: 72px 19px;
        border-radius: 28px;
    }

    .landing-final-card .landing-button {
        width: 100%;
    }

    .landing-footer .landing-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
    }

    .landing-footer > div > div {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .landing-button-small i {
        display: none;
    }

    .landing-demo-security {
        display: none;
    }

    .landing-feature {
        padding: 23px;
    }

    .landing-finance-visual {
        gap: 13px;
        padding: 12px;
    }

    .landing-finance-ring {
        width: 70px;
        height: 70px;
        box-shadow: inset 0 0 0 11px rgba(255, 255, 255, .92);
    }
}

@media (max-width: 350px) {
    .landing-nav-inner {
        gap: 12px;
    }

    .landing-nav-actions .landing-link-login {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .landing-reveal {
        opacity: 1;
        transform: none;
    }

    .landing-pointer-glow {
        display: none;
    }
}
