@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
    --blue: #1557ff;
    --blue-dark: #0b2ea8;
    --blue-soft: #eaf1ff;
    --navy: #071a3d;
    --text: #41516f;
    --white: #fff;
    --line: #dce6f5;
    --green: #16b47b;
    --shadow: 0 24px 70px rgba(19, 70, 180, .13)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden
}

body {
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--navy);
    background: #fff;
    line-height: 1.65;
    max-width: 100%;
    overflow-x: hidden
}

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

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid #c9d8ff;
    background: #f5f8ff;
    color: var(--blue);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    border-radius: 999px
}

.eyebrow:before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 0 5px #dbe6ff
}

h1,
h2,
h3 {
    font-family: 'Manrope', sans-serif;
    line-height: 1.12;
    letter-spacing: -.035em
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem)
}

.section-head {
    max-width: 650px;
    margin: 0 auto 54px;
    text-align: center
}

.section-head p {
    font-size: 1.05rem;
    color: var(--text);
    margin-top: 17px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    border-radius: 12px;
    font-weight: 700;
    transition: .25s;
    border: 1px solid transparent
}

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

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 13px 30px rgba(21, 87, 255, .25)
}

.btn-primary:hover {
    background: #0649e9
}

.btn-ghost {
    border-color: #cedaf1;
    background: #fff;
    color: var(--navy)
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue)
}

header {
    height: 82px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
    background: rgba(246, 249, 255, .92);
    border-bottom: 1px solid rgba(206, 218, 241, .7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px)
}

.legal-header + main {
    padding-top: 82px
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font: 800 1.35rem 'Manrope', sans-serif;
    letter-spacing: -.04em
}

.brand img {
    width: 39px;
    height: 39px;
    border-radius: 11px;
    object-fit: cover
}

.brand span {
    color: var(--blue)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: .92rem;
    font-weight: 600;
    color: #354564
}

.nav-links a:not(.btn):hover {
    color: var(--blue)
}

.nav-links .btn {
    padding: 10px 18px;
    color: white
}



.nav-check,
.menu-toggle {
    display: none
}

.menu-toggle {
    position: relative;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 2
}

.menu-toggle span {
    position: absolute;
    left: 2px;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
    transition: transform .25s ease, opacity .2s ease, top .25s ease
}

.menu-toggle span:nth-child(1) { top: 2px }
.menu-toggle span:nth-child(2) { top: 10px }
.menu-toggle span:nth-child(3) { top: 18px }

.nav-check:checked + .menu-toggle span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg)
}

.nav-check:checked + .menu-toggle span:nth-child(2) { opacity: 0 }

.nav-check:checked + .menu-toggle span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.hero {
    position: relative;
    min-height: 780px;
    padding: 155px 0 95px;
    background: linear-gradient(180deg, #f6f9ff 0%, #fff 92%);
    isolation: isolate
}

.hero:before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 110, 255, .17), transparent 67%);
    right: -180px;
    top: -150px;
    z-index: -1
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#b9ccf6 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    opacity: .35;
    z-index: -2
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 65px
}

.hero h1 {
    font-size: clamp(3rem, 5.8vw, 5.25rem);
    margin: 22px 0;
    color: #081b43
}

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

.hero-copy>p {
    font-size: 1.13rem;
    color: var(--text);
    max-width: 590px;
    margin-bottom: 31px
}

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

.hero-note {
    display: flex;
    gap: 19px;
    margin-top: 31px;
    color: #60708c;
    font-size: .83rem
}

.hero-note span {
    display: flex;
    align-items: center;
    gap: 7px
}

.check {
    color: var(--green);
    font-weight: bold
}

.phone-scene {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center
}

.orb {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(145deg, #dce9ff, #f9fbff);
    box-shadow: inset 0 0 70px white
}

.phone {
    position: relative;
    width: 288px;
    background: #07132b;
    border: 8px solid #07132b;
    border-radius: 38px;
    padding: 10px;
    box-shadow: 0 35px 75px rgba(4, 30, 91, .27);
    transform: rotate(3deg);
    z-index: 2
}

.screen {
    min-height: 520px;
    border-radius: 23px;
    padding: 25px 18px;
    background: linear-gradient(155deg, #f5f8ff, #fff);
    overflow: hidden
}

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

.mini-brand {
    display: flex;
    gap: 7px;
    align-items: center;
    font-weight: 800
}

.mini-brand img {
    width: 27px;
    height: 27px;
    border-radius: 8px
}

.avatar {
    width: 33px;
    height: 33px;
    background: #dce7ff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .7rem;
    font-weight: 800;
    color: var(--blue)
}

.welcome {
    margin: 22px 0 14px
}

.welcome small {
    color: #71809d
}

.welcome h3 {
    font-size: 1.2rem;
    margin-top: 2px
}

.balance {
    background: linear-gradient(135deg, #0f61ff, #163fd6);
    border-radius: 20px;
    color: white;
    padding: 22px;
    box-shadow: 0 16px 30px rgba(16, 81, 239, .25)
}

.balance small {
    opacity: .76
}

.balance h3 {
    font-size: 1.65rem;
    margin: 4px 0 18px
}

.progress {
    height: 5px;
    background: #ffffff38;
    border-radius: 10px
}

.progress i {
    display: block;
    width: 68%;
    height: 100%;
    background: white;
    border-radius: 10px
}

.balance-bottom {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    margin-top: 8px;
    opacity: .85
}

.app-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 21px 0 11px
}

.app-row h3 {
    font-size: .9rem
}

.app-row a {
    font-size: .65rem;
    color: var(--blue)
}

.circle-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e3eaf7;
    padding: 11px;
    border-radius: 13px;
    margin-top: 8px;
    background: white
}

.circle-icon {
    width: 39px;
    height: 39px;
    border-radius: 11px;
    background: #e8efff;
    color: var(--blue);
    display: grid;
    place-items: center
}

.circle-card h4 {
    font-size: .72rem
}

.circle-card p {
    font-size: .58rem;
    color: #7a88a0
}

.status {
    margin-left: auto;
    font-size: .55rem;
    padding: 4px 7px;
    color: #0d9466;
    background: #e5f8f1;
    border-radius: 20px
}

.float-card {
    position: absolute;
    z-index: 3;
    background: white;
    border: 1px solid #e5ebf5;
    border-radius: 15px;
    padding: 13px 16px;
    box-shadow: var(--shadow);
    font-size: .76rem;
    font-weight: 700
}

.float-card small {
    display: block;
    color: #75849c;
    font-weight: 500
}

.trust-float {
    left: 0;
    top: 95px
}

.trust-num {
    color: var(--blue);
    font-size: 1.45rem
}

.paid-float {
    right: -7px;
    bottom: 97px;
    display: flex;
    align-items: center;
    gap: 10px
}

.paid-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: var(--green)
}

main,
section,
.hero-grid,
.how-grid,
.security-grid {
    min-width: 0;
    max-width: 100%
}

section {
    padding: 100px 0
}

.trust-strip {
    padding: 25px 0 65px
}

.trust-inner {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 23px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(12, 54, 130, .06)
}

.trust-inner>p {
    font-weight: 700;
    max-width: 190px
}

.trust-points {
    display: flex;
    gap: 32px;
    color: #62718c;
    font-size: .88rem
}

.trust-points span {
    display: flex;
    align-items: center;
    gap: 8px
}

.round-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    border-radius: 50%
}

.features {
    background: #f8faff
}

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

.feature-card {
    background: white;
    border: 1px solid #e2eafa;
    border-radius: 20px;
    padding: 29px;
    transition: .28s
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #c9d8fc
}

.feature-icon {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    background: var(--blue-soft);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 1.35rem;
    margin-bottom: 22px
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px
}

.feature-card p {
    font-size: .9rem;
    color: var(--text)
}

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

.how-copy>p {
    color: var(--text);
    font-size: 1.05rem;
    margin: 20px 0 28px
}

.steps {
    display: grid;
    gap: 19px
}

.step {
    display: flex;
    gap: 17px
}

.step-num {
    flex: 0 0 41px;
    height: 41px;
    border-radius: 12px;
    background: var(--blue);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800
}

.step h3 {
    font-size: 1rem;
    margin: 2px 0 4px
}

.step p {
    font-size: .85rem;
    color: var(--text)
}

.ledger {
    background: #fff;
    border-radius: 25px;
    padding: 24px;
    box-shadow: 0 30px 70px rgba(11, 47, 129, .13);
    border: 1px solid #e2e9f7;
    position: relative
}

.ledger:before {
    content: '';
    position: absolute;
    inset: -35px;
    z-index: -1;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6efff, #f9fbff)
}

.ledger-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
    border-bottom: 1px solid #e6ebf4
}

.ledger-head h3 {
    font-size: 1rem
}

.ledger-head span {
    font-size: .68rem;
    color: var(--blue);
    background: var(--blue-soft);
    padding: 5px 9px;
    border-radius: 20px
}

.pool {
    margin: 18px 0;
    padding: 19px;
    background: #0c2d76;
    color: white;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: end
}

.pool small {
    opacity: .65
}

.pool strong {
    font: 700 1.4rem 'Manrope'
}

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

.member {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr;
    align-items: center;
    padding: 9px 11px;
    background: #f8faff;
    border-radius: 10px;
    font-size: .75rem
}

.person {
    display: flex;
    align-items: center;
    gap: 8px
}

.person i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dce7fc;
    display: grid;
    place-items: center;
    font-style: normal;
    color: var(--blue);
    font-weight: 800
}

.member em {
    font-style: normal;
    color: var(--green);
    font-weight: 700
}

.member em.pending {
    color: #f0a118
}

.security {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden
}

.security:after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid #ffffff13;
    border-radius: 50%;
    right: -80px;
    top: -240px;
    box-shadow: 0 0 0 80px #ffffff08, 0 0 0 160px #ffffff05
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1
}

.security h2 {
    margin: 19px 0
}

.security-copy>p {
    color: #b8c5df;
    max-width: 540px
}

.security-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px
}

.security-item {
    display: flex;
    gap: 10px;
    color: #dce5f7;
    font-size: .85rem
}

.security-item b {
    color: #71a2ff
}

.score-card {
    width: min(370px, 100%);
    margin: auto;
    background: linear-gradient(145deg, #1744a7, #0c2868);
    border: 1px solid #ffffff1f;
    border-radius: 25px;
    padding: 28px;
    box-shadow: 0 25px 55px #03102d80
}

.score-top {
    display: flex;
    justify-content: space-between
}

.badge {
    padding: 5px 10px;
    background: #ffffff16;
    border-radius: 20px;
    font-size: .67rem;
    color: #9fc0ff
}

.score-ring {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    margin: 25px auto;
    display: grid;
    place-items: center;
    background: conic-gradient(#54a0ff 0 92%, #ffffff1c 92%);
    position: relative
}

.score-ring:before {
    content: '';
    position: absolute;
    inset: 12px;
    background: #12357f;
    border-radius: 50%
}

.score-ring strong {
    position: relative;
    font: 800 2.8rem 'Manrope'
}

.score-ring small {
    position: relative;
    margin-top: -44px;
    color: #aebfde
}

.score-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ffffff1a;
    padding-top: 19px
}

.score-stats span {
    font-size: .7rem;
    color: #aebfde
}

.score-stats b {
    display: block;
    color: white;
    font-size: .95rem
}

.faq {
    background: #f8faff
}

.faq-list {
    max-width: 820px;
    margin: auto;
    display: grid;
    gap: 12px
}

.faq-list details {
    background: white;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 0 21px;
    transition: .2s
}

.faq-list details[open] {
    border-color: #b7ccff;
    box-shadow: 0 10px 30px rgba(18, 65, 165, .07)
}

.faq-list summary {
    list-style: none;
    padding: 20px 40px 20px 0;
    font-weight: 700;
    cursor: pointer;
    position: relative
}

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

.faq-list summary:after {
    content: '+';
    position: absolute;
    right: 2px;
    top: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 1.2rem
}

.faq-list details[open] summary:after {
    content: '–'
}

.faq-list details p {
    color: var(--text);
    font-size: .93rem;
    padding: 0 35px 20px 0
}

footer {
    background: #061634;
    color: #b9c5dc;
    padding: 65px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr 1fr;
    gap: 60px;
    padding-bottom: 45px
}

.footer-brand .brand {
    color: white
}

.footer-brand p {
    font-size: .88rem;
    margin-top: 17px;
    max-width: 330px
}

.footer-col h3 {
    color: white;
    font-size: .92rem;
    letter-spacing: 0;
    margin-bottom: 17px
}

.footer-col a {
    display: block;
    font-size: .84rem;
    margin: 10px 0
}

.footer-col a:hover {
    color: white
}

.footer-bottom {
    border-top: 1px solid #ffffff16;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: .78rem
}

.legal-links {
    display: flex;
    gap: 22px
}

.get-app { background: linear-gradient(135deg, #071a3d, #0c327b); color: white; overflow: hidden }
.app-download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center }
.app-download-copy h2 { margin: 20px 0 18px; max-width: 600px }
.app-download-copy > p { color: #c3d0e8; max-width: 570px }
.store-links { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px }
.store-button { display: flex; align-items: center; gap: 12px; min-width: 190px; padding: 12px 17px; border: 1px solid #ffffff2e; border-radius: 14px; background: #ffffff0e; transition: .25s }
.store-button:hover { background: #ffffff1c; transform: translateY(-2px) }
.store-button small, .store-button strong { display: block; line-height: 1.2 }
.store-button small { color: #b8c7e2; font-size: .66rem }
.store-button strong { font-size: 1rem; margin-top: 3px }
.store-icon { width: 30px; height: 30px; flex: 0 0 30px; display: block }
.app-download-copy .store-note { margin-top: 12px; font-size: .78rem; color: #92a7cb }
.app-benefits { display: grid; gap: 14px }
.app-benefits article { display: flex; gap: 18px; padding: 24px; border-radius: 18px; background: #ffffff0d; border: 1px solid #ffffff18 }
.app-benefits article > span { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #2d6dff; font-weight: 800; font-size: .8rem }
.app-benefits h3 { font-size: 1rem; margin: 2px 0 6px }
.app-benefits p { color: #afbed9; font-size: .86rem }
.contact { background: #f8faff }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center }
.contact-copy h2 { margin: 20px 0 18px }
.contact-copy p { color: var(--text); max-width: 480px }
.contact-email { display: inline-block; color: var(--blue); font-weight: 700; margin-top: 22px }
.contact-form { background: white; padding: 34px; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 20px 55px rgba(19,70,180,.08) }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .82rem; font-weight: 700 }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #cedaf0; border-radius: 10px; padding: 12px 13px; color: var(--navy); background: white; font: inherit; font-size: .9rem; outline: none }
.contact-form textarea { resize: vertical; min-height: 125px }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px #1557ff18 }
.contact-form .btn { cursor: pointer; font: inherit }
.form-note { color: #75849c; font-size: .75rem; margin-top: 12px }
.legal-page { background: #f8faff }
.legal-header { position: fixed; top: 0; background: white; border-bottom: 1px solid var(--line) }
.legal-hero { padding: 75px 0 55px; background: linear-gradient(180deg, #eef4ff, #f8faff) }
.legal-wrap { max-width: 820px }
.legal-hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); margin: 18px 0 9px }
.legal-updated { color: var(--text) }
.legal-section { padding: 0 0 90px }
.legal-content { max-width: 820px; padding: 48px; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 20px 55px rgba(19,70,180,.07) }
.legal-content h2 { font-size: 1.2rem; margin: 30px 0 8px }
.legal-content h2:first-child { margin-top: 0 }
.legal-content p { color: var(--text) }
.legal-content a { color: var(--blue); font-weight: 700 }
.legal-footer { padding-top: 24px }

@media(max-width:900px) {
    .nav-links {
        position: fixed;
        top: 82px;
        left: 20px;
        right: 20px;
        background: white;
        box-shadow: var(--shadow);
        border: 1px solid var(--line);
        border-radius: 17px;
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 16px
    }

    .nav-links .language-picker {
        width: 100%;
        justify-content: center
    }

    .menu-toggle {
        display: block
    }

    .nav-check:checked~.nav-links {
        display: flex
    }

    .hero {
        padding-top: 135px
    }

    .hero-grid,
    .how-grid,
    .security-grid,
    .app-download-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .app-download-grid,
    .contact-grid {
        gap: 50px
    }

    .hero-copy {
        text-align: center
    }

    .hero-copy>p {
        margin-left: auto;
        margin-right: auto
    }

    .hero-actions,
    .hero-note {
        justify-content: center
    }

    .phone-scene {
        margin-top: 15px
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust-inner {
        flex-direction: column;
        text-align: center
    }

    .trust-points {
        flex-wrap: wrap;
        justify-content: center
    }

    .how-grid {
        gap: 65px
    }

    .security-grid {
        gap: 55px
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

}

@media(max-width:620px) {
    .container {
        width: calc(100% - 28px)
    }

    header {
        height: 70px
    }

    .legal-header + main {
        padding-top: 70px
    }

    .nav-links {
        top: 70px
    }

    .brand img {
        width: 35px;
        height: 35px
    }

    .hero {
        min-height: auto;
        padding: 118px 0 65px
    }

    .hero h1 {
        font-size: clamp(2.25rem, 12vw, 2.65rem)
    }

    .hero-copy>p {
        font-size: 1rem
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%
    }

    .hero-note {
        gap: 10px;
        flex-direction: column;
        align-items: center
    }

    .phone-scene {
        width: 100%;
        min-height: 475px;
        margin: 5px 0 -20px;
        overflow: hidden
    }

    .phone {
        width: 250px;
        border-width: 7px;
        padding: 8px
    }

    .screen {
        min-height: 455px;
        padding: 20px 14px
    }

    .orb {
        width: 315px;
        height: 315px
    }

    .float-card {
        font-size: .68rem;
        padding: 10px 12px
    }

    .trust-float {
        left: 0;
        top: 75px
    }

    .paid-float {
        right: 0;
        bottom: 55px
    }

    .trust-strip {
        padding-top: 0
    }

    .trust-points {
        width: 100%;
        align-items: flex-start;
        flex-direction: column
    }

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

    .section-head {
        margin-bottom: 37px
    }

    section {
        padding: 75px 0
    }

    .how-grid {
        gap: 45px
    }

    .ledger {
        padding: 16px
    }

    .ledger:before {
        inset: -10px
    }

    .member {
        grid-template-columns: minmax(0, 1.5fr) .6fr
    }

    .person {
        min-width: 0
    }

    .member em {
        display: none
    }

    .security-list {
        grid-template-columns: 1fr
    }

    .score-card {
        padding: 22px
    }

    .score-stats {
        gap: 10px
    }

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

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px
    }

    .store-links,
    .store-button {
        width: 100%
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .contact-form {
        padding: 24px 18px
    }

    .legal-header .btn {
        padding: 10px 13px;
        font-size: .8rem
    }

    .legal-hero {
        padding: 55px 0 38px
    }

    .legal-section {
        padding: 0 0 60px
    }

    .legal-content {
        padding: 30px 20px;
        border-radius: 16px
    }
}
