:root {
    --xxx-black: #090807;
    --xxx-ink: #141210;
    --xxx-paper: #f4f4f2;
    --xxx-paper-strong: #ffffff;
    --xxx-surface: rgba(255, 255, 255, 0.82);
    --xxx-surface-strong: #ffffff;
    --xxx-border: rgba(20, 18, 16, 0.1);
    --xxx-border-strong: rgba(20, 18, 16, 0.18);
    --xxx-orange: #f97316;
    --xxx-orange-deep: #cf5705;
    --xxx-orange-soft: rgba(249, 115, 22, 0.14);
    --xxx-white-soft: rgba(255, 255, 255, 0.72);
    --xxx-text: #171311;
    --xxx-text-soft: #595754;
    --xxx-text-inverse: #f8f1e8;
    --xxx-shadow: 0 28px 80px rgba(15, 10, 5, 0.16);
    --xxx-shadow-soft: 0 16px 40px rgba(15, 10, 5, 0.1);
    --xxx-radius-xl: 32px;
    --xxx-radius-lg: 24px;
    --xxx-radius-md: 18px;
    --xxx-font-sans: "IBM Plex Sans", sans-serif;
    --xxx-font-display: "IBM Plex Sans", sans-serif;
    --xxx-font-mono: "IBM Plex Mono", monospace;
}

body {
    font-family: var(--xxx-font-sans);
    color: var(--xxx-text);
}

.xxx-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--xxx-black);
}

.xxx-brand:hover {
    text-decoration: none;
    color: var(--xxx-orange);
}

.xxx-brand.is-light {
    color: #ffffff;
}

.xxx-brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.94), rgba(255, 165, 0, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 18px 30px rgba(249, 115, 22, 0.28);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.xxx-brand__mark span {
    position: absolute;
    display: block;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: rgba(14, 10, 8, 0.92);
    transform-origin: center;
}

.xxx-brand__mark span:nth-child(1) {
    transform: rotate(45deg);
}

.xxx-brand__mark span:nth-child(2) {
    transform: rotate(-45deg);
}

.xxx-brand__mark span:nth-child(3) {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 10, 8, 0.86);
}

.xxx-brand__wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: 0.06em;
}

.xxx-brand__wordmark strong,
.xxx-brand__wordmark em {
    font-style: normal;
    font-size: 1.18rem;
    font-weight: 700;
}

.xxx-brand__wordmark em {
    color: var(--xxx-orange);
}

.xxx-auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.26), transparent 24%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.14), transparent 22%),
        linear-gradient(135deg, #0a0908 0%, #17110d 42%, #23170f 100%);
    color: var(--xxx-text);
}

.xxx-auth-shell {
    min-height: 100vh;
    padding: 24px;
}

.xxx-auth-grid {
    width: min(1360px, 100%);
    min-height: calc(100vh - 48px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 0.78fr);
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 248, 242, 0.06);
    backdrop-filter: blur(18px);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.xxx-auth-showcase {
    position: relative;
    padding: 46px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 28%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.xxx-auth-showcase__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.xxx-auth-showcase__brand {
    margin-bottom: 34px;
}

.xxx-auth-showcase__eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 243, 232, 0.84);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.xxx-auth-showcase__headline {
    margin: 22px 0 16px;
    color: #ffffff;
    font-family: var(--xxx-font-display);
    font-size: clamp(3.1rem, 5vw, 4.8rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.xxx-auth-showcase__lead {
    max-width: 540px;
    margin: 0 0 34px;
    color: rgba(255, 244, 234, 0.82);
    font-size: 1rem;
    line-height: 1.8;
}

.xxx-auth-showcase__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.xxx-auth-showcase__stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.xxx-auth-showcase__stat strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.xxx-auth-showcase__stat span {
    color: rgba(255, 244, 234, 0.74);
    font-size: 0.85rem;
}

.xxx-auth-showcase__panel {
    margin-top: auto;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
}

.xxx-auth-showcase__panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
}

.xxx-auth-showcase__panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #f97316;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.14);
}

.xxx-auth-showcase__panel-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 244, 234, 0.78);
    display: grid;
    gap: 10px;
    line-height: 1.7;
}

.xxx-auth-content {
    background:
        radial-gradient(circle at top, rgba(249, 115, 22, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(248, 241, 232, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px;
}

.xxx-auth-page .account {
    width: 100%;
    padding: 0;
    margin: 0;
}

.xxx-auth-page .account-area {
    display: block;
}

.xxx-auth-page .account-wrapper {
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(20, 18, 16, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--xxx-shadow);
}

.xxx-auth-page .account-logo,
.xxx-auth-page .bg-bubbles,
.xxx-auth-page .account-header .site-logo,
.xxx-auth-page .account-header .inner-title {
    display: none !important;
}

.xxx-auth-page .account-header {
    margin-bottom: 22px;
}

.xxx-auth-page .account-wrapper .title,
.xxx-auth-page .account-header .sub-title {
    margin-bottom: 12px;
    color: var(--xxx-black);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-family: var(--xxx-font-display);
    line-height: 1;
    letter-spacing: -0.04em;
}

.xxx-auth-page .account-header .sub-title span {
    color: var(--xxx-orange);
}

.xxx-auth-page .account-wrapper > p,
.xxx-auth-page .account-header + p {
    margin-bottom: 24px;
    color: var(--xxx-text-soft);
    line-height: 1.7;
}

.xxx-auth-page .account-form .form-group,
.xxx-auth-page .account-form .col-lg-12,
.xxx-auth-page .account-form .col-xl-12 {
    margin-bottom: 16px;
}

.xxx-auth-page .input-group-text,
.xxx-auth-page .copytext {
    border: 0;
    background: transparent;
    color: var(--xxx-text-soft);
    font-size: 0.83rem;
    font-weight: 600;
}

.xxx-auth-page .account-form input,
.xxx-auth-page .account-form .form-control,
.xxx-auth-page .account-form .form--control,
.xxx-auth-page .nice-select {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(20, 18, 16, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--xxx-black);
    box-shadow: none;
    padding: 0 18px;
}

.xxx-auth-page .account-form input:focus,
.xxx-auth-page .account-form .form-control:focus,
.xxx-auth-page .account-form .form--control:focus {
    border-color: rgba(249, 115, 22, 0.48);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.xxx-auth-page .show-pass {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--xxx-text-soft);
}

.xxx-auth-page .forgot-item a,
.xxx-auth-page .account-item a,
.xxx-auth-page .custom-check-group a {
    color: var(--xxx-orange-deep);
    font-weight: 600;
}

.xxx-auth-page .or-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 18px;
}

.xxx-auth-page .or-line {
    flex: 1;
    height: 1px;
    background: rgba(20, 18, 16, 0.12);
}

.xxx-auth-page .or-title {
    color: var(--xxx-text-soft);
    font-size: 0.84rem;
}

.xxx-auth-page .btn--base,
.xxx-auth-page .account-form .btn--base,
.xxx-dashboard-page .btn--base,
.landing-page .vx-primary-button,
.landing-page .vx-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #ff9c3d);
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.26);
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.xxx-auth-page .btn--base:hover,
.xxx-dashboard-page .btn--base:hover,
.landing-page .vx-primary-button:hover,
.landing-page .vx-secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(249, 115, 22, 0.34);
    filter: saturate(1.08);
}

.xxx-dashboard-page {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 20%),
        linear-gradient(180deg, #f7f2ec 0%, #efe6db 100%);
    color: var(--xxx-text);
}

.xxx-dashboard-page .page-wrapper,
.xxx-dashboard-page .main-wrapper,
.xxx-dashboard-page .main-body-wrapper {
    background: transparent;
}

.xxx-dashboard-page .sidebar {
    background:
        radial-gradient(circle at top, rgba(249, 115, 22, 0.18), transparent 24%),
        linear-gradient(180deg, #0b0908 0%, #171210 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 12px 0 42px rgba(9, 8, 7, 0.3);
}

.xxx-dashboard-page .sidebar-logo,
.xxx-dashboard-page .sidebar-user-area,
.xxx-dashboard-page .sidebar-menu-wrapper {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.xxx-dashboard-page .sidebar-user-content .title,
.xxx-dashboard-page .sidebar-menu .sidebar-menu-item > a,
.xxx-dashboard-page .sidebar-menu .menu-title {
    color: rgba(255, 248, 240, 0.82) !important;
}

.xxx-dashboard-page .sidebar-user-content .sub-title {
    color: rgba(255, 231, 213, 0.54) !important;
}

.xxx-dashboard-page .sidebar-menu .sidebar-menu-item > a {
    border-radius: 18px;
    margin: 4px 10px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.xxx-dashboard-page .sidebar-menu .sidebar-menu-item.active > a,
.xxx-dashboard-page .sidebar-menu .sidebar-menu-item > a:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.34), rgba(249, 115, 22, 0.18));
    color: #ffffff !important;
    transform: translateX(3px);
}

.xxx-dashboard-page .navbar-wrapper {
    margin: 20px 20px 0;
    padding: 18px 24px;
    border-radius: 24px;
    border: 1px solid rgba(20, 18, 16, 0.08);
    background: rgba(255, 250, 245, 0.78);
    box-shadow: var(--xxx-shadow-soft);
    backdrop-filter: blur(18px);
}

.xxx-dashboard-page .body-wrapper {
    padding: 20px;
}

.xxx-dashboard-page .card,
.xxx-dashboard-page .custom-card,
.xxx-dashboard-page .profile-form-area,
.xxx-dashboard-page .chart-area,
.xxx-dashboard-page .dashboard-item,
.xxx-dashboard-page .table-area,
.xxx-dashboard-page .notification-wrapper,
.xxx-dashboard-page .support-wrapper,
.xxx-dashboard-page .wallet-card,
.xxx-dashboard-page .modal-content {
    border-radius: 24px;
    border: 1px solid rgba(20, 18, 16, 0.08);
    background: rgba(255, 252, 248, 0.88);
    box-shadow: 0 18px 36px rgba(20, 14, 10, 0.08);
}

.xxx-dashboard-page .form-control,
.xxx-dashboard-page .form--control,
.xxx-dashboard-page .nice-select,
.xxx-dashboard-page .select2-selection {
    min-height: 52px;
    border-radius: 16px !important;
    border: 1px solid rgba(20, 18, 16, 0.1) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: var(--xxx-black) !important;
}

.xxx-dashboard-page .form-control:focus,
.xxx-dashboard-page .form--control:focus {
    border-color: rgba(249, 115, 22, 0.42) !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1) !important;
}

.xxx-dashboard-page .qr-scan {
    background: linear-gradient(135deg, #f97316, #ff9c3d);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
}

.landing-page {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 18%),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 20%),
        linear-gradient(180deg, #f8f2eb 0%, #efe4d9 100%);
}

.landing-page .vx-landing,
.landing-page .vx-landing * {
    box-sizing: border-box;
}

.landing-page .vx-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.landing-page .vx-topbar {
    padding-top: 24px;
}

.landing-page .vx-topbar__row {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(20, 18, 16, 0.08);
    background: rgba(255, 250, 245, 0.74);
    box-shadow: var(--xxx-shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--xxx-text-soft);
}

.landing-page .vx-topbar__items,
.landing-page .vx-nav,
.landing-page .vx-header-actions,
.landing-page .vx-hero__actions,
.landing-page .vx-footer__columns,
.landing-page .vx-support-banner__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landing-page .vx-topbar__items span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(20, 18, 16, 0.04);
}

.landing-page .vx-topbar__items strong {
    color: var(--xxx-black);
}

.landing-page .vx-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0 0;
}

.landing-page .vx-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 26px;
    border: 1px solid rgba(20, 18, 16, 0.08);
    background: rgba(255, 250, 245, 0.8);
    box-shadow: var(--xxx-shadow-soft);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.landing-page .vx-header.is-sticky .vx-header-bar {
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 18px 48px rgba(20, 14, 10, 0.12);
}

.landing-page .vx-nav a,
.landing-page .vx-link-button,
.landing-page .vx-mobile-nav a,
.landing-page .vx-footer a {
    text-decoration: none;
}

.landing-page .vx-nav a,
.landing-page .vx-link-button,
.landing-page .vx-mobile-nav a {
    color: var(--xxx-text-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.landing-page .vx-nav a:hover,
.landing-page .vx-link-button:hover,
.landing-page .vx-mobile-nav a:hover {
    color: var(--xxx-orange-deep);
}

.landing-page .vx-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(20, 18, 16, 0.1);
    background: rgba(255, 255, 255, 0.72);
}

.landing-page .vx-secondary-button {
    background: linear-gradient(180deg, #1a1612, #090807);
    box-shadow: 0 18px 34px rgba(9, 8, 7, 0.22);
}

.landing-page .vx-menu-toggle,
.landing-page .vx-mobile-nav {
    display: none;
}

.landing-page .vx-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(20, 18, 16, 0.12);
    background: rgba(255, 255, 255, 0.88);
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.landing-page .vx-menu-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--xxx-black);
}

.landing-page .vx-mobile-nav {
    margin-top: 12px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(20, 18, 16, 0.08);
    background: rgba(255, 250, 245, 0.96);
    box-shadow: var(--xxx-shadow-soft);
}

.landing-page .vx-mobile-nav.is-open {
    display: grid;
    gap: 12px;
}

.landing-page .vx-mobile-nav__actions {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.landing-page .vx-hero {
    padding: 54px 0 34px;
}

.landing-page .vx-hero__grid,
.landing-page .vx-grid-2,
.landing-page .vx-integration-layout,
.landing-page .vx-support-banner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.landing-page .vx-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-page .vx-kicker,
.landing-page .vx-section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(20, 18, 16, 0.06);
    color: var(--xxx-orange-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-page .vx-hero__copy h1,
.landing-page .vx-section-heading h2,
.landing-page .vx-support-banner h2,
.landing-page .vx-footer__headline {
    margin: 18px 0 18px;
    font-family: var(--xxx-font-display);
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: var(--xxx-black);
}

.landing-page .vx-section-heading h2,
.landing-page .vx-support-banner h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.landing-page .vx-hero__lead,
.landing-page .vx-section-heading p,
.landing-page .vx-section-copy,
.landing-page .vx-support-banner p,
.landing-page .vx-footer p {
    color: var(--xxx-text-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.landing-page .vx-hero__actions {
    margin-top: 28px;
    flex-wrap: wrap;
}

.landing-page .vx-mini-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.landing-page .vx-mini-proof article,
.landing-page .vx-stat-card,
.landing-page .vx-capability-card,
.landing-page .vx-code-panel,
.landing-page .vx-solution-card,
.landing-page .vx-rate-card,
.landing-page .vx-faq-item,
.landing-page .vx-support-banner,
.landing-page .vx-footer {
    border-radius: 26px;
    border: 1px solid rgba(20, 18, 16, 0.08);
    background: rgba(255, 250, 245, 0.8);
    box-shadow: var(--xxx-shadow-soft);
}

.landing-page .vx-mini-proof article {
    padding: 18px;
}

.landing-page .vx-mini-proof strong {
    display: block;
    margin-bottom: 8px;
    color: var(--xxx-black);
    font-size: 1rem;
}

.landing-page .vx-mini-proof span {
    color: var(--xxx-text-soft);
    font-size: 0.85rem;
}

.landing-page .vx-hero__visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.landing-page .vx-console,
.landing-page .vx-terminal {
    padding: 26px;
    border-radius: 30px;
    color: var(--xxx-text-inverse);
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 24%),
        linear-gradient(180deg, #17110d 0%, #0b0908 100%);
    box-shadow: 0 30px 70px rgba(10, 8, 7, 0.34);
}

.landing-page .vx-console__header,
.landing-page .vx-terminal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.landing-page .vx-console__tag,
.landing-page .vx-terminal__tag,
.landing-page .vx-pill-row span,
.landing-page .vx-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 244, 234, 0.82);
    font-size: 0.82rem;
}

.landing-page .vx-console__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.landing-page .vx-console__metrics article,
.landing-page .vx-settlement-list article {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-page .vx-console__metrics span,
.landing-page .vx-settlement-list span,
.landing-page .vx-terminal__code small {
    display: block;
    color: rgba(255, 244, 234, 0.62);
    font-size: 0.78rem;
}

.landing-page .vx-console__metrics strong,
.landing-page .vx-settlement-list strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 1.05rem;
}

.landing-page .vx-settlement-list {
    display: grid;
    gap: 12px;
}

.landing-page .vx-terminal__code {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    font-family: "IBM Plex Mono", "Courier New", monospace;
    color: rgba(255, 244, 234, 0.9);
}

.landing-page .vx-terminal__code code {
    white-space: pre-wrap;
    line-height: 1.75;
}

.landing-page .vx-terminal__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.landing-page .vx-section {
    padding: 30px 0;
}

.landing-page .vx-section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.landing-page .vx-stat-strip,
.landing-page .vx-capability-grid,
.landing-page .vx-solution-grid,
.landing-page .vx-rate-grid,
.landing-page .vx-footer__columns {
    display: grid;
    gap: 18px;
}

.landing-page .vx-stat-strip,
.landing-page .vx-capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-page .vx-solution-grid,
.landing-page .vx-rate-grid,
.landing-page .vx-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-page .vx-stat-card,
.landing-page .vx-capability-card,
.landing-page .vx-solution-card,
.landing-page .vx-rate-card {
    padding: 22px;
}

.landing-page .vx-stat-card strong,
.landing-page .vx-rate-card strong {
    display: block;
    color: var(--xxx-black);
    font-size: 1.7rem;
    font-weight: 700;
}

.landing-page .vx-stat-card span,
.landing-page .vx-rate-card span,
.landing-page .vx-capability-card p,
.landing-page .vx-solution-card p {
    color: var(--xxx-text-soft);
    line-height: 1.7;
}

.landing-page .vx-capability-card h3,
.landing-page .vx-solution-card h3,
.landing-page .vx-rate-card h3 {
    margin: 18px 0 12px;
    color: var(--xxx-black);
    font-size: 1.15rem;
    line-height: 1.35;
}

.landing-page .vx-capability-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--xxx-orange-soft);
    color: var(--xxx-orange-deep);
    font-size: 1.4rem;
}

.landing-page .vx-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.landing-page .vx-code-panel {
    padding: 24px;
}

.landing-page .vx-timeline {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.landing-page .vx-timeline article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.landing-page .vx-timeline article strong {
    color: var(--xxx-black);
}

.landing-page .vx-timeline article span,
.landing-page .vx-faq-item p,
.landing-page .vx-footer li,
.landing-page .vx-footer li a {
    color: var(--xxx-text-soft);
    line-height: 1.7;
}

.landing-page .vx-solution-card a,
.landing-page .vx-footer a {
    color: var(--xxx-orange-deep);
    font-weight: 700;
}

.landing-page .vx-rate-card ul,
.landing-page .vx-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.landing-page .vx-rate-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.landing-page .vx-faq-list {
    display: grid;
    gap: 14px;
}

.landing-page .vx-faq-item {
    padding: 18px 22px;
}

.landing-page .vx-faq-item summary {
    cursor: pointer;
    color: var(--xxx-black);
    font-weight: 700;
    list-style: none;
}

.landing-page .vx-faq-item summary::-webkit-details-marker {
    display: none;
}

.landing-page .vx-faq-item p {
    margin-top: 12px;
}

.landing-page .vx-support-banner {
    padding: 30px;
    align-items: center;
}

.landing-page .vx-footer {
    padding: 30px;
    margin: 36px 0 24px;
}

.landing-page .vx-footer__headline {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.landing-page .vx-footer__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 18, 16, 0.08);
    color: var(--xxx-text-soft);
}

.landing-page .vx-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1180px) {
    .landing-page .vx-stat-strip,
    .landing-page .vx-capability-grid,
    .landing-page .vx-solution-grid,
    .landing-page .vx-rate-grid,
    .landing-page .vx-footer__columns,
    .landing-page .vx-mini-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .xxx-auth-grid,
    .landing-page .vx-hero__grid,
    .landing-page .vx-grid-2,
    .landing-page .vx-integration-layout,
    .landing-page .vx-support-banner {
        grid-template-columns: 1fr;
    }

    .landing-page .vx-nav,
    .landing-page .vx-header-actions {
        display: none;
    }

    .landing-page .vx-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 820px) {
    .xxx-auth-shell {
        padding: 14px;
    }

    .xxx-auth-grid {
        min-height: calc(100vh - 28px);
    }

    .xxx-auth-showcase,
    .xxx-auth-content {
        padding: 28px;
    }

    .xxx-auth-showcase__stats {
        grid-template-columns: 1fr;
    }

    .xxx-dashboard-page .navbar-wrapper,
    .xxx-dashboard-page .body-wrapper {
        margin: 12px;
        padding: 16px;
    }

    .landing-page .vx-topbar__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .vx-header {
        padding-top: 12px;
    }
}

@media (max-width: 640px) {
    .xxx-auth-grid {
        border-radius: 26px;
    }

    .xxx-auth-content {
        padding: 18px;
    }

    .xxx-auth-page .account-wrapper {
        padding: 24px;
        border-radius: 22px;
    }

    .landing-page .vx-shell {
        width: min(100% - 20px, 1240px);
    }

    .landing-page .vx-topbar__items,
    .landing-page .vx-hero__actions,
    .landing-page .vx-footer__base {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .vx-stat-strip,
    .landing-page .vx-capability-grid,
    .landing-page .vx-solution-grid,
    .landing-page .vx-rate-grid,
    .landing-page .vx-footer__columns,
    .landing-page .vx-mini-proof,
    .landing-page .vx-console__metrics {
        grid-template-columns: 1fr;
    }

    .landing-page .vx-header-bar,
    .landing-page .vx-console,
    .landing-page .vx-terminal,
    .landing-page .vx-footer,
    .landing-page .vx-support-banner {
        padding: 18px;
        border-radius: 22px;
    }

    .landing-page .vx-hero__copy h1 {
        font-size: clamp(2.5rem, 13vw, 3.4rem);
    }

    .landing-page .vx-section-heading h2,
    .landing-page .vx-support-banner h2,
    .landing-page .vx-footer__headline {
        font-size: clamp(2.1rem, 11vw, 2.8rem);
    }
}

/* Landing 2.0: institutional tone, lighter 3D, mobile-first financial UX */
.landing-page {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 18%),
        radial-gradient(circle at top right, rgba(9, 8, 7, 0.08), transparent 22%),
        linear-gradient(180deg, #f7f7f5 0%, #efefec 100%);
    color: #121110;
}

.landing-page .vx-shell {
    width: min(1220px, calc(100% - 40px));
}

.landing-page .vx-topbar {
    padding-top: 18px;
}

.landing-page .vx-topbar__row,
.landing-page .vx-header-bar,
.landing-page .vx-mini-proof article,
.landing-page .vx-stat-card,
.landing-page .vx-capability-card,
.landing-page .vx-code-panel,
.landing-page .vx-rate-card,
.landing-page .vx-faq-item,
.landing-page .vx-support-banner,
.landing-page .vx-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 247, 244, 0.94));
    border: 1px solid rgba(18, 17, 16, 0.08);
    box-shadow: 0 18px 50px rgba(12, 10, 8, 0.08);
}

.landing-page .vx-topbar__row {
    padding: 10px 14px;
}

.landing-page .vx-topbar__items span,
.landing-page .vx-kicker,
.landing-page .vx-section-heading__eyebrow {
    background: rgba(249, 115, 22, 0.09);
    color: #a14807;
}

.landing-page .vx-kicker,
.landing-page .vx-section-heading__eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
}

.landing-page .vx-header {
    padding-top: 14px;
}

.landing-page .vx-header-bar {
    padding: 16px 20px;
    border-radius: 22px;
    backdrop-filter: blur(16px);
}

.landing-page .vx-header.is-sticky .vx-header-bar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 50px rgba(12, 10, 8, 0.09);
}

.landing-page .vx-nav a,
.landing-page .vx-link-button,
.landing-page .vx-mobile-nav a {
    font-size: 0.92rem;
}

.landing-page .vx-link-button {
    border-color: rgba(18, 17, 16, 0.12);
    background: #ffffff;
}

.landing-page .vx-primary-button {
    background: linear-gradient(135deg, #f97316, #ff8d3b);
}

.landing-page .vx-secondary-button {
    background: linear-gradient(180deg, #161412, #090807);
    box-shadow: 0 18px 34px rgba(9, 8, 7, 0.18);
}

.landing-page .vx-hero {
    padding: 42px 0 34px;
}

.landing-page .vx-hero__grid {
    align-items: center;
    gap: 34px;
}

.landing-page .vx-hero__copy h1,
.landing-page .vx-section-heading h2,
.landing-page .vx-support-banner h2,
.landing-page .vx-footer__headline {
    font-family: var(--xxx-font-display);
    font-weight: 700;
    letter-spacing: -0.045em;
}

.landing-page .vx-hero__copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    line-height: 0.95;
    max-width: 12ch;
}

.landing-page .vx-hero__lead,
.landing-page .vx-section-heading p,
.landing-page .vx-section-copy,
.landing-page .vx-support-banner p,
.landing-page .vx-footer p,
.landing-page .vx-rate-note {
    color: #5a5855;
    font-size: 1rem;
    line-height: 1.78;
    max-width: 64ch;
}

.landing-page .vx-hero__actions {
    margin-top: 26px;
}

.landing-page .vx-mini-proof {
    gap: 14px;
    margin-top: 28px;
}

.landing-page .vx-mini-proof article {
    padding: 18px 18px 16px;
    border-radius: 22px;
}

.landing-page .vx-mini-proof strong {
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.landing-page .vx-mini-proof span {
    font-size: 0.84rem;
    line-height: 1.6;
}

.landing-page .vx-hero__visual {
    position: relative;
    min-height: 610px;
    perspective: 1800px;
    transform-style: preserve-3d;
    --vx-tilt-x: 0deg;
    --vx-tilt-y: 0deg;
    --vx-glow-x: 50%;
    --vx-glow-y: 50%;
}

.landing-page .vx-scene-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.9;
    pointer-events: none;
}

.landing-page .vx-scene-glow--one {
    top: 40px;
    right: 10px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.34), transparent 68%);
}

.landing-page .vx-scene-glow--two {
    left: 40px;
    bottom: 34px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(9, 8, 7, 0.16), transparent 70%);
}

.landing-page .vx-float-card {
    position: absolute;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
}

.landing-page .vx-float-scene .vx-float-card {
    transform:
        rotateX(var(--vx-tilt-y))
        rotateY(var(--vx-tilt-x))
        translateZ(0);
}

.landing-page .vx-float-card--primary {
    inset: 8px 74px auto 0;
    z-index: 3;
}

.landing-page .vx-float-card--secondary {
    top: 290px;
    right: 0;
    width: min(300px, 58%);
    z-index: 4;
}

.landing-page .vx-float-card--tertiary {
    left: 78px;
    bottom: 30px;
    width: min(430px, 72%);
    z-index: 2;
}

.landing-page .vx-console,
.landing-page .vx-terminal,
.landing-page .vx-side-card {
    border-radius: 30px;
    overflow: hidden;
}

.landing-page .vx-console,
.landing-page .vx-terminal {
    color: #f8f4ee;
    background:
        radial-gradient(circle at var(--vx-glow-x) var(--vx-glow-y), rgba(249, 115, 22, 0.18), transparent 22%),
        linear-gradient(180deg, #171512 0%, #0d0c0a 100%);
    box-shadow: 0 30px 80px rgba(8, 7, 6, 0.26);
}

.landing-page .vx-console {
    padding: 28px;
}

.landing-page .vx-terminal {
    padding: 24px;
}

.landing-page .vx-console__metrics article,
.landing-page .vx-ledger article,
.landing-page .vx-terminal__code,
.landing-page .vx-side-card__items article {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .vx-console__metrics {
    margin: 22px 0 16px;
}

.landing-page .vx-console__metrics strong,
.landing-page .vx-ledger strong,
.landing-page .vx-side-card__items strong {
    font-family: var(--xxx-font-display);
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.landing-page .vx-ledger {
    display: grid;
    gap: 12px;
}

.landing-page .vx-ledger article {
    padding: 18px;
    border-radius: 20px;
}

.landing-page .vx-ledger span,
.landing-page .vx-ledger small,
.landing-page .vx-side-card__items span {
    display: block;
    color: rgba(248, 244, 238, 0.68);
}

.landing-page .vx-ledger small {
    margin-top: 8px;
    font-size: 0.78rem;
}

.landing-page .vx-side-card {
    padding: 20px;
    color: #f8f4ee;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 32%),
        linear-gradient(180deg, #11100e 0%, #090807 100%);
    box-shadow: 0 26px 70px rgba(8, 7, 6, 0.24);
}

.landing-page .vx-side-card__head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.landing-page .vx-side-card__items {
    display: grid;
    gap: 10px;
}

.landing-page .vx-side-card__items article {
    padding: 14px 16px;
    border-radius: 18px;
}

.landing-page .vx-terminal__code {
    font-family: var(--xxx-font-mono);
    font-size: 0.82rem;
}

.landing-page .vx-terminal__code code {
    font-family: inherit;
}

.landing-page .vx-terminal__footer,
.landing-page .vx-trust-band,
.landing-page .vx-integration-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-page .vx-trust-band {
    position: absolute;
    left: 20px;
    top: 236px;
    z-index: 5;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 17, 16, 0.08);
    box-shadow: 0 16px 34px rgba(12, 10, 8, 0.08);
}

.landing-page .vx-trust-band span,
.landing-page .vx-integration-checklist span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    color: #9e4609;
    font-size: 0.8rem;
    font-weight: 600;
}

.landing-page .vx-section {
    padding: 34px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.landing-page .vx-section-heading {
    margin-bottom: 24px;
}

.landing-page .vx-stat-strip,
.landing-page .vx-capability-grid,
.landing-page .vx-rate-grid,
.landing-page .vx-footer__columns {
    gap: 16px;
}

.landing-page .vx-stat-card,
.landing-page .vx-capability-card,
.landing-page .vx-code-panel,
.landing-page .vx-rate-card {
    padding: 24px;
    border-radius: 24px;
}

.landing-page .vx-stat-card strong {
    margin-bottom: 10px;
    font-size: 1.45rem;
    line-height: 1.08;
}

.landing-page .vx-capability-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
}

.landing-page .vx-capability-card h3,
.landing-page .vx-rate-card h3 {
    margin: 16px 0 10px;
    font-size: 1.08rem;
    font-weight: 700;
}

.landing-page .vx-code-panel strong {
    display: block;
    color: #121110;
    font-size: 1.2rem;
}

.landing-page .vx-timeline article {
    padding: 14px 0;
    border-bottom: 1px solid rgba(18, 17, 16, 0.08);
}

.landing-page .vx-timeline article:last-child {
    border-bottom: 0;
}

.landing-page .vx-rate-card strong {
    font-size: 1.02rem;
    text-align: right;
}

.landing-page .vx-rate-card li {
    align-items: flex-start;
}

.landing-page .vx-rate-note {
    margin: 18px 2px 0;
}

.landing-page .vx-faq-item {
    padding: 20px 22px;
}

.landing-page .vx-faq-item summary {
    position: relative;
    padding-right: 28px;
}

.landing-page .vx-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #f97316;
    font-size: 1.3rem;
    line-height: 1;
}

.landing-page .vx-faq-item[open] summary::after {
    content: "-";
}

.landing-page .vx-support-banner {
    padding: 34px;
    gap: 22px;
}

.landing-page .vx-footer {
    margin: 36px 0 24px;
    padding: 32px;
}

.landing-page .vx-footer__headline {
    margin-bottom: 14px;
    max-width: 15ch;
}

.landing-page .vx-footer__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 17, 16, 0.08);
    color: #64615d;
}

@media (max-width: 1080px) {
    .landing-page .vx-hero__grid,
    .landing-page .vx-grid-2,
    .landing-page .vx-integration-layout,
    .landing-page .vx-support-banner {
        grid-template-columns: 1fr;
    }

    .landing-page .vx-hero__visual {
        min-height: 760px;
    }

    .landing-page .vx-float-card--primary {
        right: 90px;
    }

    .landing-page .vx-float-card--secondary {
        top: 312px;
    }
}

@media (max-width: 820px) {
    .landing-page .vx-topbar__row,
    .landing-page .vx-topbar__items {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .vx-hero {
        padding-top: 28px;
    }

    .landing-page .vx-hero__copy h1 {
        max-width: 13ch;
        font-size: clamp(2.7rem, 9vw, 4rem);
    }

    .landing-page .vx-hero__visual {
        min-height: auto;
        display: grid;
        gap: 16px;
        perspective: none;
    }

    .landing-page .vx-float-card,
    .landing-page .vx-trust-band {
        position: relative;
        inset: auto;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        transform: none !important;
    }

    .landing-page .vx-float-card--secondary,
    .landing-page .vx-float-card--tertiary {
        width: 100%;
    }

    .landing-page .vx-trust-band {
        order: -1;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .landing-page .vx-shell {
        width: min(100% - 18px, 1220px);
    }

    .landing-page .vx-topbar {
        padding-top: 12px;
    }

    .landing-page .vx-topbar__row,
    .landing-page .vx-header-bar,
    .landing-page .vx-stat-card,
    .landing-page .vx-capability-card,
    .landing-page .vx-rate-card,
    .landing-page .vx-code-panel,
    .landing-page .vx-support-banner,
    .landing-page .vx-footer,
    .landing-page .vx-mini-proof article,
    .landing-page .vx-console,
    .landing-page .vx-terminal,
    .landing-page .vx-side-card {
        padding: 18px;
        border-radius: 20px;
    }

    .landing-page .vx-hero__actions,
    .landing-page .vx-footer__base {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-page .vx-topbar__items,
    .landing-page .vx-mini-proof,
    .landing-page .vx-stat-strip,
    .landing-page .vx-capability-grid,
    .landing-page .vx-rate-grid,
    .landing-page .vx-footer__columns,
    .landing-page .vx-console__metrics {
        grid-template-columns: 1fr;
    }

    .landing-page .vx-hero__copy h1 {
        font-size: clamp(2.3rem, 12vw, 3.2rem);
    }

    .landing-page .vx-section-heading h2,
    .landing-page .vx-support-banner h2,
    .landing-page .vx-footer__headline {
        font-size: clamp(2rem, 10vw, 2.6rem);
        line-height: 1;
    }

    .landing-page .vx-rate-card li {
        flex-direction: column;
        gap: 4px;
    }

    .landing-page .vx-rate-card strong {
        text-align: left;
    }

    .landing-page .vx-footer__headline {
        max-width: none;
    }
}

/* Landing refresh: cleaner payment-processor feel, white base, no 3D */
.landing-page {
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    color: #111111;
}

.landing-page .vx-shell {
    width: min(1220px, calc(100% - 40px));
}

.landing-page .vx-topbar,
.landing-page .vx-header,
.landing-page .vx-hero,
.landing-page .vx-section {
    background: #ffffff;
}

.landing-page .vx-topbar {
    padding-top: 18px;
}

.landing-page .vx-topbar__row,
.landing-page .vx-header-bar,
.landing-page .vx-mini-proof article,
.landing-page .vx-stat-card,
.landing-page .vx-capability-card,
.landing-page .vx-code-panel,
.landing-page .vx-rate-card,
.landing-page .vx-faq-item,
.landing-page .vx-support-banner,
.landing-page .vx-footer {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

.landing-page .vx-topbar__row {
    padding: 11px 16px;
}

.landing-page .vx-topbar__items span {
    background: rgba(249, 115, 22, 0.08);
    color: #5f5a55;
}

.landing-page .vx-topbar__items strong,
.landing-page .vx-nav a:hover,
.landing-page .vx-link-button:hover,
.landing-page .vx-mobile-nav a:hover {
    color: #111111;
}

.landing-page .vx-kicker,
.landing-page .vx-section-heading__eyebrow {
    background: rgba(249, 115, 22, 0.1);
    color: #b54b06;
}

.landing-page .vx-header {
    padding-top: 14px;
}

.landing-page .vx-header-bar {
    padding: 16px 20px;
    border-radius: 22px;
}

.landing-page .vx-header.is-sticky .vx-header-bar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.landing-page .vx-link-button {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
}

.landing-page .vx-primary-button {
    background: linear-gradient(135deg, #f97316, #ff8d3b);
    color: #ffffff !important;
}

.landing-page .vx-secondary-button {
    background: #111111;
    color: #ffffff !important;
    box-shadow: 0 18px 30px rgba(17, 17, 17, 0.16);
}

.landing-page .vx-hero {
    padding: 38px 0 30px;
}

.landing-page .vx-hero__grid {
    gap: 34px;
    align-items: center;
}

.landing-page .vx-hero__copy h1,
.landing-page .vx-section-heading h2,
.landing-page .vx-support-banner h2,
.landing-page .vx-footer__headline {
    font-family: var(--xxx-font-display);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111111;
}

.landing-page .vx-hero__copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(3.1rem, 5.6vw, 5rem);
    line-height: 0.95;
    max-width: 13ch;
}

.landing-page .vx-section-heading h2,
.landing-page .vx-support-banner h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.landing-page .vx-hero__lead,
.landing-page .vx-section-heading p,
.landing-page .vx-section-copy,
.landing-page .vx-support-banner p,
.landing-page .vx-footer p,
.landing-page .vx-rate-note {
    color: #5b5855;
    line-height: 1.75;
}

.landing-page .vx-hero__actions {
    margin-top: 26px;
}

.landing-page .vx-mini-proof {
    margin-top: 28px;
    gap: 14px;
}

.landing-page .vx-mini-proof article,
.landing-page .vx-stat-card,
.landing-page .vx-capability-card,
.landing-page .vx-rate-card {
    position: relative;
    overflow: hidden;
}

.landing-page .vx-mini-proof article::before,
.landing-page .vx-stat-card::before,
.landing-page .vx-capability-card::before,
.landing-page .vx-rate-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, rgba(249, 115, 22, 0) 100%);
}

.landing-page .vx-mini-proof article {
    padding: 18px;
    border-radius: 22px;
}

.landing-page .vx-mini-proof strong {
    display: block;
    margin-bottom: 8px;
    color: #111111;
}

.landing-page .vx-mini-proof span {
    color: #615d59;
}

.landing-page .vx-hero__visual {
    display: grid;
    gap: 16px;
    min-height: 0;
    perspective: none;
    transform-style: flat;
}

.landing-page .vx-processor-board {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
    color: #ffffff;
    box-shadow: 0 26px 60px rgba(17, 17, 17, 0.18);
}

.landing-page .vx-processor-board__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.landing-page .vx-processor-board__intro h3 {
    margin: 14px 0 0;
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 14ch;
}

.landing-page .vx-console__tag,
.landing-page .vx-terminal__tag,
.landing-page .vx-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 600;
}

.landing-page .vx-status-pill--live {
    background: rgba(249, 115, 22, 0.14);
    color: #ffd3b0;
}

.landing-page .vx-status-pill--light {
    background: rgba(249, 115, 22, 0.1);
    color: #b54b06;
}

.landing-page .vx-console__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0 18px;
}

.landing-page .vx-console__metrics article,
.landing-page .vx-transaction-stream article,
.landing-page .vx-side-card__items article {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .vx-console__metrics article {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.landing-page .vx-console__metrics span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
}

.landing-page .vx-console__metrics strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 700;
}

.landing-page .vx-transaction-stream {
    display: grid;
    gap: 12px;
}

.landing-page .vx-transaction-stream article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.05);
}

.landing-page .vx-transaction-stream strong,
.landing-page .vx-side-card strong,
.landing-page .vx-benefit-list strong {
    display: block;
    color: inherit;
    font-size: 0.98rem;
    font-weight: 700;
}

.landing-page .vx-transaction-stream span,
.landing-page .vx-side-card span,
.landing-page .vx-benefit-list span {
    display: block;
    margin-top: 6px;
    color: inherit;
    opacity: 0.76;
    line-height: 1.55;
    font-size: 0.84rem;
}

.landing-page .vx-transaction-stream b {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 0.98rem;
}

.landing-page .vx-board-footer,
.landing-page .vx-integration-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-page .vx-board-footer {
    margin-top: 18px;
}

.landing-page .vx-chip,
.landing-page .vx-integration-checklist span,
.landing-page .vx-pill-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.landing-page .vx-chip {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.landing-page .vx-pill-row span,
.landing-page .vx-integration-checklist span {
    background: rgba(249, 115, 22, 0.08);
    color: #b54b06;
}

.landing-page .vx-hero__subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.landing-page .vx-side-card {
    padding: 22px;
    border-radius: 24px;
}

.landing-page .vx-side-card--dark {
    background: linear-gradient(180deg, #111111 0%, #181818 100%);
    border: 1px solid rgba(249, 115, 22, 0.16);
    color: #ffffff;
    box-shadow: 0 20px 46px rgba(17, 17, 17, 0.16);
}

.landing-page .vx-side-card--light {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #111111;
}

.landing-page .vx-side-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.landing-page .vx-side-card__items,
.landing-page .vx-benefit-list {
    display: grid;
    gap: 12px;
}

.landing-page .vx-side-card__items article {
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.landing-page .vx-benefit-list article {
    padding: 16px;
    border-radius: 18px;
    background: #fff8f3;
    border: 1px solid rgba(249, 115, 22, 0.12);
}

.landing-page .vx-section {
    padding: 34px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.landing-page .vx-section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.landing-page .vx-stat-strip,
.landing-page .vx-capability-grid,
.landing-page .vx-rate-grid,
.landing-page .vx-footer__columns {
    display: grid;
    gap: 16px;
}

.landing-page .vx-stat-strip,
.landing-page .vx-capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-page .vx-rate-grid,
.landing-page .vx-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-page .vx-stat-card,
.landing-page .vx-capability-card,
.landing-page .vx-code-panel,
.landing-page .vx-rate-card {
    padding: 24px;
    border-radius: 24px;
}

.landing-page .vx-stat-card strong {
    display: block;
    margin-bottom: 10px;
    color: #111111;
    font-size: 1.35rem;
    line-height: 1.08;
}

.landing-page .vx-stat-card span,
.landing-page .vx-capability-card p,
.landing-page .vx-rate-card span,
.landing-page .vx-rate-card strong,
.landing-page .vx-timeline article span,
.landing-page .vx-faq-item p,
.landing-page .vx-footer li,
.landing-page .vx-footer li a {
    color: #5e5a57;
    line-height: 1.7;
}

.landing-page .vx-capability-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.1);
    color: #c1540a;
    font-size: 1.35rem;
}

.landing-page .vx-capability-card h3,
.landing-page .vx-rate-card h3 {
    margin: 16px 0 10px;
    color: #111111;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
}

.landing-page .vx-code-panel strong {
    display: block;
    color: #111111;
    font-size: 1.18rem;
}

.landing-page .vx-timeline {
    display: grid;
    gap: 0;
    margin-top: 14px;
}

.landing-page .vx-timeline article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.landing-page .vx-timeline article:last-child {
    border-bottom: 0;
}

.landing-page .vx-timeline strong {
    color: #111111;
}

.landing-page .vx-rate-card ul,
.landing-page .vx-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.landing-page .vx-rate-card li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.landing-page .vx-rate-card strong {
    color: #111111;
    text-align: right;
}

.landing-page .vx-rate-note {
    margin: 18px 2px 0;
}

.landing-page .vx-faq-list {
    display: grid;
    gap: 14px;
}

.landing-page .vx-faq-item {
    padding: 20px 22px;
}

.landing-page .vx-faq-item summary {
    position: relative;
    cursor: pointer;
    padding-right: 28px;
    color: #111111;
    font-weight: 700;
    list-style: none;
}

.landing-page .vx-faq-item summary::-webkit-details-marker {
    display: none;
}

.landing-page .vx-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #f97316;
    font-size: 1.25rem;
    line-height: 1;
}

.landing-page .vx-faq-item[open] summary::after {
    content: "-";
}

.landing-page .vx-faq-item p {
    margin-top: 12px;
}

.landing-page .vx-support-banner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: center;
    padding: 34px;
}

.landing-page .vx-footer {
    margin: 36px 0 24px;
    padding: 32px;
}

.landing-page .vx-footer__headline {
    margin: 14px 0;
    max-width: 14ch;
}

.landing-page .vx-footer a {
    color: #111111;
    text-decoration: none;
}

.landing-page .vx-footer a:hover {
    color: #f97316;
}

.landing-page .vx-footer__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    color: #6a6662;
}

@media (max-width: 1080px) {
    .landing-page .vx-hero__grid,
    .landing-page .vx-grid-2,
    .landing-page .vx-integration-layout,
    .landing-page .vx-support-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .landing-page .vx-topbar__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .vx-topbar__items {
        flex-wrap: wrap;
    }

    .landing-page .vx-hero {
        padding-top: 28px;
    }

    .landing-page .vx-hero__copy h1 {
        max-width: 14ch;
        font-size: clamp(2.7rem, 9vw, 4rem);
    }

    .landing-page .vx-hero__subgrid,
    .landing-page .vx-stat-strip,
    .landing-page .vx-capability-grid,
    .landing-page .vx-rate-grid,
    .landing-page .vx-footer__columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing-page .vx-shell {
        width: min(100% - 18px, 1220px);
    }

    .landing-page .vx-topbar {
        padding-top: 12px;
    }

    .landing-page .vx-topbar__row,
    .landing-page .vx-header-bar,
    .landing-page .vx-stat-card,
    .landing-page .vx-capability-card,
    .landing-page .vx-rate-card,
    .landing-page .vx-code-panel,
    .landing-page .vx-support-banner,
    .landing-page .vx-footer,
    .landing-page .vx-mini-proof article,
    .landing-page .vx-processor-board,
    .landing-page .vx-side-card {
        padding: 18px;
        border-radius: 20px;
    }

    .landing-page .vx-hero__actions,
    .landing-page .vx-footer__base {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-page .vx-topbar__items,
    .landing-page .vx-mini-proof,
    .landing-page .vx-console__metrics {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .landing-page .vx-console__metrics,
    .landing-page .vx-hero__subgrid,
    .landing-page .vx-stat-strip,
    .landing-page .vx-capability-grid,
    .landing-page .vx-rate-grid,
    .landing-page .vx-footer__columns {
        grid-template-columns: 1fr;
    }

    .landing-page .vx-processor-board__top,
    .landing-page .vx-side-card__head,
    .landing-page .vx-rate-card li {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .vx-hero__copy h1 {
        font-size: clamp(2.3rem, 12vw, 3.2rem);
    }

    .landing-page .vx-section-heading h2,
    .landing-page .vx-support-banner h2,
    .landing-page .vx-footer__headline {
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 1;
    }

    .landing-page .vx-transaction-stream article {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-page .vx-rate-card strong {
        text-align: left;
    }

    .landing-page .vx-footer__headline {
        max-width: none;
    }
}
