:root {
    --ink: #8f695a;
    --muted: #5d6880;
    --paper: #f7f8fc;
    --white: #fff;
    --line: #dfe5f1;
    --violet: #635bdb;
    --violet-deep: #413aab;
    --mint: #dff8ee;
    --mint-ink: #175d48;
    --amber: #fff2cc;
    --amber-ink: #765100;
    --coral: #ff7567;
    --sky: #def3ff;
    --radius: 18px;
    --shadow: 0 12px 34px rgba(41, 51, 87, .09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    background-color: #c99b88;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6
}

a {
    color: var(--violet-deep);
    text-underline-offset: 3px
}

a:hover {
    color: var(--coral)
}

img {
    max-width: 100%;
    height: auto
}

.skip {
    position: absolute;
    left: -999px
}

.skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 50;
    background: #fff;
    padding: .6rem 1rem;
    border-radius: 8px
}

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: auto
}

.notice {
    background: #17213b;
    color: #fff;
    font-size: .86rem
}

.notice .wrap {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .55rem 0
}

.notice strong {
    color: #ffdc77
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 248, 252, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line)
}

.header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.brand {
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 850;
    letter-spacing: -.04em;
    text-decoration: none;
    white-space: nowrap
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-right: .42rem;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--violet), var(--coral));
    color: #fff;
    font-size: .8rem;
    letter-spacing: 0
}

.nav-toggle {
    padding: .45rem .7rem;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
    font: inherit
}

.site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: .75rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.site-nav.is-open {
    display: grid;
    gap: .3rem
}

.site-nav a {
    padding: .45rem .55rem;
    text-decoration: none;
    font-weight: 650
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border: 0;
    border-radius: 10px;
    background: var(--violet);
    color: #fff !important;
    padding: .72rem 1rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 5px 14px rgba(99, 91, 219, .2)
}

.nav-cta:hover,
.button:hover {
    background: var(--violet-deep);
    color: #fff
}

.button.alt {
    background: #fff;
    color: var(--violet-deep) !important;
    border: 1px solid #cfcdf6;
    box-shadow: none
}

.hero {
    padding: 3.5rem 0 2.2rem;
    background: radial-gradient(circle at 90% 4%, #f2dfff 0, transparent 27%), radial-gradient(circle at 0% 55%, #d9f8ef 0, transparent 31%)
}

.eyebrow {
    margin: 0 0 .65rem;
    color: var(--violet-deep);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase
}

.hero-grid {
    display: grid;
    gap: 1.75rem;
    align-items: center
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.1rem, 7vw, 4.65rem);
    line-height: 1.02;
    letter-spacing: -.06em
}

.lead {
    max-width: 700px;
    font-size: 1.12rem;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem
}

.hero-card {
    padding: 1.4rem;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.hero-card p {
    margin: .35rem 0
}

.key-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.key-list li {
    padding: .55rem 0;
    border-bottom: 1px solid var(--line)
}

.key-list li:last-child {
    border: 0
}

.key-list b {
    color: var(--violet-deep)
}

main section {
    padding: 2.8rem 0
}

.section-title {
    max-width: 760px;
    margin: 0 0 .55rem;
    font-size: clamp(1.65rem, 4vw, 2.45rem);
    letter-spacing: -.045em;
    line-height: 1.12
}

.section-intro {
    max-width: 760px;
    margin: 0 0 1.35rem;
    color: var(--muted)
}

.compliance {
    background: var(--ink);
    color: #fff
}

.compliance .section-title {
    color: #fff
}

.compliance-grid {
    display: grid;
    gap: 1rem
}

.compliance-card {
    padding: 1.15rem;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 15px
}

.compliance-card h3 {
    margin: .1rem 0 .4rem;
    color: #c9fff0
}

.grid {
    display: grid;
    gap: 1rem
}

.platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr))
}

.card {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 5px 16px rgba(41, 51, 87, .04)
}

.card h3 {
    margin: .15rem 0 .45rem;
    font-size: 1.26rem
}

.card p {
    margin: .15rem 0 1rem;
    color: var(--muted)
}

.tag {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: .22rem .55rem;
    border-radius: 99px;
    background: var(--sky);
    color: #19678b;
    font-size: .75rem;
    font-weight: 800
}

.card .text-link {
    margin-top: auto;
    font-weight: 800;
    text-decoration: none
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff
}

.compare {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    font-size: .94rem
}

.compare caption {
    padding: 1rem;
    text-align: left;
    font-weight: 800
}

.compare th,
.compare td {
    padding: .85rem 1rem;
    text-align: left;
    border-top: 1px solid var(--line);
    vertical-align: top
}

.compare th {
    background: #f1f2fa;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.check {
    color: var(--mint-ink);
    font-weight: 850
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
}

.info-box {
    padding: 1.2rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line)
}

.info-box h3 {
    margin-top: 0
}

.info-box p {
    margin-bottom: 0;
    color: var(--muted)
}

.faq {
    display: grid;
    gap: .7rem;
    max-width: 840px
}

.faq details {
    padding: .85rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px
}

.faq summary {
    cursor: pointer;
    font-weight: 800
}

.faq p {
    margin: .7rem 0 .05rem;
    color: var(--muted)
}

.quote-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr))
}

.quote {
    margin: 0;
    padding: 1.2rem;
    background: var(--mint);
    border-radius: var(--radius);
    color: #164b3c
}

.quote p {
    margin: 0 0 .8rem;
    font-size: 1.02rem
}

.quote cite {
    font-size: .86rem;
    font-style: normal;
    font-weight: 800
}

.link-list {
    display: grid;
    gap: .65rem;
    padding: 0;
    list-style: none
}

.link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 750;
    text-decoration: none
}

.link-list a::after {
    content: "↗";
    color: var(--coral)
}

.callout {
    padding: 1.1rem 1.2rem;
    border-left: 4px solid var(--coral);
    border-radius: 0 12px 12px 0;
    background: var(--amber);
    color: var(--amber-ink)
}

.callout p {
    margin: .3rem 0
}

.breadcrumb {
    padding: 1rem 0 .1rem;
    font-size: .88rem;
    color: var(--muted)
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 0;
    padding: 0;
    list-style: none
}

.breadcrumb li+li::before {
    content: "/";
    padding-right: .4rem;
    color: #9198aa
}

.page-hero {
    padding: 2.2rem 0 1.8rem
}

.page-hero h1 {
    max-width: 860px;
    margin: .2rem 0 .7rem;
    font-size: clamp(2rem, 5vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: -.055em
}

.page-hero .lead {
    margin: 0
}

.detail-layout {
    display: grid;
    gap: 1.2rem
}

.sidebar {
    padding: 1.2rem;
    background: #f0eeff;
    border: 1px solid #d9d5ff;
    border-radius: var(--radius)
}

.sidebar h2 {
    margin-top: 0;
    font-size: 1.15rem
}

.sidebar ul {
    padding-left: 1.1rem
}

.sidebar li {
    margin: .4rem 0
}

.prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.1rem, 3vw, 2rem)
}

.prose h2 {
    margin-top: 1.65rem;
    line-height: 1.2
}

.prose h2:first-child {
    margin-top: 0
}

.prose p,
.prose li {
    color: #44506a
}

.prose li {
    margin: .35rem 0
}

.exit-panel {
    max-width: 720px;
    margin: 1rem auto 3rem;
    padding: clamp(1.3rem, 5vw, 2.7rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center
}

.exit-badge {
    display: inline-flex;
    padding: .25rem .65rem;
    border-radius: 99px;
    background: var(--amber);
    color: var(--amber-ink);
    font-weight: 850;
    font-size: .78rem
}

.exit-panel h1 {
    line-height: 1.15;
    letter-spacing: -.045em
}

.exit-panel .button {
    margin: 1rem 0
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 1rem 0
}

.legal-nav a {
    padding: .38rem .7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 99px;
    text-decoration: none;
    font-size: .86rem
}

.site-footer {
    background: #11192e;
    color: #d7dcec;
    padding: 2.5rem 0 1rem
}

.footer-grid {
    display: grid;
    gap: 1.25rem
}

.site-footer h2 {
    margin: 0 0 .5rem;
    color: #fff;
    font-size: 1rem
}

.site-footer p {
    margin: .2rem 0;
    color: #b7c0d9;
    font-size: .92rem
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .4rem .9rem
}

.footer-links a {
    color: #e5e8ff;
    font-size: .88rem
}

.footer-bottom {
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid #303a57;
    color: #aab4ce;
    font-size: .8rem
}

.muted {
    color: var(--muted)
}

.hide-mobile {
    display: none
}

@media(min-width:760px) {
    .nav-toggle {
        display: none
    }

    .site-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: .18rem;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none
    }

    .site-nav a {
        font-size: .91rem
    }

    .hero {
        padding: 5.2rem 0 3.5rem
    }

    .hero-grid {
        grid-template-columns: 1.35fr .65fr
    }

    .compliance-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .detail-layout {
        grid-template-columns: minmax(0, 1fr) 285px
    }

    .sidebar {
        order: 2;
        height: max-content;
        position: sticky;
        top: 90px
    }

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

    .hide-mobile {
        display: inline
    }
}


.section-alt {
    padding: 80px 0;
}

.section-sub {
    max-width: 900px;
    margin: 0 auto 16px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.section-lead {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: #4b5563;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.platform-card {
    background: #aaaaaa;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: .25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.card-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 16px;
}

.card-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.card-header h3 {
    margin: 0 0 12px;
    text-align: center;
    font-size: 22px;
}

.card-desc {
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.card-desc-extra {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.info-list {
    margin: 0 0 20px;
    padding-left: 18px;
}

.info-list li {
    margin-bottom: 8px;
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-outline,
.btn-fresh {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: #111827;
    background: #fff;
}

.btn-outline:hover {
    background: #f3f4f6;
}

.btn-fresh {
    background: #2563eb;
    color: #fff;
}

.btn-fresh:hover {
    background: #1d4ed8;
}

.deco-tag {
    background: #f3f4f6;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    color: #4b5563;
}

@media (max-width: 768px) {
    .card-actions {
        flex-direction: column;
    }

    .platform-card {
        padding: 20px;
    }
}

.regulators-bar {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.regulators-title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
}

.regulators-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.regulators-logos li {
    margin: 0;
    padding: 0;
}

.regulators-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 64px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    transition: all .25s ease;
}

.regulators-logos a:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

.regulators-logos img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    display: block;
}

.regulators-note {
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    opacity: .75;
}

@media (max-width: 768px) {
    .regulators-logos {
        gap: 16px;
    }

    .regulators-logos a {
        width: 120px;
        height: 56px;
    }

    .regulators-note {
        font-size: 12px;
        padding: 0 12px;
    }
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.section-alt .section-title {
    max-width: 900px;
    margin: 0 auto 16px;
    text-align: center;
}

.section-alt {
    padding: 80px 0;
}

.card-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 86px;
    margin-bottom: 18px;
}

.card-logo {
    width: 150px;
    max-width: 75%;
    max-height: 64px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .18));
    transition: transform .25s ease, filter .25s ease;
}

.platform-card:hover .card-logo {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .24));
}