:root {
    --hxsh-ink: #111018;
    --hxsh-ink-soft: #292735;
    --hxsh-paper: #f5f3ed;
    --hxsh-white: #ffffff;
    --hxsh-acid: #d7ff36;
    --hxsh-violet: #8d63ff;
    --hxsh-coral: #ff6d54;
    --hxsh-cyan: #66dcff;
    --hxsh-line: rgba(17, 16, 24, 0.14);
    --hxsh-muted: #6e6a78;
    --hxsh-radius: 22px;
    --hxsh-shadow: 0 28px 80px rgba(17, 16, 24, 0.15);
    --hxsh-font-display: "Syne", sans-serif;
    --hxsh-font-body: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.hxsh-site {
    margin: 0;
    color: var(--hxsh-ink);
    background: var(--hxsh-paper);
    font-family: var(--hxsh-font-body);
    -webkit-font-smoothing: antialiased;
}

body.hxsh-site,
body.hxsh-site button,
body.hxsh-site input,
body.hxsh-site textarea,
body.hxsh-site select {
    font-family: var(--hxsh-font-body);
}

body.hxsh-site h1,
body.hxsh-site h2,
body.hxsh-site h3,
body.hxsh-site h4 {
    margin-top: 0;
    font-family: var(--hxsh-font-display);
    letter-spacing: -0.045em;
}

body.hxsh-site a {
    color: inherit;
}

body.hxsh-site .hx-container--wide {
    width: min(1380px, calc(100% - 48px));
}

.hxsh-main {
    overflow: clip;
}

.hxsh-announcement {
    position: relative;
    z-index: 120;
    color: var(--hxsh-paper);
    background: var(--hxsh-ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hxsh-announcement__inner {
    min-height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hxsh-announcement p {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.hxsh-announcement p span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hxsh-acid);
    box-shadow: 0 0 0 5px rgba(215, 255, 54, 0.12);
}

.hxsh-announcement a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--hxsh-acid);
}

.hxsh-announcement .hx-icon {
    width: 14px;
    height: 14px;
}

.hxsh-header {
    position: sticky;
    top: 0;
    z-index: 110;
    background: rgba(245, 243, 237, 0.9);
    border-bottom: 1px solid var(--hxsh-line);
    backdrop-filter: blur(18px);
}

.admin-bar .hxsh-header {
    top: 32px;
}

.hxsh-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.hxsh-header__brand {
    flex: 0 0 auto;
    text-decoration: none;
}

.hxsh-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.hxsh-brand__logo img,
.hxsh-brand__logo .custom-logo {
    display: block;
    width: auto;
    max-width: 150px;
    height: 40px;
    object-fit: contain;
}

.hxsh-brand__mark {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-block;
    border-radius: 50%;
    background: var(--hxsh-ink);
    overflow: hidden;
}

.hxsh-brand__mark i:first-child {
    position: absolute;
    inset: 7px;
    border: 2px solid var(--hxsh-acid);
    border-radius: 50%;
}

.hxsh-brand__mark i:last-child {
    position: absolute;
    left: 15px;
    top: 4px;
    width: 4px;
    height: 26px;
    background: var(--hxsh-violet);
    transform: rotate(42deg);
}

.hxsh-brand__name {
    font-family: var(--hxsh-font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.hxsh-brand__edition {
    padding: 6px 8px;
    color: var(--hxsh-ink);
    background: var(--hxsh-acid);
    border-radius: 6px;
    font-family: var(--hxsh-font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hxsh-header__navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.hxsh-nav__list {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hxsh-nav__list a {
    position: relative;
    padding: 12px 0;
    color: var(--hxsh-ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.hxsh-nav__list a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--hxsh-violet);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.hxsh-nav__list a:hover::after,
.hxsh-nav__list .current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hxsh-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hxsh-icon-button,
.hxsh-cart,
.hxsh-nav-toggle {
    border: 0;
    color: inherit;
    background: transparent;
}

.hxsh-icon-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hxsh-line);
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hxsh-icon-button:hover {
    border-color: var(--hxsh-ink);
    background: var(--hxsh-white);
    transform: translateY(-2px);
}

.hxsh-icon-button .hx-icon {
    width: 19px;
    height: 19px;
}

.hxsh-search-icon {
    position: relative;
    width: 17px;
    height: 17px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.hxsh-search-icon::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
}

.hxsh-cart {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px 0 16px;
    color: var(--hxsh-paper);
    background: var(--hxsh-ink);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.hxsh-cart .hx-icon {
    width: 18px;
    height: 18px;
}

.hxsh-cart-count {
    min-width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    padding: 0 7px;
    color: var(--hxsh-ink);
    background: var(--hxsh-acid);
    border-radius: 50%;
    font-size: 0.72rem;
}

.hxsh-nav-toggle {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-weight: 800;
    cursor: pointer;
}

.hxsh-nav-toggle i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    gap: 5px;
    padding: 9px;
    background: var(--hxsh-ink);
    border-radius: 50%;
}

.hxsh-nav-toggle b {
    display: block;
    width: 15px;
    height: 2px;
    background: var(--hxsh-acid);
    transition: transform 180ms ease;
}

.hxsh-nav-toggle[aria-expanded="true"] b:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.hxsh-nav-toggle[aria-expanded="true"] b:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hxsh-search {
    border-top: 1px solid var(--hxsh-line);
    background: var(--hxsh-white);
}

.hxsh-search[hidden] {
    display: none;
}

.hxsh-search__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.hxsh-search form {
    flex: 1;
    display: flex;
    gap: 10px;
}

.hxsh-search input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--hxsh-line);
    border-radius: 12px;
    background: var(--hxsh-paper);
}

.hxsh-search form button {
    min-width: 126px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    color: var(--hxsh-paper);
    background: var(--hxsh-ink);
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}

.hxsh-search form button .hx-icon {
    width: 18px;
}

.hxsh-search__close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--hxsh-line);
    border-radius: 50%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.hxsh-hero {
    position: relative;
    color: var(--hxsh-paper);
    background:
        radial-gradient(circle at 82% 16%, rgba(141, 99, 255, 0.35), transparent 24%),
        radial-gradient(circle at 42% 90%, rgba(102, 220, 255, 0.15), transparent 28%),
        var(--hxsh-ink);
}

.hxsh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
}

.hxsh-hero__ticker {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hxsh-hero__ticker div {
    width: max-content;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 18px;
    color: rgba(245, 243, 237, 0.62);
    font-family: var(--hxsh-font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    animation: hxsh-ticker 20s linear infinite;
}

.hxsh-hero__ticker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hxsh-acid);
}

@keyframes hxsh-ticker {
    to { transform: translateX(-33.333%); }
}

.hxsh-hero__layout {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.75fr);
    align-items: center;
    gap: clamp(48px, 7vw, 112px);
    padding-top: 76px;
    padding-bottom: 88px;
}

.hxsh-hero__content {
    max-width: 730px;
}

.hxsh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hxsh-kicker i {
    width: 28px;
    height: 2px;
    background: var(--hxsh-acid);
}

.hxsh-kicker--dark i {
    background: var(--hxsh-violet);
}

.hxsh-hero h1 {
    max-width: 800px;
    margin-bottom: 28px;
    font-size: clamp(3.4rem, 6.1vw, 7.2rem);
    line-height: 0.9;
}

.hxsh-hero__content > p {
    max-width: 650px;
    margin: 0;
    color: rgba(245, 243, 237, 0.7);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.75;
}

.hxsh-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 38px;
}

.hxsh-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--hxsh-font-body);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hxsh-button:hover {
    transform: translateY(-3px);
}

.hxsh-button .hx-icon {
    width: 18px;
    height: 18px;
}

.hxsh-button--acid {
    color: var(--hxsh-ink);
    background: var(--hxsh-acid);
    box-shadow: 0 12px 38px rgba(215, 255, 54, 0.18);
}

.hxsh-button--dark {
    color: var(--hxsh-paper);
    background: var(--hxsh-ink);
}

.hxsh-text-link,
.hxsh-section-heading a,
.hxsh-process__heading > a,
.hxsh-support__actions > a:not(.hx-button) {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.hxsh-text-link .hx-icon,
.hxsh-section-heading a .hx-icon,
.hxsh-process__heading > a .hx-icon,
.hxsh-support__actions > a .hx-icon {
    width: 17px;
    height: 17px;
}

.hxsh-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.hxsh-hero__proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 243, 237, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
}

.hxsh-hero__proof .hx-icon {
    width: 16px;
    height: 16px;
    color: var(--hxsh-acid);
}

.hxsh-hero__visual {
    perspective: 900px;
}

.hxsh-featured-product {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: var(--hxsh-paper);
    color: var(--hxsh-ink);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
    transform-style: preserve-3d;
    transition: transform 160ms ease;
}

.hxsh-featured-product::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hxsh-featured-product__top {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
    color: var(--hxsh-paper);
    background: var(--hxsh-violet);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hxsh-featured-product__top small {
    opacity: 0.7;
}

.hxsh-featured-product__image {
    position: relative;
    min-height: 350px;
    display: grid;
    place-items: center;
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(141, 99, 255, 0.12), transparent 45%),
        var(--hxsh-paper);
}

.hxsh-featured-product__image::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(17, 16, 24, 0.15);
    border-radius: 50%;
    animation: hxsh-spin 24s linear infinite;
}

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

.hxsh-featured-product__image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    max-height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 24px 25px rgba(17, 16, 24, 0.18));
    transition: transform 300ms ease;
}

.hxsh-featured-product:hover .hxsh-featured-product__image img {
    transform: translateY(-8px) rotate(-1deg) scale(1.025);
}

.hxsh-featured-product__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--hxsh-acid);
    filter: blur(70px);
    opacity: 0.18;
    transform: translate(-50%, -50%);
}

.hxsh-featured-product__body {
    padding: 28px 30px 32px;
    border-top: 1px solid var(--hxsh-line);
}

.hxsh-featured-product__body > div:first-child {
    display: grid;
    gap: 5px;
}

.hxsh-featured-product__body small {
    color: var(--hxsh-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hxsh-featured-product h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.8vw, 2.4rem);
    line-height: 1;
}

.hxsh-featured-product h2 a {
    text-decoration: none;
}

.hxsh-featured-product__price {
    margin-top: 18px;
    color: var(--hxsh-violet);
    font-family: var(--hxsh-font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 800;
}

.hxsh-featured-product__price del {
    margin-right: 8px;
    color: var(--hxsh-muted);
    font-size: 0.75em;
}

.hxsh-featured-product__price ins {
    text-decoration: none;
}

.hxsh-featured-product__body > p {
    margin: 16px 0 0;
    color: var(--hxsh-muted);
    line-height: 1.65;
}

.hxsh-featured-product__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.hxsh-featured-product__actions .hx-button {
    flex: 1;
}

.hxsh-featured-product__actions > a:last-child {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hxsh-line);
    border-radius: 50%;
}

.hxsh-featured-product__actions > a:last-child .hx-icon {
    width: 19px;
}

.hxsh-featured-product__note {
    display: block;
    margin-top: 16px;
    font-size: 0.64rem !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
}

.hxsh-featured-product--empty {
    min-height: 590px;
}

.hxsh-featured-product__placeholder {
    position: relative;
    min-height: 310px;
    display: grid;
    place-items: center;
}

.hxsh-featured-product__placeholder i {
    position: absolute;
    border: 2px solid var(--hxsh-line);
    border-radius: 50%;
}

.hxsh-featured-product__placeholder i:nth-child(1) { width: 210px; height: 210px; }
.hxsh-featured-product__placeholder i:nth-child(2) { width: 140px; height: 140px; border-color: var(--hxsh-violet); }
.hxsh-featured-product__placeholder i:nth-child(3) { width: 44px; height: 44px; background: var(--hxsh-acid); border: 0; }

.hxsh-strip {
    color: var(--hxsh-ink);
    background: var(--hxsh-acid);
}

.hxsh-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hxsh-strip__grid > div {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-left: 1px solid rgba(17, 16, 24, 0.18);
}

.hxsh-strip__grid > div:last-child {
    border-right: 1px solid rgba(17, 16, 24, 0.18);
}

.hxsh-strip strong {
    color: rgba(17, 16, 24, 0.38);
    font-family: var(--hxsh-font-display);
    font-size: 0.72rem;
}

.hxsh-strip span {
    font-family: var(--hxsh-font-display);
    font-size: 0.93rem;
    font-weight: 800;
}

.hxsh-products {
    padding: clamp(90px, 10vw, 150px) 0;
    background: var(--hxsh-paper);
}

.hxsh-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 58px;
}

.hxsh-section-heading h2,
.hxsh-benefits__intro h2,
.hxsh-process__heading h2,
.hxsh-faq h2,
.hxsh-support h2 {
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4.6vw, 5.5rem);
    line-height: 0.96;
}

.hxsh-section-heading > div:last-child p {
    margin: 0 0 22px;
    color: var(--hxsh-muted);
    line-height: 1.7;
}

.hxsh-section-heading a,
.hxsh-process__heading > a {
    color: var(--hxsh-violet);
}

.hxsh-products__empty {
    min-height: 380px;
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 50px;
    border: 1px solid var(--hxsh-line);
    border-radius: var(--hxsh-radius);
    background: var(--hxsh-white);
}

.hxsh-products__empty > div {
    position: relative;
    min-height: 250px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--hxsh-ink);
    border-radius: 18px;
}

.hxsh-products__empty span {
    position: absolute;
    border-radius: 50%;
}

.hxsh-products__empty span:nth-child(1) { width: 190px; height: 190px; border: 2px solid var(--hxsh-violet); }
.hxsh-products__empty span:nth-child(2) { width: 110px; height: 110px; border: 2px solid var(--hxsh-cyan); }
.hxsh-products__empty span:nth-child(3) { width: 36px; height: 36px; background: var(--hxsh-acid); }

.hxsh-products__empty small {
    color: var(--hxsh-violet);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hxsh-products__empty h3 {
    margin: 10px 0 16px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
}

.hxsh-products__empty p {
    max-width: 590px;
    margin: 0;
    color: var(--hxsh-muted);
    line-height: 1.7;
}

.hxsh-benefits {
    padding: clamp(90px, 10vw, 150px) 0;
    color: var(--hxsh-paper);
    background: var(--hxsh-violet);
}

.hxsh-benefits__intro {
    max-width: 850px;
    margin-bottom: 66px;
}

.hxsh-benefits__intro p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(245, 243, 237, 0.72);
    line-height: 1.75;
}

.hxsh-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hxsh-benefits__grid article {
    min-height: 320px;
    padding: 34px 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hxsh-benefits__grid article:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.hxsh-benefits__grid article > span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 72px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--hxsh-acid);
    font-family: var(--hxsh-font-display);
    font-size: 0.72rem;
    font-weight: 800;
}

.hxsh-benefits__grid h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.hxsh-benefits__grid p {
    margin: 0;
    color: rgba(245, 243, 237, 0.68);
    line-height: 1.7;
}

.hxsh-process {
    padding: clamp(90px, 10vw, 150px) 0;
    background: var(--hxsh-white);
}

.hxsh-process__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
    gap: clamp(60px, 9vw, 130px);
}

.hxsh-process__heading {
    position: sticky;
    top: 140px;
    align-self: start;
}

.hxsh-process__heading p {
    margin: 26px 0 24px;
    color: var(--hxsh-muted);
    line-height: 1.75;
}

.hxsh-process__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--hxsh-line);
}

.hxsh-process__steps li {
    border-bottom: 1px solid var(--hxsh-line);
}

.hxsh-process__steps button {
    width: 100%;
    min-height: 104px;
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    align-items: center;
    gap: 18px;
    padding: 0;
    border: 0;
    text-align: left;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.hxsh-process__steps button span {
    color: var(--hxsh-violet);
    font-family: var(--hxsh-font-display);
    font-size: 0.75rem;
    font-weight: 800;
}

.hxsh-process__steps button strong {
    font-family: var(--hxsh-font-display);
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    letter-spacing: -0.04em;
}

.hxsh-process__steps button i {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--hxsh-line);
    border-radius: 50%;
}

.hxsh-process__steps button i::before,
.hxsh-process__steps button i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.hxsh-process__steps button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease;
}

.hxsh-process__steps li.is-active button i {
    color: var(--hxsh-paper);
    background: var(--hxsh-ink);
}

.hxsh-process__steps li.is-active button i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.hxsh-process__steps li p {
    display: none;
    max-width: 620px;
    margin: -10px 0 0 78px;
    padding: 0 40px 34px 0;
    color: var(--hxsh-muted);
    line-height: 1.75;
}

.hxsh-process__steps li.is-active p {
    display: block;
}

.hxsh-faq {
    padding: clamp(90px, 10vw, 150px) 0;
    color: var(--hxsh-paper);
    background: var(--hxsh-ink);
}

.hxsh-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.65fr) minmax(520px, 1fr);
    gap: clamp(60px, 9vw, 130px);
}

.hxsh-faq__layout > div:first-child > p {
    margin: 26px 0 0;
    color: rgba(245, 243, 237, 0.65);
    line-height: 1.75;
}

.hxsh-faq__items {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hxsh-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hxsh-faq summary {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    font-family: var(--hxsh-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

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

.hxsh-faq summary span {
    position: relative;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.hxsh-faq summary span::before,
.hxsh-faq summary span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.hxsh-faq summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.hxsh-faq details[open] summary span {
    color: var(--hxsh-ink);
    background: var(--hxsh-acid);
}

.hxsh-faq details[open] summary span::after {
    display: none;
}

.hxsh-faq details p {
    max-width: 680px;
    margin: -5px 0 0;
    padding: 0 50px 30px 0;
    color: rgba(245, 243, 237, 0.68);
    line-height: 1.75;
}

.hxsh-support {
    padding: 74px 0;
    background: var(--hxsh-paper);
}

.hxsh-support__card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 50px;
    padding: clamp(40px, 6vw, 78px);
    border: 1px solid var(--hxsh-line);
    border-radius: 30px;
    background: var(--hxsh-acid);
}

.hxsh-support__card > div {
    position: relative;
    z-index: 2;
}

.hxsh-support h2 {
    max-width: 900px;
}

.hxsh-support__card p {
    max-width: 740px;
    margin: 22px 0 0;
    color: rgba(17, 16, 24, 0.7);
    line-height: 1.75;
}

.hxsh-support__actions {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.hxsh-support__shape {
    position: absolute;
    right: -100px;
    top: -170px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(141, 99, 255, 0.45);
    border-radius: 50%;
}

.hxsh-footer {
    padding: 78px 0 24px;
    color: var(--hxsh-paper);
    background: var(--hxsh-ink);
}

.hxsh-footer__top {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
    gap: 54px;
    padding-bottom: 66px;
}

.hxsh-footer__brand > a {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--hxsh-paper);
    text-decoration: none;
}

.hxsh-footer__brand .hxsh-brand__mark {
    background: var(--hxsh-paper);
}

.hxsh-footer__brand .hxsh-brand__name {
    color: var(--hxsh-paper);
}

.hxsh-footer__brand p,
.hxsh-footer__contact p {
    max-width: 330px;
    margin: 0;
    color: rgba(245, 243, 237, 0.58);
    line-height: 1.7;
}

.hxsh-footer__column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.hxsh-footer__column h2 {
    margin-bottom: 12px;
    color: rgba(245, 243, 237, 0.48);
    font-family: var(--hxsh-font-body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hxsh-footer__column a {
    width: fit-content;
    color: var(--hxsh-paper);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.hxsh-footer__column a:hover {
    color: var(--hxsh-acid);
}

.hxsh-footer__contact p {
    margin-top: 12px;
    font-size: 0.82rem;
}

.hxsh-footer__bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(245, 243, 237, 0.46);
    font-size: 0.72rem;
}

.hxsh-footer__bottom p {
    margin: 0;
}

[data-hx-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}

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

@media (max-width: 1180px) {
    .hxsh-nav-toggle {
        display: inline-flex;
    }

    .hxsh-header__navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 22px 24px 28px;
        background: var(--hxsh-paper);
        border-bottom: 1px solid var(--hxsh-line);
        box-shadow: 0 18px 30px rgba(17, 16, 24, 0.08);
    }

    .hxsh-header__navigation.is-open {
        display: grid;
    }

    .hxsh-nav__list {
        display: grid;
        gap: 0;
    }

    .hxsh-nav__list li {
        border-bottom: 1px solid var(--hxsh-line);
    }

    .hxsh-nav__list a {
        display: block;
        padding: 16px 0;
    }

    .hxsh-header__actions {
        justify-content: flex-start;
        padding-top: 16px;
    }

    .hxsh-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
        gap: 50px;
    }

    .hxsh-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hxsh-benefits__grid article:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.24);
    }

    .hxsh-benefits__grid article:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.24);
    }

    .hxsh-footer__top {
        grid-template-columns: 1.3fr repeat(2, 0.8fr);
    }

    .hxsh-footer__contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    body.hxsh-site .hx-container--wide {
        width: min(100% - 32px, 1380px);
    }

    .admin-bar .hxsh-header {
        top: 46px;
    }

    .hxsh-hero__layout {
        grid-template-columns: 1fr;
        padding-top: 68px;
    }

    .hxsh-hero h1 {
        max-width: 820px;
    }

    .hxsh-hero__visual {
        width: min(100%, 620px);
    }

    .hxsh-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hxsh-strip__grid > div:nth-child(3),
    .hxsh-strip__grid > div:nth-child(4) {
        border-top: 1px solid rgba(17, 16, 24, 0.18);
    }

    .hxsh-section-heading,
    .hxsh-process__layout,
    .hxsh-faq__layout,
    .hxsh-support__card {
        grid-template-columns: 1fr;
    }

    .hxsh-process__heading {
        position: static;
    }

    .hxsh-products__empty {
        grid-template-columns: 1fr;
    }

    .hxsh-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .hxsh-footer__brand,
    .hxsh-footer__contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .hxsh-announcement__inner {
        min-height: 42px;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 0.66rem;
    }

    .hxsh-header__inner {
        min-height: 72px;
    }

    .hxsh-brand__name {
        font-size: 1.15rem;
    }

    .hxsh-brand__edition {
        font-size: 0.58rem;
    }

    .hxsh-search__inner,
    .hxsh-search form {
        align-items: stretch;
        flex-direction: column;
    }

    .hxsh-search__inner {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hxsh-search__close {
        position: absolute;
        top: 10px;
        right: 18px;
    }

    .hxsh-hero__layout {
        min-height: 0;
        padding-top: 54px;
        padding-bottom: 64px;
    }

    .hxsh-hero h1 {
        font-size: clamp(3.05rem, 15vw, 4.65rem);
    }

    .hxsh-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hxsh-hero__actions .hxsh-button,
    .hxsh-hero__actions .hxsh-text-link {
        justify-content: center;
    }

    .hxsh-featured-product__image {
        min-height: 280px;
        padding: 28px;
    }

    .hxsh-featured-product__body {
        padding: 24px 22px 26px;
    }

    .hxsh-featured-product__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hxsh-featured-product__actions > a:last-child {
        width: 100%;
        border-radius: 999px;
    }

    .hxsh-strip__grid,
    .hxsh-benefits__grid,
    .hxsh-footer__top {
        grid-template-columns: 1fr;
    }

    .hxsh-strip__grid > div {
        min-height: 74px;
        border-right: 1px solid rgba(17, 16, 24, 0.18);
        border-bottom: 1px solid rgba(17, 16, 24, 0.18);
    }

    .hxsh-benefits__grid article {
        min-height: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.24);
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .hxsh-benefits__grid article > span {
        margin-bottom: 40px;
    }

    .hxsh-products__empty {
        padding: 24px;
    }

    .hxsh-process__steps button {
        grid-template-columns: 40px 1fr 30px;
    }

    .hxsh-process__steps li p {
        margin-left: 58px;
        padding-right: 0;
    }

    .hxsh-faq summary {
        font-size: 0.98rem;
    }

    .hxsh-support__card {
        padding: 34px 24px;
    }

    .hxsh-footer__brand,
    .hxsh-footer__contact {
        grid-column: auto;
    }

    .hxsh-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }
}

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