@font-face {
    font-family: 'Neue Machina';
    src: url('/public/fonts/NeueMachina-PlainLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('/public/fonts/NeueMachina-PlainRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('/public/fonts/NeueMachina-PlainLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

:root {
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --muted: rgba(255, 255, 255, 0.38);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Neue Machina', sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 60px 60px;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-size: 44px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: 6px;
}

.preloader-spinner {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.promo-banner {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.92);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
    z-index: 999;
    backdrop-filter: blur(12px);
    animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.promo-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 18px;
}

.promo-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.promo-message {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.promo-title {
    font-size: 14px;
    font-weight: 400;
}

.promo-subtitle {
    font-size: 12px;
    color: var(--muted);
}

.promo-highlight {
    color: #fff;
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-btn {
    padding: 9px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Neue Machina', sans-serif;
    font-weight: 400;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.promo-btn:hover {
    opacity: 0.85;
}

.promo-close {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 12px;
}

.promo-close:hover {
    border-color: var(--border-hover);
    color: #fff;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 77px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

header .container {
    max-width: 100% !important;
    padding: 0 28px !important;
    height: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 100px;
    width: auto;
    display: block;
    margin-top: -12px;
    user-select: none;
    -webkit-user-drag: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-docs,
.btn-telegram {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Neue Machina', sans-serif;
    font-weight: 400;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-docs:hover,
.btn-telegram:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.lang-switcher {
    position: relative;
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
    padding: 7px 11px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Neue Machina', sans-serif;
    transition: all 0.2s;
    font-size: 13px;
}

.lang-switcher:hover {
    border-color: var(--border-hover);
}

.lang-caret {
    transition: transform 0.2s ease;
    font-size: 9px;
}

.lang-switcher.open .lang-caret {
    transform: rotate(180deg);
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #0c0c0c;
    border: 1px solid var(--border);
    border-radius: 10px;
    min-width: 130px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
}

.lang-menu div {
    padding: 11px 14px;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    transition: background 0.15s;
    font-family: 'Neue Machina', sans-serif;
}

.lang-menu div:hover {
    background: rgba(255, 255, 255, 0.04);
}

.lang-switcher.open .lang-menu {
    display: flex;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 22px;
    height: 1px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050505;
    z-index: 998;
    padding: 28px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Neue Machina', sans-serif;
    transition: all 0.2s;
}

.mobile-menu-item:hover {
    border-color: var(--border-hover);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    z-index: 2;
}

.hero.banner-closed {
    padding-top: 130px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: 1.5px;
    color: var(--muted);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 68px;
    font-weight: 400;
    line-height: 1.03;
    margin-bottom: 28px;
    letter-spacing: -3.5px;
    overflow-wrap: break-word;
}

.hero h1 span {
    display: inline-block;
}

@keyframes typeReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

.hero h1 span.tw-animate {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    animation: typeReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.highlight {
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
}

.hero p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 480px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-family: 'Neue Machina', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.22s, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s;
}

.btn-primary:hover {
    background: rgba(235, 235, 235, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.btn-primary:active,
.btn-secondary:active,
.btn-docs:active,
.btn-telegram:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border: 1px solid var(--border);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Neue Machina', sans-serif;
    font-size: 14px;
    transition: border-color 0.22s, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-hover-fill {
    position: relative;
    overflow: hidden;
}

.btn-hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.btn-hover-fill:hover::before {
    left: 130%;
    transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary.btn-hover-fill:hover {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.btn-secondary.btn-hover-fill:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary>*,
.btn-secondary>* {
    position: relative;
    z-index: 1;
}

.hero-widget-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-widget-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(255, 255, 255, 0.035) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-widget {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 40px 80px rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 20px;
    animation: widgetFloat 5s ease-in-out infinite;
    overflow: visible;
}


@keyframes widgetFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }
}

.hw-timer-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
    width: fit-content;
    background: rgba(80, 220, 120, 0.15);
    border: 1px solid rgba(80, 220, 120, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    color: #5dde82;
    font-variant-numeric: tabular-nums;
    margin-bottom: 14px;
}

.hw-timer-badge i {
    font-size: 11px;
}

.hw-main {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

.hw-qr-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hw-qr-box {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hw-qr-svg {
    width: 80px;
    height: 80px;
}

.hw-qr-toggle {
    display: flex;
    gap: 6px;
}

.hw-toggle-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hw-toggle-btn.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.hw-toggle-btn:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.18);
}

.hw-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hw-field-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hw-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
}

.hw-field-val {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Neue Machina', monospace;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.hw-amount-big {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
}

.hw-copy-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 11px;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.hw-copy-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hw-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.hw-notice i {
    color: #d4a017;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hw-wallet-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(51, 117, 187, 0.12);
    border: 1px solid rgba(51, 117, 187, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    margin-bottom: 18px;
    transition: background 0.2s, border-color 0.2s;
}

.hw-wallet-btn:hover {
    background: rgba(51, 117, 187, 0.2);
    border-color: rgba(51, 117, 187, 0.4);
}

.hw-wallet-icon {
    flex-shrink: 0;
}

.hw-wallet-info {
    flex: 1;
}

.hw-wallet-label {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hw-wallet-name {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.hw-wallet-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.hw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 16px;
}

.hw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.hw-step-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    max-width: 40px;
}

.hw-step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hw-step-dot--active {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.hw-step-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.hw-step--active .hw-step-title {
    color: #fff;
    font-weight: 400;
}

.hw-step-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.3;
}

.marquee-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    background: rgba(5, 5, 5, 0.8);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;

}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    font-weight: 400;
    transition: color 0.2s;
}

.marquee-item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--muted);
    flex-shrink: 0;
}

.marquee-item .coin-icon {
    width: 16px;
    height: 16px;
    filter: grayscale(100%) brightness(0.6);
    object-fit: contain;
}

.scramble-char {
    display: inline-block;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: rgba(5, 5, 5, 0.6);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
}

.section-title {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.problem-rows {
    display: flex;
    flex-direction: column;
}

.problem-row {
    display: grid;
    grid-template-columns: 320px 1fr 40px;
    align-items: baseline;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    transition: background 0.2s;
}

.problem-row:last-child {
    border-bottom: 1px solid var(--border);
}

.problem-row:hover {
    background: rgba(255, 255, 255, 0.015);
}

.problem-row .problem-number {
    font-size: 52px;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.05;
    white-space: nowrap;
    min-width: 320px;
}

.problem-row-body {
    min-width: 0;
}

.problem-row-body h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
}

.problem-row-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

.problem-row-index {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
    text-align: right;
}

.features-list {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 28px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    transition: background 0.2s;
}

.feature-row:last-child {
    border-bottom: 1px solid var(--border);
}

.feature-row:hover {
    background: rgba(255, 255, 255, 0.012);
}

.feature-icon-sm {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.feature-row:hover .feature-icon-sm {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.feature-row-body h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.4;
}

.feature-row-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

.pricing-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    max-width: 1060px;
    margin: 0 auto;
    align-items: end;
}

.pricing-card {
    padding: 50px 40px;
    background: rgba(5, 5, 5, 0.85);
    transition: background 0.25s;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.pricing-card:hover {
    background: rgba(14, 14, 14, 0.95);
}

.pricing-card--startup {
    opacity: 0.6;
    transform: scale(0.96);
    transform-origin: bottom center;
    transition: opacity 0.25s, transform 0.25s, background 0.25s;
}

.pricing-card--startup:hover {
    opacity: 0.8;
}

.pricing-card--business {
    position: relative;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(12, 12, 12, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 0 0 1px rgba(255, 255, 255, 0.04), 0 40px 60px rgba(0, 0, 0, 0.5);
    padding-top: 60px;
}

.pricing-card--business .plan-name {
    color: #fff;
}

.pricing-featured-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 28px;
    padding: 12px 24px;
}

.pricing-card--enterprise {
    opacity: 0.7;
    transform: scale(0.96);
    transform-origin: bottom center;
    transition: opacity 0.25s, transform 0.25s, background 0.25s;
}

.pricing-card--enterprise:hover {
    opacity: 0.9;
}

.plan-name {
    font-weight: 400;
    font-size: 28px;
    text-align: center;
    margin-bottom: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.price-period {
    color: var(--muted);
    font-size: 12px;
}

.price-features {
    list-style: none;
}

.price-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l3.5 3.5L12 3.5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

.price-features li.feature-inherited::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l3.5 3.5L12 3.5' stroke='rgba(255,255,255,0.7)' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.price-features li.feature-inherited {
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

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

.crypto-card {
    padding: 30px 26px;
    background: rgba(5, 5, 5, 0.85);
    position: relative;
    transition: background 0.25s;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.crypto-card:hover {
    background: rgba(14, 14, 14, 0.95);
}

.crypto-card.coming-soon {
    opacity: 0.35;
    pointer-events: none;
}

.crypto-card .badge {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 400;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-icon img {
    width: 22px;
    height: 22px;
    filter: grayscale(100%) contrast(10);
    object-fit: contain;
}

.crypto-info h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2px;
}

.crypto-symbol {
    color: var(--muted);
    font-size: 12px;
}

.crypto-description {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
    font-weight: 300;
}

.cta-section {
    text-align: center;
}

.cta-section h2 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.cta-section p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
    background: rgba(5, 5, 5, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 3px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 250px;
    font-weight: 300;
}

.footer-column h4 {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    font-weight: 300;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 13px;
}

.social-links a:hover {
    border-color: var(--border-hover);
    color: #fff;
}

.hw-screen {
    display: none;
}

.hw-screen--active {
    display: block;
}

.hw-select-title {
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.3px;
}

.hw-sel-group {
    position: relative;
}

.hw-sel-trigger {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
    gap: 10px;
}

.hw-sel-trigger:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.hw-sel-trigger--disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.hw-sel-placeholder {
    flex: 1;
}

.hw-sel-chevron {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
}

.hw-sel-chevron--open {
    transform: rotate(180deg);
}

.hw-sel-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    z-index: 200;
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
}

.hw-sel-dropdown.hw-sel-open {
    display: block;
}

.hw-sel-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.12s;
}

.hw-sel-option:last-child {
    border-bottom: none;
}

.hw-sel-option:hover {
    background: rgba(255, 255, 255, 0.07);
}

.hw-sel-option img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.hw-confirm-btn {
    width: 100%;
    margin-top: 14px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    font-family: 'Neue Machina', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    font-weight: 400;
}

.hw-confirm-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: default;
}

.hw-confirm-btn:not(:disabled):hover {
    background: rgba(235, 235, 235, 1);
}

.hw-coin-list {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.hw-coin-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: background 0.15s;
    overflow: hidden;
}

.hw-coin-row:last-child {
    border-bottom: none;
}

.hw-coin-row::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.045) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0s;
}

.hw-coin-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hw-coin-row:hover::after {
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.hw-coin-row:active {
    background: rgba(255, 255, 255, 0.08);
}

.hw-coin-row img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
}

.hw-coin-row-name {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.hw-coin-row-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 4px;
}

.hw-coin-row-arrow {
    margin-left: auto;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    transition: transform 0.2s, color 0.2s;
}

.hw-coin-row:hover .hw-coin-row-arrow {
    transform: translateX(2px);
    color: rgba(255, 255, 255, 0.5);
}

.hw-network-back {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 4px 0 12px;
    transition: color 0.2s;
}

.hw-network-back:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hw-network-back i {
    font-size: 10px;
}

.hw-back-btn {
    width: 100%;
    margin-top: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Neue Machina', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hw-back-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 52px;
        white-space: normal;
    }

    .hero-split {
        gap: 48px;
    }
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 40px;
        white-space: normal;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        padding-bottom: 60px;
    }

    .hero {
        padding-bottom: 0;
    }

    .hero-widget-wrap {
        display: none;
    }

    .hero-widget-glow {
        display: none;
    }

    .hero-widget {
        max-width: 480px;
        margin: 0 auto;
        animation: none;
        width: 100%;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .pricing-card--startup,
    .pricing-card--enterprise {
        opacity: 0.75;
        transform: none;
    }

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

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

    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .problem-row {
        grid-template-columns: max-content 1fr 28px;
        align-items: baseline;
        gap: 24px;
        padding: 28px 0;
    }

    .problem-row .problem-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
        letter-spacing: -1.5px;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }

    .promo-banner {
        position: static;
        top: auto;
        animation: none;
        border-top: 1px solid var(--border);
        margin-top: 77px;
        padding: 14px 18px;
    }

    .hero {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 0;
        align-items: flex-start;
    }

    .hero.banner-closed {
        padding-top: 40px;
    }

    .container {
        padding: 0 20px;
    }

    .promo-content {
        flex-direction: column;
        gap: 14px;
    }

    .promo-text {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-widget-wrap {
        padding: 40px 20px 50px;
    }

    .problem-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 24px 0;
    }

    .problem-row-index {
        display: none;
    }

    .problem-row .problem-number {
        font-size: 40px;
    }

    .feature-row {
        grid-template-columns: 36px 1fr;
        gap: 16px;
    }

    .hw-main {
        grid-template-columns: 90px 1fr;
        gap: 10px;
    }

    .hw-qr-svg {
        width: 62px;
        height: 62px;
    }

    .hw-qr-box {
        padding: 7px;
    }

    .hw-amount-big {
        font-size: 11px;
    }

    .hw-field-val {
        font-size: 10px;
    }

    .hw-wallet-name {
        font-size: 12px;
    }

    .hw-step-title {
        font-size: 10px;
    }

    .hw-step-sub {
        font-size: 8px;
    }

    .hero-widget {
        padding: 16px;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

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

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

@keyframes rocketFly {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    15% {
        transform: translate(1px, -2px);
        opacity: 1;
    }

    30% {
        transform: translate(0px, -1px);
        opacity: 1;
    }

    42% {
        transform: translate(1px, -3px);
        opacity: 1;
    }

    55% {
        transform: translate(18px, -18px);
        opacity: 0;
    }

    56% {
        transform: translate(-10px, 20px);
        opacity: 0;
    }

    82% {
        transform: translate(-1px, 3px);
        opacity: 1;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.btn-rocket-icon {
    display: inline-block;
    animation: rocketFly 3.2s ease-in-out infinite;
}

.widget-section {
    display: none;
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: rgba(5, 5, 5, 0.8);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.widget-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.widget-section-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget-section-title {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2.5px;
    line-height: 1.0;
}

.widget-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.widget-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    border-bottom: 1px solid var(--border);
}

.widget-feature-list li:first-child {
    border-top: 1px solid var(--border);
}

.widget-feature-list li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l3.5 3.5L12 3.5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.widget-section .hero-widget {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    animation: none;
    overflow: visible;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 32px 64px rgba(0, 0, 0, 0.6);
}

.hero-widget-wrap .hero-widget {
    overflow: visible;
}

@media (max-width: 968px) {
    .widget-section {
        display: block;
    }
}

@media (max-width: 640px) {
    .widget-section-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .widget-section-title {
        font-size: 36px;
    }
}

.faq-section {
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

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

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

.faq-item summary {
    display: grid;
    grid-template-columns: 1fr 28px;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    user-select: none;
    transition: color 0.2s;
}

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

.faq-item summary:hover {
    color: rgba(255, 255, 255, 0.75);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.2s;
}

.faq-item[open] .faq-icon {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item[open] .faq-icon svg {
    transform: rotate(45deg);
    stroke: rgba(255, 255, 255, 0.7);
}

.faq-body {
    padding-bottom: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    font-weight: 300;
    max-width: 640px;
}

.faq-body a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.faq-body a:hover {
    color: #fff;
}