@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800;900&display=swap");

:root {
    --ink: #11131d;
    --muted: #8c8f99;
    --soft: #f2f3f4;
    --soft-green: #ecf8ee;
    --green: #56cf65;
    --green-deep: #20aa55;
    --mint: #59d5bd;
    --navy: #080b1d;
    --navy-2: #11152b;
    --blue: #1d9bd7;
    --white: #fff;
    --line: #e7e8ea;
    --max: 1140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--green) var(--navy);
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: var(--navy);
}

html::-webkit-scrollbar-thumb {
    border: 2px solid var(--navy);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green), var(--mint));
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #70dc7d, #6ce0ca);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--white);
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.header,
main,
footer {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}

.header {
    position: relative;
    z-index: 50;
    display: grid;
    height: 72px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}

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

.brand-logo {
    display: grid;
    width: 38px;
    height: 38px;
    overflow: hidden;
    place-items: center;
    border-radius: 12px;
    background: var(--navy);
}

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

.brand-name {
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: .85;
    text-transform: lowercase;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 33px;
    font-size: 13px;
    font-weight: 500;
}

.nav a {
    transition: color .2s ease;
}

.nav a:hover {
    color: var(--green-deep);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-pill,
.header-button {
    display: inline-flex;
    height: 40px;
    padding: 0 15px;
    align-items: center;
    gap: 7px;
    border-radius: 12px;
    background: #f4f4f5;
    font-size: 13px;
    font-weight: 600;
}

.language-picker {
    position: relative;
}

.lang-pill {
    min-width: 78px;
    border: 0;
    justify-content: center;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
}

.lang-pill:focus-visible {
    outline: 2px solid rgba(86, 207, 101, .55);
    outline-offset: 2px;
}

.language-flag {
    display: block;
    width: 20px;
    height: 14px;
    overflow: hidden;
    flex: 0 0 20px;
    border-radius: 3px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 0 1px rgba(17, 19, 29, .08);
}

.flag-ru {
    background: linear-gradient(180deg, #fff 0 33.33%, #2355a6 33.33% 66.66%, #e43c46 66.66%);
}

.flag-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cpath fill='%23012169' d='M0 0h60v36H0z'/%3E%3Cpath stroke='%23fff' stroke-width='7' d='m0 0 60 36M60 0 0 36'/%3E%3Cpath stroke='%23C8102E' stroke-width='3.5' d='m0 0 60 36M60 0 0 36'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='M30 0v36M0 18h60'/%3E%3Cpath stroke='%23C8102E' stroke-width='7' d='M30 0v36M0 18h60'/%3E%3C/svg%3E");
}

.flag-ka {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Cpath fill='%23fff' d='M0 0h60v40H0z'/%3E%3Cpath fill='%23e30a17' d='M26 0h8v40h-8zM0 16h60v8H0z'/%3E%3Cg fill='%23e30a17'%3E%3Cpath d='M11 6h4v8h-4zM9 8h8v4H9zM45 6h4v8h-4zM43 8h8v4h-8zM11 26h4v8h-4zM9 28h8v4H9zM45 26h4v8h-4zM43 28h8v4h-8z'/%3E%3C/g%3E%3C/svg%3E");
}

.flag-th {
    background: linear-gradient(180deg, #d71920 0 16.66%, #fff 16.66% 33.33%, #2d2a70 33.33% 66.66%, #fff 66.66% 83.33%, #d71920 83.33%);
}

.lang-pill i {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 1px;
    border-right: 1.5px solid #858894;
    border-bottom: 1.5px solid #858894;
    transform: rotate(45deg);
    transition: transform .2s ease, margin .2s ease;
}

.language-picker.is-open .lang-pill i {
    margin-top: 3px;
    transform: rotate(225deg);
}

.language-menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    left: 50%;
    display: grid;
    width: 78px;
    padding: 6px;
    gap: 2px;
    border: 1px solid #ececef;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(17, 19, 29, .16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity .18s ease, transform .18s ease;
}

.language-picker.is-open .language-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.language-menu button {
    display: grid;
    width: 100%;
    height: 38px;
    padding: 0 7px;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 4px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #30323d;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] {
    background: #f1f8f2;
}

.language-menu button[aria-selected="true"] b {
    color: var(--green-deep);
}

.language-menu button b {
    font-size: 12px;
    font-weight: 700;
}

.header-button {
    background: var(--ink);
    color: var(--white);
}

.header-button svg,
.app-showcase-copy svg,
.hero-button-telegram {
    width: 17px;
    fill: currentColor;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: #f4f4f5;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px auto;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    width: min(calc(100vw - 36px), 1884px);
    min-height: 510px;
    margin-left: 50%;
    overflow: hidden;
    border-radius: 34px;
    background: #010610;
    color: var(--white);
    transform: translateX(-50%);
}

.hero-copy {
    position: relative;
    z-index: 5;
    width: 53%;
    padding: 73px 0 72px max(76px, calc((100% - var(--max)) / 2 + 20px));
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9ba1b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(86, 207, 101, .8);
}

.hero h1 {
    min-height: 142px;
    margin: 18px 0 18px;
    font-size: clamp(44px, 3.2vw, 56px);
    font-weight: 800;
    letter-spacing: -.052em;
    line-height: 1.05;
}

.rotating-word {
    display: inline-block;
    color: var(--green);
}

.caret {
    display: inline-block;
    width: 3px;
    height: .85em;
    margin-left: 5px;
    background: var(--green);
    animation: caret 1s step-end infinite;
    vertical-align: -.06em;
}

@keyframes caret {
    50% { opacity: 0; }
}

.hero-copy > p {
    max-width: 500px;
    margin: 0 0 32px;
    color: #c9cbd6;
    font-size: 17px;
    line-height: 1.45;
}

.hero-button {
    display: inline-flex;
    min-width: 210px;
    height: 54px;
    overflow: hidden;
    padding: 0 18px 0 22px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    background-clip: padding-box;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hero-button:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, .25);
    transform: translateY(-2px);
}

.hero-button-telegram {
    display: block;
    flex: 0 0 17px;
    height: 17px;
    color: var(--green-deep);
}

.hero-art {
    position: absolute;
    z-index: 1;
    inset: 0;
}

.hero-art::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 11, 29, .98) 0%, rgba(8, 11, 29, .88) 35%, rgba(8, 11, 29, .05) 67%, rgba(8, 11, 29, .06) 100%);
    content: "";
}

.hero-art img {
    position: absolute;
    top: 0;
    left: max(0px, calc((100% - var(--max)) / 2 + 70px));
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%);
}

.hero-route-card {
    position: absolute;
    z-index: 6;
    right: max(70px, calc((100% - var(--max)) / 2 + 20px));
    bottom: 58px;
    display: grid;
    width: 360px;
    min-height: 70px;
    padding: 13px 16px;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 20px;
    background: rgba(19, 26, 48, .78);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
    backdrop-filter: blur(18px);
}

.route-card-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: rgba(86, 207, 101, .14);
    color: var(--green);
    font-size: 21px;
}

.hero-route-card > span:not(.route-card-icon) {
    display: flex;
    flex-direction: column;
}

.hero-route-card b {
    font-size: 12px;
}

.hero-route-card small {
    margin-top: 3px;
    color: #969db2;
    font-size: 10px;
}

.route-card-amount {
    align-items: flex-end;
    text-align: right;
}

.hero-pills {
    position: absolute;
    z-index: 20;
    bottom: 0;
    left: 50%;
    display: flex;
    width: max-content;
    max-width: calc(100% - 24px);
    min-height: 50px;
    padding: 10px 70px 8px;
    align-items: center;
    justify-content: center;
    color: #454852;
    isolation: isolate;
    transform: translateX(-50%);
}

.hero-pills-shape {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-pills-shape path {
    fill: var(--white);
}

.hero-pills-scroll {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-pills span,
.hero-pills button,
.coming-countries-list span {
    display: inline-flex;
    min-height: 30px;
    padding: 6px 10px;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 999px;
    background: #f5f5f6;
    color: #454852;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-pills img,
.coming-countries-list img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-pills button {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    background: #f5f5f6;
    color: #1670db;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}

.hero-pills button:hover {
    background: #ebf4ff;
    transform: translateY(-1px);
}

.hero-pills button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.coming-countries-overlay {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
    background: rgba(1, 6, 16, .7);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    backdrop-filter: blur(9px);
}

.coming-countries-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.coming-countries-modal {
    position: relative;
    width: min(680px, 100%);
    padding: 34px 38px 38px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(1, 6, 16, .28);
    color: var(--ink);
    transform: translateY(18px) scale(.98);
    transition: transform .22s ease;
}

.coming-countries-overlay.is-open .coming-countries-modal {
    transform: translateY(0) scale(1);
}

.coming-countries-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #f0f1f3;
    color: #9b9da5;
    font-family: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.coming-countries-modal h2 {
    margin: 0 42px 18px 0;
    font-size: 25px;
    letter-spacing: -.03em;
}

.coming-countries-modal h3 {
    margin: 26px 0 16px;
    color: #898b93;
    font-size: 16px;
    font-weight: 600;
}

.coming-countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.coming-countries-list span {
    min-height: 34px;
    padding: 6px 12px 6px 7px;
    background: #f0f1f3;
    font-size: 12px;
}

.coming-countries-list.future span {
    color: #777a84;
}

body.countries-modal-open {
    overflow: hidden;
}

.facts {
    display: grid;
    min-height: 260px;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 40px;
}

.facts > div {
    text-align: center;
}

.facts strong {
    display: block;
    margin-bottom: 9px;
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -.045em;
}

.facts span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.clients-stat strong {
    min-width: 2ch;
    color: #343743;
    transition: color .25s ease;
}

.clients-stat strong.is-loaded {
    color: var(--ink);
}

@media (min-width: 1001px) {
    .hero-art img {
        object-position: center;
    }
}

.section {
    padding: 75px 0 115px;
    scroll-margin-top: 80px;
}

.section-heading {
    margin-bottom: 48px;
    text-align: center;
}

.section-heading h2,
.faq-heading h2,
.route-banner h2,
.app-showcase h2,
.telegram-cta h2 {
    margin: 0;
    font-size: clamp(37px, 4.2vw, 56px);
    font-weight: 700;
    letter-spacing: -.052em;
    line-height: 1.08;
}

.section-heading p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    display: flex;
    min-height: 520px;
    padding: 34px 34px 28px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    border-radius: 32px;
    background: var(--soft);
    text-align: center;
}

.feature-card-large {
    grid-column: 1 / -1;
    min-height: 560px;
}

.feature-copy {
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.035em;
}

.feature-card p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.card-button {
    position: relative;
    z-index: 3;
    display: inline-flex;
    min-width: 190px;
    height: 52px;
    margin-top: auto;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(28, 31, 42, .07);
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card-button:hover {
    box-shadow: 0 12px 35px rgba(28, 31, 42, .12);
    transform: translateY(-2px);
}

.deposit-visual {
    display: grid;
    width: 86%;
    margin: 70px auto 40px;
    grid-template-columns: 1fr 80px 1.35fr 80px 1fr;
    align-items: center;
}

.deposit-network,
.deposit-wallet {
    display: flex;
    min-height: 160px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e3e5;
    border-radius: 25px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 22px 48px rgba(18, 26, 34, .08);
}

.network-symbol {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 50%;
    background: #ff3038;
    color: var(--white);
    font-size: 24px;
}

.network-ton .network-symbol {
    background: var(--blue);
}

.deposit-network b,
.deposit-wallet span {
    font-size: 15px;
    font-weight: 700;
}

.deposit-network small,
.deposit-wallet small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.deposit-wallet {
    min-height: 205px;
    border-color: rgba(86, 207, 101, .35);
    background: linear-gradient(145deg, #13222a, #0a151b);
    color: var(--white);
    transform: translateY(7px);
}

.deposit-wallet::before {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
    place-items: center;
    border-radius: 17px;
    background: var(--green);
    color: #08210e;
    content: "S";
    font-size: 27px;
    font-weight: 900;
}

.deposit-wallet strong {
    margin-top: 13px;
    color: var(--green);
    font-size: 24px;
}

.flow-line {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, #d8dddf, var(--green), #d8dddf);
}

.flow-line::after {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.transfer-visual {
    display: flex;
    width: 88%;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.transfer-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.transfer-user > span {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border: 10px solid rgba(29, 155, 215, .15);
    border-radius: 31px;
    background: #1d9bd7;
    background-clip: padding-box;
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
}

.transfer-user-green > span {
    border-color: rgba(86, 207, 101, .18);
    background: var(--green);
    color: #08210e;
}

.transfer-user small {
    color: var(--muted);
}

.transfer-beam {
    position: relative;
    width: 180px;
    height: 3px;
    margin: 0 4px 25px;
    background: linear-gradient(90deg, var(--blue), var(--green));
}

.transfer-beam i {
    position: absolute;
    inset: -9px 0;
    background: linear-gradient(90deg, rgba(29, 155, 215, .18), rgba(86, 207, 101, .2));
    filter: blur(8px);
}

.transfer-beam b {
    position: absolute;
    top: -39px;
    left: 50%;
    padding: 6px 10px;
    border-radius: 9px;
    background: var(--white);
    font-size: 11px;
    white-space: nowrap;
    transform: translateX(-50%);
}

.exchange-visual {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.coin {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 50%;
    box-shadow: inset -10px -12px 18px rgba(0, 0, 0, .15), 0 24px 40px rgba(0, 0, 0, .15);
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
}

.coin-usdt {
    background: linear-gradient(145deg, #68ddc0, #20a88e);
}

.coin-ton {
    background: linear-gradient(145deg, #48c0ef, #087db9);
}

.exchange-arrows {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .09);
    color: var(--green-deep);
    font-size: 28px;
}

.feature-card-dark {
    background:
        radial-gradient(circle at 80% 55%, rgba(86, 207, 101, .2), transparent 35%),
        var(--navy);
    color: var(--white);
}

.feature-card-dark p {
    color: #aeb3c5;
}

.fiat-visual {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: center;
    gap: 12px;
    perspective: 900px;
}

.fiat-visual > div {
    display: flex;
    width: 29%;
    min-height: 160px;
    padding: 22px 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.fiat-visual > div:nth-child(2) {
    transform: translateY(-16px);
}

.fiat-visual span {
    font-size: 38px;
}

.fiat-visual b {
    margin-top: 12px;
    font-size: 20px;
}

.fiat-visual small {
    margin-top: 5px;
    color: #9098b0;
    font-size: 10px;
}

.card-button-light {
    color: var(--ink);
}

.history-visual {
    width: 100%;
    margin: auto;
    padding: 10px 19px;
    border-radius: 24px;
    background: var(--white);
}

.history-visual > div {
    display: grid;
    min-height: 70px;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.history-visual > div:last-child {
    border-bottom: 0;
}

.history-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    background: #eff1f2;
    color: var(--green-deep);
    font-size: 18px;
}

.history-visual p {
    display: flex;
    margin: 0;
    flex-direction: column;
}

.history-visual b,
.history-visual strong {
    color: var(--ink);
    font-size: 12px;
}

.history-visual small {
    color: var(--muted);
    font-size: 10px;
}

.history-visual strong.positive {
    color: var(--green-deep);
}

.countries-section {
    padding-top: 95px;
}

.country-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.country-card {
    position: relative;
    display: flex;
    min-height: 360px;
    padding: 28px;
    overflow: hidden;
    flex-direction: column;
    border-radius: 30px;
    background: var(--soft);
}

.country-card::after {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(86, 207, 101, .08);
    content: "";
}

.country-flag {
    margin-bottom: 65px;
    font-size: 48px;
}

.country-card small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.country-card h3 {
    margin: 5px 0 14px;
    font-size: 25px;
    letter-spacing: -.03em;
}

.country-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.country-arrow {
    position: absolute;
    z-index: 2;
    right: 25px;
    bottom: 25px;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 14px;
    background: var(--white);
    color: var(--green-deep);
    font-size: 20px;
}

.route-banner {
    position: relative;
    display: grid;
    min-height: 540px;
    margin: 35px 0 120px;
    padding: 65px 70px;
    overflow: hidden;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    border-radius: 34px;
    background:
        radial-gradient(circle at 76% 30%, rgba(85, 207, 101, .2), transparent 27%),
        var(--navy);
    color: var(--white);
}

.route-banner-copy {
    position: relative;
    z-index: 2;
}

.route-banner-copy > span,
.app-showcase-copy > span,
.telegram-cta > div > span,
.faq-heading > span {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.route-banner h2 {
    margin-top: 13px;
}

.route-banner p {
    max-width: 430px;
    margin: 19px 0 30px;
    color: #aeb4c6;
    font-size: 16px;
    line-height: 1.5;
}

.route-banner a,
.app-showcase-copy a {
    display: inline-flex;
    height: 53px;
    padding: 0 21px;
    align-items: center;
    border-radius: 15px;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.route-map {
    position: relative;
    display: grid;
    min-height: 350px;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
}

.route-origin {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.route-origin .coin {
    width: 120px;
    height: 120px;
    font-size: 55px;
}

.route-origin b {
    margin-top: 16px;
    font-size: 23px;
}

.route-origin small {
    margin-top: 3px;
    color: #7f879e;
}

.route-lines {
    display: flex;
    height: 260px;
    flex-direction: column;
    justify-content: space-around;
}

.route-lines i {
    position: relative;
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--green), rgba(86, 207, 101, .2));
}

.route-lines i::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.route-destinations {
    display: grid;
    gap: 15px;
}

.route-destinations span {
    display: flex;
    min-height: 72px;
    padding: 0 20px;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    font-size: 27px;
    backdrop-filter: blur(10px);
}

.route-destinations b {
    font-size: 16px;
}

.how-section {
    padding-top: 20px;
}

.steps {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
}

.steps li {
    position: relative;
    padding-top: 70px;
    text-align: center;
}

.steps li::after {
    position: absolute;
    top: 22px;
    left: calc(50% + 28px);
    width: calc(100% - 32px);
    height: 1px;
    background: var(--line);
    content: "";
}

.steps li:last-child::after {
    display: none;
}

.steps > li > span {
    position: absolute;
    top: 0;
    left: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: var(--soft);
    font-size: 12px;
    font-weight: 700;
    transform: translateX(-50%);
}

.steps h3 {
    margin: 0 0 7px;
    font-size: 16px;
}

.steps p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.app-showcase {
    position: relative;
    display: grid;
    min-height: 600px;
    margin: 25px 0 120px;
    padding: 60px 70px;
    overflow: hidden;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    border-radius: 34px;
    background: #eaf1f5;
}

.app-showcase-copy {
    position: relative;
    z-index: 2;
}

.app-showcase-copy h2 {
    margin: 14px 0 20px;
    max-width: 510px;
}

.app-showcase-copy p {
    max-width: 470px;
    margin: 0 0 30px;
    color: #707782;
    line-height: 1.5;
}

.app-showcase-copy a {
    gap: 10px;
    background: var(--ink);
    color: var(--white);
}

.app-phone {
    position: absolute;
    right: 75px;
    bottom: -250px;
    width: 390px;
    min-height: 680px;
    padding: 19px;
    border: 9px solid #14171d;
    border-radius: 48px;
    background: #09151b;
    box-shadow: 0 40px 100px rgba(28, 40, 48, .25);
    color: var(--white);
    transform: rotate(2deg);
}

.app-phone-bar {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #253640;
}

.app-phone-bar > span {
    width: 44px;
}

.app-phone-bar b {
    font-size: 13px;
}

.app-phone-bar i {
    color: #82939d;
    font-style: normal;
}

.app-user {
    display: flex;
    height: 72px;
    align-items: center;
    gap: 10px;
}

.app-user > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--green), var(--mint));
    color: #092217;
    font-weight: 800;
}

.app-user i {
    color: var(--green);
    font-style: normal;
}

.app-wallet-chip {
    display: inline-flex;
    padding: 8px 10px;
    align-items: center;
    gap: 8px;
    border: 1px solid #2b404c;
    border-radius: 11px;
    background: #12242e;
    font-size: 12px;
}

.app-wallet-chip img {
    width: 22px;
    height: 22px;
    border-radius: 7px;
}

.app-balance {
    display: flex;
    min-height: 135px;
    margin-top: 13px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #2f4955;
    border-radius: 22px;
    background: linear-gradient(145deg, #19303a, #11252e);
}

.app-balance small,
.app-balance span {
    color: #96a9b3;
    font-size: 11px;
}

.app-balance strong {
    margin: 11px 0 5px;
    font-size: 28px;
}

.app-balance strong b {
    color: #aebdc4;
    font-size: 12px;
}

.app-actions {
    display: grid;
    margin: 13px 0 26px;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.app-actions span {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.app-actions b {
    display: grid;
    width: 100%;
    height: 48px;
    place-items: center;
    border: 1px solid #2b424e;
    border-radius: 14px;
    background: #142731;
    color: var(--green);
    font-size: 20px;
}

.app-actions small {
    font-size: 8px;
}

.app-phone h3 {
    font-size: 17px;
}

.app-asset {
    display: grid;
    min-height: 68px;
    padding: 10px 0;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid #263944;
}

.app-asset .coin {
    width: 38px;
    height: 38px;
    font-size: 18px;
}

.app-asset p {
    display: flex;
    margin: 0;
    flex-direction: column;
}

.app-asset b,
.app-asset > strong {
    font-size: 11px;
}

.app-asset small {
    color: #879aa5;
    font-size: 9px;
}

.security-section {
    padding-top: 25px;
}

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

.security-grid article {
    min-height: 240px;
    padding: 29px;
    border-radius: 28px;
    background: var(--soft);
}

.security-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 50px;
    place-items: center;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 9px 25px rgba(0, 0, 0, .05);
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 800;
}

.security-grid h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.security-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.custody-note {
    display: grid;
    margin-top: 20px;
    padding: 20px 24px;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 14px;
    border: 1px solid #e7e7df;
    border-radius: 20px;
    background: #fbfaf4;
}

.custody-note > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: #f1eddb;
    color: #8a742b;
    font-weight: 700;
}

.custody-note p {
    margin: 0;
    color: #77705b;
    font-size: 12px;
    line-height: 1.45;
}

.support-cards {
    display: grid;
    margin: 10px 0 140px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.support-cards article {
    min-height: 390px;
    padding: 30px;
    border-radius: 32px;
    background: var(--soft);
}

.support-bubble {
    display: grid;
    width: 96px;
    height: 96px;
    margin-bottom: 80px;
    place-items: center;
    border: 14px solid rgba(86, 207, 101, .15);
    border-radius: 31px;
    background: var(--green);
    background-clip: padding-box;
    color: #0c3318;
    font-size: 34px;
    font-weight: 800;
}

.support-bubble-news {
    border-color: rgba(89, 213, 189, .15);
    background: var(--mint);
}

.support-avatar {
    overflow: hidden;
    border: 0;
    background: #0d1821;
    box-shadow: 0 15px 28px rgba(10, 22, 31, .16);
}

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

.support-bubble-instagram {
    border: 0;
    background: linear-gradient(145deg, #7b61ff, #ec4a8a 65%, #f2a33a);
    color: var(--white);
    box-shadow: 0 15px 28px rgba(133, 72, 190, .18);
}

.support-bubble-instagram svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
}

.support-bubble-instagram .instagram-dot {
    fill: currentColor;
    stroke: none;
}

.support-cards h3 {
    margin: 0 0 9px;
    font-size: 27px;
    letter-spacing: -.03em;
}

.support-cards p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.support-cards a {
    display: inline-flex;
    margin-top: 25px;
    align-items: center;
    gap: 10px;
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 600;
}

.faq-section {
    display: grid;
    padding-top: 10px;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
}

.faq-heading > span {
    color: var(--green-deep);
}

.faq-heading h2 {
    margin-top: 12px;
}

.faq-heading p {
    max-width: 400px;
    margin: 20px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.faq-heading a {
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 600;
}

.accordion {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item button {
    display: grid;
    width: 100%;
    min-height: 80px;
    padding: 0;
    grid-template-columns: 1fr 42px;
    align-items: center;
    gap: 20px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-item button i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    background: var(--soft);
    color: var(--green-deep);
    font-size: 18px;
    font-style: normal;
}

.faq-answer {
    display: grid;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .3s ease;
}

.faq-answer p {
    margin: 0 60px 25px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
    opacity: 1;
}

.telegram-cta {
    display: grid;
    min-height: 280px;
    margin: 20px 0 100px;
    padding: 48px;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 25px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 0%, rgba(255, 255, 255, .35), transparent 25%),
        linear-gradient(135deg, #5ad169, #58d5b9);
    color: #082313;
}

.telegram-cta-icon {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .38);
}

.telegram-cta-icon svg {
    width: 38px;
    fill: #0c5c30;
}

.telegram-cta > div > span {
    color: #155d31;
}

.telegram-cta h2 {
    margin: 7px 0;
    font-size: clamp(31px, 3.7vw, 48px);
}

.telegram-cta p {
    margin: 0;
    color: #247341;
    font-weight: 500;
}

.telegram-cta > a {
    display: inline-flex;
    height: 54px;
    padding: 0 21px;
    align-items: center;
    gap: 25px;
    border-radius: 15px;
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

footer {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 24px 24px;
    border-top: 0;
    background: #0d0f12;
    color: var(--white);
}

.footer-shell {
    width: min(100%, 960px);
    margin-inline: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 500fr 160fr 260fr;
    gap: 20px;
}

.footer-card {
    border-radius: 22px;
    background: #17191f;
}

.footer-brand-card,
.footer-news-card {
    min-height: 145px;
    padding: 30px 32px;
}

.footer-brand-card {
    display: flex;
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-brand {
    width: fit-content;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-company-details {
    display: flex;
    margin-top: 17px;
    flex-direction: column;
    gap: 2px;
    color: #858a98;
    font-size: 10px;
    line-height: 1.4;
}

.footer-company-email {
    width: fit-content;
    margin-top: 4px;
    color: #d8dbe3;
    font-weight: 500;
    transition: color .18s ease;
}

.footer-company-email:hover {
    color: var(--green);
}

.footer-news-card {
    display: flex;
    grid-column: 2 / 4;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.footer-news-card h3,
.footer-navigation h3,
.footer-media-card h3 {
    margin: 7px 0 17px;
    font-size: 18px;
    line-height: 1.25;
}

.footer-news-card h3 {
    margin-top: 0;
}

.footer-subscribe {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.footer-subscribe > input:not(.footer-subscribe-trap),
.footer-subscribe > button {
    height: 39px;
    border: 0;
    border-radius: 11px;
    font-size: 11px;
    font-family: inherit;
}

.footer-subscribe > input:not(.footer-subscribe-trap) {
    min-width: 0;
    padding: 0 13px;
    outline: 0;
    background: #242730;
    color: var(--white);
    transition: box-shadow .18s ease, background .18s ease;
}

.footer-subscribe > input:not(.footer-subscribe-trap)::placeholder {
    color: #787d8c;
    opacity: 1;
}

.footer-subscribe > input:not(.footer-subscribe-trap):focus {
    background: #292c36;
    box-shadow: 0 0 0 2px rgba(82, 209, 103, .38);
}

.footer-subscribe > button {
    min-width: 120px;
    padding: 0 15px;
    cursor: pointer;
    background: var(--green);
    color: #092414;
    font-weight: 700;
    transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.footer-subscribe > button:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.footer-subscribe > button:disabled {
    cursor: wait;
    opacity: .62;
    transform: none;
}

.footer-subscribe-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.footer-subscribe-status {
    position: absolute;
    right: 32px;
    bottom: 9px;
    left: 32px;
    min-height: 12px;
    margin: 0;
    color: #8c92a0;
    font-size: 9px;
    line-height: 1.25;
}

.footer-subscribe-status.is-success {
    color: var(--green);
}

.footer-subscribe-status.is-error {
    color: #ff7777;
}

.footer-navigation,
.footer-media-card {
    min-height: 302px;
    padding: 31px 32px;
}

.footer-navigation {
    grid-column: 1 / 3;
    margin-top: 4px;
}

.footer-media-card {
    grid-column: 3;
    margin-top: 4px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links b {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 11px;
}

.footer-links a {
    color: #858a98;
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-media-card {
    display: flex;
    flex-direction: column;
}

.footer-media-card h3 {
    margin-bottom: 20px;
}

.footer-media-card > a {
    display: flex;
    min-height: 36px;
    align-items: center;
    gap: 10px;
    color: #d8dae0;
    font-size: 12px;
    font-weight: 600;
}

.footer-media-card > a svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: var(--white);
}

.footer-bottom {
    display: grid;
    margin-top: 20px;
    padding: 0 4px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
    border-top: 0;
    color: #6f7481;
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1000px) {
    .header,
    main,
    footer {
        width: min(calc(100% - 32px), var(--max));
    }

    .nav {
        gap: 20px;
    }

    .hero-copy {
        width: 58%;
        padding-left: 48px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-route-card {
        right: 35px;
        width: 325px;
    }

    .hero-pills span:nth-child(2) {
        display: inline-flex;
    }

    .deposit-visual {
        width: 96%;
        grid-template-columns: 1fr 45px 1.35fr 45px 1fr;
    }

    .route-banner,
    .app-showcase {
        padding-inline: 45px;
    }

    .app-phone {
        right: 25px;
        transform: scale(.9) rotate(2deg);
        transform-origin: bottom right;
    }
}

@media (max-width: 820px) {
    .header {
        position: sticky;
        top: 10px;
        z-index: 50;
        width: calc(100% - 24px);
        height: 60px;
        margin-top: 10px;
        padding: 0 14px;
        grid-template-columns: auto 1fr auto;
        border-radius: 18px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 8px 28px rgba(20, 23, 31, .08);
        backdrop-filter: blur(16px);
    }

    main,
    footer {
        width: calc(100% - 24px);
    }

    .brand-logo {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .brand-name {
        font-size: 15px;
    }

    .nav,
    .header-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        z-index: 45;
        inset: 0;
        display: flex;
        padding: 100px 24px 30px;
        flex-direction: column;
        gap: 4px;
        background: rgba(255, 255, 255, .98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .menu-open .mobile-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu a {
        padding: 14px;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-menu .mobile-menu-cta {
        margin-top: 18px;
        border: 0;
        border-radius: 15px;
        background: var(--green);
        text-align: center;
    }

    .hero {
        min-height: 740px;
        margin-top: 12px;
        border-radius: 27px;
    }

    .hero-copy {
        width: 100%;
        padding: 55px 24px 0;
        text-align: center;
    }

    .hero-kicker {
        justify-content: center;
    }

    .hero h1 {
        min-height: 126px;
        margin-top: 17px;
        font-size: clamp(35px, 10vw, 48px);
        line-height: 1.08;
    }

    .hero-copy > p {
        max-width: 520px;
        margin-inline: auto;
        font-size: 15px;
    }

    .hero-art {
        top: 300px;
    }

    .hero-art::after {
        background: linear-gradient(180deg, var(--navy) 0%, rgba(8, 11, 29, .78) 20%, rgba(8, 11, 29, .04) 60%);
    }

    .hero-art img {
        left: 50%;
        width: auto;
        height: 100%;
        max-width: none;
        object-position: center;
        transform: translateX(-50%);
    }

    .hero-route-card {
        right: 50%;
        bottom: 80px;
        width: min(calc(100% - 40px), 410px);
        transform: translateX(50%);
    }

    .hero-pills {
        width: calc(100% - 48px);
        max-width: calc(100% - 30px);
        padding-inline: 42px;
    }

    .hero-pills-scroll {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .hero-pills-scroll::-webkit-scrollbar {
        display: none;
    }

    .hero-pills span:nth-child(2) {
        display: inline-flex;
    }

    .facts {
        min-height: 420px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .facts > div {
        padding: 28px 0;
        border-bottom: 1px solid var(--line);
    }

    .facts > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 65px 0 90px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .feature-grid,
    .country-cards,
    .security-grid,
    .support-cards {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-column: auto;
    }

    .feature-card {
        min-height: 500px;
    }

    .feature-card-large {
        min-height: 630px;
    }

    .deposit-visual {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 34px auto 20px;
    }

    .deposit-network,
    .deposit-wallet {
        width: 86%;
        min-height: 120px;
        margin-inline: auto;
    }

    .deposit-wallet {
        min-height: 150px;
        transform: none;
    }

    .deposit-wallet::before {
        width: 42px;
        height: 42px;
        margin-bottom: 9px;
        border-radius: 13px;
        font-size: 20px;
    }

    .deposit-wallet strong {
        font-size: 19px;
    }

    .flow-line {
        width: 2px;
        height: 16px;
        margin-inline: auto;
        background: linear-gradient(180deg, #d8dddf, var(--green));
    }

    .flow-line::after {
        top: auto;
        right: 50%;
        bottom: -1px;
        transform: translateX(50%) rotate(135deg);
    }

    .country-card {
        min-height: 300px;
    }

    .country-flag {
        margin-bottom: 38px;
    }

    .route-banner {
        min-height: 760px;
        padding: 48px 28px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .route-banner p {
        margin-inline: auto;
    }

    .route-map {
        width: min(100%, 520px);
        margin: 25px auto 0;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 45px 20px;
    }

    .steps li:nth-child(2)::after {
        display: none;
    }

    .app-showcase {
        min-height: 850px;
        padding: 50px 28px;
        grid-template-columns: 1fr;
        align-items: start;
        text-align: center;
    }

    .app-showcase-copy p {
        margin-inline: auto;
    }

    .app-phone {
        right: 50%;
        bottom: -260px;
        transform: translateX(50%) scale(.82);
        transform-origin: bottom center;
    }

    .faq-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-heading {
        text-align: center;
    }

    .faq-heading p {
        margin-inline: auto;
    }

    .telegram-cta {
        grid-template-columns: 70px 1fr;
    }

    .telegram-cta > a {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .telegram-cta-icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

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

    .footer-links {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .header {
        width: calc(100% - 20px);
    }

    main,
    footer {
        width: calc(100% - 20px);
    }

    .hero {
        min-height: 755px;
    }

    .hero-copy {
        padding-inline: 18px;
    }

    .hero-kicker {
        font-size: 10px;
    }

    .hero h1 {
        min-height: 124px;
        font-size: 36px;
    }

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

    .hero-art {
        top: 318px;
    }

    .hero-art img {
        left: 50%;
        width: auto;
        height: 100%;
        max-width: none;
        margin-left: 0;
        object-position: center;
        transform: translateX(-50%);
    }

    .hero-route-card {
        bottom: 82px;
        grid-template-columns: 38px 1fr;
    }

    .route-card-amount {
        display: none !important;
    }

    .hero-pills {
        bottom: 0;
    }

    .coming-countries-overlay {
        padding: 14px;
    }

    .coming-countries-modal {
        padding: 29px 22px 26px;
        border-radius: 24px;
    }

    .coming-countries-modal h2 {
        font-size: 22px;
    }

    .section-heading h2,
    .faq-heading h2,
    .route-banner h2,
    .app-showcase h2 {
        font-size: 36px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .feature-card {
        min-height: 480px;
        padding: 27px 20px 22px;
        border-radius: 26px;
    }

    .feature-card-large {
        min-height: 620px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .transfer-user > span {
        width: 72px;
        height: 72px;
        border-width: 8px;
        border-radius: 25px;
        font-size: 26px;
    }

    .transfer-beam {
        width: 90px;
    }

    .coin {
        width: 70px;
        height: 70px;
        font-size: 33px;
    }

    .exchange-visual {
        gap: 14px;
    }

    .exchange-arrows {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 22px;
    }

    .fiat-visual {
        gap: 7px;
    }

    .fiat-visual > div {
        width: 32%;
        min-height: 145px;
        padding-inline: 7px;
        border-radius: 19px;
    }

    .fiat-visual span {
        font-size: 30px;
    }

    .fiat-visual b {
        font-size: 16px;
    }

    .history-visual {
        padding-inline: 12px;
    }

    .history-visual > div {
        grid-template-columns: 38px 1fr auto;
    }

    .history-visual strong {
        font-size: 10px;
    }

    .route-banner {
        min-height: 820px;
        margin-bottom: 90px;
        padding: 40px 20px;
        border-radius: 27px;
    }

    .route-map {
        min-height: 390px;
        grid-template-columns: 1fr;
    }

    .route-origin .coin {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }

    .route-lines {
        width: 2px;
        height: 55px;
        margin: auto;
    }

    .route-lines i {
        display: none;
    }

    .route-lines i:first-child {
        display: block;
        width: 2px;
        height: 55px;
        background: linear-gradient(180deg, var(--green), rgba(86, 207, 101, .2));
    }

    .route-lines i:first-child::after {
        top: auto;
        right: 50%;
        bottom: 0;
        transform: translateX(50%) rotate(135deg);
    }

    .route-destinations {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .route-destinations span {
        min-height: 78px;
        padding: 8px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        border-radius: 16px;
        font-size: 25px;
    }

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

    .steps li::after {
        top: 48px;
        left: 50%;
        width: 1px;
        height: 34px;
    }

    .steps li:nth-child(2)::after {
        display: block;
    }

    .app-showcase {
        min-height: 790px;
        padding: 42px 18px;
        border-radius: 27px;
    }

    .app-phone {
        bottom: -285px;
        transform: translateX(50%) scale(.72);
    }

    .security-grid article {
        min-height: 220px;
    }

    .security-icon {
        margin-bottom: 35px;
    }

    .custody-note {
        align-items: start;
    }

    .support-cards {
        margin-bottom: 100px;
    }

    .support-cards article {
        min-height: 360px;
        padding: 28px;
        border-radius: 27px;
    }

    .support-bubble {
        margin-bottom: 55px;
    }

    .faq-item button {
        min-height: 74px;
        font-size: 15px;
    }

    .faq-answer p {
        margin-right: 0;
        font-size: 13px;
    }

    .telegram-cta {
        padding: 27px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .telegram-cta-icon {
        margin-inline: auto;
    }

    .telegram-cta h2 {
        font-size: 33px;
    }

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

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

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-bottom p {
        text-align: left;
    }
}

@media (max-width: 820px) {
    .hero {
        width: 100%;
        margin-left: 0;
        transform: none;
    }

    footer {
        width: 100%;
        padding-inline: 20px;
    }

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

    .footer-card {
        grid-column: auto;
    }

    .footer-navigation,
    .footer-media-card {
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    footer {
        width: 100%;
        padding: 20px 10px 18px;
    }

    .footer-brand-card,
    .footer-news-card,
    .footer-navigation,
    .footer-media-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 18px;
    }

    .footer-subscribe-status {
        position: static;
        min-height: 13px;
        margin-top: 8px;
    }

    .footer-subscribe > button {
        min-width: 112px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 26px 18px;
    }

    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 0 8px;
    }

}
