.jh-body {
    background: #fff;
}

[x-cloak] {
    display: none !important;
}

.jh-muted {
    color: var(--jt-text-3);
    font-size: 0.85rem;
}

.jh-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--jt-border);
}

.jh-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.jh-nav__right,
.jh-nav__left,
.jh-nav__brand,
.jh-nav__links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.jh-nav__brand {
    font-weight: 800;
    color: var(--jt-primary);
    gap: 8px;
}

.jh-nav__brand img {
    width: 36px;
    height: 36px;
}

.jh-nav__line {
    width: 1px;
    height: 28px;
    background: var(--jt-border);
}

.jh-nav__links a,
.jh-nav__links button,
.jh-nav__login {
    background: none;
    border: 0;
    color: var(--jt-text);
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
}

.jh-nav__links a:hover,
.jh-nav__links button:hover {
    background: var(--jt-bg);
}

.jh-nav__signup {
    background: var(--jt-primary);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 12px;
}

.jh-nav__user {
    font-weight: 700;
}

.jh-nav__burger {
    display: none;
    background: none;
    border: 0;
}

.jh-drop {
    position: relative;
}

.jh-drop__menu {
    position: absolute;
    top: calc(100% - 4px);
    right: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--jt-border);
    border-radius: 16px;
    box-shadow: var(--jt-shadow);
    padding: 14px;
    display: grid;
    gap: 8px;
}

.jh-drop__menu--wide {
    min-width: 320px;
    grid-template-columns: 1fr 1fr;
}

.jh-drop__val {
    font-weight: 800;
}

.jh-drop__row {
    display: flex;
    gap: 8px;
}

.jh-drop__row .jt-btn {
    flex: 1;
    text-align: center;
}

.jh-nav__mobile {
    display: none;
    padding: 8px 24px 16px;
    border-top: 1px solid var(--jt-border);
}

.jh-nav__mobile a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
}

.jh-hero,
.jh-coins,
.jh-rates,
.jh-why,
.jh-banners,
.jh-howto,
.jh-help,
.jh-app,
.jh-footer__grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px;
}

.jh-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
    padding-top: 28px;
}

.jh-hero__copy {
    position: relative;
}

.jh-hero__shapes {
    position: absolute;
    inset: -40px 10% auto auto;
    width: 280px;
    height: 280px;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 155, 135, 0.18), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(190, 160, 100, 0.2), transparent 50%);
    pointer-events: none;
}

.jh-hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 24px;
}

.jh-hero h1 span {
    display: block;
    color: var(--jt-primary);
}

.jh-hero h1 strong {
    color: var(--jt-primary);
}

.jh-ticker {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--jt-border);
    border-radius: 18px;
    padding: 16px 20px;
}

.jh-ticker span {
    display: block;
    color: var(--jt-text-3);
    font-size: 0.8rem;
}

.jh-calc {
    background: #fff;
    border: 1px solid var(--jt-border);
    border-radius: 24px;
    box-shadow: var(--jt-shadow);
    padding: 20px;
}

.jh-calc__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.jh-calc__tabs button {
    border: 0;
    background: var(--jt-bg);
    border-radius: 14px;
    padding: 14px 10px;
    font-weight: 700;
    color: var(--jt-text-2);
}

.jh-calc__tabs .is-active {
    background: var(--jt-primary-soft);
    color: var(--jt-primary);
}

.jh-field {
    margin-bottom: 12px;
}

.jh-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--jt-text-2);
    font-size: 0.85rem;
}

.jh-swap {
    width: 40px;
    height: 40px;
    margin: 4px auto 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--jt-border);
    background: #fff;
    border-radius: 50%;
    color: var(--jt-primary);
    font-size: 1.1rem;
}

.jh-cta {
    position: relative;
    margin-top: 8px;
    overflow: visible;
}

.jh-cta__badge {
    position: absolute;
    top: -10px;
    left: 12px;
    background: var(--jt-gold);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
}

.jh-total {
    display: flex;
    justify-content: space-between;
    margin: 12px 0 16px;
    font-weight: 700;
}

.jh-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.jh-section-head--center {
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.jh-section-head h2,
.jh-why h2,
.jh-howto h2,
.jh-app h2 {
    margin: 0;
    font-size: 1.5rem;
}

.jh-section-head a {
    color: var(--jt-primary);
    font-weight: 700;
}

.jh-coins__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.jh-coin {
    border: 1px solid var(--jt-border);
    border-radius: 18px;
    padding: 16px;
    background: #fff;
    min-width: 220px;
}

.jh-coin__top {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

.jh-coin__top span:last-child,
.jh-coin__top div span {
    display: block;
    color: var(--jt-text-3);
    font-size: 0.75rem;
}

.jh-coin__prices {
    font-weight: 800;
}

.jh-rates__card {
    background: #fff;
    border: 1px solid var(--jt-border);
    border-radius: 20px;
    padding: 8px 16px 16px;
    box-shadow: 0 10px 40px rgba(15, 40, 38, 0.04);
}

.jh-why__intro {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.jh-why__art {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #009b87, #0a3d38);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.jh-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.jh-why__grid article {
    border: 1px solid var(--jt-border);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}

.jh-why__grid h3 {
    margin: 10px 0 8px;
    font-size: 1rem;
}

.jh-why__grid p,
.jh-help p,
.jh-app p {
    margin: 0;
    color: var(--jt-text-2);
}

.jh-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-weight: 800;
}

.jh-icon--gold { background: rgba(190, 160, 100, 0.15); color: #bea064; }
.jh-icon--blue { background: rgba(13, 116, 233, 0.12); color: #0d74e9; }
.jh-icon--red { background: rgba(218, 91, 75, 0.12); color: #da5b4b; }
.jh-icon--teal { background: var(--jt-primary-soft); color: var(--jt-primary); }

.jh-stats {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: var(--jt-bg);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.jh-stats strong {
    display: block;
    font-size: 1.15rem;
}

.jh-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.jh-banner {
    min-height: 180px;
    border-radius: 22px;
    padding: 28px;
    color: #fff;
    display: flex;
    align-items: end;
}

.jh-banner h3,
.jh-banner p {
    margin: 0 0 8px;
}

.jh-banner--teal {
    background: linear-gradient(135deg, #009b87, #065f55);
}

.jh-banner--gold {
    background: linear-gradient(135deg, #c9a56a, #8c6a3a);
}

.jh-howto__tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
}

.jh-howto__tabs button {
    border: 1px solid var(--jt-border);
    background: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
}

.jh-howto__tabs .is-active {
    background: var(--jt-primary);
    border-color: var(--jt-primary);
    color: #fff;
}

.jh-howto__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.jh-howto ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.jh-howto li {
    counter-increment: step;
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--jt-border);
}

.jh-howto li::before {
    content: counter(step);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--jt-primary-soft);
    color: var(--jt-primary);
    display: grid;
    place-items: center;
    font-weight: 800;
    flex: 0 0 auto;
}

.jh-phone {
    background: linear-gradient(180deg, #0b2f2b, #009b87);
    color: #fff;
    border-radius: 32px;
    padding: 32px 24px;
    min-height: 320px;
    box-shadow: var(--jt-shadow);
}

.jh-phone strong {
    display: block;
    font-size: 1.6rem;
    margin: 8px 0 24px;
}

.jh-phone__bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    margin-bottom: 10px;
}

.jh-phone__cta {
    margin-top: 28px;
    background: #fff;
    color: var(--jt-primary);
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
}

.jh-help {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.jh-help a {
    border: 1px solid var(--jt-border);
    border-radius: 18px;
    padding: 20px;
    background: #fff;
}

.jh-help h3 {
    margin: 0 0 8px;
}

.jh-app {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: var(--jt-bg);
    border-radius: 24px;
    margin-bottom: 24px;
}

.jh-app__links {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.jh-app__links span {
    background: #fff;
    border: 1px solid var(--jt-border);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
}

.jh-qr {
    text-align: center;
}

.jh-qr div {
    width: 120px;
    height: 120px;
    margin: 0 auto 8px;
    background:
        repeating-linear-gradient(90deg, #111 0 8px, transparent 8px 12px),
        repeating-linear-gradient(0deg, #111 0 8px, transparent 8px 12px);
    background-color: #fff;
    border-radius: 12px;
}

.jh-footer {
    background: #f7f8f8;
    border-top: 1px solid var(--jt-border);
    margin-top: 24px;
}

.jh-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.jh-footer h4 {
    margin: 0 0 12px;
}

.jh-footer a,
.jh-footer p {
    display: block;
    color: var(--jt-text-2);
    margin-bottom: 8px;
}

.jh-footer__copy {
    border-top: 1px solid var(--jt-border);
    padding: 16px 24px;
    text-align: center;
    color: var(--jt-text-3);
    font-size: 0.85rem;
}

@media (max-width: 1100px) {
    .jh-nav__links,
    .jh-nav__line {
        display: none;
    }

    .jh-nav__burger,
    .jh-nav__mobile {
        display: block;
    }

    .jh-hero,
    .jh-howto__body,
    .jh-banners,
    .jh-why__grid,
    .jh-help,
    .jh-stats,
    .jh-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .jh-hero,
    .jh-howto__body,
    .jh-banners,
    .jh-why__grid,
    .jh-help,
    .jh-stats,
    .jh-footer__grid,
    .jh-app {
        grid-template-columns: 1fr;
        display: grid;
    }

    .jh-nav__signup {
        display: none;
    }

    .jh-hero h1 {
        font-size: 2rem;
    }
}
