/* ===== Premium digital landing â€” mint / lime / black ===== */
:root {
    --hp-mint: #e8f4dc;
    --hp-mint-2: #eef8e4;
    --hp-mint-3: #dceec8;
    --hp-lime: #d4ff33;
    --hp-lime-soft: #e8ff7a;
    --hp-ink: #1a1a1a;
    --hp-ink-deep: #0f0f0f;
    --hp-ink-mid: #2b2b2b;
    --hp-text: #1a1a1a;
    --hp-muted: #6b7a5c;
    --hp-card: #ffffff;
    --hp-border: rgba(40, 60, 20, 0.12);
    --hp-shadow: 0 16px 40px rgba(20, 30, 10, 0.1);
    --hp-container: min(1120px, calc(100% - 40px));
    --hp-nav-h: 68px;
    --hp-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --hp-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.hp-home {
    font-family: var(--hp-body);
    background: var(--hp-mint);
    background-image: linear-gradient(180deg, var(--hp-mint-2) 0%, var(--hp-mint) 40%, var(--hp-mint-3) 100%);
    color: var(--hp-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.hp-container {
    width: min(1120px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* â€”â€” Nav â€”â€” */
.hp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--hp-nav-h);
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 255, 51, 0.12);
    transition: background .3s, box-shadow .3s;
}
.hp-nav.scrolled {
    background: rgba(15, 15, 15, 0.92);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.hp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
}
.hp-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.hp-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    max-width: 100%;
    padding: 9px 16px 9px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
    border: 1px solid rgba(212, 255, 51, 0.22);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hp-brand-chip--light {
    background: linear-gradient(135deg, #1c1c1c 0%, #111 100%);
}
.hp-brand-signal {
    flex-shrink: 0;
    width: 22px;
    height: 18px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    padding: 0 1px;
}
.hp-brand-signal i {
    display: block;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #e8ff7a, #d4ff33);
    box-shadow: 0 0 8px rgba(212, 255, 51, 0.35);
}
.hp-brand-signal i:nth-child(1) { height: 7px; }
.hp-brand-signal i:nth-child(2) { height: 12px; }
.hp-brand-signal i:nth-child(3) { height: 17px; }
.hp-logo-word {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    font-family: var(--hp-body);
    line-height: 1;
    white-space: nowrap;
}
.hp-logo-a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .01em;
}
.hp-logo-b {
    color: #d4ff33;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
}
.hp-nav-word {
    font-family: var(--hp-display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.hp-nav-center { display: none; align-items: center; gap: 2px; }
.hp-nav-mid {
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    transition: color .2s, background .2s;
}
.hp-nav-mid:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.hp-nav-actions { display: flex; align-items: center; gap: 8px; }
.hp-nav-link {
    padding: 9px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.hp-nav-link--ghost {
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
}
.hp-nav-link--ghost:hover { background: rgba(255, 255, 255, 0.06); }
.hp-nav-link--fill {
    color: var(--hp-ink);
    background: linear-gradient(135deg, #e8ff7a 0%, #d4ff33 55%, #b8e832 100%);
    box-shadow: 0 8px 20px rgba(184, 232, 50, 0.28);
}
.hp-nav-link--fill:hover { transform: translateY(-1px); }
.hp-nav-toggle {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hp-hide-mob { display: none; }

.hp-nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
}
.hp-nav-overlay.open { opacity: 1; pointer-events: auto; }
.hp-nav-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    z-index: 1200;
    background: #121212;
    color: #fff;
    padding: 20px 18px;
    transform: translateX(105%);
    transition: transform .3s cubic-bezier(.2, .9, .2, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hp-nav-drawer.open { transform: translateX(0); }
.hp-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: var(--hp-display);
    font-weight: 800;
}
.hp-nav-close {
    width: 36px; height: 36px;
    border: none; border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff; cursor: pointer;
}
.hp-drawer-link {
    padding: 14px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}
.hp-drawer-link:hover { background: rgba(212, 255, 51, 0.1); color: var(--hp-lime); }
.drawer-cta {
    margin-top: auto;
    display: grid;
    gap: 8px;
    padding-top: 16px;
}
.drawer-cta .hp-nav-link { text-align: center; }

/* â€”â€” Hero â€”â€” */
.hp-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    padding: calc(var(--hp-nav-h) + 28px) 0 48px;
    color: #fff;
    overflow: hidden;
    background-color: #0f0f0f !important;
    background-image: none !important;
}
.hp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 45% at 90% 10%, rgba(212, 255, 51, 0.1), transparent 55%),
        linear-gradient(165deg, #1a1a1a 0%, #111 55%, #0a0a0a 100%);
}
.hp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .22;
    animation: hpFloat 10s ease-in-out infinite;
    pointer-events: none;
}
.hp-orb--a {
    width: 280px; height: 280px;
    top: 8%; right: 8%;
    background: rgba(212, 255, 51, 0.28);
}
.hp-orb--b {
    width: 200px; height: 200px;
    bottom: 12%; left: 6%;
    background: rgba(184, 232, 50, 0.18);
    animation-delay: -3s;
}
.hp-orb--c {
    width: 140px; height: 140px;
    top: 42%; left: 42%;
    background: rgba(255, 255, 255, 0.06);
    animation-delay: -6s;
}
.hp-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(212, 255, 51, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 255, 51, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    animation: hpGridDrift 28s linear infinite;
}
@keyframes hpFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -18px) scale(1.05); }
}
@keyframes hpGridDrift {
    from { background-position: 0 0; }
    to { background-position: 56px 56px; }
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 28px;
    align-items: center;
    width: 100%;
    min-width: 0;
}
.hp-hero-copy {
    max-width: 560px;
    width: 100%;
    min-width: 0;
}
.hp-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    font-family: var(--hp-body);
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 12px;
    word-break: break-word;
}
.hp-brand .hp-logo-a {
    color: #fff;
    font-size: inherit;
    font-weight: 800;
    letter-spacing: inherit;
}
.hp-brand .hp-logo-b {
    color: var(--hp-lime);
    font-size: inherit;
    font-weight: 800;
    letter-spacing: inherit;
}
.hp-hero h1 {
    font-family: var(--hp-body);
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 10px;
}
.hp-hero-desc {
    font-size: clamp(13px, 2.2vw, 16px);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 42ch;
    margin-bottom: 20px;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    font-family: inherit;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.hp-btn-primary {
    color: var(--hp-ink);
    background: linear-gradient(135deg, #e8ff7a 0%, #d4ff33 55%, #b8e832 100%);
    box-shadow: 0 8px 20px rgba(184, 232, 50, 0.28);
}
.hp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(184, 232, 50, 0.36);
}
.hp-btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
}
.hp-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.hp-btn--cta {
    min-width: 168px;
    min-height: 54px;
    padding: 15px 28px;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
}
.hp-btn--cta.hp-btn-primary {
    color: #1a1a1a !important;
    background: linear-gradient(135deg, #e8ff7a 0%, #d4ff33 55%, #b8e832 100%) !important;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow:
        0 12px 28px rgba(184, 232, 50, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.hp-btn--cta.hp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(184, 232, 50, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hp-btn--cta.hp-btn-ghost {
    color: #fff !important;
    border: 1.5px solid rgba(212, 255, 51, 0.55);
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.hp-btn--cta.hp-btn-ghost:hover {
    background: rgba(212, 255, 51, 0.16) !important;
    border-color: #d4ff33;
    color: #fff !important;
    transform: translateY(-2px);
}

.hp-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hp-contact-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
    width: 100%;
}
.hp-contact-chip {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 96px;
    padding: 12px 8px;
    border-radius: 16px;
    background: #f4ffd6;
    border: 1px solid rgba(26, 26, 26, 0.12);
    color: #1a1a1a;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    transition: transform .15s, border-color .15s, box-shadow .15s;
}
.hp-contact-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        125deg,
        rgba(212, 255, 51, 0.2) 0%,
        rgba(212, 255, 51, 0.65) 40%,
        rgba(255, 255, 255, 0.45) 55%,
        rgba(184, 232, 50, 0.5) 75%,
        rgba(212, 255, 51, 0.2) 100%
    );
    background-size: 220% 220%;
    animation: hpChipFill 4.5s ease-in-out infinite;
    pointer-events: none;
}
.hp-contact-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 26, 26, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
}
.hp-contact-chip:hover::before {
    animation-duration: 2.2s;
}
.hp-contact-chip img,
.hp-contact-ico {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.hp-contact-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: visible;
}
.hp-play-svg {
    width: 28px;
    height: 28px;
    display: block;
    flex-shrink: 0;
}
.hp-contact-lbl {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 88px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    color: #1a1a1a;
}
.hp-contact-chip--app {
    background: #d4ff33;
    border-color: rgba(26, 26, 26, 0.14);
}
.hp-contact-chip--app .hp-contact-ico {
    background: #fff;
}

@keyframes hpChipFill {
    0% { background-position: 0% 50%; opacity: .55; }
    50% { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: .55; }
}

@media (prefers-reduced-motion: reduce) {
    .hp-contact-chip::before { animation: none; }
}

/* Device mock */
.hp-hero-visual { justify-self: center; width: min(100%, 380px); }
.hp-device {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(160deg, #242424, #141414);
    border: 1px solid rgba(212, 255, 51, 0.22);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    animation: hpDeviceFloat 7s ease-in-out infinite;
}
@keyframes hpDeviceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hp-device-bar {
    display: flex; gap: 6px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hp-device-bar span {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.hp-device-bar span:first-child { background: #ff6b6b; }
.hp-device-bar span:nth-child(2) { background: #ffd166; }
.hp-device-bar span:nth-child(3) { background: #d4ff33; }
.hp-device-body { padding: 18px 18px 20px; }
.hp-device-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.hp-device-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.hp-device-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--hp-lime);
}
.hp-device-live i {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--hp-lime);
    box-shadow: 0 0 0 0 rgba(212, 255, 51, 0.6);
    animation: hpPulse 1.6s ease-out infinite;
}
@keyframes hpPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 255, 51, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(212, 255, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 255, 51, 0); }
}
.hp-device-balance small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}
.hp-device-balance strong {
    font-family: var(--hp-display);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
}
.hp-device-chart {
    margin: 16px 0 14px;
    height: 90px;
}
.hp-device-chart svg { width: 100%; height: 100%; }
.hp-chart-line {
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: hpDraw 2.2s ease forwards 0.4s;
}
.hp-chart-fill {
    opacity: 0;
    animation: hpFadeIn .8s ease forwards 1.2s;
}
@keyframes hpDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes hpFadeIn {
    to { opacity: 1; }
}
.hp-device-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.hp-device-row > div {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.hp-device-row small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
}
.hp-device-row b {
    font-size: 14px;
    font-weight: 800;
    color: var(--hp-lime);
}

.hp-hero-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 72px;
    background: linear-gradient(180deg, transparent, #e8f4dc);
    z-index: 1;
    pointer-events: none;
}

/* â€”â€” Sections â€”â€” */
.hp-section {
    padding: 40px 0;
}
.hp-section-head {
    margin-bottom: 20px;
    max-width: 520px;
}
.hp-section-head h2 {
    font-family: var(--hp-body);
    font-size: clamp(22px, 4.5vw, 28px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.2;
    color: var(--hp-ink);
    margin-bottom: 8px;
}
.hp-section-head p {
    font-size: 15px;
    font-weight: 500;
    color: var(--hp-muted);
    line-height: 1.5;
}

/* â€”â€” How it works â€”â€” */
.hp-how {
    position: relative;
}
.hp-how .hp-container {
    overflow: hidden;
}
.hp-steps-wrap {
    position: relative;
}
.hp-steps {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 6px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hp-steps::-webkit-scrollbar { display: none; }
.hp-step {
    position: relative;
    flex: 0 0 min(78%, 280px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 18px 16px 16px;
    border-radius: 22px;
    background: linear-gradient(155deg, #222 0%, #111 55%, #0c0c0c 100%);
    border: 1px solid rgba(212, 255, 51, 0.2);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #fff;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hp-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% -10%, rgba(212, 255, 51, 0.22), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
    pointer-events: none;
}
.hp-step::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(90deg, #d4ff33, transparent 70%);
    opacity: .85;
}
.hp-step-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.hp-step-ico {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d4ff33;
    color: #121212;
    font-size: 17px;
    box-shadow: 0 10px 22px rgba(184, 232, 50, 0.32);
}
.hp-step-num {
    font-family: var(--hp-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    color: rgba(212, 255, 51, 0.92);
}
.hp-step h3 {
    position: relative;
    z-index: 1;
    font-family: var(--hp-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 6px;
    color: #fff;
}
.hp-step p {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.45;
    margin: 0;
}
.hp-steps-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}
.hp-steps-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.18);
    transition: width .25s ease, background .25s ease;
}
.hp-steps-dots span.is-active {
    width: 22px;
    background: #d4ff33;
    box-shadow: 0 0 0 3px rgba(212, 255, 51, 0.22);
}
@media (hover: hover) {
    .hp-step:hover {
        transform: translateY(-4px);
        border-color: rgba(212, 255, 51, 0.45);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    }
}

.hp-plans-section {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}
.hp-plans-embed {
    min-width: 0;
    width: 100%;
    overflow: hidden;
}
.hp-plans-section .hp-container {
    overflow: hidden;
}
@media (max-width: 639px) {
    .hp-plans-section .hp-container {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }
    .hp-plans-embed .pl-grid {
        width: 100%;
    }
}

.hp-plans-viewall {
    margin-top: 22px;
    text-align: center;
}
.hp-plans-viewall a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--hp-ink);
    padding: 12px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--hp-border);
    box-shadow: 0 6px 16px rgba(40, 60, 20, 0.06);
    transition: transform .2s;
}
.hp-plans-viewall a:hover { transform: translateY(-1px); }

/* â€”â€” Live deposits / withdrawals â€”â€” */
.hp-live-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.hp-live-title h2 { margin-bottom: 0; }
.hp-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(212, 255, 51, 0.18);
    border: 1px solid rgba(212, 255, 51, 0.35);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.hp-live-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4ff33;
    box-shadow: 0 0 0 0 rgba(212, 255, 51, 0.7);
    animation: hp-live-pulse 1.6s ease-out infinite;
}
@keyframes hp-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(184, 232, 50, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(184, 232, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 232, 50, 0); }
}
.hp-live-panel {
    border-radius: 22px;
    background: linear-gradient(155deg, #1f1f1f 0%, #111 55%, #0c0c0c 100%);
    border: 1px solid rgba(212, 255, 51, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    padding: 4px 0;
}
.hp-live-viewport {
    height: 250px;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.hp-live-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
    animation: hp-live-up 28s linear infinite;
}
.hp-live-track--slow {
    animation-duration: 22s;
}
@keyframes hp-live-up {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}
.hp-live-panel:hover .hp-live-track {
    animation-play-state: paused;
}
.hp-live-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.hp-live-row:last-child { border-bottom: 0; }
.hp-live-avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d4ff33;
    color: #121212;
    font-size: 14px;
    font-weight: 800;
}
.hp-live-avatar--out {
    background: rgba(212, 255, 51, 0.14);
    color: #d4ff33;
    border: 1px solid rgba(212, 255, 51, 0.28);
}
.hp-live-meta {
    min-width: 0;
    flex: 1;
}
.hp-live-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-live-meta small {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.48);
}
.hp-live-amt {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
}
.hp-live-amt--in { color: #d4ff33; }
.hp-live-amt--out { color: #ff8f8f; }
.hp-live-empty {
    padding: 28px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

/* â€”â€” Features â€”â€” */
.hp-feat .hp-container {
    overflow: hidden;
}
.hp-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hp-features::-webkit-scrollbar { display: none; }
.hp-feature {
    position: relative;
    flex: 0 0 min(78%, 280px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 18px 16px 16px;
    border-radius: 22px;
    background: linear-gradient(155deg, #222 0%, #111 55%, #0c0c0c 100%);
    border: 1px solid rgba(212, 255, 51, 0.2);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #fff;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hp-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 255, 51, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
    pointer-events: none;
}
.hp-feature-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.hp-feature-ico {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d4ff33;
    color: #121212;
    font-size: 17px;
    box-shadow: 0 10px 22px rgba(184, 232, 50, 0.32);
    margin: 0;
}
.hp-feature-tag {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(212, 255, 51, 0.85);
}
.hp-feature h3 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 6px;
    color: #fff;
}
.hp-feature p {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.45;
    margin: 0;
}
@media (hover: hover) {
    .hp-feature:hover {
        transform: translateY(-4px);
        border-color: rgba(212, 255, 51, 0.45);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    }
}

/* â€”â€” CTA â€”â€” */
.hp-cta {
    position: relative;
    margin: 8px 0 0;
    padding: 40px 0;
    overflow: hidden;
    color: #fff;
}
.hp-cta-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 255, 51, 0.2), transparent 40%),
        linear-gradient(145deg, #2b2b2b 0%, #1a1a1a 50%, #0f0f0f 100%);
}
.hp-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.hp-cta h2 {
    font-family: var(--hp-body);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.hp-cta h2 .hp-logo-a {
    color: #fff;
    font-size: inherit;
    font-weight: 800;
}
.hp-cta h2 .hp-logo-b {
    color: var(--hp-lime);
    font-size: inherit;
    font-weight: 800;
}
.hp-cta p {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
    line-height: 1.5;
}

/* â€”â€” Footer â€”â€” */
.hp-footer {
    padding: 28px 0 36px;
    background: var(--hp-mint-2);
    border-top: 1px solid var(--hp-border);
}
.hp-footer-inner { text-align: center; }
.hp-footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}
.hp-footer-brand .hp-brand-chip {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
.hp-footer p {
    font-size: 13px;
    color: var(--hp-muted);
    font-weight: 500;
    max-width: 360px;
    margin: 0 auto 14px;
    line-height: 1.5;
}
.hp-footer-copy {
    font-size: 12px;
    font-weight: 600;
    color: #8a9a7a;
}

/* â€”â€” Reveal â€”â€” */
.hp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}
.hp-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}
.hp-hero .hp-reveal { transition-delay: .05s; }
.hp-hero .hp-hero-visual.hp-reveal { transition-delay: .18s; }
.hp-steps .hp-step:nth-child(2) { transition-delay: .06s; }
.hp-steps .hp-step:nth-child(3) { transition-delay: .12s; }
.hp-steps .hp-step:nth-child(4) { transition-delay: .18s; }
.hp-features .hp-feature:nth-child(2) { transition-delay: .06s; }
.hp-features .hp-feature:nth-child(3) { transition-delay: .12s; }
.hp-features .hp-feature:nth-child(4) { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
    .hp-orb, .hp-grid, .hp-device, .hp-chart-line, .hp-chart-fill, .hp-device-live i {
        animation: none !important;
    }
    .hp-chart-line { stroke-dashoffset: 0; }
    .hp-chart-fill { opacity: 1; }
    .hp-reveal { opacity: 1; transform: none; transition: none; }
    .hp-live-badge i { animation: none !important; }
    .hp-live-track { animation: none !important; transform: none !important; }
}

/* â€”â€” Responsive â€”â€” */
@media (min-width: 640px) {
    .hp-hide-mob { display: inline-flex; }
    .hp-nav-toggle { display: none; }
    .hp-steps {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
        gap: 14px;
    }
    .hp-step {
        flex: none;
        max-width: none;
        width: auto;
        min-width: 0;
    }
    .hp-steps-dots { display: none; }
    .hp-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
        gap: 14px;
    }
    .hp-feature {
        flex: none;
        max-width: none;
        width: auto;
        min-width: 0;
    }
    .hp-contact-row {
        gap: 12px;
        max-width: 360px;
    }
    .hp-contact-chip {
        min-height: 110px;
    }
}

@media (min-width: 900px) {
    .hp-nav-center { display: flex; }
    .hp-nav-word { display: inline; }
    .hp-hero {
        align-items: center;
        min-height: 100svh;
    }
    .hp-hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 48px;
    }
    .hp-hero-visual { display: block; }
    .hp-steps {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
        position: relative;
    }
    .hp-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.16), transparent);
        z-index: 0;
        pointer-events: none;
    }
    .hp-features {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
    .hp-section { padding: 52px 0; }
    .hp-cta { padding: 52px 0; }
}

@media (max-width: 899px) {
    .hp-nav-inner {
        justify-content: flex-end;
    }
    .hp-nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        pointer-events: auto;
    }
    .hp-nav-actions {
        margin-left: auto;
        position: relative;
        z-index: 3;
    }
    .hp-hero-visual { display: none; }
    .hp-hero {
        min-height: auto;
        padding: calc(var(--hp-nav-h) + 24px) 0 36px;
    }
    .hp-section { padding: 32px 0; }
    .hp-section-head { margin-bottom: 16px; }
}

@media (max-width: 480px) {
    .hp-container {
        width: calc(100% - 24px);
    }
    .hp-nav-inner { padding: 0 12px; gap: 8px; }
    .hp-brand-chip { padding: 8px 14px 8px 11px; gap: 10px; }
    .hp-logo-a, .hp-logo-b { font-size: 16px; }
    .hp-nav-link--fill { padding: 8px 12px; font-size: 12px; }
    .hp-hero { padding-bottom: 28px; }
    .hp-brand { font-size: clamp(28px, 10vw, 40px); }
    .hp-hero h1 { font-size: clamp(20px, 6vw, 26px); }
    .hp-hero-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .hp-hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hp-btn--cta {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 12px;
    }
    .hp-contact-row { gap: 8px; margin-top: 14px; }
    .hp-contact-chip {
        min-height: 88px;
        padding: 10px 6px;
        border-radius: 14px;
        gap: 6px;
    }
    .hp-contact-chip img,
    .hp-contact-ico {
        width: 40px;
        height: 40px;
    }
    .hp-play-svg { width: 22px; height: 22px; }
    .hp-contact-lbl { font-size: 10px; max-width: 100%; }
    .hp-cta { padding: 32px 0; }
    .hp-cta h2 { font-size: clamp(24px, 7vw, 32px); }
    .hp-footer { padding: 28px 0 36px; }
}