:root {
    --bg: #030201;
    --bg-soft: #080604;
    --text: #fff8e8;
    --muted: #c8bfae;
    --soft: #8f8678;
    --gold: #f6c86a;
    --gold-light: #ffe7a3;
    --gold-strong: #ff9f1c;
    --gold-deep: #9f6416;
    --line: rgba(246, 200, 106, 0.55);
    --panel: rgba(18, 14, 8, 0.74);
    --panel-strong: rgba(30, 22, 12, 0.86);
    --panel-border: rgba(246, 200, 106, 0.22);
    --shadow-gold: 0 24px 80px rgba(246, 166, 35, 0.12);
}

* {
    box-sizing: border-box;
}

.crisp-client {
    position: fixed !important;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(246, 200, 106, 0.16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 157, 10, 0.11), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(246, 200, 106, 0.08), transparent 34%),
        linear-gradient(180deg, #030201 0%, #060403 48%, #020201 100%);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0 0 auto auto;
    width: 1px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 80;
}

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

.oria-scroll-card {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 320px;
    height: auto;
    pointer-events: none;
    opacity: 0;
    object-fit: contain;
    transform-origin: center center;
    filter:
        drop-shadow(0 24px 44px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 24px rgba(246, 200, 106, 0.32));
    will-change: transform, width, height, opacity;
}

.scroll-card-ready [data-scroll-card-target] {
    opacity: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 24px;
    height: 80px;
    padding: 0 max(48px, calc((100vw - 1440px) / 2 + 48px));
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: blur(16px);

}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.brand img {
    display: block;
    width: auto;
    height: 25px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 30px;
    font-size: 16px;
    font-weight: 600;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;    
    justify-content: center; 
    text-align: center;
    height: 80px;
    padding: 12px 0;
    width: 120px;
    color: white;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* LANGUAGE DROPDOWN */

.language-dropdown {
    position: relative;
    justify-self: end;
    margin-left: 80px;
}

.language-toggle {
    height: 44px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    width: 120px;
    cursor: pointer;
    justify-content: center;
}

.language-toggle-icon {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: -25px;
    min-width: 120px;
    background: #0f0f0f;
    border: 1px solid rgba(230, 230, 230, 0.28);
    display: none;
    z-index: 100;
}

.language-dropdown.open .language-menu {
    display: grid;
    gap: 4px;
}

.language-menu button {
    width: 100%;
    padding: 11px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}

/* .language-menu button:hover,
.language-menu button.active {
    background: rgba(246, 200, 106, 0.12);
    color: var(--gold-light);
} */

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: auto auto auto;
    }

    .language-dropdown {
        justify-self: end;
    }

    .language-toggle {
        width: 44px;
        padding: 0;
        justify-content: center;
    }

    .language-toggle span {
        display: none;
    }

    .header-download {
        display: none;
    }
}

.header-download {
    justify-self: end;
    position: relative;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 15px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.header-cta-icon {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.download-popup {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    display: grid;
    grid-template-columns: 180px;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(18, 18, 18, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease;
    backdrop-filter: blur(14px);
}

.header-download:hover .download-popup,
.header-download:focus-within .download-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.download-popup::before {
    content: "";
    position: absolute;
    top: -18px;
    right: 0;
    width: 100%;
    height: 18px;
}

.qr-card {
    display: grid;
    gap: 12px;
    justify-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.qr-code {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
}

.qr-image {
    display: block;
    width: 100px;
    height: 100px;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
}

.qr-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qr-label img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
}

.menu-toggle-icon {
    display: block;
    width: 18px;
    height: 18px;
}

.section {
    position: relative;
    max-width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 70px 58px 48px;
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero-section {
    display: flex;
    gap: 18px;
    width: 100%;
    max-width: none;
    padding-top: 170px;
    padding-left: max(58px, calc((100vw - 1440px) / 2 + 58px));
    padding-right: max(58px, calc((100vw - 1440px) / 2 + 58px));
    background: linear-gradient(180deg, #000 0%, #342605 98%, #342605 100%);
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 100vw;
    height: 180px;
    pointer-events: none;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(52, 38, 5, 0) 0%, #342605 82%, #342605 100%);
    z-index: 1;
}


.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    
}

.hero-copy h1 {
    margin: 0;
    font-size: 55px;
    line-height: 0.99;
    font-weight: 700;
    letter-spacing: -0.045em;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}

.hero-copy p {
    margin: 35px 0 40px;
    color: #dadada;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 400;
}

.store-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.store-row a img{
    width: 150px;
}

.hero-copy .hero-note {
    max-width: 300px;
    margin: 110px 0 0;
    color: #b3b3b3;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 200;
}

/* Remove */
.store-badge { 
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 45px;
    padding: 5px 8px;
    border: 1px solid #a6a6a6;
    border-radius: 6px;
    background: #050505;
    color: #fff;
}

.store-badge img {
    display: block;
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.store-badge span {
    display: grid;
    gap: 1px;
    line-height: 1;
}

.store-badge small {
    font-size: 9px;
    font-weight: 500;
}

.store-badge strong {
    font-size: 18px;
    font-weight: 400;
}

.hero-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    max-width: 50vw;
    min-height: min(590px, calc(100vh - 96px));
    flex-grow: 1;
}

.visual-stage {
    position: relative;
    width: min(720px, 56vw, calc((100vh - 150px) * 1.16));
    aspect-ratio: 720 / 620;
}

.phone-image {
    position: absolute;
    left: 46.5%;
    top: 48%;
    width: 336px;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.72));
    transform: translate(-50%, -50%);
}

.card-image {
    position: absolute;
    left: 43.5%;
    top: 66%;
    width: 41.5%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.58));
}

.float-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: clamp(44px, 9%, 61px);
    padding: 9px 30px;
    border: 1px solid rgba(246, 200, 106, 0.22);
    border-radius: 14px;
    color: #f5ead6;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.18;
    white-space: nowrap;
    animation: breathe-pill 6.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
}

@keyframes breathe-pill {
    0% {
        opacity: 0.92;
        transform: translate3d(0px, 0px, 0px) scale(1);
    }

    25% {
        transform: translate3d(2px, -4px, 0px) scale(1.01);
    }

    50% {
        opacity: 1;
        transform: translate3d(-3px, -10px, 0px) scale(1.018);
    }

    75% {
        transform: translate3d(2px, -5px, 0px) scale(1.01);
    }

    100% {
        opacity: 0.92;
        transform: translate3d(0px, 0px, 0px) scale(1);
    }
}

.float-pill b {
    display: block;
    margin-top: 10px;
    color: #ff5047;
    font-weight: 400;
    white-space: nowrap;
}

.float-pill .positive {
    color: #00df66;
}

.pill-image,
.add-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #111;
    background: #fff;
    font-size: 21px;
}

.pill-image {
    overflow: hidden;
    background: transparent;
}

.pill-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-icon {
    background: #ff8a00;
    color: #fff;
}

.float-shopping {
    left: 62%;
    top: 72%;
    animation-delay: -0.4s;
}

.float-subscription {
    left: 58%;
    top: 21%;
    animation-delay: -1.1s;
}

.float-jack {
    left: -8%;
    top: 30%;
    animation-delay: -2.1s;
}

.float-topup {
    left: 49%;
    right: auto;
    top: -7%;
    animation-delay: -3.7s;
}

.float-coffee {
    left: -23%;
    right: auto;
    top: 80%;
    animation-delay: -5.2s;
}

.mobile-visual-float {
    display: flex;
}

.hero-copy > .float-topup,
.hero-copy > .float-coffee {
    display: none;
}

.features-section {
    display: grid;
    place-items: center;
}

.features-grid {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 100px;
    padding-top: 26px;
}

.feature-item,
.assurance-item {
    text-align: center;
    padding: 30px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(246, 200, 106, 0.14);
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-item:hover,
.assurance-item:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 200, 106, 0.38);
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 17px;
    object-fit: contain;
}

.feature-item h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 700;
}

.feature-item p {
    margin: 10px auto 0;
    max-width: 320px;
    color: #9b9b9b;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.assurance-item h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 700;
}

.assurance-item p {
    margin: 10px auto 0;
    max-width: 320px;
    color: #9b9b9b;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 130px;
    padding-right: 130px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    margin: 0 auto;
}

.statement h2,
.assurance > h2 {
    width: max-content;
    min-width: 196px;
    margin: 0 0 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #fff;
    color: #e8c07c;
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
}

.statement {
    padding: 34px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border: 1px solid rgba(246, 200, 106, 0.14);
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.statement:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 200, 106, 0.38);
}

.statement p {
    margin: 0;
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.16;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.trust-badge {
    align-self: center;
    margin: 42px 0 43px;
    padding: 25px 25px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #e8c07c;
    font-size: 20px;
    font-weight: 700;
}

.assurance {
    width:100%;
    margin: 0 auto;
}

.assurance > h2 {
    min-width: 438px;
    margin-bottom: 26px;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 118px;
}

.assurance-icon {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 17px;
    object-fit: contain;
}

.site-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    display: flex;
    justify-content: center;
    gap: 22px;
    color: #a5a5a5;
    font-size: 12px;
}



/* FAQ SECTION */

.faq-section {
    position: relative;
    width: 100%;
    padding: 120px 0 82px;
}

.faq-container {
    width: min(900px, 100%);
    margin: 0 auto;
}

.faq-header, .general-header {
    text-align: center;
    margin-bottom: 58px;
}

.faq-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(243, 199, 108, 0.35);
    background: rgba(243, 199, 108, 0.08);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.faq-header h2, .general-header h2 {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}

.faq-header p, .general-header p {
    width: min(620px, 100%);
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-gold);
}

.faq-item:hover {
    border-color: rgba(246, 200, 106, 0.38);
    transform: translateY(-2px);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

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

.faq-item summary i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(243, 199, 108, 0.08);
    color: var(--gold);
    transition: transform 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
    background: rgba(243, 199, 108, 0.16);
}

.faq-content {
    padding: 0 32px 30px;
}

.faq-content p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 104px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual {
        min-height: min(540px, calc(100vh - 120px));
    }

    .visual-stage {
        width: min(660px, 86vw, calc((100vh - 150px) * 1.16));
    }

    .float-pill {
        gap: 16px;
        padding: 7px 20px;
        border-radius: 12px;
        font-size: 16px;
    }

    .pill-image,
    .add-icon {
        width: 48px;
        height: 48px;
    }

    .features-grid,
    .assurance-grid {
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-section {
        padding-left: 64px;
        padding-right: 64px;
    }

    .mission-grid {
        gap: 80px;
    }
}

@media (max-width: 820px) {
    body::after {
        display: none;
    }

    .site-header {
        grid-template-columns: auto auto;
        height: 64px;
        padding: 0 18px;
    }

    .brand img {
        width: 82px;
    }



    .language-dropdown {
        position: fixed;
        top: 12px;
        right: 68px;
        z-index: 60;
        margin-left: 0;
    }

    .language-toggle {
        height: 40px;
        min-width: 92px;
        padding: 0 10px;
        font-size: 0;
    }

    .language-toggle-icon {
        width: 15px;
        height: 15px;
    }

    .language-toggle [data-current-language] {
        font-size: 13px;
        max-width: 54px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .language-menu {
        right: 0;
        min-width: 150px;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 6px;
        background: transparent;
        color: #fff;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;

        display: none;
        flex-direction: column;
        gap: 0;

        padding: 12px 0 18px;

        background: rgba(0, 0, 0, 0.96);

        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .main-nav.open {
        display: flex;
        justify-content: center;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        height: 56px;
        padding: 0 24px;
    }

    .header-download {
        display: none;
    }

    .section {
        min-height: auto;
        padding: 92px 22px 64px;
    }

    .hero-section {
        display: block;
    }

    .hero-copy h1 {
        font-size: 44px;
        text-align: center;
    }

    .hero-copy p {
        margin-top: 24px;
        text-align: center;
    }

    .hero-copy {
        align-items: center;
        padding-bottom: 0;
    }

    .store-row {
        justify-content: center;
        width: 100%;
    }

    .hero-visual {
        max-width: none;
        min-height: 0;
        height: auto;
        margin-top: 28px;
    }

    .visual-stage {
        width: min(620px, 100%);
        margin: 0 auto;
        overflow: visible;
    }

    .hero-copy > .float-topup,
    .hero-copy > .float-coffee {
        display: none;
    }

    .mobile-visual-float {
        display: flex;
    }

    .float-pill {
        gap: 10px;
        padding: 5px 12px;
        border-radius: 10px;
        font-size: 12px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
    }

    .pill-image,
    .add-icon {
        width: 34px;
        height: 34px;
    }

    .float-pill b {
        margin-top: 2px;
    }

    .float-shopping {
        left: 62%;
        top: 10%;
    }

    .float-subscription {
        left: 64%;
        top: 24%;
    }

    .float-jack {
        left: 56%;
        top: 37%;
    }

    .float-topup {
        left: 7%;
        right: auto;
        top: 58%;
    }

    .float-coffee {
        left: 10%;
        right: auto;
        top: 78%;
    }

    .phone-image {
        left: 50%;
        top: 49%;
        width: 42%;
    }

    .card-image {
        left: 51%;
        top: 57%;
        width: 44%;
    }

    .features-grid,
    .mission-grid,
    .assurance-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        row-gap: 54px;
        padding-top: 0;
    }

    .about-section {
        display: block;
        padding-bottom: 106px;
    }

    .mission-grid {
        gap: 44px;
    }

    .statement h2,
    .assurance > h2 {
        min-width: min(100%, 300px);
        font-size: 28px;
    }

    .statement p {
        font-size: 15px;
        line-height: 1.25;
    }

    .trust-badge {
        margin: 34px auto 42px;
        width: fit-content;
        max-width: 100%;
        text-align: center;
    }

    .assurance-grid {
        gap: 46px;
    }

    .site-footer {
        bottom: 26px;
    }

    .faq-section {
        padding: 90px 0 60px;
    }

    .faq-header, .general-header {
        margin-bottom: 42px;
    }

    .faq-header h2, .general-header h2 {
        font-size: 38px;
    }

    .faq-header p, .general-header p {
        font-size: 16px;
    }

    .faq-item summary {
        padding: 22px;
        font-size: 17px;
    }

    .faq-content {
        padding: 0 22px 24px;
    }

    .faq-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}

@media (max-width: 430px) {
    .hero-copy h1 {
        font-size: 38px;
    }

    .visual-stage {
        width: min(520px, 100%);
    }

    .float-pill {
        font-size: 11px;
        padding: 5px 10px;
    }

    .pill-image,
    .add-icon {
        width: 30px;
        height: 30px;
    }

    .float-shopping {
        left: 56%;
        top: 7%;
    }

    .float-subscription {
        left: 58%;
        top: 21%;
    }

    .float-jack {
        left: 52%;
        top: 33%;
    }

    .float-topup {
        left: 1%;
        top: 60%;
    }

    .float-coffee {
        left: 4%;
        top: 80%;
    }
}

/* PAYMENT ECOSYSTEM SECTION */
.section-intro {
    position: relative;
    z-index: 2;
    width: min(820px, 100%);
    margin: 0 auto 54px;
    text-align: center;
}

.section-intro h2 {
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.section-intro p {
    margin: 22px auto 0;
    width: min(720px, 100%);
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.ecosystem-section {
    max-width: none;
    padding-left: max(58px, calc((100vw - 1440px) / 2 + 58px));
    padding-right: max(58px, calc((100vw - 1440px) / 2 + 58px));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    inset: 8% 0 auto 50%;
    width: min(860px, 85vw);
    height: min(860px, 85vw);
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(246, 200, 106, 0.18), transparent 35%),
        conic-gradient(from 90deg, transparent, rgba(246, 200, 106, 0.2), transparent 34%, rgba(255,255,255,0.08), transparent 70%);
    opacity: 0.62;
    filter: blur(1px);
    pointer-events: none;
}

.ecosystem-layout {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.solution-card {
    position: relative;
    min-height: 370px;
    padding: 34px 30px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.024));
    border: 1px solid rgba(246, 200, 106, 0.18);
    box-shadow: 0 28px 90px rgba(0,0,0,0.34), var(--shadow-gold);
    backdrop-filter: blur(18px);
}

.solution-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -34% -20%;
    height: 180px;
    background: radial-gradient(circle, rgba(246, 200, 106, 0.2), transparent 62%);
    pointer-events: none;
}

.solution-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,231,163,0.18), rgba(255,159,28,0.12));
    border: 1px solid rgba(246, 200, 106, 0.28);
    color: var(--gold-light);
    font-size: 27px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.solution-card h3 {
    margin: 24px 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.solution-card p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.solution-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-card li {
    position: relative;
    padding-left: 24px;
    color: #f8edd8;
    font-size: 15px;
}

.solution-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--gold);
    font-weight: 800;
}

.flow-panel {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 26px auto 0;
    padding: 26px;
    border: 1px solid rgba(246, 200, 106, 0.18);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(18,14,8,0.88), rgba(7,5,3,0.72));
    box-shadow: var(--shadow-gold);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.flow-step {
    text-align: center;
}

.flow-step span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-strong));
    color: #140b02;
    font-weight: 800;
}

.flow-step strong {
    display: block;
    color: #fff;
    font-size: 18px;
}

.flow-step p {
    margin: 8px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.flow-arrow {
    color: rgba(246, 200, 106, 0.68);
    font-size: 22px;
}

@media (max-width: 1100px) {
    .nav-link { width: 120px; padding-left: 0; padding-right: 0; }
    .ecosystem-layout { grid-template-columns: 1fr; }
    .solution-card { min-height: auto; }
    .flow-panel { grid-template-columns: 1fr; }
    .flow-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 820px) {
    .ecosystem-section {
        padding-left: 22px;
        padding-right: 22px;
    }
    .section-intro { margin-bottom: 36px; }
    .section-intro p { font-size: 16px; line-height: 1.55; }
    .solution-card { padding: 28px 24px; border-radius: 24px; }
    .flow-panel { padding: 22px; border-radius: 24px; }
}

/* UPDATED CONNECTED ECOSYSTEM DESIGN */
.ecosystem-section {
    max-width: none;
    min-height: 100vh;
    padding-left: max(58px, calc((100vw - 1440px) / 2 + 58px));
    padding-right: max(58px, calc((100vw - 1440px) / 2 + 58px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 46%, rgba(246, 200, 106, 0.18), transparent 18%),
        radial-gradient(circle at 48% 62%, rgba(41, 105, 190, 0.20), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(255, 184, 77, 0.13), transparent 33%),
        linear-gradient(180deg, rgba(2, 12, 28, 0.92) 0%, rgba(1, 8, 18, 0.96) 48%, rgba(3, 2, 1, 0.98) 100%);
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
    border-radius: 0;
    opacity: 1;
    filter: none;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 22%, rgba(246, 200, 106, 0.10), transparent 2px),
        radial-gradient(circle at 83% 18%, rgba(255, 255, 255, 0.12), transparent 1px),
        radial-gradient(circle at 73% 64%, rgba(246, 200, 106, 0.16), transparent 2px),
        radial-gradient(circle at 35% 74%, rgba(255, 255, 255, 0.10), transparent 1px);
    background-size: 220px 220px, 310px 310px, 260px 260px, 180px 180px;
}

.ecosystem-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: min(1500px, 110vw);
    height: 430px;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0;
    border-top: 1px solid rgba(246, 200, 106, 0.52);
    background:
        radial-gradient(ellipse at center top, rgba(61, 120, 205, 0.28), transparent 45%),
        radial-gradient(ellipse at center bottom, rgba(246, 200, 106, 0.13), transparent 55%);
    opacity: 0.86;
    pointer-events: none;
}

.ecosystem-intro {
    position: relative;
    z-index: 3;
    margin-bottom: 26px;
}

.ecosystem-intro h2 span {
    display: block;
    color: var(--gold);
    background: linear-gradient(135deg, #fff0ba, #f6c86a 45%, #bc7418 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecosystem-map {
    position: relative;
    z-index: 3;
    width: min(1200px, 100%);
    min-height: 470px;
    margin: 0 auto;
}

.ecosystem-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.ecosystem-lines path {
    fill: none;
    stroke: rgba(246, 200, 106, 0.82);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(246, 200, 106, 0.65));
}

.ecosystem-lines path::after { content: none; }

.ecosystem-node {
    position: absolute;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px 22px;
    width: 345px;
    padding: 24px 26px 20px;
    border-radius: 22px;
    border: 1px solid rgba(246, 200, 106, 0.58);
    background: linear-gradient(135deg, rgba(5, 17, 34, 0.86), rgba(2, 7, 16, 0.76));
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 34px rgba(246, 200, 106, 0.08);
    backdrop-filter: blur(16px);
}

.ecosystem-node::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(246, 200, 106, 0.95);
}

.ecosystem-wallet {
    left: 6%;
    top: 62px;
}

.ecosystem-wallet::before {
    right: -7px;
    top: 82px;
}

.ecosystem-card-product {
    right: 6%;
    top: 62px;
}

.ecosystem-card-product::before {
    left: -7px;
    top: 82px;
}

.ecosystem-p2p {
    left: 50%;
    top: 285px;
    transform: translateX(-50%);
}

.ecosystem-p2p::before {
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
}

.node-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 18px;
    color: var(--gold-light);
    font-size: 34px;
    background: linear-gradient(135deg, rgba(255, 231, 163, 0.14), rgba(246, 200, 106, 0.05));
    border: 1px solid rgba(246, 200, 106, 0.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.node-copy h3 {
    margin: 4px 0 10px;
    color: #fff;
    font-size: 27px;
    line-height: 1;
}

.node-copy p {
    margin: 0;
    color: #dfd7ca;
    font-size: 15px;
    line-height: 1.55;
}

.node-tags {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-top: 8px;
}

.node-tags span {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 22px;
}

.node-tags b {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.ecosystem-core {
    position: absolute;
    left: 50%;
    top: 62px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 204px;
    height: 204px;
    border-radius: 50%;
    text-align: center;
    background: radial-gradient(circle, rgba(24, 23, 18, 0.96), rgba(2, 7, 16, 0.94));
    border: 1px solid rgba(255, 231, 163, 0.84);
    box-shadow:
        0 0 52px rgba(246, 200, 106, 0.36),
        inset 0 0 32px rgba(246, 200, 106, 0.08);
}

.ecosystem-core::before,
.ecosystem-core::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(246, 200, 106, 0.95);
}

.ecosystem-core::before { left: -7px; top: 86px; }
.ecosystem-core::after { right: -7px; top: 86px; }

.core-orbit {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 1px solid rgba(246, 200, 106, 0.28);
}

.ecosystem-core img {
    width: 118px;
    height: auto;
    margin-top: 12px;
    filter: drop-shadow(0 0 14px rgba(246, 200, 106, 0.26));
}

.ecosystem-core strong {
    display: block;
    margin-top: -26px;
    color: #fff;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 500;
}

.ecosystem-flow {
    position: relative;
    z-index: 4;
    width: min(1320px, 100%);
    margin: auto 0;
    padding: 42px 34px 34px;
    border-radius: 22px;
    border: 1px solid rgba(246, 200, 106, 0.68);
    background: linear-gradient(135deg, rgba(11, 14, 16, 0.91), rgba(5, 8, 12, 0.82));
    box-shadow: 0 26px 88px rgba(0,0,0,0.45), 0 0 34px rgba(246, 200, 106, 0.09);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 22px;
    align-items: center;
}

.flow-label {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    padding: 6px 28px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(16, 14, 10, 0.98), rgba(2, 7, 16, 0.98));
    color: var(--gold-light);
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 0 22px rgba(246, 200, 106, 0.14);
}

.flow-item {
    position: relative;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 18px;
    align-items: center;
}

.flow-number {
    position: absolute;
    left: -3px;
    top: 6px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #130b02;
    font-size: 13px;
    font-weight: 900;
}

.flow-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 33px;
    background: linear-gradient(135deg, rgba(246, 200, 106, 0.16), rgba(8, 14, 22, 0.86));
    border: 1px solid rgba(246, 200, 106, 0.62);
}

.flow-item strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
}

.flow-item p {
    margin: 8px 0 0;
    color: #d0c9bd;
    font-size: 14px;
    line-height: 1.55;
}

.flow-divider {
    color: var(--gold-light);
    font-size: 22px;
    filter: drop-shadow(0 0 8px rgba(246, 200, 106, 0.45));
}

@media (max-width: 1180px) {
    .ecosystem-map {
        display: grid;
        gap: 22px;
        min-height: auto;
    }

    .ecosystem-lines,
    .ecosystem-node::before,
    .ecosystem-core::before,
    .ecosystem-core::after,
    .core-orbit {
        display: none;
    }

    .ecosystem-node,
    .ecosystem-core {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    .ecosystem-core {
        order: -1;
        width: 220px;
        height: 220px;
        justify-self: center;
    }

    .ecosystem-flow {
        grid-template-columns: 1fr;
        width: min(720px, 100%);
    }

    .flow-divider {
        transform: rotate(90deg);
        justify-self: center;
    }
}

@media (max-width: 820px) {
    .ecosystem-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ecosystem-intro {
        margin-bottom: 28px;
    }

    .ecosystem-node {
        grid-template-columns: 62px 1fr;
        padding: 20px;
    }

    .node-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
        border-radius: 16px;
    }

    .node-copy h3 {
        font-size: 23px;
    }

    .node-copy p {
        font-size: 14px;
    }

    .node-tags b {
        font-size: 12px;
    }

    .ecosystem-core {
        width: 190px;
        height: 190px;
    }

    .ecosystem-flow {
        padding: 38px 20px 22px;
    }

    .flow-label {
        font-size: 20px;
    }

    .flow-item {
        grid-template-columns: 70px 1fr;
    }

    .flow-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
}


/* FIXED ECOSYSTEM SPACING + CONNECTED DOTS */
.ecosystem-section {
    padding-top: 112px;
    padding-bottom: 78px;
}

.ecosystem-intro {
    margin-bottom: 34px;
}

.ecosystem-map {
    width: min(1320px, 100%);
    min-height: 600px;
}

.ecosystem-lines {
    inset: 0;
}

.ecosystem-lines path {
    stroke: rgba(255, 222, 139, 0.96);
    stroke-width: 2.4;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(246, 200, 106, 0.72));
}

.ecosystem-node {
    width: 370px;
    min-height: 214px;
    padding: 25px 28px 21px;
    border-radius: 24px;
}

.ecosystem-wallet {
    left: 40px;
    top: 105px;
}

.ecosystem-wallet::before {
    right: -8px;
    top: 106px;
}

.ecosystem-card-product {
    right: 40px;
    top: 105px;
}

.ecosystem-card-product::before {
    left: -8px;
    top: 106px;
}

.ecosystem-p2p {
    left: 50%;
    top: 412px;
    transform: translateX(-50%);
}

.ecosystem-p2p::before {
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
}

.ecosystem-core {
    top: 120px;
    width: 220px;
    height: 220px;
}

.ecosystem-core::before,
.ecosystem-core::after,
.ecosystem-node::before,
.core-dot {
    width: 14px;
    height: 14px;
    background: #ffe49a;
    box-shadow: 0 0 22px rgba(246, 200, 106, 1), 0 0 42px rgba(246, 200, 106, 0.35);
}

.ecosystem-core::before {
    left: -8px;
    top: 92px;
}

.ecosystem-core::after {
    right: -8px;
    top: 92px;
}

.core-dot {
    position: absolute;
    display: block;
    border-radius: 50%;
    z-index: 3;
}

.core-dot-bottom {
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}

.core-orbit {
    inset: -16px;
    border-color: rgba(246, 200, 106, 0.38);
}

.ecosystem-flow {
    margin-top: 150px;
}

@media (max-width: 1280px) {
    .ecosystem-map {
        width: min(1120px, 100%);
        min-height: 600px;
    }

    .ecosystem-node {
        width: 330px;
        grid-template-columns: 74px 1fr;
        gap: 16px 20px;
    }

    .ecosystem-wallet { left: 0; }
    .ecosystem-card-product { right: 0; }
    .ecosystem-core { width: 200px; height: 200px; }

    .ecosystem-core::before { top: 84px; }
    .ecosystem-core::after { top: 84px; }

    .ecosystem-lines {
        display: none;
    }

    .ecosystem-wallet::after,
    .ecosystem-card-product::after,
    .ecosystem-p2p::after {
        content: "";
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, rgba(255,226,150,0), rgba(255,226,150,0.9), rgba(255,226,150,0));
        filter: drop-shadow(0 0 8px rgba(246,200,106,0.55));
        pointer-events: none;
    }

    .ecosystem-wallet::after {
        left: 100%;
        top: 112px;
        width: calc((100vw - 330px - 200px) / 2 - 72px);
        min-width: 72px;
    }

    .ecosystem-card-product::after {
        right: 100%;
        top: 112px;
        width: calc((100vw - 330px - 200px) / 2 - 72px);
        min-width: 72px;
    }

    .ecosystem-p2p::after {
        left: 50%;
        bottom: 100%;
        width: 2px;
        height: 72px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(255,226,150,0), rgba(255,226,150,0.9), rgba(255,226,150,0));
    }
}

@media (max-width: 1180px) {
    .ecosystem-map {
        display: grid;
        gap: 22px;
        min-height: auto;
    }

    .ecosystem-wallet::after,
    .ecosystem-card-product::after,
    .ecosystem-p2p::after,
    .core-dot-bottom {
        display: none;
    }
}

/* ECOSYSTEM BACKGROUND IMAGE VERSION
   Put ecosystem-background.png inside your /img folder.
   Expected path: /img/ecosystem-background.png
*/
.ecosystem-section {
    position: relative;
    overflow: hidden;
    background-image: url("../img/ecosystem-background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
    border-radius: 0;
    opacity: 1;
    filter: none;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.28) 44%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(circle at 50% 42%, rgba(246, 200, 106, 0.13), transparent 28%);
}

.ecosystem-section::after {
    display: none;
}

.ecosystem-section > * {
    position: relative;
    z-index: 1;
}

.ecosystem-map,
.ecosystem-flow,
.ecosystem-intro {
    position: relative;
    z-index: 2;
}

@media (max-width: 820px) {
    .ecosystem-section {
        background-position: center top;
    }
}

/* HOME FOUR-SECTION REFRESH */
.card-section,
.features-section,
.ecosystem-section {
    max-width: none;
    padding-left: max(58px, calc((100vw - 1440px) / 2 + 58px));
    padding-right: max(58px, calc((100vw - 1440px) / 2 + 58px));
}

.card-section {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(390px, 0.94fr);
    gap: min(9vw, 108px);
    background: linear-gradient(180deg, #342605 0%, #181924 98%, #181924 100%);
    padding-top: 270px;
}


.card-section::after {
    content: "";
    position: absolute;
    inset: -1px 0 auto;
    height: 170px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, #342605 0%, rgba(52, 38, 5, 0.86) 34%, rgba(52, 38, 5, 0) 100%);
}

.card-device,
.card-copy {
    position: relative;
    z-index: 2;
}

.card-device {
    min-height: 610px;
}

.placeholder-phone,
.card-phone-image {
    position: absolute;
    left: 10%;
    top: 0;
    width: min(330px, 46vw);
}

.placeholder-phone {
    aspect-ratio: 330 / 590;
    padding: 34px 26px 26px;
    border: 5px solid #050505;
    border-radius: 46px 46px 0 0;
    background: linear-gradient(180deg, #252525, #111);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.62);
}

.card-phone-image {
    height: auto;
    padding-top: 47px;
}

.placeholder-phone::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 86px;
    height: 7px;
    border-radius: 999px;
    background: #050505;
    transform: translateX(-50%);
}

.placeholder-bar {
    width: 74%;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.placeholder-logo {
    margin: 22px 0 30px;
    color: #d9ba73;
    font-size: 24px;
    font-weight: 700;
}

.placeholder-balance {
    width: 56%;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0.86), rgba(255,255,255,0.36));
}

.placeholder-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 42px 0 34px;
}

.placeholder-actions span {
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
}

.placeholder-actions span:first-child {
    background: #ff940e;
}

.placeholder-list {
    display: grid;
    gap: 14px;
}

.placeholder-list span {
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(246, 200, 106, 0.26);
    background: rgba(255,255,255,0.08);
}

.placeholder-card {
    position: absolute;
    left: 38%;
    bottom: 76px;
    width: min(330px, 48vw);
    aspect-ratio: 330 / 190;
    padding: 0;
    border-radius: 14px;
    background: transparent;
    border: 0;
    overflow: hidden;
}

.placeholder-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-copy {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    top: 30%;
    z-index: 999;
}

.card-copy h2 {
    width: 620px;
    margin: 0;
    color: #fff;
    font-size: 55px;
    line-height: 1.13;
    font-weight: 600;
    letter-spacing: 0;
    z-index: 999;
}

.card-copy p {
    width: 400px;
    margin: 34px 0 0;
    color: #b3b3b3;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    z-index: 999;
}

.coin {
    position: absolute;
    display: block;
    height: auto;
    object-fit: contain;
}

.coin-usdc {
    top: -10%;
    left: -12%;
    width: 62px;
}

.coin-bnb {
    top: -20%;
    right: 35%;
    width: 89px;
}

.coin-tron {
    left: -27%;
    top: 33%;
    width: 97px;
}

.coin-usdt {
    right: 36%;
    bottom: 30%;
    width: 120px;
}

.coin-eth {
    right: 0;
    top: 28%;
    width: 174px;
}

.home-section-heading {
    position: relative;
    z-index: 999;
    width: min(860px, 100%);
    margin: 0 auto 58px;
    text-align: center;
}

.home-section-heading span {
    display: inline-flex;
    color: var(--gold);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-section-heading h2 {
    margin: 14px auto 0;
    color: #fff;
    font-size: 55px;
    line-height: 1.04;
    letter-spacing: 0;
}

.home-section-heading p {
    margin: 20px auto 0;
    width: min(650px, 100%);
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}

.features-section {
    --features-base-height: 910px;
    --features-scale: 1;
    --features-card-scale: 1;
    --features-visible-height: var(--features-base-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #181924 0%, #3C3C43 98%, #3C3C43 100%);
}

.features-section::before {
    content: "";
    position: absolute;
    inset: -1px 0 auto;
    height: 180px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, #181924 0%, rgba(24, 25, 36, 0) 100%);
}

.features-bg-transition {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, #3C3C43 0%, #000 98%, #000 100%);
}

.features-pin {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: var(--features-visible-height);
    flex-direction: column;
    justify-content: center;
}

.features-scale-shell {
    width: 100%;
    height: var(--features-visible-height);
}

.features-scale-frame {
    width: 100%;
    min-height: var(--features-base-height);
}

.features-section .home-section-heading {
    margin-bottom: 24px;
}

.features-section .home-section-heading h2 {
    width: min(680px, 100%);
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.18;
}

.feature-title-stack {
    position: relative;
    z-index: 3;
    width: min(760px, 100%);
    min-height: 170px;
    margin: 0 auto 24px;
    text-align: center;
}

.feature-title-panel {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    color: #fff;
    font-size: 55px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: 0;
}

.feature-title-panel[data-feature-panel="1"] {
    opacity: 0;
    visibility: hidden;
}

.features-showcase {
    position: relative;
    z-index: 2;
    width: min(1280px, 100%);
    min-height: 640px;
    margin: 0 auto;
}

.feature-card-set {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.feature-card-set-love {
    opacity: 0;
    visibility: hidden;
}

.features-device {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 430px;
    height: 560px;
    transform: translateX(-50%);
    z-index: 4;
}

.features-phone-image {
    position: absolute;
    left: 66px;
    top: 4px;
    width: 314px;
    height: 609px;
}

.features-card {
    position: absolute;
    right: 69px;
    bottom: 69px;
    z-index: 5;
    width: 404px;
    height: 263px;
    padding: 0;
    border-radius: 14px;
    background: transparent;
    border: 0;
    overflow: hidden;
    transform: scale(var(--features-card-scale));
    transform-origin: center center;
}

.features-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-mobile-layout {
    display: none;
}

.features-section .feature-item {
    position: absolute;
    z-index: 3;
    display: grid;
    justify-items: center;
    align-content: center;
    width: 300px;
    min-height: 174px;
    padding: 24px 22px;
    border: 0;
    border-radius: 26px;
    text-align: center;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.features-section .feature-item:hover {
    transform: none;
    border-color: transparent;
}

.features-section .feature-item > img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 0 18px;
    object-fit: contain;
}

.features-section .feature-item h2 {
    margin: 0;
    color: #f7f7f7;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
}

.features-section .feature-item p {
    margin: 20px auto 0;
    max-width: 265px;
    color: #e6e6e6;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 200;
}

.feature-instant {
    left: 6.5%;
    top: 10px;
    width: 400px !important;
}

.feature-fiat {
    right: calc(18.4% - 100px);
    top: -8px;
    width: 400px !important;
}

.feature-custodian {
    left: -2.5%;
    top: 242px;
    width: 400px !important;
}

.feature-virtual {
    right: 6.2%;
    top: 222px;
    width: 400px !important;
}

.feature-wallet {
    left: 14.5%;
    bottom: -50px;
    width: 400px !important;
}

.feature-global {
    right: -12%;
    bottom: -40px;
    width: 400px !important;
}

.feature-global p, .feature-wallet p, .feature-virtual p, .feature-custodian p, .feature-instant p, .feature-fiat p{
    max-width: 350px !important;
}

@media (min-width: 821px) {
    .features-scale-shell {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .features-scale-frame {
        flex: 0 0 100%;
        transform: scale(var(--features-scale));
        transform-origin: top center;
    }
}

.testimonial-card {
    position: absolute;
    z-index: 3;
    width: 400px;
    min-height: 108px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    color: #f5f5f5;
    backdrop-filter: blur(10px);
}

.testimonial-card .avatar {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 50%;
    color: #757575;
    font-size: 15px;
    font-weight: 400;
    vertical-align: middle;
}

.avatar-blue {
    background: #1fc4ee;
}

.avatar-pink {
    background: #ffd4ef;
}

.avatar-gold {
    background: #ffbf30;
}

.avatar-mint {
    background: #d9ffe8;
}

.testimonial-card h3 {
    display: inline;
    margin: 0;
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
}

.testimonial-card p {
    margin: 10px 0 0;
    color: #e6e6e6;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 200;
}

.testimonial-peter {
    left: 6.5%;
    top: 32px;
    width: 420px !important;
}

.testimonial-cathy {
    right: calc(21.6% - 180px);
    top: 84px;
    width: 420px !important;
}

.testimonial-elena {
    left: 9.6%;
    top: 250px;
    width: 420px !important;
}

.testimonial-richard {
    right: 3.8%;
    top: 280px;
    width: 420px !important;
}

.testimonial-tommy {
    left: 11%;
    bottom: 42px;
    width: 420px !important;
}

.testimonial-edward {
    right: -15%;
    bottom: -40px;
    width: 420px !important;
    min-height: 126px;
}

.ecosystem-section {
    min-height: calc(100vh - 86px);
    background: #000;
}

.ecosystem-section::after {
    display: none;
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 28%, rgba(246, 200, 106, 0.08), transparent 28%),
        radial-gradient(circle at 50% 78%, rgba(82, 118, 185, 0.10), transparent 34%);
    animation: section-breathe 11s ease-in-out infinite;
}

.ecosystem-cards {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.ecosystem-card {
    padding: 22px 22px 30px;
    border: 1px solid rgba(246, 200, 106, 0.18);
    border-radius: 8px;
    background: rgba(255,255,255,0.045);
    box-shadow: var(--shadow-gold);
}

.ecosystem-visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 28px;
    border-radius: 8px;
}

.placeholder-visual {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(246, 200, 106, 0.18);
    background:
        linear-gradient(135deg, rgba(246, 200, 106, 0.26), rgba(255,255,255,0.04) 36%, rgba(28, 78, 153, 0.22)),
        #111;
}

.placeholder-visual::before,
.placeholder-visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,0.36);
}

.placeholder-visual::before {
    left: 24px;
    top: 26px;
    width: 46%;
    height: 12px;
}

.placeholder-visual::after {
    left: 24px;
    top: 54px;
    width: 68%;
    height: 12px;
    opacity: 0.48;
}

.ecosystem-card h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}

.ecosystem-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.site-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 86px;
    align-items: center;
    background: #030201;
}

.global-footer {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    min-height: auto;
    padding: 80px max(42px, calc((100vw - 1440px) / 2 + 42px)) 34px;
    color: #fff;
    background: #000;
}

.global-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.06), transparent 34%);
    animation: section-breathe 12s ease-in-out infinite;
}

.global-footer > * {
    position: relative;
    z-index: 1;
}

@keyframes section-breathe {
    0%, 100% {
        opacity: 0.54;
        transform: scale(1);
    }
    50% {
        opacity: 0.92;
        transform: scale(1.035);
    }
}

.footer-download {
    width: min(1040px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    gap: 90px;
}

.footer-phone {
    position: relative;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-phone-image {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.72));
}

.footer-download-copy {
    display: grid;
    justify-items: center;
    text-align: center;
}

.footer-download-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 55px;
    line-height: 1.24;
    font-weight: 600;
    letter-spacing: 0;
}

.footer-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 52px;
    min-width: 220px;
    min-height: 64px;
    padding: 0 30px;
    border-radius: 24px;
    background: #ff850a;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-download-button:hover {
    transform: translateY(-2px);
    background: #ff951f;
}

.footer-partners {
    width: min(820px, 100%);
    margin: 140px auto 0;
    text-align: center;
}

.footer-partners h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: min(11vw, 130px);
    margin-top: 62px;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.partner-logo-image {
    display: block;
    width: auto;
    max-width: min(240px, 32vw);
    max-height: 82px;
}

.partner-starlion {
    min-width: 220px;
}

.partner-wiz {
    min-width: 180px;
}

.footer-links {
    width: min(1280px, 100%);
    margin: 132px auto 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.15fr 1fr;
    gap: 70px;
    align-items: start;
}

.footer-brand-block {
    display: grid;
    min-height: 118px;
}

.footer-brand {
    display: inline-flex;
    width: fit-content;
}

.footer-brand img {
    width: 118px;
    height: auto;
}

.footer-brand-block p {
    align-self: end;
    margin: 58px 0 0;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 1.3;
}

.footer-link-column {
    display: grid;
    gap: 16px;
}

.footer-link-column a {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.1;
    transition: color 0.2s ease;
}

.footer-link-column a:hover {
    color: var(--gold-light);
}

@media (max-width: 1120px) {
    .card-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 110px;
    }

    .card-device {
        order: 2;
        min-height: 520px;
    }

    .card-copy {
        min-height: auto;
        text-align: center;
        align-items: center;
    }

    .coin-usdc { left: 7%; top: 2%; }
    .coin-bnb { right: 10%; top: 4%; }
    .coin-tron { left: 3%; top: 64%; }
    .coin-eth { right: 5%; top: 60%; }
    .coin-usdt { right: 26%; bottom: -72px; }
}

@media (max-width: 820px) {
    .card-section,
    .features-section,
    .ecosystem-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .card-section {
        min-height: auto;
        padding-bottom: 78px;
    }

    .card-copy h2 {
        font-size: 40px;
    }

    .card-copy p {
        font-size: 17px;
        line-height: 1.45;
    }

    .coin-usdc { width: 42px; }
    .coin-bnb { width: 60px; }
    .coin-tron { width: 66px; }
    .coin-usdt { width: 82px; }
    .coin-eth { width: 118px; }

    .card-device {
        min-height: 430px;
    }

    .placeholder-phone {
        left: 4%;
        width: 58vw;
        min-width: 220px;
    }

    .card-phone-image {
        left: 4%;
        width: 58vw;
        min-width: 220px;
    }

    .placeholder-card {
        left: 36%;
        bottom: 52px;
        width: 58vw;
        min-width: 230px;
    }

    .features-showcase,
    .ecosystem-cards {
        grid-template-columns: 1fr;
    }

    .features-showcase {
        display: grid;
        gap: 18px;
        min-height: auto;
    }

    .features-pin {
        min-height: auto;
    }

    .features-scale-shell {
        height: auto;
    }

    .features-scale-frame {
        min-height: auto;
        transform: none;
    }

    .feature-title-stack {
        display: grid;
        gap: 44px;
        min-height: auto;
        margin-bottom: 34px;
    }

    .feature-title-panel {
        position: relative;
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .feature-card-set {
        position: relative;
        inset: auto;
        display: grid;
        gap: 18px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .feature-card-set-love {
        margin-top: 42px;
    }

    .features-device,
    .features-section .feature-item,
    .testimonial-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .features-device {
        order: -1;
        justify-self: center;
        width: min(430px, 100%);
        height: 510px;
    }

    .features-phone-image {
        left: 46px;
        width: 230px;
    }

    .features-card {
        width: min(300px, 78vw);
        height: 172px;
        right: 10px;
        bottom: 22px;
    }

    .features-section .feature-item {
        width: 100%;
        min-height: auto;
        padding: 30px 24px;
    }

    .testimonial-card {
        width: 100%;
        min-height: auto;
    }

    .home-section-heading {
        margin-bottom: 36px;
    }

    .site-footer {
        flex-wrap: wrap;
        padding: 24px 22px;
    }

    .global-footer {
        padding: 66px 22px 34px;
    }

    .footer-download {
        grid-template-columns: 1fr;
        gap: 42px;
        justify-items: center;
    }

    .footer-phone {
        width: min(300px, 78vw);
    }

    .partner-logo-image {
        max-width: min(220px, 58vw);
        max-height: 72px;
    }

    .footer-download-button {
        margin-top: 32px;
        min-width: 190px;
        min-height: 56px;
        border-radius: 20px;
        font-size: 20px;
    }

    .footer-partners {
        margin-top: 90px;
    }

    .partner-logos {
        flex-direction: column;
        gap: 48px;
        margin-top: 46px;
    }

    .footer-links {
        margin-top: 88px;
        grid-template-columns: 1fr 1fr;
        gap: 42px 32px;
    }

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

@media (max-width: 430px) {
    .card-copy h2 {
        font-size: 34px;
    }

    .placeholder-phone {
        width: 64vw;
    }

    .card-phone-image {
        width: 64vw;
    }

    .placeholder-card {
        left: 24%;
        width: 68vw;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ECOSYSTEM PAGE HERO */

.ecosystem-page .global-footer {
    background: linear-gradient(to bottom, #181924 0%, #000000 100%);
}

.ecosystem-hero {
    align-items: center;
    gap: 10px;
    min-height: 100vh;
    padding-top: 96px;
    padding-bottom: 42px;
    background: linear-gradient(to bottom, #000000 0%, #342605 100%);
}

.ecosystem-hero::after {
    height: 120px;
    background: linear-gradient(180deg, rgba(52, 38, 5, 0) 0%, #342605 82%, #342605 100%);
}

.ecosystem-hero-visual {
    flex: 1.08 1 0;
    max-width: 58vw;
    min-height: min(650px, calc(100vh - 108px));
    justify-content: flex-start;
}

.ecosystem-visual-stage {
    width: min(720px, 54vw, calc((100vh - 118px) * 1.18));
    aspect-ratio: 720 / 560;
}

.ecosystem-visual-stage .phone-image {
    left: 45%;
    top: 80%;
    width: 336px;
    z-index: 3;
}

.ecosystem-visual-stage .card-image {
    display: none;
}

.ecosystem-visual-stage .float-pill {
    z-index: 4;
}

.ecosystem-visual-stage .float-topup {
    left: -12%;
    right: auto;
    top: 35%;
}

.ecosystem-visual-stage .float-subscription {
    left: -8%;
    top: 68%;
    animation-delay: -1.3s;
}

.ecosystem-visual-stage .float-coffee {
    left: -15%;
    right: auto;
    top: 95%;
}

.ecosystem-visual-stage .float-jack {
    left: 60%;
    top: 52%;
}

.ecosystem-visual-stage .float-shopping {
    left: 70%;
    top: 91%;
}

.ecosystem-hero-copy {
    flex: 0 1 620px;
    width: min(620px, 100%);
    margin-top: 100px;
    max-width: 620px;
    align-items: flex-start;
    justify-content: center;
    min-height: min(650px, calc(100vh - 108px));
}

.ecosystem-hero-copy h1 {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: 0;
    width: 620px;

}

.ecosystem-hero-copy p {
    width: 620px;
    margin: 54px 0 54px;
    color: #cfcfcf;
    font-size: 20px;
    line-height: 1.28;
}

.ecosystem-hero-card {
    display: block;
    width: min(360px, 66%);
    height: auto;
    margin-left: 92px;
    border-radius: 14px;
    filter:
        drop-shadow(0 20px 34px rgba(0, 0, 0, 0.52))
        drop-shadow(0 0 24px rgba(246, 200, 106, 0.74));
}

@media (max-width: 1180px) {
    .ecosystem-hero {
        gap: 20px;
    }

    .ecosystem-hero-visual {
        max-width: 54vw;
    }

    .ecosystem-visual-stage .float-pill {
        gap: 12px;
        padding: 7px 16px;
        font-size: 14px;
    }

    .ecosystem-visual-stage .pill-image {
        width: 42px;
        height: 42px;
    }

    .ecosystem-hero-card {
        margin-left: 38px;
    }
}

@media (min-width: 821px) and (max-width: 1499px) {
    .ecosystem-page .ecosystem-hero {
        gap: clamp(6px, 0.667vw, 10px);
        padding-left: max(32px, calc((100vw - 1440px) / 2 + 58px));
        padding-right: max(32px, calc((100vw - 1440px) / 2 + 58px));
    }

    .ecosystem-page .ecosystem-hero-visual {
        flex: 1 1 clamp(403px, 48vw, 706px);
        max-width: min(52vw, clamp(403px, 48vw, 706px));
        min-height: min(clamp(364px, 43.333vw, 637px), calc(100vh - 108px));
    }

    .ecosystem-page .ecosystem-visual-stage {
        width: min(clamp(403px, 48vw, 706px), 50vw, calc((100vh - 118px) * 1.18));
    }

    .ecosystem-page .ecosystem-visual-stage .phone-image {
        width: clamp(188px, 22.4vw, 329px);
    }

    .ecosystem-page .ecosystem-visual-stage .float-pill {
        gap: clamp(14px, 1.8vw, 24px);
        padding: clamp(7px, 0.72vw, 9px) clamp(18px, 2.2vw, 29px);
        border-radius: clamp(10px, 0.933vw, 14px);
        font-size: clamp(14px, 1.45vw, 19px);
    }

    .ecosystem-page .ecosystem-visual-stage .pill-image {
        width: clamp(40px, 3.7vw, 51px);
        height: clamp(40px, 3.7vw, 51px);
    }

    .ecosystem-page .ecosystem-hero-copy {
        flex-basis: clamp(347px, 41.333vw, 608px);
        width: clamp(347px, 41.333vw, 608px);
        max-width: clamp(347px, 41.333vw, 608px);
        min-height: min(clamp(364px, 43.333vw, 637px), calc(100vh - 108px));
    }

    .ecosystem-page .ecosystem-hero-copy h1 {
        width: clamp(347px, 41.333vw, 608px);
        font-size: clamp(31px, 3.667vw, 54px);
    }

    .ecosystem-page .ecosystem-hero-copy p {
        width: clamp(347px, 41.333vw, 608px);
        margin: clamp(30px, 3.6vw, 53px) 0;
        font-size: clamp(13px, 1.333vw, 20px);
    }

    .ecosystem-page .ecosystem-hero-card {
        width: clamp(202px, 24vw, 353px);
        margin-left: clamp(52px, 6.133vw, 90px);
    }
}

@media (max-width: 820px) {
    .ecosystem-hero {
        display: flex;
        flex-direction: column-reverse;
        gap: 26px;
        min-height: auto;
        padding-top: 112px;
    }

    .ecosystem-hero-copy {
        align-items: center;
        min-height: auto;
        text-align: center;
    }

    .ecosystem-hero-copy h1 {
        font-size: 40px;
    }

    .ecosystem-hero-copy p {
        margin: 24px 0 28px;
        font-size: 16px;
    }

    .ecosystem-hero-card {
        width: min(310px, 84vw);
        margin-left: 0;
    }

    .ecosystem-hero-visual {
        width: 100%;
        max-width: none;
        min-height: 0;
        margin-top: 0;
    }

    .ecosystem-visual-stage {
        width: min(620px, 100%);
        aspect-ratio: 720 / 620;
    }

    .ecosystem-visual-stage .float-topup {
        left: 1%;
        top: 22%;
    }

    .ecosystem-visual-stage .float-subscription {
        left: 8%;
        top: 48%;
    }

    .ecosystem-visual-stage .float-coffee {
        left: 0;
        top: 68%;
    }

    .ecosystem-visual-stage .float-jack {
        left: 55%;
        top: 36%;
    }

    .ecosystem-visual-stage .float-shopping {
        left: 55%;
        top: 61%;
    }
}

.ecosystem-network-section {
    max-width: none;
    min-height: 100vh;
    padding-top: 72px;
    padding-bottom: 70px;
    padding-left: max(36px, calc((100vw - 1440px) / 2 + 36px));
    padding-right: max(36px, calc((100vw - 1440px) / 2 + 36px));
    display: grid;
    place-items: center;
    background: linear-gradient(to bottom, #342605 0%, #181924 100%);
}

.ecosystem-network-section::before {
    display: none;
}

.ecosystem-network-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 170px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(24, 25, 36, 0), #181924 82%);
}

.ecosystem-network-stage {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    height: min(690px, calc(100vh - 142px));
    min-height: 560px;
}

/* ABOUT PAGE */
.about-page {
    background: #050301;
}

.about-page .global-footer {
    background: linear-gradient(to bottom, #181924 0%, #000 100%);
}

.about-hero {
    position: relative;
    min-height: 982px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.12)),
        #090704;
}

.about-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        url("../img/about-hero.png") center / cover no-repeat;
}

.about-photo {
    display: none;
}

.about-photo-one {
    grid-column: 1;
    grid-row: 1;
}

.about-photo-two {
    grid-column: 2;
    grid-row: 1;
    clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
    margin-left: -8%;
    margin-right: -8%;
}

.about-photo-three {
    grid-column: 3;
    grid-row: 1;
}

.about-photo-four {
    grid-column: 1 / span 2;
    grid-row: 2;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.about-photo-five {
    grid-column: 2 / span 2;
    grid-row: 2;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -10%;
}

.about-hero-grid {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: min(1120px, calc(100% - 170px));
    height: 100vh;
    min-height: 680px;
    margin: 0 auto;
    padding-top: 120px;
    gap: 20px;
}

.about-panel {
    display: flex;
    flex-direction: column;
    flex: 0 1 calc(50% - 20px);
    padding: 20px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
}

.about-hero-grid::after {
    content: "";
    flex: 0 0 calc(50% - 20px);
    order: 1;
}

.about-panel h1,
.about-panel h2 {
    margin: 0;
    color: #fff;
    font-size: 50px;
    line-height: 67px;
    font-weight: 400;
    letter-spacing: 0;
}


.about-panel p {
    margin: 10px 0 0;
    color: #b3b3b3;
    font-size: 20px;
    line-height:24px;
}

.about-panel-intro {
    order: 0;
    height: 267px;
    padding-bottom: 16px;
}

.about-panel-intro p {
    max-width: 500px;
}

.about-panel-mission {
    order: 2;
    height: 245px;
}

.about-panel-mission p {
    max-width: 440px;
}

.about-panel-vision {
    order: 3;
    height: 245px;
}

.about-panel-contact {
    order: 4;
    height: 220px;
}

.about-panel-contact address {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    color: #b3b3b3;
    font-style: normal;
    font-size: 20px;
    line-height: 1.16;
}

.about-panel-contact a,
.about-panel-contact address > span {
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-panel-contact img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.about-assurance-section {
    position: relative;
    overflow: hidden;
    padding: 88px max(36px, calc((100vw - 1360px) / 2 + 36px)) 104px;
    background: linear-gradient(180deg, #342605 0%, #181924 100%);
}

.about-assurance-shell {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.about-assurance-shell > h2 {
    margin: 0 0 36px;
    color: #fff;
    font-size: clamp(42px, 4.8vw, 50px);
    line-height: 1;
    font-weight: 400;
}

.about-assurance-stage {
    position: relative;
    min-height: 760px;
}

.about-assurance-phone-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(310px, 26vw);
}

.about-assurance-phone {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.6));
}

.about-assurance-card {
    position: absolute;
    z-index: 1;
    width: 300px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(60, 60, 67, 0.29);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-assurance-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.16;
    font-weight: 600;
}

.about-assurance-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
}

.about-assurance-icon {
    display: block;
    width: auto;
    height: 50px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.about-assurance-icon-pcidss {
    width: 122px;
    height: auto;
    margin-bottom: 16px;
}

.about-assurance-card-pcidss {
    left: 2.5%;
    top: 72px;
}

.about-assurance-card-custodian {
    right: 5%;
    top: 46px;
}

.about-assurance-card-wallet {
    left: 2.5%;
    bottom: 84px;
}

.about-assurance-certificate {
    right: 9%;
    bottom: 86px;
    position: absolute;
    z-index: 1;
    margin: 0;
}

.about-assurance-certificate img {
    display: block;
    width: 191px;
    height: 262px;
    object-fit: contain;
}

@media (max-width: 980px) {
    .about-hero::after {
        background:
            linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)) 0 40% / 100% 1px no-repeat,
            linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)) 0 66% / 100% 1px no-repeat;
    }

    .about-hero-media {
        background-position: center top;
    }

    .about-hero-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 42px;
        width: min(720px, calc(100% - 44px));
        height: auto;
        min-height: 100vh;
        padding: 112px 0 62px;
    }

    .about-panel,
    .about-panel-intro,
    .about-panel-mission,
    .about-panel-vision,
    .about-panel-contact {
        flex: 0 1 auto;
        width: 100%;
        height: auto;
        min-height: 250px;
        max-width: 560px;
    }

    .about-panel p {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.35;
    }

    .about-assurance-section {
        padding: 72px 22px 80px;
    }

    .about-assurance-shell > h2 {
        margin-bottom: 28px;
        font-size: 42px;
    }

    .about-assurance-stage {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .about-assurance-phone-wrap,
    .about-assurance-card,
    .about-assurance-certificate {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .about-assurance-phone-wrap {
        order: 0;
        width: min(300px, 72vw);
        margin: 0 auto 10px;
    }

    .about-assurance-card {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .about-assurance-certificate {
        justify-self: center;
    }

    .about-assurance-certificate img {
        width: min(191px, 52vw);
        height: auto;
    }
}

@media (max-width: 520px) {
    .about-hero-grid {
        gap: 34px;
        width: calc(100% - 36px);
        padding-top: 96px;
    }

    .about-panel h1,
    .about-panel h2 {
        font-size: 34px;
    }

    .about-panel-contact address {
        font-size: 13px;
    }

    .about-assurance-shell > h2 {
        font-size: 34px;
    }

    .about-assurance-card {
        padding: 18px;
    }
}

.ecosystem-network-stage:not(.network-bloom-ready) .network-phone,
.ecosystem-network-stage:not(.network-bloom-ready) .network-lines,
.ecosystem-network-stage:not(.network-bloom-ready) .network-core,
.ecosystem-network-stage:not(.network-bloom-ready) .network-node,
.ecosystem-network-stage:not(.network-bloom-ready) .network-brand,
.ecosystem-network-stage:not(.network-bloom-ready) .network-orb,
.ecosystem-network-stage:not(.network-bloom-ready) .network-mark,
.ecosystem-network-stage:not(.network-bloom-ready) .network-logo {
    opacity: 0;
}

.network-bloom-ready .network-phone {
    animation: network-phone-bloom 1.45s cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.network-bloom-ready .network-lines {
    animation: network-lines-bloom 0.2s ease-out 0.72s both;
}

.network-bloom-ready .network-line-base {
    animation: network-line-draw 1.05s cubic-bezier(0.22, 0.72, 0.2, 1) 0.72s both;
}

.network-lines-settled .network-line-base {
    animation: none;
    stroke-dashoffset: 0;
}

.network-line-beam {
    opacity: 0;
}

.network-lines-settled .network-line-beam {
    animation: network-beam-travel 7.5s linear var(--beam-delay, 0s) infinite;
}

.network-bloom-ready .network-brand,
.network-bloom-ready .network-orb,
.network-bloom-ready .network-logo {
    animation:
        network-item-bloom 1.15s cubic-bezier(0.16, 0.84, 0.22, 1) both,
        network-icon-float 4.8s ease-in-out calc(1.35s + var(--float-delay, 0s)) infinite;
    animation-delay: var(--bloom-delay, 0.16s), calc(1.35s + var(--float-delay, 0s));
}

.network-bloom-ready .network-core {
    animation: network-core-bloom 0.72s cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.network-bloom-ready .network-node,
.network-bloom-ready .network-mark {
    animation: network-item-bloom 1.15s cubic-bezier(0.16, 0.84, 0.22, 1) both;
    animation-delay: var(--bloom-delay, 0.16s);
}

.network-node-wallet { --bloom-x: 360px; --bloom-y: 70px; --bloom-rotate: -92deg; --bloom-delay: 0.16s; }
.network-node-card { --bloom-x: -360px; --bloom-y: 70px; --bloom-rotate: 92deg; --bloom-delay: 0.22s; }
.network-node-pay { --bloom-x: 0px; --bloom-y: -190px; --bloom-rotate: 110deg; --bloom-delay: 0.28s; --final-transform: translateX(-50%); }
.network-brand-paypal { --bloom-x: 260px; --bloom-y: 150px; --bloom-rotate: -145deg; --bloom-delay: 0.38s; --final-transform: rotate(-11deg); }
.network-brand-gpay { --bloom-x: -260px; --bloom-y: 50px; --bloom-rotate: 132deg; --bloom-delay: 0.46s; }
.network-brand-apple { --bloom-x: -170px; --bloom-y: -60px; --bloom-rotate: 128deg; --bloom-delay: 0.54s; --final-transform: rotate(8deg); }
.network-orb-eth { --bloom-x: 420px; --bloom-y: 250px; --bloom-rotate: -180deg; --bloom-delay: 0.32s; }
.network-orb-bnb { --bloom-x: -380px; --bloom-y: 230px; --bloom-rotate: 180deg; --bloom-delay: 0.34s; }
.network-orb-chatgpt { --bloom-x: -70px; --bloom-y: 150px; --bloom-rotate: 110deg; --bloom-delay: 0.42s; }
.network-orb-usdc { --bloom-x: 120px; --bloom-y: 0px; --bloom-rotate: -88deg; --bloom-delay: 0.24s; }
.network-orb-amazon { --bloom-x: 230px; --bloom-y: -90px; --bloom-rotate: -120deg; --bloom-delay: 0.50s; }
.network-orb-starbucks { --bloom-x: 455px; --bloom-y: -120px; --bloom-rotate: -180deg; --bloom-delay: 0.58s; }
.network-orb-tron { --bloom-x: 210px; --bloom-y: -210px; --bloom-rotate: -145deg; --bloom-delay: 0.62s; }
.network-orb-usdt { --bloom-x: -280px; --bloom-y: -240px; --bloom-rotate: 165deg; --bloom-delay: 0.64s; }
.network-orb-discord { --bloom-x: -440px; --bloom-y: -140px; --bloom-rotate: 180deg; --bloom-delay: 0.60s; }
.network-mark-mcd { --bloom-x: 280px; --bloom-y: -170px; --bloom-rotate: -140deg; --bloom-delay: 0.66s; }
.network-mark-one { --bloom-x: 120px; --bloom-y: -110px; --bloom-rotate: -130deg; --bloom-delay: 0.56s; --final-transform: rotate(-28deg); }
.network-mark-two { --bloom-x: -150px; --bloom-y: -90px; --bloom-rotate: 130deg; --bloom-delay: 0.56s; --final-transform: rotate(-10deg); }
.network-mark-three { --bloom-x: -380px; --bloom-y: -70px; --bloom-rotate: 160deg; --bloom-delay: 0.66s; --final-transform: rotate(8deg); }
.network-logo-mcd { --bloom-x: 280px; --bloom-y: -170px; --bloom-rotate: -140deg; --bloom-delay: 0.66s; }
.network-logo-ali { --bloom-x: 120px; --bloom-y: -110px; --bloom-rotate: -130deg; --bloom-delay: 0.56s; --final-transform: rotate(-10deg); }
.network-logo-didi { --bloom-x: -380px; --bloom-y: -70px; --bloom-rotate: 160deg; --bloom-delay: 0.66s; --final-transform: rotate(8deg); }

.network-brand-paypal { --float-delay: 0.1s; }
.network-brand-gpay { --float-delay: 0.9s; }
.network-brand-apple { --float-delay: 1.7s; }
.network-orb-eth { --float-delay: 0.4s; }
.network-orb-bnb { --float-delay: 1.2s; }
.network-orb-chatgpt { --float-delay: 2.0s; }
.network-orb-usdc { --float-delay: 0.6s; }
.network-orb-amazon { --float-delay: 1.4s; }
.network-orb-starbucks { --float-delay: 2.2s; }
.network-orb-tron { --float-delay: 0.8s; }
.network-orb-usdt { --float-delay: 1.6s; }
.network-orb-discord { --float-delay: 2.4s; }
.network-logo-mcd { --float-delay: 1.0s; }
.network-logo-ali { --float-delay: 1.8s; }
.network-logo-didi { --float-delay: 2.6s; }

@keyframes network-item-bloom {
    0% {
        opacity: 0;
        transform:
            translate(var(--bloom-x), var(--bloom-y))
            rotate(var(--bloom-rotate))
            scale(0.18);
        filter: blur(9px);
    }
    62% {
        opacity: 1;
        filter: blur(0);
    }
    82% {
        transform: var(--final-transform, translate3d(0, 0, 0)) scale(1.045);
    }
    100% {
        opacity: 1;
        transform: var(--final-transform, none);
        filter: blur(0);
    }
}

@keyframes network-core-bloom {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.32) rotate(-55deg);
    }
    70% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08) rotate(8deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes network-icon-float {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -8px;
    }
}

@keyframes network-phone-bloom {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-18deg) scale(0.62);
        filter: blur(18px) drop-shadow(0 28px 44px rgba(0, 0, 0, 0.78));
    }
    100% {
        opacity: 0.74;
        transform: translate(-50%, -50%) rotate(-2deg) scale(1);
        filter: blur(8px) drop-shadow(0 28px 44px rgba(0, 0, 0, 0.78));
    }
}

@keyframes network-lines-bloom {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes network-line-draw {
    0% {
        stroke-dashoffset: 1;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes network-beam-travel {
    0% {
        opacity: 1;
        stroke-dashoffset: 7;
    }
    100% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ecosystem-network-stage:not(.network-bloom-ready) .network-phone,
    .ecosystem-network-stage:not(.network-bloom-ready) .network-lines,
    .ecosystem-network-stage:not(.network-bloom-ready) .network-core,
    .ecosystem-network-stage:not(.network-bloom-ready) .network-node,
    .ecosystem-network-stage:not(.network-bloom-ready) .network-brand,
    .ecosystem-network-stage:not(.network-bloom-ready) .network-orb,
    .ecosystem-network-stage:not(.network-bloom-ready) .network-mark,
    .ecosystem-network-stage:not(.network-bloom-ready) .network-logo {
        opacity: 1;
    }

    .network-bloom-ready .network-phone,
    .network-bloom-ready .network-lines,
    .network-bloom-ready .network-core,
    .network-bloom-ready .network-node,
    .network-bloom-ready .network-brand,
    .network-bloom-ready .network-orb,
    .network-bloom-ready .network-mark,
    .network-bloom-ready .network-logo {
        animation: none;
    }
}

.network-phone {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(330px, 28vw);
    max-width: none;
    transform: translate(-50%, -50%) rotate(-2deg);
    opacity: 0.74;
    filter: blur(8px) drop-shadow(0 28px 44px rgba(0, 0, 0, 0.78));
    z-index: 1;
}

.network-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.network-line {
    position: absolute;
    display: block;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(246, 200, 106, 0.42));
}

.network-line-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 6px rgba(246, 200, 106, 0.42));
}

.network-line-base,
.network-line-beam {
    fill: none;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.network-line-base {
    stroke: #FEBC2F;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.network-line-beam {
    stroke-width: 4;
    stroke-dasharray: 0.18 1;
    stroke-dashoffset: 1;
    filter:
        drop-shadow(0 0 6px rgba(48, 235, 197, 0.55))
        drop-shadow(0 0 10px rgba(3, 74, 254, 0.32));
}

.network-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: 150px;
    height: 162px;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.network-core::before,
.network-core::after,
.network-core-ring::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffe49a;
    box-shadow: 0 0 16px rgba(246, 200, 106, 0.95);
}

.network-core::before {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.network-core::after {
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.network-core-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(246, 200, 106, 0.38);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    margin-top: 2px;
}

.network-core-ring::before {
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
}

.network-core-ripple,
.network-core-ripple::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 1px solid rgba(246, 200, 106, 0.46);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    /* box-shadow: 0 0 20px rgba(246, 200, 106, 0.18); */
    animation: network-core-ripple 2.8s ease-out infinite;
}

.network-core-ripple::before {
    width: 100%;
    height: 100%;
    animation-delay: 1.4s;
}

.network-core-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 36px rgba(246, 200, 106, 0.34));
    transform: translate(-50%, -50%);
}

@keyframes network-core-ripple {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.92);
    }
    18% {
        opacity: 0.82;
    }
    78% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.52);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.52);
    }
}

.network-core-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 82px;
    height: auto;
    transform: translate(-50%, -50%);
}

.network-node {
    position: absolute;
    z-index: 4;
    width: 350px;
    min-height: 162px;
    padding: 20px;
    border: 1px solid rgba(246, 200, 106, 0.72);
    border-radius: 16px;
    background: rgba(60, 60, 67, 0.29);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(14px);
    text-align: center;
}

.network-node::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f6c86a;
    box-shadow: 0 0 16px rgba(246, 200, 106, 0.88);
}

.network-node-wallet {
    left: 1%;
    top: 31%;
}

.network-node-wallet::after {
    right: -6px;
    top: 50%;
}

.network-node-card {
    right: 1%;
    top: 31%;
}

.network-node-card::after {
    left: -6px;
    top: 50%;
}

.network-node-pay {
    left: 50%;
    top: calc(50% + 188px);
    transform: translateX(-50%);
}

.network-node-pay::after {
    left: 50%;
    top: -6px;
    transform: translateX(-50%);
}

.network-node i {
    display: block;
    color: #f8f1e2;
    font-size: 28px;
}

.network-node-icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    object-fit: contain;
}

.network-node h2 {
    margin: 14px 0 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
}

.network-node p {
    margin: 0;
    color: #d6d1c8;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.35;
}

.network-brand,
.network-orb,
.network-mark,
.network-logo {
    position: absolute;
    z-index: 6;
}

.network-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.32));
}

.network-brand i {
    font-size: 34px;
}

.network-brand img,
.network-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.network-brand-paypal {
    left: 25%;
    top: 27%;
    width: 152px;
    transform: rotate(-11deg);
}

.network-brand-gpay {
    right: 27%;
    top: 31%;
    width: 86px;
}

.network-brand-apple {
    right: 28%;
    top: 58%;
    width: 110px;
    transform: rotate(8deg);
}

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

.network-orb {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.38);
}

.network-orb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.network-orb-eth {
    left: 25%;
    top: -4%;
    width: 126px;
    height: 126px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.network-orb-bnb {
    right: 20%;
    top: 7%;
    background: transparent;
}

.network-orb-chatgpt {
    right: 37%;
    top: 17%;
    width: 42px;
    height: 42px;
    background: transparent;
    box-shadow: none;
}

.network-orb-usdc {
    left: 34%;
    top: 48%;
    width: 48px;
    height: 48px;
    background: transparent;
}

.network-orb-amazon {
    left: 27%;
    top: 61%;
    width: 50px;
    height: 50px;
}

.network-orb-starbucks {
    left: 9%;
    top: 66%;
    width: 58px;
    height: 58px;
    background: transparent;
}

.network-orb-tron {
    left: 29%;
    bottom: 13%;
    width: 74px;
    height: 74px;
    background: transparent;
}

.network-orb-usdt {
    right: 19%;
    bottom: 10%;
    width: 86px;
    height: 86px;
    background: transparent;
}

.network-orb-discord {
    right: 10%;
    bottom: 22%;
    width: 52px;
    height: 52px;
    background: transparent;
    box-shadow: none;
}

.network-orb-discord img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.network-mark {
    color: #ffae21;
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.38);
}

.network-mark-mcd {
    left: 23%;
    bottom: 17%;
}

.network-mark-orange {
    width: 30px;
    height: 16px;
    border: 5px solid #ff7900;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
}

.network-mark-one {
    left: 36%;
    bottom: 27%;
    transform: rotate(-28deg);
}

.network-mark-two {
    right: 30%;
    bottom: 31%;
    transform: rotate(-10deg);
}

.network-mark-three {
    right: 14%;
    bottom: 34%;
    transform: rotate(8deg);
}

.network-logo {
    display: block;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.34));
}

.network-logo-mcd {
    left: 23%;
    bottom: 17%;
    width: 34px;
}

.network-logo-ali {
    left: 36%;
    bottom: 27%;
    width: 42px;
    transform: rotate(-10deg);
}

.network-logo-didi {
    right: 14%;
    bottom: 34%;
    width: 44px;
    transform: rotate(8deg);
}

@media (max-width: 1120px) {
    .ecosystem-network-stage {
        width: min(860px, 100%);
        height: auto;
        min-height: 0;
        display: grid;
        gap: 22px;
        justify-items: center;
        padding: 20px 0;
    }

    .network-phone,
    .network-lines,
    .network-brand,
    .network-orb,
    .network-mark,
    .network-logo {
        display: none;
    }

    .network-core,
    .network-node {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

    .network-core {
        width: 128px;
        height: 128px;
        order: 1;
    }

    .network-node {
        width: min(520px, 100%);
        min-height: auto;
    }

    .network-node::after,
    .network-core::before,
    .network-core::after {
        display: none;
    }

    .network-bloom-ready .network-phone,
    .network-bloom-ready .network-lines,
    .network-bloom-ready .network-core,
    .network-bloom-ready .network-node,
    .network-bloom-ready .network-brand,
    .network-bloom-ready .network-orb,
    .network-bloom-ready .network-mark,
    .network-bloom-ready .network-logo {
        opacity: 1;
        animation: none;
    }

    .network-node-wallet {
        order: 2;
    }

    .network-node-card {
        order: 3;
    }

    .network-node-pay {
        order: 4;
    }
}

@media (max-width: 820px) {
    .ecosystem-network-section {
        min-height: auto;
        padding-top: 64px;
        padding-bottom: 72px;
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* HOME MOBILE LAYOUT */
@media (max-width: 820px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .site-header {
        grid-template-columns: auto 1fr auto;
        column-gap: 12px;
        height: 64px;
        padding: 0 16px;
    }

    .brand img {
        width: 92px;
    }

    .menu-toggle {
        grid-column: 3;
        grid-row: 1;
        border-radius: 8px;
    }

    .main-nav {
        top: 64px;
        z-index: 55;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        padding: 8px 18px 20px;
        background: rgba(4, 4, 6, 0.98);
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
    }

    .main-nav .nav-link {
        height: 52px;
        padding: 0 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav .nav-link::after {
        display: none;
    }

    .language-dropdown {
        position: relative;
        top: auto;
        right: auto;
        z-index: 1;
        width: 100%;
        margin-left: 0;
        margin-top: 12px;
    }

    .language-toggle {
        width: 100%;
        height: 46px;
        justify-content: center;
        font-size: 14px;
    }

    .language-toggle span,
    .language-toggle [data-current-language] {
        display: inline;
        max-width: none;
        font-size: 14px;
    }

    .language-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
    }

    .language-menu button {
        text-align: center;
    }

    .section {
        width: 100%;
        max-width: none;
        padding: 86px 20px 64px;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        min-height: auto;
        padding-top: 112px;
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden;
    }

    .hero-copy {
        width: min(100%, calc(100vw - 40px));
        min-width: 0;
        max-width: calc(100vw - 40px);
        min-height: auto;
        align-items: center;
        text-align: center;
    }

    .hero-copy h1 {
        width: min(310px, 100%);
        max-width: 100%;
        font-size: clamp(34px, 9.8vw, 38px);
        line-height: 1.04;
        letter-spacing: 0;
        overflow-wrap: normal;
    }

    .hero-copy p {
        width: min(300px, 100%);
        max-width: 100%;
        font-size: 15px;
        line-height: 1.42;
    }

    .hero-note {
        display: none;
    }

    .store-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(320px, 100%);
        justify-items: center;
        gap: 8px;
        margin-top: 24px;
    }

    .store-row a {
        width: 100%;
        max-width: 150px;
        min-width: 0;
    }

    .store-row a:nth-child(3) {
        grid-column: 1 / -1;
        width: min(150px, 50%);
    }

    .store-row img {
        width: 100%;
        max-width: 150px;
        height: auto;
    }

    .hero-visual {
        width: 100%;
        min-width: 0;
        margin-top: 4px;
    }

    .visual-stage {
        width: min(390px, 100%);
        max-width: 100%;
        aspect-ratio: 1 / 1.14;
        overflow: hidden;
    }

    .phone-image {
        width: 48%;
    }

    .card-image {
        width: 52%;
    }

    .float-pill {
        max-width: 42vw;
        white-space: nowrap;
    }

    .float-shopping {
        left: auto;
        right: 0;
    }

    .float-subscription {
        left: auto;
        right: 3%;
        top: 18%;
    }

    .float-jack {
        left: auto;
        right: 0;
    }

    .card-section {
        display: flex;
        flex-direction: column;
        gap: 28px;
        min-height: auto;
        padding: 92px 20px 76px;
    }

    .card-device {
        width: 100%;
        min-height: 390px;
    }

    .card-phone-image {
        left: 0;
        right: auto;
        bottom: 0;
        width: min(250px, 62vw);
        min-width: 0;
        padding-top: 0;
    }

    .placeholder-card {
        left: auto;
        right: 0;
        bottom: 54px;
        width: min(260px, 68vw);
        min-width: 0;
    }

    .card-copy {
        order: -1;
        width: 100%;
        min-height: auto;
        align-items: center;
        text-align: center;
    }

    .card-copy h2 {
        width: min(360px, 100%);
        font-size: clamp(34px, 9.5vw, 44px);
        line-height: 1.12;
    }

    .card-copy p {
        width: min(340px, 100%);
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.45;
    }

    .coin {
        opacity: 0.72;
    }

    .coin-usdc {
        left: 8px;
        top: -34px;
    }

    .coin-bnb {
        right: 26px;
        top: -42px;
    }

    .coin-tron,
    .coin-usdt,
    .coin-eth {
        display: none;
    }

    .features-section {
        min-height: auto;
        padding: 88px 20px 82px;
        background: linear-gradient(180deg, #181924 0%, #3c3c43 58%, #000 100%);
    }

    .features-bg-transition,
    .features-section::before {
        display: none;
    }

    .features-pin {
        min-height: auto;
    }

    .feature-title-stack {
        display: none;
    }

    .features-showcase {
        width: 100%;
        display: block;
        min-height: auto;
    }

    .features-showcase > .features-device,
    .features-showcase > .features-card,
    .features-showcase > .feature-card-set {
        display: none;
    }

    .features-mobile-layout {
        display: grid;
        gap: 40px;
        width: 100%;
    }

    .features-mobile-group {
        display: grid;
        gap: 20px;
    }

    .features-mobile-title {
        margin: 0;
        color: #fff;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.12;
        font-weight: 800;
    }

    .features-mobile-body {
        position: relative;
        min-height: 420px;
        padding: 18px 0;
    }

    .features-mobile-device {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        pointer-events: none;
        z-index: 0;
    }

    .features-mobile-phone {
        display: block;
        width: min(240px, 64vw);
        height: auto;
        opacity: 0.28;
        filter: blur(6px) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.32));
    }

    .features-mobile-cards {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .features-mobile-layout .feature-item,
    .features-mobile-layout .testimonial-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        min-height: 100%;
        border-radius: 16px;
        padding: 16px 14px;
        text-align: left;
    }

    .features-mobile-layout .feature-item {
        display: grid;
        justify-items: start;
        align-content: start;
    }

    .features-mobile-layout .feature-item > img {
        width: 38px;
        height: 38px;
        margin: 0 0 12px;
    }

    .features-mobile-layout .feature-item h2,
    .features-mobile-layout .testimonial-card h3 {
        font-size: 16px;
        line-height: 1.2;
    }

    .features-mobile-layout .feature-item p,
    .features-mobile-layout .testimonial-card p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.4;
    }

    .features-mobile-layout .testimonial-card .avatar {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        font-size: 9px;
    }
}

@media (max-width: 430px) {
    .section,
    .hero-section,
    .card-section,
    .features-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .visual-stage {
        width: min(350px, 100%);
    }

    .store-row a {
        max-width: 140px;
    }

    .float-pill {
        max-width: 46vw;
        font-size: 10px;
    }

    .card-device {
        min-height: 350px;
    }

    .card-phone-image {
        width: min(220px, 61vw);
    }

    .placeholder-card {
        width: min(230px, 68vw);
    }

    .features-mobile-layout {
        gap: 34px;
    }

    .features-mobile-body {
        min-height: 380px;
        padding: 12px 0;
    }

    .features-mobile-title {
        font-size: 32px;
    }

    .features-mobile-phone {
        width: min(210px, 62vw);
    }

    .features-mobile-cards {
        gap: 10px;
    }

    .features-mobile-layout .feature-item,
    .features-mobile-layout .testimonial-card {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .features-mobile-layout .feature-item h2,
    .features-mobile-layout .testimonial-card h3 {
        font-size: 15px;
    }

    .features-mobile-layout .feature-item p,
    .features-mobile-layout .testimonial-card p {
        font-size: 12px;
        line-height: 1.35;
    }
}

@media (max-width: 820px) {
    .ecosystem-page .ecosystem-hero {
        flex-direction: column-reverse;
        gap: 28px;
    }

    .ecosystem-page .ecosystem-hero-copy {
        width: min(100%, calc(100vw - 40px));
        max-width: calc(100vw - 40px);
        margin-top: 0px;
    }

    .ecosystem-page .ecosystem-hero-copy h1,
    .ecosystem-page .ecosystem-hero-copy p {
        width: min(310px, 100%);
        max-width: 100%;
    }

    .ecosystem-page .ecosystem-hero-visual {
        flex: 0 0 auto;
        display: flex;
        width: min(100%, calc(100vw - 40px));
        height: clamp(360px, 92vw, 500px);
        min-height: clamp(360px, 92vw, 500px);
        max-width: 620px;
        align-items: center;
        justify-content: center;
        margin-top: 4px;
    }

    .ecosystem-page .ecosystem-visual-stage {
        width: min(390px, 100%);
        height: 100%;
        max-width: 100%;
        aspect-ratio: auto;
        overflow: visible;
    }

    .ecosystem-page .ecosystem-visual-stage .phone-image {
        left: 50%;
        top: 48%;
        width: min(210px, 54vw);
    }

    .ecosystem-page .ecosystem-visual-stage .float-pill {
        max-width: 46vw;
    }

    .ecosystem-page .ecosystem-visual-stage .float-topup {
        left: 0;
        top: 18%;
    }

    .ecosystem-page .ecosystem-visual-stage .float-subscription {
        left: 4%;
        top: 43%;
    }

    .ecosystem-page .ecosystem-visual-stage .float-coffee {
        left: 1%;
        top: 68%;
    }

    .ecosystem-page .ecosystem-visual-stage .float-jack {
        left: auto;
        right: 0;
        top: 31%;
    }

    .ecosystem-page .ecosystem-visual-stage .float-shopping {
        left: auto;
        right: 0;
        top: 59%;
    }
}

@media (max-width: 430px) {
    .ecosystem-page .ecosystem-hero-copy,
    .ecosystem-page .ecosystem-hero-visual {
        width: min(100%, calc(100vw - 32px));
    }

    .ecosystem-page .ecosystem-hero-visual {
        height: clamp(330px, 94vw, 400px);
        min-height: clamp(330px, 94vw, 400px);
    }

    .ecosystem-page .ecosystem-visual-stage {
        width: min(350px, 100%);
    }

    .ecosystem-page .ecosystem-visual-stage .phone-image {
        width: min(190px, 56vw);
    }
}

.download-page .site-header {
    background: rgba(3, 2, 1, 0.42);
}

.download-landing {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: center;
    gap: clamp(36px, 7vw, 108px);
    min-height: 100vh;
    padding: 160px max(32px, calc((100vw - 1180px) / 2 + 32px)) 96px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(3, 2, 1, 0.92)),
        radial-gradient(circle at 72% 38%, rgba(246, 200, 106, 0.22), transparent 34%);
}

.download-landing::before {
    content: "";
    position: absolute;
    inset: 112px max(22px, calc((100vw - 1220px) / 2 + 22px)) 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.download-landing-copy,
.download-panel {
    position: relative;
    z-index: 1;
}

.download-kicker {
    margin: 0 0 18px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.download-landing h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 8vw, 94px);
    line-height: 0.95;
    font-weight: 700;
}

.download-landing-copy p:not(.download-kicker) {
    max-width: 560px;
    margin: 28px 0 0;
    color: #d8d1c2;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
}

.download-panel {
    display: grid;
    justify-items: center;
    gap: 24px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(14, 12, 10, 0.78);
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(18px);
}

.download-app-icon {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.download-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.download-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    border-top-color: var(--gold);
    border-radius: 999px;
    animation: download-spin 0.8s linear infinite;
}

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

.download-actions {
    display: grid;
    width: 100%;
    gap: 14px;
}

.download-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.download-action:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 200, 106, 0.54);
    background: rgba(246, 200, 106, 0.12);
}

.download-action img {
    display: block;
    width: min(190px, 100%);
    height: auto;
}

.download-help {
    max-width: 310px;
    margin: 0;
    color: #bdb5a7;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.download-page[data-download-mode="android"] .download-help::before {
    content: "";
}

@media (max-width: 820px) {
    .download-page .header-download {
        display: inline-flex;
    }

    .download-landing {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 32px;
        padding: 128px 22px 72px;
    }

    .download-landing::before {
        inset: 100px 14px 34px;
    }

    .download-panel {
        padding: 28px 22px;
    }
}
