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

html {
    height: 100%
}

body {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #fafafa;
    background-image: none;
    background-origin: padding-box;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto;
    box-sizing: border-box;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 668.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

/* Hide hologram/network */
.card-hologram, .card-network, .network-circles, .network-circles .circle-1, .network-circles .circle-2, .circle-1, .circle-2, .credit-card .card-hologram, .credit-card .card-network {
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    display: none !important
}

/* Animations */
@keyframes slideDownFadeIn {
    0% {
        opacity: 0;
        transform:translateY(-40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform:translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes scaleFadeIn {
    0% {
        opacity: 0;
        transform:scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes slideLeftFadeIn {
    0% {
        opacity: 0;
        transform:translate(-20px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes slideRightFadeIn {
    0% {
        opacity: 0;
        transform:translate(20px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform:translateY(20px)scale(.8)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes orbFloat {
    0%, to {
        transform:translate(0)scale(1)
    }

    25% {
        transform:translate(30px, -30px)scale(1.05)
    }

    50% {
        transform:translate(-20px, 20px)scale(.95)
    }

    75% {
        transform: translate(20px, 10px) scale(1.02)
    }
}

@keyframes cardShine {
    0%, to {
        left:-100%
    }

    50% {
        left: 100%
    }
}

@keyframes scroll {
    0% {
        transform:translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

@keyframes ringExpand {
    0%, to {
        opacity: .3;
        transform:translate(-50%, -50%)scale(.9)
    }

    50% {
        opacity: .6;
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes floatApple {
    0%, to {
        transform:translateY(0)rotate(-2deg)
    }

    50% {
        transform: translateY(-12px) rotate(1deg)
    }
}

@keyframes floatGoogle {
    0%, to {
        transform:translateY(0)rotate(2deg)
    }

    50% {
        transform: translateY(-10px) rotate(-1deg)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.header-animate {
    animation: .6s cubic-bezier(.22, 1, .36, 1) forwards slideDownFadeIn
}

.hero-content-animate {
    opacity: 0;
    animation: .8s cubic-bezier(.22, 1, .36, 1) .1s forwards slideUpFadeIn
}

.hero-visual-animate {
    opacity: 0;
    animation: 1s cubic-bezier(.22, 1, .36, 1) .2s forwards scaleFadeIn
}

.audited-badge-animate {
    opacity: 0;
    animation: .6s cubic-bezier(.22, 1, .36, 1) .8s forwards slideUpFadeIn
}

.stat-card-animate-left {
    opacity: 0;
    animation: .6s cubic-bezier(.22, 1, .36, 1) .5s forwards slideLeftFadeIn
}

.stat-card-animate-right {
    opacity: 0;
    animation: .6s cubic-bezier(.22, 1, .36, 1) .6s forwards slideRightFadeIn
}

.payment-badge-animate {
    opacity: 0;
    animation: .6s cubic-bezier(.22, 1, .36, 1) .7s forwards popIn
}

.payment-badge-animate-delay {
    opacity: 0;
    animation: .6s cubic-bezier(.22, 1, .36, 1) .8s forwards popIn
}

/* Landing page variables */
.landing {
    --bg-primary: #fafafa;
    --bg-secondary: #fff;
    --bg-tertiary: #f4f4f5;
    --text-primary: #09090b;
    --text-secondary: #71717a;
    --text-muted: #a1a1aa;
    --accent: var(--theme-primary, #6366f1);
    --accent-light: var(--theme-primary-light, #818cf8);
    --accent-dark: var(--theme-primary-dark, #4f46e5);
    --border: #e4e4e7;
    --border-light: #f4f4f5;
    --gradient-1: var(--theme-gradient, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%));
    --gradient-2: var(--theme-gradient-card, linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%));
    --gradient-dark: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    --shadow-sm: 0 1px 2px 0 #0000000d;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    --shadow-xl: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    background: var(--bg-primary);
    min-height: 100vh;
    color: var(--text-primary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    overflow-x: hidden
}

/* Background layer */
.bg-layer {
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden
}

.gradient-orb {
    filter: blur(100px);
    opacity: .5;
    border-radius: 50%;
    position: absolute
}

.orb-1 {
    background: linear-gradient(135deg, var(--theme-orb-1, #6366f166), var(--theme-orb-2, #8b5cf64d));
    width: 600px;
    height: 600px;
    animation: 25s ease-in-out infinite orbFloat;
    top: -200px;
    right: -100px
}

.orb-2 {
    background: linear-gradient(135deg, var(--theme-orb-2, #0ea5e94d), var(--theme-orb-1, #6366f133));
    width: 500px;
    height: 500px;
    animation: 30s ease-in-out infinite reverse orbFloat;
    bottom: -150px;
    left: -100px
}

.orb-3 {
    background: linear-gradient(135deg, var(--theme-orb-3, #a855f74d), var(--theme-orb-1, #ec489933));
    width: 400px;
    height: 400px;
    animation: 20s ease-in-out infinite orbFloat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.dot-pattern {
    opacity: .5;
    background-image: radial-gradient(circle, #d4d4d8 1px, #0000 1px);
    background-size: 24px 24px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.grid-pattern {
    background-image: linear-gradient(90deg, #00000005 1px, #0000 1px), linear-gradient(#00000005 1px, #0000 1px);
    background-size: 80px 80px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.noise-overlay {
    opacity: .02;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

/* Header */
.header {
    z-index: 100;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    background: #fafafacc;
    position: fixed;
    top: 0;
    left: 0;
    right: 0
}

.header-inner {
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex
}

.brand {
    align-items: center;
    gap: 12px;
    display: flex
}

.brand-wordmark {
    align-items: center;
    height: 28px;
    display: flex
}

.brand-wordmark img {
    object-fit: contain;
    width: auto;
    height: 100%
}

.brand-logo {
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex
}

.brand-logo img {
    object-fit: contain;
    width: 100%;
    height: 100%
}

.brand-name {
    letter-spacing: -.02em;
    background: var(--gradient-1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 18px;
    font-weight: 700
}

.nav {
    gap: 32px;
    display: flex
}

.nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s
}

.nav-link:hover {
    color: var(--text-primary)
}

.header-cta {
    background: var(--text-primary);
    color: #fff;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s;
    display: flex
}

.header-cta:hover {
    background: #27272a;
    transform: translateY(-1px)
}

/* Promo Banner */
.promo-banner {
    z-index: 99;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 72px;
    background: linear-gradient(135deg, #0500FF 0%, #3333FF 50%, #0400CC 100%);
    color: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(5, 0, 255, 0.3);
    animation: .5s ease .3s both slideDownFadeIn
}

.promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 48px 10px 24px;
    position: relative
}

.promo-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 12px;
    text-align: center
}

.promo-fire {
    font-size: 18px;
    display: inline
}

.promo-text {
    font-size: 14px;
    font-weight: 500
}

.promo-highlight {
    font-weight: 800;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.promo-sub {
    font-size: 11px;
    opacity: .8;
    width: 100%
}

.promo-terms-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .85);
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
    white-space: nowrap
}

.promo-terms-btn:hover {
    color: #fff
}

.promo-close {
    position: absolute;
    right: 8px;
    top: 8px;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 2px 8px;
    line-height: 1;
    transition: all .2s;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.promo-close:hover {
    color: #fff
}

/* Hero */
.hero {
    z-index: 10;
    padding: 40px 24px 80px;
    position: relative
}

.hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid
}

.hero-badge {
    color: var(--accent);
    background: #6366f11a;
    border: 1px solid #6366f133;
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex
}

.hero-title {
    letter-spacing: -.04em;
    margin-bottom: 24px;
    font-size: 64px;
    font-family: Inter, sans-serif;
    font-weight: 800;
    line-height: 1.05
}

.title-gradient {
    background: var(--gradient-1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text
}

.hero-desc {
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.7
}

.hero-actions {
    gap: 16px;
    margin-bottom: 32px;
    display: flex
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    display: inline-flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px #6366f166
}

.btn-primary:before {
    content: "";
    background: linear-gradient(90deg, #0000, #fff3, #0000);
    width: 100%;
    height: 100%;
    transition: left .5s;
    position: absolute;
    top: 0;
    left: -100%
}

.btn-primary:hover:before {
    left: 100%
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #6366f180
}

.btn-primary:active {
    transform: translateY(0)
}

.btn-secondary {
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    background: 0 0;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all .2s;
    display: inline-flex
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: var(--bg-tertiary)
}

.hero-trust {
    gap: 24px;
    display: flex
}

.trust-item {
    color: var(--text-secondary);
    align-items: center;
    gap: 8px;
    font-size: 14px;
    display: flex
}

.trust-item svg {
    color: #10b981
}

.hero-visual {
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative
}

/* Cards showcase */
.cards-showcase {
    perspective: 1000px;
    height: 400px;
    position: relative
}

.cards-showcase-new {
    justify-content: center;
    align-items: center;
    height: 320px;
    display: flex
}

.card-stack-wrapper {
    width: 420px;
    height: 265px;
    position: relative
}

.card-position {
    transition: transform .5s;
    position: absolute
}

.card-position-back {
    z-index: 1;
    opacity: .9;
    top: 30px;
    left: -40px;
    transform: rotateY(-8deg) rotateX(5deg) scale(.92)
}

.card-position-front {
    z-index: 2;
    top: 0;
    left: 40px;
    transform: rotateY(-5deg) rotateX(3deg)
}

.card-position:hover {
    z-index: 10;
    transform: rotateY(0) rotateX(0) translateY(-10px) scale(1.02)
}

/* Credit card styles */
.credit-card-wrapper {
    perspective: 1200px;
    width: 420px;
    height: 265px;
    position: relative
}

.credit-card {
    cursor: pointer;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    transition: transform .4s cubic-bezier(.23, 1, .32, 1)
}

.credit-card-surface {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px #ffffff1a, inset 0 -1px #0003, 0 0 0 1px #ffffff0d;
    transition: box-shadow .4s ease
}

.credit-card:hover .credit-card-surface {
    box-shadow: inset 0 1px #ffffff1a, inset 0 -1px #0003, 0 0 0 1px #ffffff0d, 0 25px 50px -12px #00000040
}

.credit-card:hover .credit-card-reflection {
    opacity: .15 !important
}

.credit-card:hover .credit-card-shadow {
    opacity: .35 !important;
    transform: scale(.92) !important
}

.credit-card--platinum .credit-card-surface {
    background: linear-gradient(170deg, #2a2a2a 0%, #1f1f1f 25%, #252525 50%, #1a1a1a 75%, #222 100%)
}

.credit-card--platinum .credit-card-surface:before {
    content: "";
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(90deg, #0000 0, #0003 1px, #0000 2px, #ffffff0a 3px, #0000 4px) 0 0/5px 100%;
    position: absolute;
    inset: 0
}

.credit-card--platinum .credit-card-surface:after {
    content: "";
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(125deg, #0000 0% 40%, #ffffff08 45%, #ffffff0d 50%, #ffffff08 55%, #0000 60% 100%);
    position: absolute;
    inset: 0
}

.credit-card--themed .credit-card-surface {
    background: linear-gradient(145deg, #4a2d7a 0%, #3d2266 25%, #2e1a4d 50%, #3d2266 75%, #4a2d7a 100%)
}

.credit-card--silver .credit-card-surface {
    background: linear-gradient(145deg, #e5e5e5 0%, #d8d8d8 25%, #ccc 50%, #d8d8d8 75%, #e0e0e0 100%)
}

.credit-card--silver .card-brand-logo {
    color: #000c
}

.credit-card--silver .credit-card-number {
    color: #000000bf;
    text-shadow: 0 1px 1px #ffffff4d
}

.credit-card--silver .credit-card-label {
    color: #0006
}

.credit-card--silver .credit-card-value {
    color: #000000b3;
    text-shadow: 0 1px 1px #ffffff4d
}

.credit-card--silver .credit-card-tier {
    color: #00000059
}

.credit-card-reflection {
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(#fff3 0%, #ffffff0d 25%, #0000 50%);
    width: 300%;
    height: 300%;
    transition: opacity .4s;
    position: absolute;
    top: -100%;
    left: -100%
}

.credit-card-surface:after {
    content: "";
    pointer-events: none;
    z-index: 4;
    background: linear-gradient(90deg, #0000, #ffffff1a, #0000);
    width: 40%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    animation: 3s ease-in-out 1s infinite cardShine
}

.credit-card-layout {
    z-index: 5;
    flex-direction: column;
    padding: 26px 28px;
    display: flex;
    position: absolute;
    inset: 0
}

.credit-card-header {
    justify-content: space-between;
    align-items: flex-start;
    display: flex
}

.credit-card-tier {
    letter-spacing: 2px;
    color: #ffffff59;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 7px;
    font-weight: 600;
    position: absolute;
    top: 26px;
    right: 28px
}

.credit-card-brand {
    align-items: center;
    gap: 10px;
    display: flex
}

.card-brand-logo {
    color: #ffffffe6;
    filter: drop-shadow(0 1px 2px #0000004d);
    width: auto;
    height: 32px
}

.card-brand-logo--image {
    object-fit: contain;
    border-radius: 4px;
    width: auto;
    max-width: 128px;
    height: 42px
}

.credit-card-chip-row {
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    display: flex
}

.card-emv-chip {
    z-index: 10;
    isolation: isolate;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 38px;
    display: flex;
    position: relative
}

.card-chip-image {
    object-fit: contain;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: relative
}

.credit-card-number {
    letter-spacing: 3px;
    color: #fffc;
    text-shadow: 0 1px 2px #0000004d;
    margin-top: auto;
    font-family: 'SF Mono', Menlo, Monaco, 'Courier New', monospace;
    font-size: 18px;
    font-weight: 500
}

.credit-card-footer {
    justify-content: space-between;
    margin-top: 12px;
    display: flex
}

.credit-card-info {
    flex-direction: column;
    gap: 2px;
    display: flex
}

.credit-card-info--right {
    text-align: right
}

.credit-card-label {
    letter-spacing: 1.2px;
    color: #fff6;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 7px;
    font-weight: 500
}

.credit-card-value {
    letter-spacing: 1.5px;
    color: #ffffffbf;
    text-transform: uppercase;
    text-shadow: 0 1px 2px #0000004d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 500
}

.credit-card-shadow {
    filter: blur(30px);
    z-index: -1;
    transform-origin: bottom;
    border-radius: 12px;
    width: 84%;
    height: 100%;
    position: absolute;
    bottom: -15px;
    left: 8%
}

.credit-card-shadow--platinum {
    background: #0009
}

.credit-card-shadow--silver {
    background: #0000004d
}

.credit-card-shadow--themed {
    background: #4a2d7a80
}

/* Audited badge */
.audited-badge {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: #fffc;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px 24px;
    display: flex
}

.audited-label {
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600
}

.audited-logo {
    object-fit: contain;
    width: auto;
    height: 24px
}

/* Floating stats */
.floating-stats {
    pointer-events: none;
    position: absolute;
    inset: 0
}

.stat-card {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    background: #ffffffe6;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    display: flex;
    position: absolute
}

.stat-card:first-child {
    top: 0;
    left: -40px
}

.stat-right {
    bottom: 40px;
    right: -20px
}

.stat-card svg {
    color: var(--accent)
}

.stat-value {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    display: block
}

.stat-label {
    color: var(--text-secondary);
    font-size: 12px
}

/* Floating payments */
.floating-payments {
    pointer-events: none;
    z-index: 5;
    position: absolute;
    inset: 0
}

.payment-badge {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    pointer-events: auto;
    background: #fffffff2;
    border: 1px solid #0000000f;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    display: flex;
    position: absolute;
    box-shadow: 0 8px 32px -4px #0000001a, 0 4px 8px -2px #0000000d
}

.payment-badge svg {
    width: 60px;
    height: 24px
}

.payment-badge img {
    width: auto;
    height: 32px
}

.payment-apple {
    padding: 10px 16px;
    animation: 4s ease-in-out infinite floatApple;
    bottom: 60px;
    left: -30px
}

.payment-apple img {
    height: 28px
}

.payment-google {
    animation: 4.5s ease-in-out .5s infinite floatGoogle;
    top: 80px;
    right: 30px
}

/* Logos / wallets */
.logos-section {
    z-index: 10;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffffb3;
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.logos-inner {
    text-align: center
}

.logos-label {
    color: var(--text-muted);
    margin-bottom: 32px;
    padding: 0 24px;
    font-size: 14px
}

.logos-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, #0000 0%, #000 10% 90%, #0000 100%);
    mask-image: linear-gradient(90deg, #0000 0%, #000 10% 90%, #0000 100%)
}

.logos-track {
    align-items: center;
    gap: 0;
    width: max-content;
    animation: 30s linear infinite scroll;
    display: flex
}

.logos-track:hover {
    animation-play-state: paused
}

.logo-item {
    opacity: .6;
    filter: grayscale();
    box-sizing: border-box;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 160px;
    min-width: 160px;
    height: 40px;
    padding: 0 20px;
    transition: opacity .3s, transform .3s;
    display: flex
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05)
}

.logo-item img {
    object-fit: contain;
    width: auto;
    max-width: 120px;
    max-height: 100%
}

/* Backers */
.backers-section {
    z-index: 10;
    border-bottom: 1px solid var(--border);
    background: #ffffff80;
    padding: 48px 24px;
    position: relative
}

.backers-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.backers-label {
    color: var(--text-muted);
    letter-spacing: .02em;
    margin-bottom: 28px;
    font-size: 13px
}

.backers-logos {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    display: flex
}

.backer-item {
    opacity: .65;
    justify-content: center;
    align-items: center;
    height: 24px;
    transition: opacity .3s;
    display: flex
}

.backer-item:hover {
    opacity: 1
}

.backer-item img {
    object-fit: contain;
    width: auto;
    max-width: 140px;
    height: 100%
}

/* Features */
.features {
    z-index: 10;
    padding: 80px 24px;
    position: relative
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto
}

.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-tag {
    color: var(--accent);
    background: #6366f11a;
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex
}

.section-title {
    letter-spacing: -.03em;
    margin-bottom: 16px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2
}

.section-desc {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    font-size: 18px
}

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

.feature-card {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fffc;
    padding: 32px;
    transition: all .3s
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
    transform: translateY(-4px)
}

.feature-icon {
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    color: #fff;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6
}

/* Rewards */
.rewards {
    z-index: 10;
    background: var(--bg-tertiary);
    padding: 80px 24px;
    position: relative
}

.rewards-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    display: grid
}

.rewards-text .section-title {
    text-align: left
}

.rewards-text .section-desc {
    text-align: left;
    margin: 0 0 32px
}

.rewards-tiers {
    flex-direction: column;
    gap: 20px;
    display: flex
}

.tier-header {
    justify-content: space-between;
    margin-bottom: 8px;
    display: flex
}

.tier-percent {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700
}

.tier-label {
    color: var(--text-secondary);
    font-size: 14px
}

.tier-bar {
    background: var(--border);
    border-radius: 100px;
    height: 8px;
    overflow: hidden
}

.tier-fill {
    background: var(--gradient-1);
    border-radius: 100px;
    height: 100%;
    transition: width .5s
}

.rewards-visual {
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: flex
}

.crypto-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 380px;
    height: 380px;
    padding: 16px;
    display: grid;
    position: relative
}

.crypto-card {
    cursor: pointer;
    border-radius: 24px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.crypto-card:hover {
    z-index: 10;
    transform: translateY(-8px) scale(1.02)
}

.crypto-card-glow {
    opacity: 0;
    filter: blur(30px);
    transition: opacity .4s;
    position: absolute;
    inset: 0
}

.crypto-card:hover .crypto-card-glow {
    opacity: .6
}

.crypto-card-inner {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: #ffffffe6;
    border: 1px solid #fffc;
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    padding: 24px 20px;
    transition: all .4s;
    display: flex;
    position: relative;
    box-shadow: 0 4px 24px -4px #00000014, 0 0 0 1px #00000005
}

.crypto-card:hover .crypto-card-inner {
    border-color: #0000;
    box-shadow: 0 20px 40px -8px #00000026, 0 0 0 1px #0000000d
}

.crypto-logo {
    color: #fff;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
    box-shadow: 0 8px 24px -4px
}

.crypto-logo svg {
    width: 28px;
    height: 28px
}

.crypto-info {
    flex-direction: column;
    gap: 4px;
    display: flex
}

.crypto-name {
    color: var(--text-primary);
    letter-spacing: -.01em;
    font-size: 16px;
    font-weight: 700
}

.crypto-reward {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500
}

.crypto-btc .crypto-card-glow {
    background: #f7931a
}

.crypto-btc .crypto-logo {
    background: linear-gradient(135deg, #f7931a 0%, #ffb347 100%);
    box-shadow: 0 8px 24px -4px #f7931a80
}

.crypto-eth .crypto-card-glow {
    background: #627eea
}

.crypto-eth .crypto-logo {
    background: linear-gradient(135deg, #627eea 0%, #8fa8ff 100%);
    box-shadow: 0 8px 24px -4px #627eea80
}

.crypto-usdt .crypto-card-glow {
    background: #26a17b
}

.crypto-usdt .crypto-logo {
    background: linear-gradient(135deg, #26a17b 0%, #4ecba1 100%);
    box-shadow: 0 8px 24px -4px #26a17b80
}

.crypto-sol .crypto-card-glow {
    background: linear-gradient(135deg, #9945ff, #19fb9b)
}

.crypto-sol .crypto-logo {
    background: linear-gradient(135deg, #9945ff 0%, #19fb9b 100%);
    box-shadow: 0 8px 24px -4px #9945ff80
}

.crypto-center {
    z-index: 20;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.center-ring {
    border: 2px solid #6366f133;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.center-ring.ring-1 {
    width: 120px;
    height: 120px;
    animation: 3s ease-in-out infinite ringExpand
}

.center-ring.ring-2 {
    width: 140px;
    height: 140px;
    animation: 3s ease-in-out .5s infinite ringExpand
}

.center-content {
    background: var(--gradient-1);
    color: #fff;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    display: flex;
    position: relative;
    box-shadow: 0 0 0 8px #6366f11a, 0 0 0 16px #6366f10d, 0 20px 40px -8px #6366f166
}

.center-content svg {
    opacity: .9;
    width: 20px;
    height: 20px;
    margin-bottom: 2px
}

.center-percent {
    letter-spacing: -.02em;
    font-size: 22px;
    font-weight: 800;
    line-height: 1
}

.center-label {
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 11px;
    font-weight: 600
}

/* Premium */
.premium {
    z-index: 10;
    padding: 80px 24px;
    position: relative
}

.premium-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 80px;
    display: grid;
    position: relative;
    overflow: hidden
}

.premium-content {
    z-index: 2;
    position: relative
}

.premium-badge {
    color: #fbbf24;
    background: #fbbf2433;
    border: 1px solid #fbbf244d;
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex
}

.premium-title {
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2
}

.premium-desc {
    color: #a1a1aa;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.7
}

.premium-perks {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
    display: grid
}

.perk {
    color: #fff;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    display: flex
}

.perk svg {
    color: #fbbf24
}

.btn-premium {
    color: #18181b;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s;
    display: inline-flex
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #fbbf2466
}

.premium-visual {
    justify-content: center;
    align-items: center;
    display: flex
}

/* CTA */
.cta {
    z-index: 10;
    padding: 80px 24px;
    position: relative
}

.cta-card {
    background: var(--gradient-1);
    border-radius: var(--radius-xl);
    text-align: center;
    padding: 80px;
    position: relative;
    overflow: hidden
}

.cta-pattern {
    pointer-events: none;
    background-image: radial-gradient(circle at 20% 30%, #ffffff1a 0%, #0000 50%), radial-gradient(circle at 80% 70%, #ffffff1a 0%, #0000 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.cta-title {
    letter-spacing: -.03em;
    color: #fff;
    z-index: 2;
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 700;
    position: relative
}

.cta-desc {
    color: #fffc;
    z-index: 2;
    margin-bottom: 32px;
    font-size: 18px;
    position: relative
}

.btn-cta {
    color: var(--accent-dark);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 2;
    background: #fff;
    border: none;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s;
    display: inline-flex;
    position: relative
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px #0003
}

.cta-trust {
    z-index: 2;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    display: flex;
    position: relative
}

.trust-badge {
    color: #ffffffe6;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex
}

/* Footer */
.footer {
    z-index: 10;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #f8fafc 100%);
    border-top: 1px solid var(--border);
    position: relative
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.footer-top {
    border-bottom: 1px solid var(--border);
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0 60px;
    display: grid
}

.footer-col {
    flex-direction: column;
    display: flex
}

.footer-brand-col {
    max-width: 320px
}

.footer-brand-col .brand {
    margin-bottom: 16px
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7
}

.footer-logo {
    width: 36px;
    height: 36px
}

.footer-social {
    gap: 12px;
    display: flex
}

.social-link {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    transition: all .2s;
    display: flex;
    text-decoration: none
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px)
}

.social-link svg {
    width: 18px;
    height: 18px
}

.footer-col-title {
    color: var(--text-primary);
    letter-spacing: .01em;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600
}

.footer-list {
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex
}

.footer-list li a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s
}

.footer-list li a:hover {
    color: var(--accent)
}

/* Footer licenses */
.footer-licenses {
    border-bottom: 1px solid var(--border);
    padding: 48px 0
}

.licenses-title {
    color: var(--text-primary);
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex
}

.licenses-title svg {
    color: var(--accent)
}

.licenses-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    display: grid
}

.license-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    gap: 16px;
    padding: 24px;
    transition: all .3s;
    display: flex
}

.license-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px #6366f126
}

.license-flag {
    border-radius: 4px;
    flex-shrink: 0;
    width: 40px;
    height: 28px;
    overflow: hidden;
    box-shadow: 0 2px 4px #0000001a
}

.license-flag img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.license-info {
    flex-direction: column;
    gap: 4px;
    display: flex
}

.license-country {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600
}

.license-authority {
    color: var(--accent);
    background: #6366f11a;
    border-radius: 4px;
    width: fit-content;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500
}

.license-number {
    color: var(--text-secondary);
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 12px;
    font-weight: 500
}

.license-address {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5
}

/* Footer compliance */
.footer-compliance {
    border-bottom: 1px solid var(--border);
    padding: 32px 0
}

.compliance-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    display: flex
}

.compliance-badge {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    display: flex
}

.compliance-badge:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.compliance-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent)
}

.footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 0;
    display: flex
}

.footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500
}

.footer-legal-text {
    text-align: center;
    max-width: 800px
}

.footer-legal-text p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.6
}

.footer-payment-methods {
    align-items: center;
    gap: 28px;
    margin-top: 8px;
    display: flex
}

.payment-logo {
    opacity: 1;
    filter: none;
    width: auto;
    height: 24px;
    transition: all .2s
}

.payment-logo:hover {
    opacity: 1;
    filter: none
}

.visa-logo {
    width: 76px;
    height: 25px
}

.mastercard-logo {
    width: 58px;
    height: 32px
}

.google-pay-logo {
    width: 82px;
    height: 28px
}

.footer-payment-methods .visa-logo path {
    fill: #6f7378
}

.footer-payment-methods .mastercard-logo circle:first-child {
    fill: #8f9296
}

.footer-payment-methods .mastercard-logo circle:nth-child(2) {
    fill: #c8cacc
}

.footer-payment-methods .mastercard-logo path {
    fill: #aaaeb1
}

.footer-payment-methods .google-pay-logo path {
    fill: #9b9fa3
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 60px
    }

    .hero-visual {
        justify-content: center;
        width: 100%;
        display: flex
    }

    .hero-title {
        font-size: 48px
    }

    .hero-desc {
        max-width: 100%
    }

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

    .cards-showcase-new {
        justify-content: center;
        width: 100%;
        height: 280px;
        display: flex
    }

    .card-stack-wrapper {
        width: 340px;
        height: 215px;
        margin: 0 auto;
        transform: scale(.85)
    }

    .card-position-back {
        top: 25px;
        left: -30px
    }

    .card-position-front {
        left: 30px
    }

    .features {
        padding: 80px 24px
    }

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

    .rewards {
        padding: 80px 24px
    }

    .rewards-content {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 60px
    }

    .rewards-text .section-title, .rewards-text .section-desc {
        text-align: center
    }

    .premium-card {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 60px;
        display: flex
    }

    .premium-content {
        display: contents
    }

    .premium-badge {
        order: 1
    }

    .premium-title {
        order: 2;
        text-align: center
    }

    .premium-visual {
        order: 3
    }

    .premium-desc {
        order: 4;
        text-align: center
    }

    .premium-perks {
        order: 5;
        text-align: left;
        align-self: flex-start;
        width: 100%
    }

    .btn-premium {
        order: 6;
        margin: 0 auto
    }

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

    .footer-brand-col {
        grid-column: 1/-1;
        max-width: 100%
    }

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

@media (max-width: 768px) {
    .nav {
        display: none
    }

    .hero {
        padding: 30px 16px 60px
    }

    .hero-title {
        font-size: 36px
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.6
    }

    .hero-actions {
        flex-direction: column;
        align-items: center
    }

    .hero-actions .btn-primary, .hero-actions .btn-secondary {
        width: auto;
        min-width: 200px
    }

    .hero-trust {
        flex-flow: wrap;
        justify-content: center;
        gap: 6px 16px
    }

    .trust-item {
        gap: 4px;
        font-size: 12px
    }

    .section-title {
        font-size: 32px
    }

    .cards-showcase-new {
        height: 260px
    }

    .card-stack-wrapper {
        width: 320px;
        height: 200px;
        transform: scale(.8)
    }

    .credit-card-wrapper {
        width: 320px;
        height: 200px
    }

    .features {
        padding: 60px 16px
    }

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

    .feature-card {
        padding: 24px
    }

    .rewards {
        padding: 60px 16px
    }

    .crypto-grid {
        gap: 12px;
        width: 300px;
        height: 300px;
        padding: 12px
    }

    .crypto-card-inner {
        gap: 12px;
        padding: 16px
    }

    .crypto-logo {
        border-radius: 12px;
        width: 40px;
        height: 40px
    }

    .crypto-name {
        font-size: 14px
    }

    .crypto-reward {
        font-size: 11px
    }

    .center-content {
        width: 70px;
        height: 70px
    }

    .center-percent {
        font-size: 18px
    }

    .center-ring.ring-1 {
        width: 90px;
        height: 90px
    }

    .center-ring.ring-2 {
        width: 110px;
        height: 110px
    }

    .premium {
        padding: 40px 16px
    }

    .premium-card {
        padding: 40px 24px
    }

    .premium-title {
        font-size: 32px
    }

    .premium-perks {
        grid-template-columns: 1fr
    }

    .cta {
        padding: 40px 16px
    }

    .cta-card {
        padding: 60px 24px
    }

    .cta-title {
        font-size: 28px
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 0 40px
    }

    .footer-brand-col {
        text-align: center;
        align-items: center
    }

    .footer-brand-col .brand, .footer-social {
        justify-content: center
    }

    .footer-col {
        text-align: center;
        align-items: center
    }

    .licenses-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .compliance-badges {
        gap: 16px
    }

    .stat-card {
        border-radius: 10px;
        gap: 8px;
        padding: 8px 12px
    }

    .stat-card:first-child {
        top: -10px;
        left: -5px
    }

    .stat-right {
        inset: auto -5px 80px auto
    }

    .stat-value {
        font-size: 13px
    }

    .stat-label {
        font-size: 8px
    }

    .payment-badge {
        border-radius: 10px;
        padding: 6px 10px
    }

    .payment-apple {
        inset: auto auto 100px -10px;
        animation: none !important
    }

    .payment-google {
        inset: 30px -10px auto auto;
        animation: none !important
    }

    .payment-badge img {
        height: 18px
    }

    .audited-badge {
        gap: 6px;
        max-width: 280px;
        margin-top: 16px;
        padding: 10px 16px
    }

    .audited-label {
        font-size: 9px
    }

    .audited-logo {
        height: 18px
    }

    .backers-section {
        padding: 40px 20px
    }

    .backers-logos {
        gap: 32px 40px
    }

    .backer-item {
        height: 20px
    }

    .backer-item img {
        max-width: 110px
    }

    .promo-banner {
        top: 0
    }

    .promo-inner {
        flex-wrap: wrap;
        padding: 8px 40px 8px 16px
    }

    .promo-text {
        font-size: 13px
    }

    .promo-sub {
        font-size: 10px
    }

    .promo-terms-btn {
        font-size: 11px;
        padding: 3px 10px
    }
}

@media (max-width: 480px) {
    .credit-card-wrapper {
        width: 300px;
        height: 189px
    }

    .hero-visual {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex
    }

    .orb-1 {
        filter: blur(60px);
        opacity: .4;
        width: 200px;
        height: 200px;
        top: -60px;
        right: -50px
    }

    .orb-2 {
        filter: blur(60px);
        opacity: .4;
        width: 180px;
        height: 180px;
        bottom: -50px;
        left: -40px
    }

    .orb-3 {
        filter: blur(50px);
        opacity: .3;
        width: 150px;
        height: 150px
    }

    .hero-title {
        font-size: 28px
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.6
    }

    .cards-showcase-new {
        height: 240px
    }

    .card-stack-wrapper {
        width: 300px;
        height: 190px
    }

    .card-position-back {
        top: 20px;
        left: -30px
    }

    .card-position-front {
        top: 0;
        left: 30px
    }

    .stat-card {
        border-radius: 8px;
        gap: 6px;
        padding: 6px 10px
    }

    .stat-card:first-child {
        top: -5px;
        left: 0
    }

    .stat-right {
        bottom: 70px;
        right: 0
    }

    .stat-card svg {
        width: 12px;
        height: 12px
    }

    .stat-value {
        font-size: 11px
    }

    .stat-label {
        font-size: 7px
    }

    .payment-badge {
        border-radius: 8px;
        padding: 5px 8px
    }

    .payment-apple {
        bottom: 90px;
        left: -5px
    }

    .payment-google {
        top: 25px;
        right: -5px
    }

    .payment-badge img {
        height: 14px
    }

    .audited-badge {
        gap: 5px;
        margin-top: 12px;
        padding: 8px 14px
    }

    .audited-label {
        font-size: 8px
    }

    .audited-logo {
        height: 16px
    }

    .logo-item {
        width: 130px;
        min-width: 130px;
        height: 32px;
        padding: 0 15px
    }

    .logo-item img {
        max-width: 100px
    }

    .backers-logos {
        gap: 24px 32px
    }

    .backer-item {
        height: 18px
    }

    .backer-item img {
        max-width: 90px
    }

    .premium-visual .credit-card-wrapper {
        margin: 0 auto;
        transform: none !important
    }

    .credit-card-layout {
        padding: 16px 18px
    }

    .card-brand-logo--image {
        max-width: 120px;
        height: 28px
    }

    .card-emv-chip, .card-chip-image {
        width: 36px;
        height: 28px
    }

    .credit-card-number {
        letter-spacing: 1.5px;
        font-size: 14px
    }

    .credit-card-value {
        letter-spacing: 1px;
        font-size: 9px
    }

    .credit-card-label {
        font-size: 6px
    }

    .card-brand-logo {
        height: 24px
    }

    .credit-card-chip-row {
        gap: 10px;
        margin-top: 12px
    }

    .credit-card-footer {
        margin-top: 8px
    }

    .credit-card-tier {
        letter-spacing: 1.5px;
        font-size: 5px;
        top: 16px;
        right: 18px
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 24px
    }

    .hero-desc {
        font-size: 13px;
        line-height: 1.5
    }

    .hero-trust {
        gap: 3px 10px
    }

    .trust-item {
        gap: 2px;
        font-size: 10px
    }

    .cards-showcase-new {
        height: 200px
    }

    .card-stack-wrapper {
        width: 260px;
        height: 165px
    }

    .credit-card-wrapper {
        width: 260px;
        height: 165px
    }

    .card-position-back {
        top: 15px;
        left: -25px
    }

    .card-position-front {
        top: 0;
        left: 25px
    }
}

/* Support Modal */
.support-modal-overlay {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1000;
    background: #0009;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: flex;
    position: fixed;
    inset: 0
}

.support-modal {
    --modal-accent: #0500FF;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px #00000040, 0 0 0 1px #0000000d
}

.support-modal-header {
    border-bottom: 1px solid #e4e4e7;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 24px 20px;
    display: flex
}

.support-modal-title-row {
    align-items: flex-start;
    gap: 14px;
    display: flex
}

.support-modal-icon {
    background: linear-gradient(135deg, var(--modal-accent), color-mix(in srgb, var(--modal-accent) 80%, #000));
    color: #fff;
    border-radius: 12px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    display: flex
}

.support-modal-title {
    color: #09090b;
    letter-spacing: -.02em;
    margin: 0;
    font-size: 20px;
    font-weight: 700
}

.support-modal-subtitle {
    color: #71717a;
    margin: 4px 0 0;
    font-size: 13px
}

.support-modal-close {
    color: #71717a;
    cursor: pointer;
    background: #f4f4f5;
    border: none;
    border-radius: 10px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    transition: all .2s;
    display: flex
}

.support-modal-close:hover {
    color: #09090b;
    background: #e4e4e7
}

.support-modal-content {
    max-height: calc(90vh - 100px);
    padding: 24px;
    overflow-y: auto
}

.support-form {
    flex-direction: column;
    gap: 20px;
    display: flex
}

.support-field {
    flex-direction: column;
    gap: 8px;
    display: flex
}

.support-field label {
    color: #09090b;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex
}

.support-field label svg {
    color: #71717a
}

.support-field input, .support-field select, .support-field textarea {
    color: #09090b;
    background: #f9fafb;
    border: 1.5px solid #e4e4e7;
    border-radius: 12px;
    outline: none;
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    transition: all .2s;
    box-sizing: border-box
}

.support-field input::placeholder, .support-field textarea::placeholder {
    color: #a1a1aa
}

.support-field input:focus, .support-field select:focus, .support-field textarea:focus {
    border-color: var(--modal-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--modal-accent) 15%, transparent);
    background: #fff
}

.support-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 14px center;
    background-repeat: no-repeat;
    padding-right: 44px
}

.support-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5
}

.support-urgent-notice {
    color: #92400e;
    background: linear-gradient(135deg, #fef3c7, #fef9c3);
    border: 1px solid #fcd34d;
    border-radius: 12px;
    gap: 12px;
    padding: 14px 16px;
    display: flex
}

.support-urgent-notice svg {
    flex-shrink: 0;
    margin-top: 2px
}

.support-urgent-notice strong {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
    display: block
}

.support-urgent-notice p {
    opacity: .9;
    margin: 0;
    font-size: 13px;
    line-height: 1.5
}

.support-submit {
    background: linear-gradient(135deg, var(--modal-accent), color-mix(in srgb, var(--modal-accent) 80%, #000));
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s;
    display: flex
}

.support-submit:hover:not(:disabled) {
    box-shadow: 0 8px 20px -4px color-mix(in srgb, var(--modal-accent) 50%, transparent);
    transform: translateY(-2px)
}

.support-submit:disabled {
    opacity: .7;
    cursor: not-allowed
}

.support-spinner {
    border: 2px solid #ffffff4d;
    border-top-color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: .8s linear infinite spin
}

.support-success {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    display: flex
}

.support-success-icon {
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    box-shadow: 0 8px 24px -4px #10b98166
}

.support-success h3 {
    color: #09090b;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700
}

.support-success p {
    color: #71717a;
    max-width: 300px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6
}

@media (max-width: 768px) {
    .support-modal-overlay {
        align-items: flex-end;
        padding: 16px
    }

    .support-modal {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        max-height: 85vh
    }

    .support-modal-header {
        padding: 20px 20px 16px
    }

    .support-modal-icon {
        width: 40px;
        height: 40px
    }

    .support-modal-title {
        font-size: 18px
    }

    .support-modal-content {
        max-height: calc(85vh - 90px);
        padding: 20px
    }

    .support-form {
        gap: 16px
    }

    .support-field input, .support-field select, .support-field textarea {
        padding: 12px 14px;
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .nav {
        display: none
    }

    .header-inner {
        padding: 0 16px
    }
}

/* FAQ Overlay Page */
.faq-page {
    --bg-primary: #fafafa;
    --bg-secondary: #fff;
    --bg-tertiary: #f4f4f5;
    --text-primary: #09090b;
    --text-secondary: #71717a;
    --text-muted: #a1a1aa;
    --accent: var(--theme-primary, #0500FF);
    --accent-light: var(--theme-primary-light, #3333FF);
    --accent-dark: var(--theme-primary-dark, #0400CC);
    --gradient-1: var(--theme-gradient, linear-gradient(135deg, #0500FF 0%, #3333FF 50%, #0400CC 100%));
    --border: #e4e4e7;
    --border-light: #f4f4f5;
    --shadow-sm: 0 1px 2px 0 #0000000d;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
    overflow-y: auto;
    overflow-x: hidden
}

.faq-bg-layer {
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden
}

.faq-gradient-orb {
    filter: blur(120px);
    opacity: .4;
    border-radius: 50%;
    position: absolute
}

.faq-orb-1 {
    background: linear-gradient(135deg, rgba(5, 0, 255, 0.4), rgba(51, 51, 255, 0.3));
    width: 500px;
    height: 500px;
    animation: 25s ease-in-out infinite faqOrbFloat;
    top: -150px;
    right: -100px
}

.faq-orb-2 {
    background: linear-gradient(135deg, rgba(51, 51, 255, 0.3), rgba(5, 0, 255, 0.2));
    width: 400px;
    height: 400px;
    animation: 30s ease-in-out infinite reverse faqOrbFloat;
    bottom: -100px;
    left: -50px
}

@keyframes faqOrbFloat {
    0%, to {
        transform:translate(0)scale(1)
    }

    25% {
        transform:translate(20px, -20px)scale(1.03)
    }

    50% {
        transform:translate(-15px, 15px)scale(.97)
    }

    75% {
        transform: translate(15px, 10px) scale(1.01)
    }
}

.faq-dot-pattern {
    opacity: .3;
    background-image: radial-gradient(circle, #d4d4d8 1px, #0000 1px);
    background-size: 32px 32px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.faq-header {
    z-index: 100;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    background: #fafafad9;
    position: fixed;
    top: 0;
    left: 0;
    right: 0
}

.faq-header-inner {
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex
}

.faq-header-left {
    flex: 1;
    align-items: center;
    display: flex
}

.faq-back-link {
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    display: flex
}

.faq-back-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary)
}

.faq-brand {
    align-items: center;
    gap: 12px;
    display: flex
}

.faq-brand-wordmark {
    align-items: center;
    height: 26px;
    display: flex
}

.faq-brand-wordmark img {
    object-fit: contain;
    width: auto;
    height: 100%
}

.faq-header-right {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    display: flex
}

.faq-header-cta {
    background: var(--text-primary);
    color: #fff;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: flex
}

.faq-header-cta:hover {
    background: #27272a;
    transform: translateY(-1px)
}

.faq-main {
    z-index: 10;
    padding: 120px 24px 80px;
    position: relative
}

.faq-container {
    max-width: 900px;
    margin: 0 auto
}

.faq-hero {
    text-align: center;
    margin-bottom: 48px
}

.faq-hero-icon {
    background: var(--gradient-1);
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: inline-flex;
    box-shadow: 0 8px 24px -4px rgba(5, 0, 255, 0.4)
}

.faq-title {
    letter-spacing: -.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2
}

.faq-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6
}

.faq-category-nav {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
    padding: 24px;
    display: flex
}

.faq-category-link {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    white-space: nowrap;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    display: flex
}

.faq-category-link:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(5, 0, 255, 0.3)
}

.faq-category-link svg {
    flex-shrink: 0
}

.faq-categories {
    flex-direction: column;
    gap: 48px;
    display: flex
}

.faq-category {
    scroll-margin-top: 100px
}

.faq-category-header {
    border-bottom: 2px solid var(--border);
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    display: flex
}

.faq-category-icon {
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    color: #fff;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    display: flex
}

.faq-category-title {
    letter-spacing: -.02em;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700
}

.faq-items {
    flex-direction: column;
    gap: 12px;
    display: flex
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
    overflow: hidden
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px -4px rgba(5, 0, 255, 0.15)
}

.faq-item-open {
    border-color: var(--accent);
    box-shadow: 0 8px 24px -4px rgba(5, 0, 255, 0.2)
}

.faq-question {
    cursor: pointer;
    text-align: left;
    background: 0 0;
    border: none;
    font-family: inherit;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    transition: all .2s;
    display: flex
}

.faq-question:hover {
    background: var(--bg-tertiary)
}

.faq-question-text {
    color: var(--text-primary);
    padding-right: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5
}

.faq-chevron {
    background: var(--bg-tertiary);
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    display: flex
}

.faq-item-open .faq-chevron {
    background: var(--gradient-1);
    color: #fff;
    transform: rotate(180deg)
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22, 1, .36, 1)
}

.faq-item-open .faq-answer-wrapper {
    max-height: 800px
}

.faq-answer {
    color: var(--text-secondary);
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7
}

.faq-answer p {
    margin: 0 0 16px
}

.faq-answer p:last-child {
    margin-bottom: 0
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600
}

.faq-answer ul, .faq-answer ol {
    margin: 0 0 16px;
    padding-left: 24px
}

.faq-answer li {
    margin-bottom: 8px
}

.faq-answer li:last-child {
    margin-bottom: 0
}

.faq-cta {
    background: var(--gradient-1);
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    position: relative;
    overflow: hidden
}

.faq-cta:before {
    content: "";
    pointer-events: none;
    background: radial-gradient(circle at 20% 30%, #ffffff26 0%, #0000 50%), radial-gradient(circle at 80% 70%, #ffffff1a 0%, #0000 50%);
    position: absolute;
    inset: 0
}

.faq-cta-content {
    z-index: 1;
    position: relative
}

.faq-cta h3 {
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700
}

.faq-cta p {
    color: #ffffffd9;
    max-width: 500px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px
}

.faq-cta-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    display: flex
}

.faq-cta-primary {
    color: var(--accent-dark);
    border-radius: var(--radius-md);
    background: #fff;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex
}

.faq-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #0003
}

.faq-cta-secondary {
    color: #fff;
    border-radius: var(--radius-md);
    background: 0 0;
    border: 2px solid #ffffff80;
    align-items: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex
}

.faq-cta-secondary:hover {
    background: #ffffff1a;
    border-color: #fff
}

@media (max-width: 1024px) {
    .faq-title {
        font-size: 36px
    }

    .faq-subtitle {
        font-size: 16px
    }

    .faq-category-nav {
        gap: 10px;
        padding: 20px
    }

    .faq-category-link {
        padding: 8px 14px;
        font-size: 12px
    }
}

@media (max-width: 768px) {
    .faq-header-inner {
        padding: 0 16px
    }

    .faq-back-link span {
        display: none
    }

    .faq-back-link {
        padding: 8px
    }

    .faq-brand-wordmark {
        height: 22px
    }

    .faq-header-cta {
        display: none
    }

    .faq-main {
        padding: 100px 16px 60px
    }

    .faq-hero-icon {
        width: 56px;
        height: 56px
    }

    .faq-hero-icon svg {
        width: 26px;
        height: 26px
    }

    .faq-title {
        font-size: 28px
    }

    .faq-subtitle {
        font-size: 15px
    }

    .faq-category-nav {
        border-radius: var(--radius-lg);
        gap: 8px;
        padding: 16px
    }

    .faq-category-link {
        gap: 6px;
        padding: 8px 12px;
        font-size: 11px
    }

    .faq-category-link svg {
        width: 16px;
        height: 16px
    }

    .faq-categories {
        gap: 40px
    }

    .faq-category-header {
        gap: 12px
    }

    .faq-category-icon {
        width: 40px;
        height: 40px
    }

    .faq-category-title {
        font-size: 20px
    }

    .faq-items {
        gap: 10px
    }

    .faq-question {
        padding: 16px 18px
    }

    .faq-question-text {
        font-size: 15px
    }

    .faq-chevron {
        width: 28px;
        height: 28px
    }

    .faq-chevron svg {
        width: 16px;
        height: 16px
    }

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 14px
    }

    .faq-cta {
        border-radius: var(--radius-lg);
        margin-top: 48px;
        padding: 36px 24px
    }

    .faq-cta h3 {
        font-size: 22px
    }

    .faq-cta p {
        margin-bottom: 24px;
        font-size: 14px
    }

    .faq-cta-actions {
        flex-direction: column;
        gap: 12px
    }

    .faq-cta-primary, .faq-cta-secondary {
        justify-content: center;
        width: 100%;
        padding: 14px 24px
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 24px
    }

    .faq-hero-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px
    }

    .faq-hero-icon svg {
        width: 22px;
        height: 22px
    }

    .faq-category-nav {
        padding: 12px
    }

    .faq-category-link {
        border-radius: var(--radius-sm);
        gap: 4px;
        padding: 6px 10px;
        font-size: 10px
    }

    .faq-category-link span {
        display: none
    }

    .faq-category-link svg {
        width: 18px;
        height: 18px
    }

    .faq-category-header {
        gap: 10px
    }

    .faq-category-icon {
        width: 36px;
        height: 36px
    }

    .faq-category-icon svg {
        width: 18px;
        height: 18px
    }

    .faq-category-title {
        font-size: 18px
    }

    .faq-question {
        padding: 14px 16px
    }

    .faq-question-text {
        font-size: 14px
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 13px
    }

    .faq-answer ul, .faq-answer ol {
        padding-left: 20px
    }

    .faq-footer {
        padding: 32px 16px
    }

    .faq-footer-inner {
        text-align: center;
        flex-direction: column;
        gap: 24px
    }

    .faq-footer-brand {
        align-items: center
    }

    .faq-footer-links {
        gap: 24px
    }
}

.faq-footer {
    z-index: 10;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    padding: 48px 24px;
    position: relative
}

.faq-footer-inner {
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex
}

.faq-footer-brand {
    flex-direction: column;
    gap: 8px;
    display: flex
}

.faq-brand-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary)
}

.faq-footer-tagline {
    color: var(--text-muted);
    font-size: 13px
}

.faq-footer-logo {
    width: 28px;
    height: 28px
}

.faq-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.faq-footer-links {
    gap: 32px;
    display: flex
}

.faq-footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s
}

.faq-footer-links a:hover {
    color: var(--text-primary)
}

.faq-footer-copy {
    color: var(--text-muted);
    font-size: 13px
}

.faq-question:focus-visible, .faq-category-link:focus-visible, .faq-back-link:focus-visible, .faq-header-cta:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px
}

/* Privacy & Terms Overlay Page */
.privacy-page {
    position: fixed;
    inset: 0;
    z-index: 9999;
    color: #09090b;
    background: #fafafa;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-y: auto;
    overflow-x: hidden
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px
}

.privacy-header {
    border-bottom: 1px solid #e4e4e7;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    display: flex
}

.back-link {
    color: #71717a;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    display: flex
}

.back-link:hover {
    color: #09090b
}

.privacy-logo img {
    width: auto;
    height: 32px
}

.privacy-content {
    padding: 48px 0
}

.privacy-content h1 {
    color: #09090b;
    margin-bottom: 8px;
    font-size: 42px;
    font-weight: 800
}

.last-updated {
    color: #a1a1aa;
    margin-bottom: 48px;
    font-size: 14px
}

.privacy-content section {
    margin-bottom: 40px
}

.privacy-content h2 {
    color: #09090b;
    border-bottom: 1px solid #e4e4e7;
    margin-bottom: 16px;
    padding-bottom: 8px;
    font-size: 24px;
    font-weight: 700
}

.privacy-content h3 {
    color: #27272a;
    margin: 24px 0 12px;
    font-size: 18px;
    font-weight: 600
}

.privacy-content p {
    color: #52525b;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7
}

.privacy-content ul {
    margin: 16px 0;
    padding-left: 24px
}

.privacy-content li {
    color: #71717a;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7
}

.privacy-content li strong {
    color: #27272a;
    font-weight: 600
}

.contact-info {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    margin-top: 16px;
    padding: 20px 24px
}

.contact-info p {
    color: #52525b;
    margin-bottom: 8px
}

.contact-info p:last-child {
    margin-bottom: 0
}

.privacy-footer {
    border-top: 1px solid #e4e4e7;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    display: flex
}

.privacy-footer p {
    color: #a1a1aa;
    font-size: 14px
}

.privacy-footer .footer-links {
    gap: 24px;
    display: flex
}

.privacy-footer .footer-links a {
    color: #71717a;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s
}

.privacy-footer .footer-links a:hover {
    color: #09090b
}

.privacy-page::-webkit-scrollbar {
    width: 8px
}

.privacy-page::-webkit-scrollbar-track {
    background: #f4f4f5
}

.privacy-page::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: 4px
}

.privacy-page::-webkit-scrollbar-thumb:hover {
    background: #a1a1aa
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 0 16px
    }

    .privacy-header {
        padding: 16px 0
    }

    .back-link span {
        display: none
    }

    .privacy-logo img {
        height: 28px
    }

    .privacy-content {
        padding: 32px 0
    }

    .privacy-content h1 {
        font-size: 32px
    }

    .last-updated {
        margin-bottom: 32px
    }

    .privacy-content h2 {
        font-size: 20px
    }

    .privacy-content h3 {
        font-size: 16px
    }

    .privacy-content p, .privacy-content li {
        font-size: 14px
    }

    .privacy-footer {
        text-align: center;
        flex-direction: column
    }

    .privacy-footer .footer-links {
        gap: 16px
    }
}

/* AML Policy Overlay Page */
.aml-page {
    --bg-primary: #fafafa;
    --bg-secondary: #fff;
    --bg-tertiary: #f4f4f5;
    --text-primary: #09090b;
    --text-secondary: #71717a;
    --text-muted: #a1a1aa;
    --accent: var(--theme-primary, #6366f1);
    --accent-light: var(--theme-primary-light, #818cf8);
    --accent-dark: var(--theme-primary-dark, #4f46e5);
    --gradient-1: var(--theme-gradient, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%));
    --border: #e4e4e7;
    --border-light: #f4f4f5;
    --shadow-sm: 0 1px 2px 0 #0000000d;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-y: auto;
    overflow-x: hidden
}

.aml-bg-layer {
    pointer-events: none;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden
}

.aml-gradient-orb {
    filter: blur(120px);
    opacity: .4;
    border-radius: 50%;
    position: absolute
}

.aml-orb-1 {
    background: linear-gradient(135deg, var(--theme-orb-1, #6366f166), var(--theme-orb-2, #8b5cf64d));
    width: 500px;
    height: 500px;
    animation: 25s ease-in-out infinite amlOrbFloat;
    top: -150px;
    right: -100px
}

.aml-orb-2 {
    background: linear-gradient(135deg, var(--theme-orb-2, #0ea5e94d), var(--theme-orb-1, #6366f133));
    width: 400px;
    height: 400px;
    animation: 30s ease-in-out infinite reverse amlOrbFloat;
    bottom: -100px;
    left: -50px
}

@keyframes amlOrbFloat {
    0%, to {
        transform:translate(0)scale(1)
    }

    25% {
        transform:translate(20px, -20px)scale(1.03)
    }

    50% {
        transform:translate(-15px, 15px)scale(.97)
    }

    75% {
        transform: translate(15px, 10px) scale(1.01)
    }
}

.aml-dot-pattern {
    opacity: .3;
    background-image: radial-gradient(circle, #d4d4d8 1px, #0000 1px);
    background-size: 32px 32px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.aml-header {
    z-index: 100;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    background: #fafafad9;
    position: fixed;
    top: 0;
    left: 0;
    right: 0
}

.aml-header-inner {
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex
}

.aml-header-left {
    flex: 1;
    align-items: center;
    display: flex
}

.aml-back-link {
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    display: flex
}

.aml-back-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary)
}

.aml-brand {
    align-items: center;
    gap: 12px;
    display: flex
}

.aml-brand-wordmark {
    align-items: center;
    height: 26px;
    display: flex
}

.aml-brand-wordmark img {
    object-fit: contain;
    width: auto;
    height: 100%
}

.aml-header-right {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    display: flex
}

.aml-header-cta {
    background: var(--text-primary);
    color: #fff;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: flex
}

.aml-header-cta:hover {
    background: #27272a;
    transform: translateY(-1px)
}

.aml-main {
    z-index: 10;
    padding: 120px 24px 80px;
    position: relative
}

.aml-container {
    max-width: 900px;
    margin: 0 auto
}

.aml-hero {
    text-align: center;
    margin-bottom: 32px
}

.aml-hero-icon {
    background: var(--gradient-1);
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: inline-flex;
    box-shadow: 0 8px 24px -4px #6366f166
}

.aml-title {
    letter-spacing: -.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2
}

.aml-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 12px;
    font-size: 18px;
    line-height: 1.6
}

.aml-last-updated {
    color: var(--text-muted);
    font-size: 14px
}

.aml-compliance-banner {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #6366f114 0%, #8b5cf60d 100%);
    border: 1px solid #6366f133;
    gap: 16px;
    margin-bottom: 40px;
    padding: 24px;
    display: flex
}

.aml-compliance-banner > svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px
}

.aml-compliance-banner strong {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    display: block
}

.aml-compliance-banner p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
    line-height: 1.6
}

.aml-sections {
    flex-direction: column;
    gap: 12px;
    display: flex
}

.aml-section {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
    overflow: hidden
}

.aml-section:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px -4px #6366f126
}

.aml-section-open {
    border-color: var(--accent);
    box-shadow: 0 8px 24px -4px #6366f133
}

.aml-section-header {
    cursor: pointer;
    text-align: left;
    background: 0 0;
    border: none;
    font-family: inherit;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    transition: all .2s;
    display: flex
}

.aml-section-header:hover {
    background: var(--bg-tertiary)
}

.aml-section-icon {
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    color: #fff;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex
}

.aml-section-title {
    color: var(--text-primary);
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4
}

.aml-chevron {
    background: var(--bg-tertiary);
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    display: flex
}

.aml-section-open .aml-chevron {
    background: var(--gradient-1);
    color: #fff
}

.aml-section-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22, 1, .36, 1)
}

.aml-section-open .aml-section-content-wrapper {
    max-height: 600px
}

.aml-section-content {
    padding: 0 24px 24px 80px
}

.aml-section-content p {
    color: var(--text-secondary);
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7
}

.aml-section-content p:last-child {
    margin-bottom: 0
}

.aml-section-content ul, .aml-section-content ol {
    margin: 0 0 16px;
    padding-left: 24px
}

.aml-section-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7
}

.aml-section-content li:last-child {
    margin-bottom: 0
}

.aml-section-content strong {
    color: var(--text-primary);
    font-weight: 600
}

.aml-contact {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #f59e0b14 0%, #f59e0b08 100%);
    border: 1px solid #f59e0b33;
    margin-top: 40px;
    padding: 32px
}

.aml-contact-content {
    gap: 20px;
    display: flex
}

.aml-contact-content > svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px
}

.aml-contact h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600
}

.aml-contact p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6
}

.aml-contact-info {
    flex-direction: column;
    gap: 4px;
    display: flex
}

.aml-contact-info strong {
    color: var(--text-muted);
    font-size: 13px
}

.aml-contact-info a {
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s
}

.aml-contact-info a:hover {
    text-decoration: underline
}

.aml-disclaimer {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin-top: 32px;
    padding: 24px
}

.aml-disclaimer p {
    color: var(--text-muted);
    margin: 0;
    font-size: 13px;
    line-height: 1.6
}

.aml-section-header:focus-visible, .aml-back-link:focus-visible, .aml-header-cta:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px
}

@media (max-width: 1024px) {
    .aml-title {
        font-size:36px
    }

    .aml-subtitle {
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .aml-header-inner {
        padding: 0 16px
    }

    .aml-back-link span {
        display: none
    }

    .aml-back-link {
        padding: 8px
    }

    .aml-brand-wordmark {
        height: 22px
    }

    .aml-header-cta {
        padding: 8px 14px;
        font-size: 13px
    }

    .aml-header-cta span {
        display: none
    }

    .aml-main {
        padding: 100px 16px 60px
    }

    .aml-hero-icon {
        width: 56px;
        height: 56px
    }

    .aml-hero-icon svg {
        width: 26px;
        height: 26px
    }

    .aml-title {
        font-size: 28px
    }

    .aml-subtitle {
        font-size: 15px
    }

    .aml-compliance-banner {
        text-align: center;
        flex-direction: column;
        align-items: center;
        padding: 20px
    }

    .aml-section-header {
        gap: 12px;
        padding: 16px 18px
    }

    .aml-section-icon {
        width: 36px;
        height: 36px
    }

    .aml-section-title {
        font-size: 15px
    }

    .aml-chevron {
        width: 28px;
        height: 28px
    }

    .aml-section-content {
        padding: 0 18px 18px
    }

    .aml-section-content p, .aml-section-content li {
        font-size: 14px
    }

    .aml-contact {
        padding: 24px
    }

    .aml-contact-content {
        text-align: center;
        flex-direction: column;
        align-items: center
    }

    .aml-contact-info {
        align-items: center
    }
}

@media (max-width: 480px) {
    .aml-title {
        font-size: 24px
    }

    .aml-hero-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px
    }

    .aml-hero-icon svg {
        width: 22px;
        height: 22px
    }

    .aml-section-header {
        gap: 10px;
        padding: 14px 16px
    }

    .aml-section-icon {
        width: 32px;
        height: 32px
    }

    .aml-section-icon svg {
        width: 16px;
        height: 16px
    }

    .aml-section-title {
        font-size: 14px
    }

    .aml-section-content {
        padding: 0 16px 16px
    }

    .aml-section-content p, .aml-section-content li {
        font-size: 13px
    }
}

/* Scroll Animations */
.anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out
}

.anim-up-slow {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease-out, transform .8s ease-out
}

.anim-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s ease-out, transform .8s ease-out
}

.anim-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s ease-out, transform .8s ease-out
}

.anim-scale {
    opacity: 0;
    transform: scale(.95);
    transition: opacity .8s ease-out, transform .8s ease-out
}

.animate-in {
    opacity: 1 !important;
    transform: none !important
}

@media (prefers-reduced-motion: reduce) {
    .anim-up, .anim-up-slow, .anim-left, .anim-right, .anim-scale, .hero-content-animate, .hero-visual-animate, .audited-badge-animate, .stat-card-animate-left, .stat-card-animate-right {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none
    }
}
