@import 'reset.css';
@import 'variables.css';
@import 'components.css';
@import 'responsive.css';

/*
 * main.css — global layout and sections (BEM)
 * Structure: base → layout utilities → header → hero → features → benefits → money → card → join → ecosystem → footer → responsive
 */

/* Base Styles */
body {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
}

/* Overflow только у контента — шапка вне этой обёртки, sticky не обрезается на мобильных */
.page-content {
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1;
}

main {
    /*overflow: hidden;*/
}


.hero__title {
    font-size: clamp(40px, 5.08vw, 65px);
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    letter-spacing: -1.95px;
}

.hero__title-logo {
    height: 0.8em;
    width: auto;
    vertical-align: middle;
    margin-right: 0.2em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.flex {
    display: flex;
}

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

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.header {
    position: fixed;
    /* position: fixed;*/
    left: 0;
    width: 100%;
    padding-top: 16px;
    top: 0;
    z-index: 100;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header.scrolled {
    background: none;
}

.header .container {
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, max-width 0.4s ease;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid transparent;

}

.header.scrolled .container {
    max-width: calc(var(--container-max-width) - 40px);
    border-color: rgba(67, 229, 234, 0.1);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, max-width 0.4s ease;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.header .container .header__logo {
    flex-basis: 25%;
}

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

.business .header__logo img {
    height: 41px;
}

.header .container .header__actions {
    flex-basis: 25%;
    justify-content: flex-end;
}

.header__nav {
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    letter-spacing: -0.36px;
    border-radius: 20px;
    background: var(--, rgba(255, 255, 255, 0.15));
    box-shadow: 0 0.5px 1px 1px rgba(255, 255, 255, 0.20) inset;
    backdrop-filter: blur(15px);
}

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

.header__nav li a {
    padding: 12px 24px;
    display: block;
    border-radius: 20px;
}

.header__nav li a:hover {
    background: #FFFFFF26;
}

.header__nav li a.active {
    background: #FFFFFF26;
}

.hero {
    position: relative;
    padding-top: 271px;
    padding-bottom: var(--spacing-xl);
    /* min-height: calc(100vh - 91px);
    min-height: 100vh;*/
    display: flex;
    align-items: center;
    background: #000000;
}

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

.hero__desc {
    color: var(--White, #FFF);
    font-size: clamp(14px, 1.72vw, 22px);
    line-height: 1.1;
    margin: 30px 0 40px 0;
    font-weight: 600;
    letter-spacing: -0.66px;
}

.hero__content {
    z-index: 2;
}

.hero .btn-lg {
    font-size: clamp(12px, 1.25vw, 16px);
    line-height: clamp(14px, 1.56vw, 20px);
}

.hero__video {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    height: auto;
    max-height: 550px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.hero__bg-line {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 1;
}

.hero__bg-line--1 {
    top: 0;
    left: 0;
}

/* Benefits */
.benefits {
    padding-top: 30px;
    position: relative;
    z-index: 3;
}

.benefits__bg-line {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 1;
    top: -80%;
    left: 0;
}

.benefits .container {
    background-size: cover;
    border-radius: 10px;
    padding: 80px 80px 90px 80px;
    z-index: 2;
    position: relative;
}

.benefits__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.benefits__content {
    flex: 1;
    max-width: 50%;
}

.benefits__title {
    font-size: 55px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    letter-spacing: -1.65px;
}

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

.benefits__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0 0 var(--spacing-md);
    color: var(--text-white);
    margin: 45px 0;
}

.benefits__list li {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: -0.48px;
    margin-bottom: 25px;
}

.benefits__list li span {
    font-weight: 700;
    background: linear-gradient(270deg, #081340 -89.88%, #43E5EA 73.31%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.32px;
}

.benefits__list li::marker {
    color: #43E5EA;
}

.benefits__list li:last-child {
    margin-bottom: 0;
}

.benefits__image {
    flex: 1;
    max-width: 50%;
}

.benefits__image img,
.benefits__image canvas {
    width: 100%;
    height: auto;
    display: block;
}

.money {
    background: #fff;
    padding: 80px 0;
}

.money-mobile {
    display: none;
}

.money__title {
    font-size: 55px;
    line-height: 65px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    text-align: center;
    letter-spacing: -1.65px
}

.money__subtitle {
    font-size: 22px;
    line-height: 24px;
    font-style: italic;
    background: linear-gradient(90deg, #081340 0%, #43E5EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    margin: 20px 0 56px 0;
    text-align: center;
    letter-spacing: -0.44px;
}

.money__grid {
    display: grid;
    grid-template-columns: 30% 36% 30%;
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 40px;
    grid-row-gap: 50px;
    margin: 0 auto;
}

.money__grid-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.money__grid-item img {
    width: 130px;
    height: 81px;
    display: block;
    flex-shrink: 0;
    z-index: 2;
}

.money__grid-item--mini img {
    width: 60px;
    height: 60px;
    display: block;
    flex-shrink: 0;
}

.money__item-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -3%;
    color: #000;
    text-align: center;
    z-index: 2;
    display: block;
}

.money__item-text {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: -3%;
    color: #000;
    text-align: center;
    z-index: 2;
    display: block;
}

.money__grid-item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.money__grid-item:nth-child(1)::before {
    right: -66%;
    top: 25%;
    width: 100%;
}

.money__grid-item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.money__grid-item:nth-child(2)::before {
    right: -64%;
    top: 25%;
    width: 100%;
}

.money__grid-item:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.money__grid-item:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
}

.money__grid-item:nth-child(4)::before {
    right: auto;
    top: -35%;
    height: 35%;
}

.money__grid-item:nth-child(5) {
    grid-area: 3 / 1 / 4 / 2;
}

.money__grid-item:nth-child(5)::before {
    right: auto;
    top: -35%;
    height: 35%;
}

.money__grid-item:nth-child(6) {
    grid-area: 2 / 3 / 3 / 4;
}

.money__grid-item:nth-child(6)::before {
    right: auto;
    top: -35%;
    height: 35%;
}

.money__grid-item:nth-child(7) {
    grid-area: 3 / 3 / 4 / 4;
}

.money__grid-item:nth-child(7)::before {
    right: auto;
    top: -35%;
    height: 35%;
}

.money__grid-item:nth-child(8) {
    grid-area: 4 / 1 / 5 / 4;
}

.money__grid-img {
    grid-area: 2 / 2 / 4 / 3;
}

.money__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Wallet Modes Section */
.wallet-modes {
    padding: 80px 0;
    background: var(--bg-dark);
}

.wallet-modes .container {
    position: relative;
    z-index: 4;
}

.wallet-modes__title {
    font-size: 55px;
    line-height: 55px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    letter-spacing: -1.65px;
    margin-bottom: 20px;
}

.wallet-modes__subtitle {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(68deg, #081340 -64.13%, #43E5EA 142.07%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: -0.44px;
    margin-bottom: 60px;
}

.wallet-modes__grid {
    display: flex;
    gap: 15px;
}

.wallet-modes__card {
    position: relative;
    flex: 1;
    height: 324px;
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(22.5px);
    -webkit-backdrop-filter: blur(22.5px);
    background: rgba(90, 90, 90, 0.3);
    box-shadow: inset 0 1px 1px 1px rgba(67, 229, 234, 0.3);
    cursor: pointer;
}

.wallet-modes__face {
    position: absolute;
    inset: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.wallet-modes__face--default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    opacity: 1;
    visibility: visible;
}

.wallet-modes__face--expanded {
    display: flex;
    flex-direction: column;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
}

.wallet-modes__card:hover .wallet-modes__face--default {
    opacity: 0;
    visibility: hidden;
}

.wallet-modes__card:hover .wallet-modes__face--expanded {
    opacity: 1;
    visibility: visible;
}

.wallet-modes__face--default:nth-child(1) .wallet-modes__card-icon {
    width: auto;
    height: 80px;
}

.wallet-modes__face--default:nth-child(2) .wallet-modes__card-icon {
    width: auto;
    height: 80px;
}

.wallet-modes__card-info {
    margin: 40px 0 25px 0;
    text-align: center;

}

.wallet-modes__card-title {
    font-size: 25px;
    line-height: 27px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.75px;
    margin-bottom: 8px;
}

.wallet-modes__card-desc {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.66px;
}

.wallet-modes__arrow-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(135deg);
}

.wallet-modes__arrow-btn img {
    width: 100%;
    height: 100%;
    display: block;
}

.wallet-modes__expanded-header {
    display: none;
}

.wallet-modes__sub-cards {
    display: flex;
    gap: 15px;
    flex: 1;
}

.wallet-modes__sub-card {
    flex: 1;
    background: #282828;
    border-radius: 10px;
    box-shadow: inset 0 1px 1px 1px rgba(67, 229, 234, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    text-align: center;
    gap: 16px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, background 0.2s ease;
    color: inherit;
    text-decoration: none;
}

.wallet-modes__sub-card:hover {
    background: #333;
    box-shadow: inset 0 1px 1px 1px rgba(67, 229, 234, 0.4);
}

.wallet-modes__sub-icon {
    width: auto;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 33%;
}

.wallet-modes__sub-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: -0.48px;
    display: block;
    margin-bottom: 14px;
}

.wallet-modes__sub-text {
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.36px;
}

.wallet-modes__inline-logo {
    width: 36px;
    height: 8px;
    margin-top: -1px;
    vertical-align: middle;
    display: inline;
}

/* Card (Noda Card section, id="card") */
.card {

    position: relative;
    padding: 100px 0;
}

.card .container {
    display: flex;
    z-index: 2;
    position: relative;
}

.card__image {
    flex-basis: 50%;
    z-index: 3;
}

.card__image img,
.card__image canvas {
    max-width: 643px;
    width: 100%;
    height: auto;
}

.card__image canvas {
    display: block;
}

.card__content {
    display: flex;
    flex-basis: 50%;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.card__title {
    font-size: 55px;
    line-height: 55px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -1.65px;
}

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

.card__subtitle {
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin: 50px 0;
    letter-spacing: -0.66px;
}

.card__line {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 1;
    top: 0;
    left: 0;
}

.join {

    position: relative;
    padding: 100px 0;
}

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

.join__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.join__logo {
    width: 264px;
    height: 104px;
    display: block;
    flex-shrink: 0;
}

.join__subtitle {
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin: 30px 0;
    letter-spacing: -0.66px;
}

.join__line {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 1;
    bottom: -50%;
    right: 0;
}

/* Ecosystem (id="ecosystem") */
.ecosystem {
    padding: 100px 0;

}

.ecosystem .container {
    position: relative;
}

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

.ecosystem__logo {
    width: 465px;
    height: 110px;
    display: block;
    flex-shrink: 0;
}

.ecosystem__logo-mobile {
    display: none;
}

.ecosystem__subtitle {
    font-size: 22px;
    line-height: 24px;
    color: #43E5EA;
    font-weight: 600;
    margin: 35px 0 45px 0;
    letter-spacing: -0.66px;
}

.ecosystem__img {
    max-height: 410px;
    width: auto;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--bg-dark);
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 70px 0;
}

.footer__logo img {
    height: 33px;
    width: auto;
    display: block;
}

.business .footer__logo img {
    height: 51px;
}

.footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__nav a {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-white);
}

.footer__nav a:hover {
    color: var(--primary-teal);
}

.footer__bottom {
    padding: 50px 0;
}

.footer__copyright {
    font-size: 12px;
    line-height: 14px;
    color: #ACACAC;
    font-weight: 500;
    letter-spacing: -3%;
    margin: 0;
}

.footer__policies {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer__policies a {
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    font-weight: 500;
    letter-spacing: -3%;
    text-decoration: underline;
}

.footer__policies a:hover {
    color: var(--primary-teal);
}

/* Features */
.features {
    padding: var(--spacing-xl) 0;
    position: relative;

}

.features__bg-line {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 1;
}

.features__bg-line--2 {
    bottom: -50%;
    right: 0;
}

.features__title {
    display: flex;
    gap: 12px;
    font-size: 55px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #D9D9D9 3%, #484848 100%);
    background-size: 160% 100%;
    background-position: left center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.features__title .logo-text {
    color: var(--text-gray);
}

.features__logo {
    width: 380px;
    height: 55px;
    max-width: 100%;
    display: block;
    flex-shrink: 0;
}

.features__noda {
    width: 60px;
    height: 17px;
    display: block;
    flex-shrink: 0;
}

.features__noda-span {
    display: flex;
    gap: 8px;
}

.features__subtitle {
    font-size: 22px;
    line-height: 24px;
    color: #ACACAC;
    font-weight: 600;
    letter-spacing: -0.66px;
}

.features__grid {
    margin-top: 68px;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.business .hero__title {
    background: none;
    -webkit-text-fill-color: initial;
}

.business .hero__title span:nth-child(1) {
    color: #fff;
    display: flex;
    line-height: clamp(40px, 4.53vw, 58px);
}



.business .hero__title span:nth-child(2) {
    background: var(--text-gradient-two);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    letter-spacing: -2px;
}

.business .hero__bg-line--1 {
    bottom: -65%;
    left: 0;
    z-index: 2;
}

.business-features {
    background: #fff;
    z-index: 3;
    position: relative;
    padding: 80px 0;
}

.business-features__title,
.industries__title {
    font-size: 55px;
    line-height: 65px;
    background: var(--text-gradient-two);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    text-align: center;
}

.business-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin: 30px 0;
    padding: 0px 77px;
}

.business-features__item {
    background: #0B1025;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    min-height: 340px;
}

.business-features__item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.business-features__item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.business-features__item:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.business-features__item:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
}

.business-features__item:nth-child(5) {
    grid-area: 2 / 2 / 3 / 3;
}

.business-features__item:nth-child(6) {
    grid-area: 2 / 3 / 3 / 4;
}


.business-features__item-title {
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: -3%;
}

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

.business-features__item-img {
    position: absolute;
}

.business-features__item:nth-child(1) .business-features__item-img {
    left: 0;
    bottom: 0;
    width: 90%;
    height: auto;
}

.business-features__item:nth-child(2) .business-features__item-img {
    right: 0;
    bottom: 0;
    width: 80%;
    height: auto;
}

.business-features__item:nth-child(3) .business-features__item-img {
    right: 0;
    bottom: 0;
    width: 80%;
    height: auto;
}

.business-features__item:nth-child(4) .business-features__item-img {
    right: 0;
    bottom: 0;
    width: 80%;
    height: auto;
}

.business-features__item:nth-child(5) .business-features__item-img {
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}

.business-features__item:nth-child(6) .business-features__item-img {
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}

.business-features .btn {
    margin: auto;
    display: flex;
    width: max-content;
}

.industries {
    padding: 80px 0;
    position: relative;
}

.industries__line {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 1;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 57px;
    grid-row-gap: 20px;
    margin: 55px 0;
    z-index: 2;
    position: relative;
}

.industries__item {
    background: rgba(90, 90, 90, 0.3);
    box-shadow: inset 0 1px 1px 1px rgba(67, 229, 234, 0.3);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.industries__item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.industries__item:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

.industries__item:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
}

.industries__item:nth-child(4) {
    grid-area: 1 / 3 / 2 / 4;
}

.industries__item:nth-child(5) {
    grid-area: 2 / 3 / 3 / 4;
}

.industries__item:nth-child(6) {
    grid-area: 3 / 3 / 4 / 4;
}

.industries__image-wrapper {
    grid-area: 1 / 2 / 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries__image-wrapper img,
.industries__image-wrapper canvas {
    width: 295px;
    height: auto;
}

.industries__item-title {
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: -3%;
    margin: 20px 0 30px 0;
}

.industries__item-description {
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: -3%;
}

.industries__item-description span {
    color: #ACACAC;
}

.industries .btn {
    margin: auto;
    display: flex;
    width: max-content;
}

.merchants {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

.merchants__title {
    font-size: 55px;
    line-height: 55px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    text-align: left;
}

.merchants-flex {
    display: flex;
    gap: 25px;
}

.merchants-flex__left {
    flex: 1 1 62%;
}

.merchants-flex__right {
    flex: 0 0 38%;
}

.merchants-flex__img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.merchants__grid {
    margin-top: 47px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 57px;
    grid-row-gap: 57px;
}



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

.merchants__item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.merchants__item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.merchants__item:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
}

.merchants__item:nth-child(4) {
    grid-area: 2 / 2 / 3 / 3;
}

.merchants__item-img {
    width: 65px;
    height: 65px;
    display: block;
}

.merchants__item-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
}

.merchants__item-description {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
}

.final {
    position: relative;
    padding: 0px 0 80px 0;
}

.final-flex {
    display: flex;
}

.final__image {
    flex: 1 1 45%;
    margin-left: calc(-100vw / 2 + 100% / 2);
    z-index: 1;
}

.final__video {
    display: block;
    max-width: 100%;
    width: 546px;
    height: 627px;
    z-index: 1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.final__video::-webkit-media-controls,
.final__video::-webkit-media-controls-panel,
.final__video::-webkit-media-controls-play-button,
.final__video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    appearance: none;
}


.final__content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    z-index: 2;
    position: relative;
}

.final__title {
    font-size: 55px;
    line-height: 55px;
    font-weight: 600;
    letter-spacing: -3%;
}

.final__subtitle {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -3%;
}

.final__title-logo {
    height: 41px;
    width: auto;
    vertical-align: middle;
    margin-right: 0.2em;
}

.final__title span:nth-child(1) {
    color: #fff;
    display: flex;
    line-height: 43px;
}

.final__title span:nth-child(2) {
    background: var(--text-gradient-two);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    letter-spacing: -2px;
}

.final__line {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 25%;
    transform: translateY(-50%);
}

.final .btn {
    width: max-content;
    display: flex;
}

.industries-mobile {
    display: none;
}

.screen-mobile {
    display: none;
}

.screen-desctop {
    display: block;
}

/* ========== Responsive (desktop-first): 991px tablet, 768px large mobile, 650px mobile ========== */

/* Tablet: container padding, hide desktop nav (menu toggle shown in components.css) */
@media (max-width: 991px) {
    .screen-desctop {
        display: none;
    }

    .screen-mobile {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 35px;
    }

    .container {
        padding-left: var(--container-padding-tablet);
        padding-right: var(--container-padding-tablet);
    }

    .header {
        min-height: var(--header-height-mobile);
        transition: all 0.3s ease;
        position: sticky;
    }

    .header .container {
        min-height: var(--header-height-mobile);
        flex-wrap: wrap;
        gap: 15px;
        padding: var(--spacing-sm) var(--spacing-sm);
        z-index: 991;
        position: relative;
        max-width: 100%;
        transition: all 0.3s ease;
    }

    .header.scrolled .container {
        max-width: calc(100% - 16px);
        transition: all 0.3s ease;
    }

    .header__mobile-menu {
        display: block;
        top: calc(var(--header-height-mobile) + 25px);
        transform: translateY(calc(-100% - var(--header-height-mobile) - 25px));
        z-index: 990;
        left: 5px;
        padding: 15px 5px;
        border-color: rgba(67, 229, 234, 0.1);
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
        max-width: calc(100% - 10px);
        border-radius: 16px;
        margin: 0 auto;
    }

    .header__mobile-menu.active {
        transform: translateY(0);
    }

    .header__logo img {
        margin: 0 auto;
    }

    .header .container .header__actions {
        flex-basis: 100%;
        justify-content: space-between;
    }

    .header .container .header__actions .btn-outline {
        margin-left: auto;
    }

    .header .header__nav {
        display: none;
    }

    .header .container .header__logo {
        flex-basis: auto;
    }

    .hero__inner {
        flex-direction: column;
        text-align: left;
        gap: var(--spacing-md);
        z-index: 3;
    }

    .hero__title {
        font-size: clamp(40px, 5.65vw, 56px);
    }

    .features__title {
        margin-bottom: 20px;
    }

    .features__subtitle {
        font-size: 14px;
        line-height: 16px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .features__logo {
        width: 280px;
        height: 41px;
    }

    .benefits__title {
        font-size: 2.75rem;
    }

    .benefits__flex {
        flex-direction: column;
        gap: 0;
    }

    .benefits__content,
    .benefits__image {
        max-width: 100%;
    }

    .benefits .container {
        padding: 40px var(--container-padding-tablet);
    }

    /* Money: grid breaks on narrow — stack in one column */
    .money {
        padding-top: 0;
        margin-top: -1px;
    }

    .money-mobile {
        display: block;
        margin-bottom: 30px;
    }

    .money-mobile .money__image {
        max-height: 356px;
        width: auto;
        border-radius: 10px;
    }

    .money__grid {
        display: grid;
        grid-template-columns: repeat(2, calc((100% - 50px) / 2));
        grid-template-rows: repeat(4, auto);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
    }

    .money__grid-item {
        gap: 12px;
    }

    .money__grid-item:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .money__grid-item:nth-child(2) {
        display: none;
    }

    .money__grid-item:nth-child(3) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .money__grid-item:nth-child(4) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .money__grid-item:nth-child(5) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .money__grid-item:nth-child(6) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .money__grid-item:nth-child(7) {
        grid-area: 3 / 2 / 4 / 3;
    }

    .money__grid-item:nth-child(8) {
        grid-area: 4 / 1 / 5 / 3;
        width: 60%;
        margin: -25px auto 0 auto;
    }

    .money__grid-item:nth-child(8) .money__item-text {}

    .money__grid-img {
        display: none;
    }

    .money__grid-item:nth-child(1)::before,
    .money__grid-item:nth-child(3)::before {
        display: none;
    }

    .money__grid-item:nth-child(4)::before,
    .money__grid-item:nth-child(5)::before,
    .money__grid-item:nth-child(6)::before,
    .money__grid-item:nth-child(7)::before {
        right: auto;
        top: -35%;
        height: 35%;
        background: linear-gradient(0deg, #D9D9D9 3%, #484848 100%);
        mask: repeating-linear-gradient(0deg, black 0px, black 6px, transparent 6px, transparent 12px);
    }

    .divider-bottom::before {
        right: 0%;
    }

    .divider-bottom::after {
        left: 0%;
    }

    .divider-bottom-line {
        width: 100%;
        height: 81px;
    }

    .divider-bottom-line::before {
        right: 0;
        top: 50%;
        width: 50%;
    }

    .divider-bottom-line::after {
        left: 0;
        top: 50%;
        width: 50%;
    }

    /*.money__grid-item:nth-child(n)::before,
    .money__grid-item:nth-child(n)::after {
        display: none;
    }

    .divider-bottom-line::before,
    .divider-bottom-line::after {
        display: none;
    }

    .money .divider::before,
    .money .divider-vertical::before,
    .money .divider-bottom::before,
    .money .divider-bottom::after {
        display: none;
    }
*/
    .money__grid-item--mini img,
    .money__grid-item img {
        height: 57px;
        width: auto;
    }

    .money__item-title {
        font-size: 16px;
        line-height: 18px;
    }

    .money__item-text {
        font-size: 12px;
        line-height: 14px;
        margin-top: auto;
        max-width: 85%;
    }

    .wallet-modes {
        padding: 50px 0;
    }

    .wallet-modes__card-icon {
        width: auto;
        height: 50px;
    }

    .wallet-modes__sub-card {
        gap: 15px;
    }

    .wallet-modes__sub-title {
        margin-bottom: 5px;
    }

    .wallet-modes__title {
        font-size: 40px;
        line-height: 44px;

    }

    .wallet-modes__card {
        height: 280px;
    }

    .card {
        position: relative;
        padding: 50px 0;
    }

    .card .container {
        flex-direction: column;
        gap: 2rem;
    }

    .card__image {
        flex-basis: auto;
    }

    .card__content {
        flex-basis: auto;
        align-items: flex-start;
        text-align: left;
    }

    .card__title,
    .card__subtitle {
        text-align: left;
    }

    .join {
        position: relative;
        padding: 50px 0;
    }

    .join__line {
        position: absolute;
        width: 45%;
        height: auto;
        z-index: 1;
        bottom: auto;
        right: 0;
        top: -45%;
    }

    .ecosystem {
        padding: 50px 0;
    }

    .ecosystem .flex {
        flex-direction: column;
        gap: 20px;
    }

    .ecosystem__subtitle {
        margin: 20px auto;
        text-align: center;
    }

    .ecosystem__content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ecosystem__content .btn {
        margin: auto;
    }

    .ecosystem__img {
        position: relative;
        right: auto;
        order: 0;
        max-height: 280px;
    }

    .industries-mobile {
        display: flex;
        margin-bottom: 15px;
    }

    .industries-mobile img,
    .industries-mobile canvas {
        max-height: 200px;
        width: auto;
        margin: auto;
    }

    .merchants {
        padding: 25px 0 50px 0;
        position: relative;
        background: #fff;
    }

    .merchants-flex {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .merchants__grid {
        margin-top: 30px;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        grid-template-rows: repeat(2, auto);
    }

    .merchants__item-img {
        width: 57px;
        height: 57px;
        display: block;
    }

    .merchants__item {
        gap: 12px;
    }

    .merchants__item-title {
        font-size: 16px;
        line-height: 18px;
    }

    .merchants__item-description {
        font-size: 12px;
        line-height: 14px;

    }

    .merchants__item-description br {
        display: none;
    }

    .final {
        padding: 50px 0 0 0;
        position: relative;
    }

    .final .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .final__line {
        top: 7%;
        transform: translateY(-50%);
    }

    .final__image img {
        position: relative;
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        width: 90%;
        min-height: 0;
    }

    .final__title {
        font-size: 2rem;
        line-height: 1;
    }

    .final__subtitle {
        font-size: 14px;
        line-height: 16px;
    }

    .final__title span:nth-child(1) {
        line-height: 22px;
    }

    .final__title-logo {
        height: 0.7em;
    }
}

/* Large mobile */
@media (max-width: 768px) {
    .container {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }

    .header .container .header__logo {
        flex-basis: 100%;
    }

    .features {
        padding-top: 57px;
        padding-bottom: 40px;
    }

    .feature-card {
        text-align: center;
        align-items: flex-start;
        gap: 12px;
    }

    .features__logo {
        width: 220px;
        height: 34px;
    }

    .feature-card__text {
        text-align: left;
        font-size: 14px;
        line-height: 16px;
    }

    .features__bg-line--2 {
        bottom: 0;
        right: 0;
    }

    .feature-card__icon {
        width: 52px;
        height: 52px;
    }

    .benefits {
        padding: var(--container-padding-mobile) var(--container-padding-mobile);
    }

    .benefits__title {
        font-size: 2rem;
    }

    .benefits__content {
        text-align: left;
    }

    .benefits__list {
        padding-left: 15px;
        margin: 30px 0;
    }

    .benefits__list li {
        font-size: 12px;
        font-weight: 600;
        line-height: 14px;
        letter-spacing: -0.36px;
        margin-bottom: 15px;
    }

    .benefits__list li::marker {
        display: block;
    }

    .benefits__list li span {
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        letter-spacing: -0.42px;
    }

    .benefits__list li br {
        display: none;
    }

    .benefits .container {
        padding: 32px var(--container-padding-mobile);
        background-image: url(../images/noda-benefits-bg.webp);
        background-size: cover;
    }

    .wallet-modes {
        padding: 40px 0;
    }

    .wallet-modes__title {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -0.96px;
    }

    .wallet-modes__subtitle {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 24px;
    }

    .wallet-modes__grid {
        flex-direction: column;
        gap: 16px;
    }

    .wallet-modes__card {
        height: auto;
    }

    .wallet-modes__face--default {
        display: none;
    }

    .wallet-modes__face--expanded {
        position: static;
        opacity: 1;
        visibility: visible;
        padding: 45px 15px 15px 15px;
        transition: none;
    }

    .wallet-modes__sub-icon {
        margin-top: 0;
    }

    .wallet-modes__expanded-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-bottom: 16px;
        text-align: center;
    }

    .wallet-modes__sub-cards {
        flex-direction: column;
        gap: 12px;
    }

    .wallet-modes__sub-card {
        min-height: 155px;
        padding: 20px 15px;
        justify-content: center;
    }

    .footer__top {
        padding: 50px 0;
        gap: 25px;
    }

    .footer__logo img {
        height: 22px;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        gap: 25px;
        text-align: center;
        padding: 40px 0;
    }

    .footer__policies {
        flex-wrap: wrap;
        justify-content: center;
    }

    .business-features {
        padding: 50px 0;
    }

    .business-features__grid {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .final__video {
        height: auto;
    }

    .business-features__item-title {
        font-size: 16px;
        line-height: 20px;
    }

    .industries {
        padding: 30px 0 50px 0;
        position: relative;
    }

    .industries__grid {
        margin: 30px 0;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .industries__item {
        padding: 16px;
    }

    .industries__item:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .industries__item:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .industries__item:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .industries__item:nth-child(4) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .industries__item:nth-child(5) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .industries__item:nth-child(6) {
        grid-area: 3 / 2 / 4 / 3;
    }

    .industries__image-wrapper {
        display: none;
    }

    .industries__item-title {
        margin: 12px 0;
        font-size: 16px;
        line-height: 18px;
    }

    .industries__item-description {
        font-size: 14px;
        line-height: 16px;
    }

    .industries__item-description br {
        display: none;
    }

    .final .container {
        padding: 0;
    }

    .final__content {
        padding: 0 var(--container-padding-mobile);
        gap: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .container {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }

    .hero {
        padding-bottom: 0;
    }

    .hero__inner {
        padding-inline: 0;
        gap: 0;
    }

    .hero__inner .hero__content {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }

    .hero__title {
        font-size: clamp(32px, 8.5vw, 40px);
    }

    .hero__title-logo {
        height: 0.7em;
    }

    .hero__content {
        width: 100%;
        z-index: 3;
    }

    .hero__desc {
        font-size: clamp(14px, 3.73vw, 16px);
        margin: 1.25rem 0;
    }

    .hero .btn-lg {
        font-size: clamp(12px, 3.2vw, 14px);
        line-height: clamp(14px, 3.73vw, 16px);
    }

    .hero__bg-line--1 {
        top: -20%;
        left: 0;
        z-index: 2;
    }

    .features__bg-line--2,
    .benefits__bg-line {
        display: none;
    }

    .business .hero__bg-line--1 {
        top: -32%;
    }

    .hero__video {
        width: 100%;
        position: relative;

    }

    .home .hero__video {
        margin-top: -65px;
    }

    .features__grid {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .features__noda-span {
        gap: 4px;
    }

    .features__noda {
        width: auto;
        height: 15px;
    }

    .money__title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .money__subtitle {
        font-size: 1rem;
        line-height: 1.1;
        margin: 20px 0 50px 0;
    }

    .wallet-modes__card-title {
        margin-top: 24px;
        font-size: 18px;
        line-height: 20px;
        letter-spacing: -0.54px;
    }

    .wallet-modes__card-desc {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.48px;
    }

    .card__title {
        font-size: 2rem;
        line-height: 1.2;
        max-width: 80%;
    }

    .card__subtitle {
        font-size: 14px;
        line-height: 16px;
        margin: 30px 0;
        max-width: 80%;
    }

    .join__subtitle,
    .ecosystem__subtitle {
        font-size: 14px;
        line-height: 16px;
    }

    .ecosystem__logo {
        display: none;
    }

    .ecosystem__logo-mobile {
        display: block;
        width: 251px;
        height: 68px;
    }

    .ecosystem__img {
        max-height: 220px;
    }

    .business-features__title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .business .hero__title span:nth-child(1) {
        line-height: clamp(22px, 6.15vw, 40px);
    }

    .business .hero__video {
        top: 45%;
        padding-bottom: 20px;
    }

    .business-features__title,
    .industries__title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .merchants__title {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
    }
}

/* --- Login Page Styles --- */
.login-body {
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: var(--spacing-sm);
    position: relative;
}

.login-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 0;
}

.login-page {
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-height: 100vh;
}

.login-card {
    background: rgba(43, 43, 43, 45%);
    border: 1px solid rgba(67, 229, 234, 0.6);
    border-radius: var(--radius-md);
    padding: 60px 54px;
    width: 100%;
    box-shadow:
        inset 0 2px 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 4px rgba(60, 202, 210, 0.21),
        0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 40px;
    backdrop-filter: blur(20px);
}

.login-header {
    display: flex;
    justify-content: center;
}

.login-header img {
    height: 35px;
    width: auto;
    display: block;
}

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

.login-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.login-submit {
    padding: 14px 24px;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 10px;
    background: var(--btn-gradient-primary);
    color: var(--text-white);
}

.login-signup {
    color: var(--text-white);
    padding: 10px 24px;
    margin-top: 10px;
    text-decoration: none;
}

.login-signup:hover {
    color: var(--text-white);
}

.login-forgot {
    font-size: 12px;
    color: var(--text-white);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.login-forgot:hover {
    color: var(--primary-teal);
}

.login-forgot:focus-visible,
.login-logo:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .login-card {
        padding: 40px 20px;
    }
}