:root {
    --hz-bg: #ffffff;
    --hz-surface: #ffffff;
    --hz-surface-soft: #f7f8fb;
    --hz-ink: #071c46;
    --hz-muted: #5d6880;
    --hz-line: #e4e7ed;
    --hz-blue: #1262ff;
    --hz-blue-deep: #0747d8;
    --hz-blue-soft: #eaf2ff;
    --hz-blue-glow: rgba(18, 98, 255, .2);
    --hz-green: #46b83f;
    --hz-orange: #ff8515;
    --hz-shadow: 0 24px 70px rgba(31, 41, 65, .12);
    --hz-shadow-soft: 0 14px 35px rgba(31, 41, 65, .09);
    --hz-radius-xl: 34px;
    --hz-radius-lg: 24px;
    --hz-radius-md: 16px;
    --hz-shell: 1240px;
    --hz-ease-orbit: cubic-bezier(.16, 1, .3, 1);
}

body.hz-atlas[data-hz-theme="dark"] {
    --hz-bg: #081225;
    --hz-surface: #111d34;
    --hz-surface-soft: #17243d;
    --hz-ink: #f6f8ff;
    --hz-muted: #aab4c8;
    --hz-line: #293650;
    --hz-blue-soft: #132b55;
    --hz-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    --hz-shadow-soft: 0 14px 35px rgba(0, 0, 0, .28);
}

html {
    scroll-behavior: smooth;
}

body.hz-atlas {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--hz-ink);
    background: var(--hz-bg);
    font-family: "Manrope", Arial, sans-serif !important;
    font-size: 16px;
    line-height: 1.65;
    transition: color .25s ease, background-color .25s ease;
}

body.hz-atlas h1,
body.hz-atlas h2,
body.hz-atlas h3,
body.hz-atlas h4,
body.hz-atlas h5,
body.hz-atlas h6,
body.hz-atlas input,
body.hz-atlas select,
body.hz-atlas textarea,
body.hz-atlas button {
    font-family: "Manrope", Arial, sans-serif !important;
}

body.hz-atlas.hz-rtl {
    font-family: "Alexandria", Tahoma, Arial, sans-serif !important;
    letter-spacing: -.008em;
}

body.hz-atlas.hz-rtl h1,
body.hz-atlas.hz-rtl h2,
body.hz-atlas.hz-rtl h3,
body.hz-atlas.hz-rtl h4,
body.hz-atlas.hz-rtl h5,
body.hz-atlas.hz-rtl h6,
body.hz-atlas.hz-rtl input,
body.hz-atlas.hz-rtl select,
body.hz-atlas.hz-rtl textarea,
body.hz-atlas.hz-rtl button {
    font-family: "Alexandria", Tahoma, Arial, sans-serif !important;
}

body.hz-atlas.hz-intro-active {
    overflow: hidden;
}

.hz-atlas *,
.hz-atlas *::before,
.hz-atlas *::after {
    box-sizing: border-box;
}

.hz-atlas img {
    max-width: 100%;
    height: auto;
}

.hz-atlas a {
    color: inherit;
    text-decoration: none;
}

.hz-atlas button,
.hz-atlas input,
.hz-atlas select {
    font: inherit;
}

.hz-shell {
    width: min(calc(100% - 48px), var(--hz-shell));
    margin-inline: auto;
}

.hz-skip-link {
    position: fixed;
    inset-block-start: 10px;
    inset-inline-start: 10px;
    z-index: 10000;
    padding: 10px 16px;
    color: #fff;
    background: var(--hz-blue);
    border-radius: 10px;
    transform: translateY(-150%);
}

.hz-skip-link:focus {
    transform: translateY(0);
}

.hz-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 1000;
    min-height: 82px;
    background: color-mix(in srgb, var(--hz-bg) 92%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--hz-line) 72%, transparent);
    backdrop-filter: blur(18px);
    transition: min-height .35s var(--hz-ease-orbit), background-color .35s ease, box-shadow .35s ease;
}

.hz-header.is-scrolled {
    background: color-mix(in srgb, var(--hz-bg) 86%, transparent);
    box-shadow: 0 12px 40px rgba(18, 35, 68, .08);
}

.hz-header__inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 48px);
    direction: rtl;
}

.hz-ltr .hz-header__inner {
    direction: ltr;
}

.hz-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.hz-brand img,
.hz-footer__brand img {
    display: block;
    width: 118px;
    height: auto;
}

body.hz-atlas[data-hz-theme="dark"] .hz-brand img,
body.hz-atlas[data-hz-theme="dark"] .hz-footer__brand img {
    filter: invert(1) saturate(0) brightness(1.45);
}

.hz-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 2.1vw, 31px);
    white-space: nowrap;
    direction: rtl;
}

.hz-ltr .hz-nav {
    direction: ltr;
}

.hz-nav a {
    position: relative;
    color: var(--hz-ink);
    font-size: 14px;
    font-weight: 700;
}

.hz-nav a::after {
    content: "";
    position: absolute;
    inset-inline: 50%;
    inset-block-end: -8px;
    height: 2px;
    background: var(--hz-blue);
    transition: inset-inline .2s ease;
}

.hz-nav a:hover::after,
.hz-nav a:focus-visible::after {
    inset-inline: 0;
}

.hz-nav__languages {
    display: none;
}

.hz-nav__currencies {
    display: none;
}

.hz-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
}

.hz-ltr .hz-header__actions {
    direction: ltr;
}

.hz-currency {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--hz-muted);
    font-size: 12px;
    font-weight: 700;
    direction: ltr;
}

.hz-language-menu {
    position: relative;
    flex: 0 0 auto;
}

.hz-language-menu summary {
    min-height: 42px;
    padding: 5px 10px 5px 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(22, 30, 48, .07);
    cursor: pointer;
    list-style: none;
    font-size: 12px;
    font-weight: 800;
    user-select: none;
}

.hz-language-menu summary::-webkit-details-marker {
    display: none;
}

.hz-language-menu summary:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--hz-blue) 28%, transparent);
    outline-offset: 3px;
}

.hz-language-menu__globe {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hz-blue);
    border-radius: 50%;
    box-shadow: 0 7px 16px rgba(18, 98, 255, .24);
}

.hz-language-menu__chevron {
    color: var(--hz-muted);
    font-size: 9px;
    transition: transform .2s ease;
}

.hz-language-menu[open] .hz-language-menu__chevron {
    transform: rotate(180deg);
}

.hz-language-menu__panel {
    position: absolute;
    inset-block-start: calc(100% + 12px);
    inset-inline-start: 0;
    z-index: 1200;
    width: 270px;
    padding: 8px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 18px;
    box-shadow: var(--hz-shadow-soft);
}

.hz-language-menu__panel::before {
    content: "";
    position: absolute;
    inset-block-start: -6px;
    inset-inline-start: 24px;
    width: 12px;
    height: 12px;
    background: var(--hz-surface);
    border-block-start: 1px solid var(--hz-line);
    border-inline-start: 1px solid var(--hz-line);
    transform: rotate(45deg);
}

.hz-language-menu__panel a {
    min-height: 58px;
    padding: 8px 10px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    transition: color .18s ease, background-color .18s ease;
}

.hz-language-menu__panel a:hover,
.hz-language-menu__panel a:focus-visible {
    color: var(--hz-blue);
    background: var(--hz-blue-soft);
}

.hz-language-menu__panel a.is-active {
    color: var(--hz-blue);
    background: var(--hz-blue-soft);
}

.hz-language-menu__panel a > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.hz-language-menu__panel strong {
    font-size: 13px;
}

.hz-language-menu__panel small {
    margin-top: 4px;
    color: var(--hz-muted);
    font-size: 10px;
    font-weight: 600;
}

.hz-language-menu__panel .fa-check {
    visibility: hidden;
    color: var(--hz-blue);
    font-size: 11px;
}

.hz-language-menu__panel a.is-active .fa-check {
    visibility: visible;
}

.hz-language-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--hz-ink);
    background: color-mix(in srgb, var(--hz-blue-soft) 72%, var(--hz-surface));
    border: 1px solid color-mix(in srgb, var(--hz-blue) 20%, var(--hz-line));
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
}

.hz-currency {
    min-width: 46px;
    justify-content: center;
}

.hz-currency-switcher {
    position: relative;
    min-width: 82px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(22, 30, 48, .07);
    direction: ltr;
    overflow: hidden;
}

.hz-currency-switcher > .fa-coins {
    position: absolute;
    inset-inline-start: 11px;
    z-index: 1;
    color: var(--hz-blue);
    font-size: 11px;
    pointer-events: none;
}

.hz-currency-switcher select {
    width: 100%;
    height: 100%;
    padding: 0 25px 0 28px;
    color: inherit;
    background: transparent;
    border: 0;
    outline: 0;
    appearance: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    direction: ltr;
}

.hz-currency-switcher:focus-within {
    border-color: var(--hz-blue);
    box-shadow: 0 0 0 4px rgba(18, 98, 255, .11);
}

.hz-currency-switcher__chevron {
    position: absolute;
    inset-inline-end: 10px;
    color: var(--hz-muted);
    font-size: 8px;
    pointer-events: none;
}

.hz-theme-toggle {
    position: relative;
    width: 58px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    color: var(--hz-muted);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 30, 48, .08);
}

.hz-theme-toggle .fa-moon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #202a3a;
    border-radius: 50%;
}

body.hz-atlas[data-hz-theme="dark"] .hz-theme-toggle .fa-sun {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: #18223a;
    background: #ffcd69;
    border-radius: 50%;
}

body.hz-atlas[data-hz-theme="dark"] .hz-theme-toggle .fa-moon {
    width: auto;
    height: auto;
    color: var(--hz-muted);
    background: transparent;
}

.hz-client-button {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff !important;
    background: var(--hz-blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 9px 22px rgba(18, 98, 255, .24);
    transition: transform .2s ease, background-color .2s ease;
}

.hz-client-button:hover,
.hz-client-button:focus-visible {
    color: #fff;
    background: var(--hz-blue-deep);
    transform: translateY(-2px);
}

.hz-logout-button {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hz-ink) !important;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(22, 30, 48, .07);
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.hz-logout-button:hover,
.hz-logout-button:focus-visible {
    color: var(--hz-blue) !important;
    background: var(--hz-blue-soft);
    border-color: color-mix(in srgb, var(--hz-blue) 30%, var(--hz-line));
    transform: translateY(-2px);
}

.hz-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 12px;
}

.hz-menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--hz-ink);
    border-radius: 99px;
}

.hz-main--home {
    padding: 0 !important;
}

.hz-home {
    position: relative;
    background: var(--hz-bg);
}

.hz-home > section {
    position: relative;
    z-index: 2;
}

.hz-intro {
    --hz-intro-logo-tone: brightness(1);
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    color: var(--hz-ink);
    background: var(--hz-bg);
    background:
        radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--hz-blue-soft) 65%, transparent) 0, transparent 33%),
        var(--hz-bg);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: hidden;
    animation: hz-intro-safety 0s 4s forwards;
    transition: opacity .65s ease, visibility .65s ease, clip-path .9s var(--hz-ease-orbit);
    clip-path: inset(0 0 0 0);
}

body.hz-atlas[data-hz-theme="dark"] .hz-intro {
    --hz-intro-logo-tone: invert(1) saturate(0) brightness(1.45);
}

.hz-intro::before,
.hz-intro::after {
    content: "";
    position: absolute;
    width: min(90vw, 920px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hz-blue), transparent);
    transform: scaleX(0);
    opacity: .55;
}

.hz-intro::before { transform-origin: right; }
.hz-intro::after { transform-origin: left; }

.hz-intro.is-running::before,
.hz-intro.is-running::after {
    animation: hz-intro-beam 1.15s .15s var(--hz-ease-orbit) forwards;
}

.hz-intro.is-complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    animation: none;
}

.hz-intro__logo {
    position: relative;
    z-index: 2;
    width: 168px;
    opacity: 0;
    filter: var(--hz-intro-logo-tone) blur(8px);
    transform: scale(.82);
}

.hz-intro.is-running .hz-intro__logo {
    animation: hz-intro-logo 1.25s .18s var(--hz-ease-orbit) forwards;
}

.hz-intro__orbit {
    position: absolute;
    width: min(72vw, 580px);
    aspect-ratio: 1;
}

.hz-intro__orbit span {
    position: absolute;
    inset: 18%;
    border: 1px solid color-mix(in srgb, var(--hz-blue) 42%, transparent);
    border-radius: 50%;
    opacity: 0;
}

.hz-intro__orbit span:nth-child(1) { transform: rotate(18deg) scaleX(1.45); }
.hz-intro__orbit span:nth-child(2) { transform: rotate(-32deg) scaleX(1.25); }
.hz-intro__orbit span:nth-child(3) { transform: rotate(72deg) scaleX(1.08); border-color: color-mix(in srgb, var(--hz-orange) 32%, transparent); }

.hz-intro.is-running .hz-intro__orbit span {
    animation: hz-intro-orbit 1.35s var(--hz-ease-orbit) forwards;
}

.hz-intro.is-running .hz-intro__orbit span:nth-child(2) { animation-delay: .1s; }
.hz-intro.is-running .hz-intro__orbit span:nth-child(3) { animation-delay: .2s; }

.hz-intro__signal {
    position: absolute;
    inset-block-start: calc(50% + 66px);
    display: flex;
    gap: 9px;
}

.hz-intro__signal i {
    width: 6px;
    height: 6px;
    background: var(--hz-blue);
    border-radius: 50%;
    opacity: .15;
}

.hz-intro.is-running .hz-intro__signal i {
    animation: hz-signal-dot .8s ease-in-out infinite alternate;
}

.hz-intro.is-running .hz-intro__signal i:nth-child(2) { animation-delay: .16s; }
.hz-intro.is-running .hz-intro__signal i:nth-child(3) { animation-delay: .32s; background: var(--hz-orange); }

.hz-orbit-thread {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: .48;
}

.hz-orbit-thread svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hz-orbit-thread path {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.hz-orbit-thread__ghost {
    stroke: color-mix(in srgb, var(--hz-blue) 17%, transparent);
    stroke-width: 1.1;
    stroke-dasharray: 5 12;
}

.hz-orbit-thread__pulse {
    stroke: url(#hzOrbitGradient);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    filter: drop-shadow(0 0 5px var(--hz-blue-glow));
}

.hz-orbit-thread__nodes circle {
    fill: var(--hz-surface);
    stroke: var(--hz-blue);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
    transform-box: fill-box;
    transform-origin: center;
    animation: hz-node-breathe 2.8s ease-in-out infinite;
}

.hz-orbit-thread__nodes circle:nth-child(2) { animation-delay: .5s; }
.hz-orbit-thread__nodes circle:nth-child(3) { animation-delay: 1s; }
.hz-orbit-thread__nodes circle:nth-child(4) { animation-delay: 1.5s; stroke: var(--hz-orange); }

.hz-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 17% 46%, color-mix(in srgb, var(--hz-blue-soft) 78%, transparent) 0, transparent 31%),
        radial-gradient(circle at 82% 32%, color-mix(in srgb, var(--hz-blue-soft) 36%, transparent) 0, transparent 23%);
    pointer-events: none;
}

.hz-hero__grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(28px, 5vw, 76px);
    direction: rtl;
}

.hz-ltr .hz-hero__grid {
    direction: ltr;
}

.hz-hero__copy {
    position: relative;
    z-index: 2;
    direction: rtl;
    text-align: right;
}

body.hz-motion-enabled .hz-hero__copy.is-visible > * {
    animation: hz-copy-arrive .8s var(--hz-ease-orbit) both;
}

body.hz-motion-enabled .hz-hero__copy.is-visible > *:nth-child(2) { animation-delay: .1s; }
body.hz-motion-enabled .hz-hero__copy.is-visible > *:nth-child(3) { animation-delay: .2s; }
body.hz-motion-enabled .hz-hero__copy.is-visible > *:nth-child(4) { animation-delay: .3s; }
body.hz-motion-enabled .hz-hero__copy.is-visible > *:nth-child(5) { animation-delay: .42s; }

.hz-ltr .hz-hero__copy {
    direction: ltr;
    text-align: left;
}

.hz-eyebrow,
.hz-section-heading > p {
    margin: 0 0 16px;
    color: var(--hz-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.hz-hero h1 {
    margin: 0;
    max-width: 670px;
    color: var(--hz-ink);
    font-size: clamp(48px, 5.4vw, 76px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.12;
}

.hz-rtl .hz-hero h1 {
    font-size: clamp(46px, 4.7vw, 64px);
    letter-spacing: -.045em;
    line-height: 1.22;
}

.hz-hero__lead {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--hz-muted);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.8;
}

.hz-hero__actions {
    margin-top: 33px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hz-button {
    --hz-magnetic-x: 0px;
    --hz-magnetic-y: 0px;
    position: relative;
    min-height: 52px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    transform: translate3d(var(--hz-magnetic-x), var(--hz-magnetic-y), 0);
    transition: transform .28s var(--hz-ease-orbit), box-shadow .28s ease, background-color .2s ease;
    will-change: transform;
}

.hz-button:hover,
.hz-button:focus-visible {
    transform: translate3d(var(--hz-magnetic-x), calc(var(--hz-magnetic-y) - 3px), 0);
}

.hz-button--primary {
    color: #fff !important;
    background: var(--hz-blue);
    box-shadow: 0 14px 30px rgba(18, 98, 255, .23);
    overflow: hidden;
    isolation: isolate;
}

.hz-button--primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(112deg, transparent 22%, rgba(255,255,255,.52) 46%, transparent 68%);
    transform: translateX(-125%);
    animation: hz-button-sheen 5.4s 2.1s ease-in-out infinite;
}

.hz-button--primary:hover {
    background: var(--hz-blue-deep);
}

.hz-button--outline {
    color: var(--hz-ink);
    background: transparent;
    border-color: var(--hz-ink);
}

.hz-scroll-cue {
    margin-top: 56px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--hz-muted);
    font-size: 13px;
    font-weight: 600;
}

.hz-scroll-cue i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #a8b1c1;
    border-radius: 50%;
    animation: hz-scroll-pulse 2.4s ease-in-out infinite;
}

.hz-hero__visual {
    position: relative;
    min-height: 550px;
    display: grid;
    place-items: center;
    direction: ltr;
    perspective: 1200px;
    --hz-hero-rx: 0deg;
    --hz-hero-ry: 0deg;
    --hz-hero-x: 0px;
    --hz-hero-y: 0px;
    --hz-orbit-x: 0px;
    --hz-orbit-y: 0px;
}

.hz-hero__stage {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    place-items: center;
    transform: translate3d(var(--hz-hero-x), var(--hz-hero-y), 0) rotateX(var(--hz-hero-rx)) rotateY(var(--hz-hero-ry));
    transform-style: preserve-3d;
    transition: transform .35s var(--hz-ease-orbit);
    will-change: transform;
}

.hz-hero__stage img {
    width: min(100%, 670px);
    filter: saturate(1.08) drop-shadow(0 26px 28px rgba(58, 66, 84, .13));
    animation: hz-float 5.5s ease-in-out infinite;
    will-change: transform;
}

.hz-hero__orbit {
    position: absolute;
    inset: 3% -2% 1%;
    z-index: 1;
    transform: translate3d(var(--hz-orbit-x), var(--hz-orbit-y), 0);
    transition: transform .5s var(--hz-ease-orbit);
    pointer-events: none;
}

.hz-hero__ring {
    position: absolute;
    inset: 20% 8%;
    border: 1px solid color-mix(in srgb, var(--hz-blue) 38%, transparent);
    border-radius: 50%;
    box-shadow: inset 0 0 18px color-mix(in srgb, var(--hz-blue) 7%, transparent);
}

.hz-hero__ring--one {
    transform: rotate(18deg) scaleX(1.12);
    animation: hz-orbit-ring-one 13s linear infinite;
}

.hz-hero__ring--two {
    inset: 24% 4%;
    border-style: dashed;
    border-color: color-mix(in srgb, var(--hz-blue) 23%, transparent);
    transform: rotate(-28deg) scaleX(1.18);
    animation: hz-orbit-ring-two 17s linear infinite reverse;
}

.hz-hero__ring--three {
    inset: 29% 13%;
    border-color: color-mix(in srgb, var(--hz-orange) 34%, transparent);
    transform: rotate(64deg) scaleX(1.07);
    animation: hz-orbit-ring-three 21s linear infinite;
}

.hz-hero__node {
    position: absolute;
    z-index: 3;
    width: 11px;
    height: 11px;
    background: var(--hz-surface);
    border: 3px solid var(--hz-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--hz-blue) 10%, transparent), 0 0 20px var(--hz-blue-glow);
    animation: hz-node-breathe 2.6s ease-in-out infinite;
}

.hz-hero__node--one { inset-block-start: 23%; inset-inline-start: 12%; }
.hz-hero__node--two { inset-block-start: 42%; inset-inline-end: 6%; animation-delay: .75s; }
.hz-hero__node--three { inset-block-end: 18%; inset-inline-start: 30%; border-color: var(--hz-orange); animation-delay: 1.35s; }

.hz-domain {
    position: relative;
    z-index: 4;
    margin-top: -18px;
}

#hz-domain-search,
#hz-services,
#hz-plan {
    scroll-margin-top: 100px;
}

.hz-domain__panel {
    --hz-pointer-x: 50%;
    --hz-pointer-y: 50%;
    position: relative;
    min-height: 178px;
    padding: 34px 40px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    direction: rtl;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-xl);
    box-shadow: var(--hz-shadow);
    overflow: hidden;
    isolation: isolate;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s var(--hz-ease-orbit);
}

.hz-ltr .hz-domain__panel {
    direction: ltr;
}

[data-hz-spotlight]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(360px circle at var(--hz-pointer-x, 50%) var(--hz-pointer-y, 50%), color-mix(in srgb, var(--hz-blue) 12%, transparent), transparent 58%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

[data-hz-spotlight]:hover::before,
[data-hz-spotlight]:focus-within::before {
    opacity: 1;
}

[data-hz-spotlight] > * {
    position: relative;
    z-index: 1;
}

.hz-domain__panel:hover,
.hz-domain__panel:focus-within {
    border-color: color-mix(in srgb, var(--hz-blue) 28%, var(--hz-line));
    box-shadow: 0 30px 90px rgba(18, 53, 118, .15), 0 0 0 1px color-mix(in srgb, var(--hz-blue) 12%, transparent);
    transform: translateY(-3px);
}

.hz-domain__panel.is-launching {
    animation: hz-search-launch .65s var(--hz-ease-orbit) both;
}

.hz-domain__scan {
    position: absolute !important;
    inset-block: 0;
    inset-inline-start: -36%;
    z-index: 2 !important;
    width: 32%;
    background: linear-gradient(90deg, transparent, rgba(18, 98, 255, .08), rgba(255,255,255,.58), transparent);
    filter: blur(1px);
    transform: skewX(-13deg);
    pointer-events: none;
    animation: hz-domain-scan 6.5s 1.8s ease-in-out infinite;
}

.hz-domain__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hz-blue);
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 15px 26px rgba(18, 98, 255, .28);
    animation: hz-globe-pulse 4.2s ease-in-out infinite;
}

.hz-domain__body {
    min-width: 0;
}

.hz-domain h2 {
    margin: 0 0 14px;
    color: var(--hz-ink);
    font-size: clamp(23px, 2vw, 30px);
    font-weight: 800;
}

.hz-domain__form {
    direction: rtl;
}

.hz-domain__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px 126px;
    direction: rtl;
}

.hz-ltr .hz-domain__form,
.hz-ltr .hz-domain__controls {
    direction: ltr;
}

.hz-domain__controls input,
.hz-domain__controls select,
.hz-domain__controls button {
    --hz-magnetic-x: 0px;
    --hz-magnetic-y: 0px;
    min-height: 54px;
    border: 1px solid var(--hz-line);
}

.hz-domain__controls input {
    min-width: 0;
    padding: 0 20px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border-radius: 0 12px 12px 0;
    outline: none;
}

.hz-ltr .hz-domain__controls input {
    border-radius: 12px 0 0 12px;
}

.hz-domain__controls input:focus {
    position: relative;
    z-index: 1;
    border-color: var(--hz-blue);
    box-shadow: 0 0 0 3px rgba(18, 98, 255, .13);
}

.hz-domain__controls input::placeholder {
    color: #a5adba;
}

.hz-domain__controls select {
    padding: 0 14px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border-inline-start: 0;
}

.hz-domain__submit {
    color: #fff;
    background: var(--hz-blue);
    border-color: var(--hz-blue);
    border-radius: 12px 0 0 12px;
    font-weight: 800;
    cursor: pointer;
    transform: translate3d(var(--hz-magnetic-x), var(--hz-magnetic-y), 0);
    transition: transform .25s var(--hz-ease-orbit), filter .25s ease, box-shadow .25s ease;
    will-change: transform;
}

.hz-domain__submit:hover,
.hz-domain__submit:focus-visible {
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(18, 98, 255, .24);
}

.hz-ltr .hz-domain__submit {
    border-radius: 0 12px 12px 0;
}

.hz-domain__submit:disabled {
    cursor: wait;
    filter: saturate(.7);
    opacity: .72;
}

.hz-domain__captcha:empty {
    display: none;
}

.hz-domain__captcha-inner {
    margin: 14px 0 0 !important;
}

.hz-domain__captcha .domainchecker-homepage-captcha,
.hz-domain__captcha .recaptcha-container {
    display: flex;
    justify-content: center;
}

.hz-domain__captcha #default-captcha-domainchecker {
    width: min(100%, 520px);
    margin-inline: auto;
    padding: 14px;
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr);
    align-items: center;
    gap: 12px;
    color: var(--hz-ink);
    background: var(--hz-surface-soft);
    border: 1px solid var(--hz-line);
    border-radius: 14px;
}

.hz-domain__captcha #default-captcha-domainchecker p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--hz-muted);
    font-size: 13px;
}

.hz-domain__captcha .captchaimage,
.hz-domain__captcha #default-captcha-domainchecker > div {
    width: auto;
    padding: 0;
}

.hz-domain__captcha .captchaimage img {
    max-width: 100%;
    height: auto;
}

.hz-domain__captcha #inputCaptcha {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 10px;
}

.hz-domain__result {
    margin-top: 14px;
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    color: var(--hz-ink);
    background: var(--hz-blue-soft);
    border: 1px solid color-mix(in srgb, var(--hz-blue) 24%, var(--hz-line));
    border-radius: 15px;
    box-shadow: 0 10px 28px rgba(18, 98, 255, .08);
    animation: hz-result-arrive .48s var(--hz-ease-orbit) both;
}

.hz-domain__result[hidden] {
    display: none;
}

.hz-domain__result[data-state="available"] {
    background: color-mix(in srgb, var(--hz-green) 10%, var(--hz-surface));
    border-color: color-mix(in srgb, var(--hz-green) 38%, var(--hz-line));
}

.hz-domain__result[data-state="unavailable"] {
    background: color-mix(in srgb, var(--hz-orange) 9%, var(--hz-surface));
    border-color: color-mix(in srgb, var(--hz-orange) 34%, var(--hz-line));
}

.hz-domain__result[data-state="contact"] {
    background: color-mix(in srgb, #7c5cff 9%, var(--hz-surface));
    border-color: color-mix(in srgb, #7c5cff 32%, var(--hz-line));
}

.hz-domain__result[data-state="error"] {
    background: color-mix(in srgb, #dc3545 8%, var(--hz-surface));
    border-color: color-mix(in srgb, #dc3545 32%, var(--hz-line));
}

.hz-domain__result-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--hz-blue);
    background: var(--hz-surface);
    border: 1px solid color-mix(in srgb, currentColor 20%, var(--hz-line));
    border-radius: 12px;
    box-shadow: var(--hz-shadow-soft);
}

.hz-domain__result[data-state="available"] .hz-domain__result-icon { color: var(--hz-green); }
.hz-domain__result[data-state="unavailable"] .hz-domain__result-icon { color: var(--hz-orange); }
.hz-domain__result[data-state="contact"] .hz-domain__result-icon { color: #7c5cff; }
.hz-domain__result[data-state="error"] .hz-domain__result-icon { color: #dc3545; }

.hz-domain__result-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.hz-domain__result-copy strong {
    color: var(--hz-ink);
    font-size: 14px;
    font-weight: 800;
}

.hz-domain__result-copy > span {
    overflow-wrap: anywhere;
    color: var(--hz-muted);
    font-size: 12px;
}

.hz-domain__result-action {
    min-height: 42px;
    padding: 0 17px;
    color: #fff;
    background: var(--hz-green);
    border: 0;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--hz-green) 25%, transparent);
    transition: transform .2s var(--hz-ease-orbit), filter .2s ease;
}

.hz-domain__result-action:hover,
.hz-domain__result-action:focus-visible {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

.hz-domain__result-action:disabled {
    cursor: wait;
    opacity: .72;
}

.hz-tld-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--hz-muted);
    font-size: 12px;
    direction: ltr;
}

.hz-tld-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hz-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
}

.hz-dot--blue { background: var(--hz-blue); }
.hz-dot--green { background: var(--hz-green); }
.hz-dot--orange { background: var(--hz-orange); }
.hz-dot--navy { background: #758097; }

.hz-paths {
    position: relative;
    padding: 118px 0 86px;
}

.hz-paths .hz-shell {
    position: relative;
}

.hz-section-heading {
    margin: 0 auto 58px;
    max-width: 680px;
    text-align: center;
}

.hz-section-heading h2 {
    margin: 0;
    color: var(--hz-ink);
    font-size: clamp(34px, 3.4vw, 50px);
    font-weight: 800;
    letter-spacing: -.035em;
}

.hz-section-heading span {
    margin-top: 9px;
    display: block;
    color: var(--hz-muted);
    font-size: 18px;
}

.hz-paths__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 5vw, 76px);
}

.hz-paths__network {
    position: absolute;
    inset-inline: 0;
    inset-block-start: 252px;
    z-index: 1;
    height: 260px;
    pointer-events: none;
    opacity: .78;
}

.hz-paths__network svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hz-paths__network path {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.hz-paths__network-base {
    stroke: color-mix(in srgb, var(--hz-blue) 22%, transparent);
    stroke-width: 1.2;
    stroke-dasharray: 5 9;
}

.hz-paths__network-pulse {
    stroke: var(--hz-blue);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 90 1000;
    filter: drop-shadow(0 0 5px var(--hz-blue-glow));
    animation: hz-network-pulse 7.5s linear infinite;
}

.hz-paths__network circle {
    fill: var(--hz-surface);
    stroke: var(--hz-blue);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
    animation: hz-node-breathe 2.8s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

.hz-paths__network circle:nth-of-type(2) { stroke: var(--hz-green); animation-delay: .65s; }
.hz-paths__network circle:nth-of-type(3) { stroke: var(--hz-orange); animation-delay: 1.3s; }

.hz-path {
    --hz-tilt-x: 0deg;
    --hz-tilt-y: 0deg;
    --hz-pointer-x: 50%;
    --hz-pointer-y: 50%;
    position: relative;
    min-width: 0;
    padding: 0 12px 10px;
    text-align: center;
    isolation: isolate;
}

.hz-path::before {
    border-radius: 42% 58% 52% 48%;
}

.hz-path__art {
    height: 250px;
    display: grid;
    place-items: end center;
    transform: perspective(900px) rotateX(var(--hz-tilt-x)) rotateY(var(--hz-tilt-y));
    transform-style: preserve-3d;
    transition: transform .38s var(--hz-ease-orbit);
    will-change: transform;
}

.hz-path__art img {
    width: 245px;
    max-height: 245px;
    object-fit: contain;
    filter: saturate(1.18) drop-shadow(0 20px 22px rgba(44, 53, 72, .1));
    transition: transform .45s var(--hz-ease-orbit), filter .45s ease;
}

.hz-path:hover .hz-path__art img {
    transform: translate3d(0, -14px, 28px) rotate(-1deg) scale(1.025);
    filter: saturate(1.22) drop-shadow(0 28px 28px rgba(44, 53, 72, .16));
}

.hz-path__number {
    position: absolute;
    inset-block-start: 205px;
    inset-inline-start: calc(50% - 108px);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(25, 35, 55, .18);
}

.hz-path--blue .hz-path__number { background: var(--hz-blue); }
.hz-path--green .hz-path__number { background: var(--hz-green); }
.hz-path--orange .hz-path__number { background: var(--hz-orange); }

.hz-path h3 {
    margin: 21px 0 8px;
    color: var(--hz-ink);
    font-size: 22px;
    font-weight: 800;
}

.hz-path p {
    min-height: 54px;
    margin: 0 auto 16px;
    max-width: 300px;
    color: var(--hz-muted);
    font-size: 15px;
}

.hz-path > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: gap .28s var(--hz-ease-orbit), transform .28s var(--hz-ease-orbit);
}

.hz-path:hover > a { gap: 13px; transform: translateY(-2px); }

.hz-ltr .hz-path > a i,
.hz-ltr .hz-plan__cta i {
    transform: rotate(180deg);
}

.hz-path--blue > a { color: var(--hz-blue); }
.hz-path--green > a { color: var(--hz-green); }
.hz-path--orange > a { color: var(--hz-orange); }

.hz-plan-section {
    padding: 34px 0 50px;
}

.hz-plan {
    --hz-pointer-x: 50%;
    --hz-pointer-y: 50%;
    position: relative;
    min-height: 590px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    direction: rtl;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-xl);
    box-shadow: var(--hz-shadow);
    isolation: isolate;
    transition: border-color .35s ease, box-shadow .35s ease;
}

.hz-ltr .hz-plan {
    direction: ltr;
}

.hz-plan:hover {
    border-color: color-mix(in srgb, var(--hz-blue) 24%, var(--hz-line));
    box-shadow: 0 34px 100px rgba(19, 52, 112, .16);
}

.hz-plan__scan {
    position: absolute !important;
    inset-block: -20%;
    inset-inline-start: -24%;
    z-index: 4 !important;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), rgba(18,98,255,.1), transparent);
    filter: blur(2px);
    transform: skewX(-12deg);
    opacity: 0;
    pointer-events: none;
}

body.hz-motion-enabled .hz-plan.is-visible .hz-plan__scan {
    animation: hz-plan-scan 1.55s .45s var(--hz-ease-orbit) both;
}

.hz-plan__intro,
.hz-plan__offer {
    position: relative;
    padding: clamp(42px, 5vw, 72px);
}

.hz-plan__intro {
    overflow: hidden;
    background: var(--hz-blue-soft);
}

.hz-plan__intro h2 {
    margin: 13px 0 8px;
    color: var(--hz-ink);
    font-size: clamp(34px, 3.3vw, 50px);
    font-weight: 800;
    letter-spacing: -.04em;
    direction: ltr;
    text-align: right;
}

.hz-ltr .hz-plan__intro h2 {
    text-align: left;
}

.hz-plan__intro p {
    max-width: 420px;
    margin: 0;
    color: var(--hz-muted);
}

.hz-plan__tag {
    padding: 7px 11px;
    display: inline-flex;
    color: var(--hz-blue);
    background: color-mix(in srgb, var(--hz-blue-soft) 60%, var(--hz-surface));
    border: 1px solid color-mix(in srgb, var(--hz-blue) 18%, transparent);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.hz-plan__intro img {
    position: absolute;
    inset-inline: 20px;
    inset-block-end: -22px;
    margin: auto;
    width: min(78%, 460px);
    filter: drop-shadow(0 18px 25px rgba(31, 44, 74, .13));
    animation: hz-plan-breathe 6.8s ease-in-out infinite;
}

.hz-plan__offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--hz-surface);
    direction: rtl;
}

.hz-ltr .hz-plan__offer {
    direction: ltr;
}

.hz-plan__from {
    margin: 0;
    color: var(--hz-muted);
    font-size: 16px;
    font-weight: 600;
}

.hz-plan__price {
    margin: 0 0 28px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    direction: ltr;
    justify-content: flex-end;
}

.hz-ltr .hz-plan__price {
    justify-content: flex-start;
}

.hz-plan__price strong {
    color: var(--hz-blue);
    font-size: clamp(64px, 7vw, 104px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .95;
    transform-origin: bottom;
}

body.hz-motion-enabled .hz-plan:not(.is-visible) .hz-plan__price strong {
    opacity: 0;
    transform: translateY(32px) scale(.9);
}

body.hz-motion-enabled .hz-plan.is-visible .hz-plan__price strong {
    animation: hz-price-rise .95s .25s var(--hz-ease-orbit) both;
}

.hz-plan__price span {
    padding-bottom: 9px;
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.4;
}

.hz-plan__features {
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
    color: var(--hz-ink);
    font-size: 15px;
}

.hz-plan__features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.hz-motion-enabled .hz-plan:not(.is-visible) .hz-plan__features li {
    opacity: 0;
    transform: translateX(18px);
}

body.hz-motion-enabled.hz-ltr .hz-plan:not(.is-visible) .hz-plan__features li {
    transform: translateX(-18px);
}

body.hz-motion-enabled .hz-plan.is-visible .hz-plan__features li {
    animation: hz-feature-arrive .55s var(--hz-ease-orbit) both;
}

body.hz-motion-enabled .hz-plan.is-visible .hz-plan__features li:nth-child(1) { animation-delay: .48s; }
body.hz-motion-enabled .hz-plan.is-visible .hz-plan__features li:nth-child(2) { animation-delay: .57s; }
body.hz-motion-enabled .hz-plan.is-visible .hz-plan__features li:nth-child(3) { animation-delay: .66s; }
body.hz-motion-enabled .hz-plan.is-visible .hz-plan__features li:nth-child(4) { animation-delay: .75s; }
body.hz-motion-enabled .hz-plan.is-visible .hz-plan__features li:nth-child(5) { animation-delay: .84s; }
body.hz-motion-enabled .hz-plan.is-visible .hz-plan__features li:nth-child(6) { animation-delay: .93s; }

.hz-plan__features i {
    color: var(--hz-blue);
}

.hz-plan__cta {
    width: 100%;
}

.hz-plan__details {
    margin-top: 14px;
    color: var(--hz-blue) !important;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.hz-trust {
    position: relative;
    padding: 28px 0 92px;
    overflow: hidden;
}

.hz-trust::after {
    content: "";
    position: absolute;
    inset-inline: -8%;
    inset-block-end: -58px;
    height: 120px;
    border: 2px solid color-mix(in srgb, var(--hz-blue) 32%, transparent);
    border-radius: 50%;
    transform: rotate(-2deg);
    pointer-events: none;
}

.hz-trust__grid {
    --hz-pointer-x: 50%;
    --hz-pointer-y: 50%;
    position: relative;
    min-height: 126px;
    padding: 26px 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-lg);
    box-shadow: var(--hz-shadow-soft);
    overflow: hidden;
    isolation: isolate;
}

.hz-trust__grid::after {
    content: "";
    position: absolute;
    inset-inline: 9%;
    inset-block-start: 50%;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--hz-blue), var(--hz-green), var(--hz-orange));
    opacity: .22;
}

.hz-trust__item {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hz-trust__item + .hz-trust__item {
    border-inline-start: 1px solid var(--hz-line);
    padding-inline-start: 24px;
}

.hz-trust__item > i {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 16%, transparent);
}

body.hz-motion-enabled .hz-trust__grid.is-visible .hz-trust__item > i {
    animation: hz-trust-pulse 3.8s ease-in-out infinite;
}

body.hz-motion-enabled .hz-trust__grid.is-visible .hz-trust__item:nth-child(2) > i { animation-delay: .65s; }
body.hz-motion-enabled .hz-trust__grid.is-visible .hz-trust__item:nth-child(3) > i { animation-delay: 1.3s; }

.hz-trust__item--blue > i { background: var(--hz-blue); }
.hz-trust__item--green > i { background: var(--hz-green); }
.hz-trust__item--orange > i { background: var(--hz-orange); }

.hz-trust__item strong,
.hz-trust__item span {
    display: block;
}

.hz-trust__item strong {
    color: var(--hz-ink);
    font-size: 15px;
    font-weight: 800;
}

.hz-trust__item span {
    margin-top: 2px;
    color: var(--hz-muted);
    font-size: 12px;
}

.hz-footer {
    padding: 70px 0 22px;
    color: #c7d0e1;
    background: #07152d;
}

.hz-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
}

.hz-footer__brand img {
    filter: invert(1) saturate(0) brightness(2);
}

.hz-footer__brand p {
    max-width: 300px;
    margin: 18px 0 0;
    color: #95a3bc;
}

.hz-footer h2 {
    margin: 3px 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.hz-footer__grid > div:not(.hz-footer__brand) a {
    margin-bottom: 10px;
    display: block;
    color: #aeb9cd;
    font-size: 14px;
}

.hz-footer__grid a:hover {
    color: #fff;
}

.hz-footer__bottom {
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #22304a;
    color: #8190a9;
    font-size: 12px;
}

.hz-page-hero {
    padding: 68px 0 58px;
    background: var(--hz-blue-soft);
}

.hz-ltr .hz-page-hero,
.hz-ltr .hz-main--inner,
.hz-ltr .hz-client-content {
    direction: ltr;
    text-align: left;
}

.hz-rtl .hz-page-hero,
.hz-rtl .hz-main--inner,
.hz-rtl .hz-client-content {
    direction: rtl;
    text-align: right;
}

.hz-page-hero p {
    margin: 0 0 8px;
    color: var(--hz-blue);
    font-weight: 800;
}

.hz-page-hero h1 {
    margin: 0;
    color: var(--hz-ink);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
}

.hz-main--inner {
    min-height: 50vh;
    padding: 60px 0 90px;
    color: var(--hz-ink);
    background: var(--hz-bg);
}

.hz-client-content {
    padding: 26px;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius-lg);
    box-shadow: var(--hz-shadow-soft);
}

.hz-client-content--fluid {
    padding: 0;
    border: 0;
    box-shadow: none;
}

[data-hz-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .78s ease, transform .78s var(--hz-ease-orbit);
    transition-delay: var(--hz-reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-hz-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hz-intro-safety {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes hz-intro-beam {
    0% { transform: scaleX(0); opacity: 0; }
    48% { opacity: .7; }
    100% { transform: scaleX(1); opacity: 0; }
}

@keyframes hz-intro-logo {
    0% { opacity: 0; filter: var(--hz-intro-logo-tone) blur(8px); transform: scale(.82); }
    55% { opacity: 1; filter: var(--hz-intro-logo-tone) blur(0); transform: scale(1.05); }
    100% { opacity: 1; filter: var(--hz-intro-logo-tone) blur(0); transform: scale(1); }
}

@keyframes hz-intro-orbit {
    0% { opacity: 0; clip-path: inset(0 100% 0 0); }
    45% { opacity: .8; }
    100% { opacity: .28; clip-path: inset(0 0 0 0); }
}

@keyframes hz-signal-dot {
    to { opacity: 1; transform: scale(1.45); box-shadow: 0 0 16px var(--hz-blue-glow); }
}

@keyframes hz-copy-arrive {
    from { opacity: 0; transform: translateY(22px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes hz-button-sheen {
    0%, 68% { transform: translateX(-125%); }
    82%, 100% { transform: translateX(125%); }
}

@keyframes hz-scroll-pulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 color-mix(in srgb, var(--hz-blue) 0%, transparent); }
    50% { transform: translateY(5px); box-shadow: 0 0 0 8px color-mix(in srgb, var(--hz-blue) 8%, transparent); }
}

@keyframes hz-orbit-ring-one {
    to { transform: rotate(378deg) scaleX(1.12); }
}

@keyframes hz-orbit-ring-two {
    to { transform: rotate(332deg) scaleX(1.18); }
}

@keyframes hz-orbit-ring-three {
    to { transform: rotate(424deg) scaleX(1.07); }
}

@keyframes hz-node-breathe {
    0%, 100% { transform: scale(.82); opacity: .62; }
    50% { transform: scale(1.25); opacity: 1; }
}

@keyframes hz-domain-scan {
    0%, 56% { inset-inline-start: -36%; opacity: 0; }
    62% { opacity: 1; }
    84%, 100% { inset-inline-start: 112%; opacity: 0; }
}

@keyframes hz-search-launch {
    0% { box-shadow: var(--hz-shadow); }
    42% { box-shadow: 0 0 0 8px rgba(18, 98, 255, .08), 0 34px 90px rgba(18, 98, 255, .18); }
    100% { box-shadow: var(--hz-shadow); }
}

@keyframes hz-result-arrive {
    from { opacity: 0; transform: translateY(8px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hz-globe-pulse {
    0%, 100% { transform: rotate(0) scale(1); box-shadow: 0 15px 26px rgba(18, 98, 255, .28); }
    50% { transform: rotate(5deg) scale(1.04); box-shadow: 0 18px 34px rgba(18, 98, 255, .38), 0 0 0 9px rgba(18, 98, 255, .06); }
}

@keyframes hz-network-pulse {
    to { stroke-dashoffset: -1090; }
}

@keyframes hz-plan-scan {
    0% { inset-inline-start: -24%; opacity: 0; }
    18% { opacity: 1; }
    100% { inset-inline-start: 112%; opacity: 0; }
}

@keyframes hz-plan-breathe {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-9px) rotate(-.8deg); }
}

@keyframes hz-price-rise {
    from { opacity: 0; transform: translateY(32px) scale(.9); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes hz-feature-arrive {
    from { opacity: 0; transform: translateX(18px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes hz-trust-pulse {
    0%, 74%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(18, 98, 255, 0); }
    84% { transform: scale(1.08); box-shadow: 0 0 0 9px rgba(18, 98, 255, .08); }
}

@keyframes hz-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1.14); }
    50% { transform: translate3d(0, -14px, 0) scale(1.14); }
}

@media (max-width: 1120px) {
    .hz-header__inner {
        gap: 18px;
    }

    .hz-nav {
        gap: 15px;
    }

    .hz-hero {
        min-height: 560px;
    }

    .hz-hero__grid {
        min-height: 560px;
    }

    .hz-hero__visual {
        min-height: 480px;
    }
}

@media (max-width: 1000px) and (min-width: 761px) {
    .hz-header__inner {
        gap: 12px;
    }

    .hz-brand img {
        width: 100px;
    }

    .hz-nav {
        gap: 10px;
    }

    .hz-nav a {
        font-size: 12px;
    }

    .hz-header__actions {
        gap: 6px;
    }

    .hz-language-menu summary,
    .hz-currency {
        font-size: 10px;
    }

    .hz-language-menu summary {
        min-height: 38px;
        padding-inline: 7px;
        gap: 6px;
    }

    .hz-language-menu__globe {
        width: 26px;
        height: 26px;
    }

    .hz-currency {
        min-width: 36px;
    }

    .hz-theme-toggle {
        width: 52px;
    }

    .hz-client-button,
    .hz-logout-button {
        min-height: 38px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .hz-hero h1 {
        font-size: 43px;
    }

    .hz-hero__lead {
        font-size: 16px;
    }
}

@media (max-width: 760px) {
    .hz-shell {
        width: min(calc(100% - 36px), var(--hz-shell));
    }

    .hz-header__inner {
        grid-template-columns: auto 1fr;
    }

    .hz-language-menu,
    .hz-currency,
    .hz-currency-switcher {
        display: none;
    }

    .hz-nav {
        position: absolute;
        inset-block-start: 73px;
        inset-inline: 18px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        text-align: start;
        background: var(--hz-surface);
        border: 1px solid var(--hz-line);
        border-radius: 18px;
        box-shadow: var(--hz-shadow);
    }

    .hz-nav.is-open {
        display: flex;
    }

    .hz-nav a {
        padding: 12px 8px;
    }

    .hz-nav a::after {
        display: none;
    }

    .hz-nav__languages {
        margin-top: 10px;
        padding-top: 14px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        border-top: 1px solid var(--hz-line);
    }

    .hz-nav__languages a {
        min-width: 0;
        padding: 10px 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: var(--hz-muted);
        background: var(--hz-surface-soft);
        border: 1px solid transparent;
        border-radius: 12px;
        font-size: 11px;
        text-align: center;
    }

    .hz-nav__languages a.is-active {
        color: var(--hz-blue);
        background: var(--hz-blue-soft);
        border-color: color-mix(in srgb, var(--hz-blue) 22%, var(--hz-line));
    }

    .hz-header__actions {
        justify-self: end;
    }

    .hz-menu-toggle {
        display: flex;
    }

    .hz-orbit-thread {
        opacity: .2;
    }

    .hz-paths__network {
        display: none;
    }

    .hz-hero,
    .hz-hero__grid {
        min-height: auto;
    }

    .hz-hero {
        padding: 70px 0 40px;
    }

    .hz-hero__grid {
        grid-template-columns: 1fr;
    }

    .hz-hero__visual {
        min-height: 440px;
        grid-row: 2;
    }

    .hz-hero__orbit {
        inset: 8% -10% 2%;
        opacity: .72;
    }

    .hz-hero__copy {
        max-width: 700px;
    }

    .hz-scroll-cue {
        margin-top: 34px;
    }

    .hz-domain {
        margin-top: 20px;
    }

    .hz-domain__panel {
        grid-template-columns: 1fr;
    }

    .hz-domain__icon {
        display: none;
    }

    .hz-paths__grid {
        gap: 22px;
    }

    .hz-path__art {
        height: 210px;
    }

    .hz-path__art img {
        width: 205px;
    }

    .hz-path__number {
        inset-block-start: 168px;
        inset-inline-start: calc(50% - 92px);
    }

    .hz-plan {
        grid-template-columns: 1fr;
    }

    .hz-plan__intro {
        min-height: 540px;
    }

    .hz-plan__offer {
        min-height: 560px;
    }

    .hz-trust__grid {
        grid-template-columns: 1fr;
    }

    .hz-trust__item + .hz-trust__item {
        padding-inline-start: 0;
        padding-block-start: 20px;
        border-inline-start: 0;
        border-block-start: 1px solid var(--hz-line);
    }
}

@media (max-width: 720px) {
    .hz-shell {
        width: min(calc(100% - 28px), var(--hz-shell));
    }

    .hz-header,
    .hz-header__inner {
        min-height: 70px;
    }

    .hz-brand img {
        width: 94px;
    }

    .hz-client-button,
    .hz-logout-button {
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        justify-content: center;
    }

    .hz-client-button span,
    .hz-logout-button span {
        display: none;
    }

    .hz-theme-toggle {
        width: 54px;
        flex: 0 0 54px;
    }

    .hz-nav {
        inset-block-start: 64px;
        inset-inline: 14px;
    }

    .hz-hero {
        padding-top: 54px;
    }

    .hz-hero h1 {
        font-size: clamp(36px, 10.2vw, 44px);
        line-height: 1.18;
    }

    .hz-hero__lead {
        margin-top: 18px;
        font-size: 17px;
    }

    .hz-hero__actions {
        margin-top: 26px;
    }

    .hz-button {
        flex: 1 1 150px;
        padding-inline: 18px;
    }

    .hz-hero__visual {
        min-height: 330px;
    }

    .hz-hero__visual img {
        animation: none;
        transform: scale(1.02);
    }

    .hz-hero__ring--two,
    .hz-hero__node--two {
        display: none;
    }

    .hz-domain__scan {
        animation-duration: 8.5s;
    }

    .hz-domain__panel {
        min-height: 0;
        padding: 26px 20px;
        border-radius: 24px;
    }

    .hz-domain__controls {
        grid-template-columns: 1fr 92px;
    }

    .hz-domain__controls input {
        grid-column: 1 / -1;
        border-radius: 12px 12px 0 0;
    }

    .hz-domain__controls select {
        border-inline-start: 1px solid var(--hz-line);
        border-block-start: 0;
        border-radius: 0 0 12px 0;
    }

    .hz-domain__submit,
    .hz-ltr .hz-domain__submit {
        border-block-start: 0;
        border-radius: 0 0 0 12px;
    }

    .hz-ltr .hz-domain__controls select {
        border-radius: 0 0 0 12px;
    }

    .hz-ltr .hz-domain__submit {
        border-radius: 0 0 12px 0;
    }

    .hz-domain__result {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .hz-domain__result-action {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hz-tld-row {
        gap: 14px;
        justify-content: center;
    }

    .hz-paths {
        padding: 88px 0 56px;
    }

    .hz-section-heading {
        margin-bottom: 34px;
    }

    .hz-section-heading h2 {
        font-size: 34px;
    }

    .hz-section-heading span {
        font-size: 16px;
    }

    .hz-paths__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hz-path p {
        min-height: 0;
    }

    .hz-plan {
        border-radius: 24px;
    }

    .hz-plan__intro,
    .hz-plan__offer {
        padding: 36px 24px;
    }

    .hz-plan__intro {
        min-height: 480px;
    }

    .hz-plan__offer {
        min-height: 520px;
    }

    .hz-plan__price strong {
        font-size: 68px;
    }

    .hz-trust__grid {
        padding: 24px 20px;
    }

    .hz-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .hz-footer__brand {
        grid-column: 1 / -1;
    }

    .hz-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .hz-hero__actions {
        flex-direction: column;
    }

    .hz-button {
        flex-basis: auto;
        width: 100%;
    }

    .hz-footer__grid {
        grid-template-columns: 1fr;
    }

    .hz-footer__brand {
        grid-column: auto;
    }
}

@media (max-width: 380px) {
    .hz-header__inner {
        gap: 18px;
    }

    .hz-brand img {
        width: 80px;
    }

    .hz-header__actions {
        gap: 6px;
    }

    .hz-theme-toggle {
        width: 48px;
        flex-basis: 48px;
    }
}

@media (max-width: 373px) {
    .hz-domain__captcha .recaptcha-container {
        min-height: 62px;
        overflow: visible;
    }

    .hz-domain__captcha .g-recaptcha {
        width: 304px;
        max-width: none;
        margin-inline: calc((100% - 304px) / 2);
        transform: scale(.78);
        transform-origin: top center;
    }

    .hz-domain__captcha #default-captcha-domainchecker {
        grid-template-columns: 1fr;
    }

    .hz-domain__captcha #default-captcha-domainchecker p {
        grid-column: 1;
    }
}

@media (pointer: coarse) {
    [data-hz-spotlight]::before {
        display: none;
    }

    .hz-path__art,
    .hz-hero__stage,
    .hz-hero__orbit {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hz-atlas *, .hz-atlas *::before, .hz-atlas *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
    [data-hz-reveal] {
        opacity: 1;
        transform: none;
    }

    .hz-intro {
        display: none;
    }

    .hz-orbit-thread__pulse {
        stroke-dashoffset: 0 !important;
    }

    .hz-hero__orbit,
    .hz-paths__network-pulse,
    .hz-domain__scan,
    .hz-plan__scan {
        display: none;
    }

    .hz-hero__stage,
    .hz-path__art {
        transform: none !important;
    }

    .hz-plan__features li,
    .hz-plan__price strong {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* Atlas runtime hardening and inner-page experience */
.hz-atlas-runtime {
    --hz-inner-grid: color-mix(in srgb, var(--hz-blue) 5%, transparent);
}

.hz-template-homepage .grecaptcha-badge {
    visibility: hidden !important;
}

.hz-domain__captcha.is-invisible {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.hz-recaptcha-note {
    margin: 9px 2px 0;
    color: var(--hz-muted);
    font-size: 10px;
    line-height: 1.65;
}

.hz-recaptcha-note a {
    color: var(--hz-blue);
    font-weight: 700;
}

.hz-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 30%, rgba(18, 98, 255, .12), transparent 23%),
        linear-gradient(135deg, var(--hz-blue-soft), color-mix(in srgb, var(--hz-surface) 86%, var(--hz-blue-soft)));
}

.hz-page-hero::before,
.hz-page-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(18, 98, 255, .16);
    border-radius: 50%;
    pointer-events: none;
}

.hz-page-hero::before {
    width: 420px;
    height: 170px;
    inset-block-start: -72px;
    inset-inline-end: 8%;
    transform: rotate(-12deg);
    animation: hz-inner-orbit 13s ease-in-out infinite alternate;
}

.hz-page-hero::after {
    width: 18px;
    height: 18px;
    inset-block-end: 28px;
    inset-inline-start: 12%;
    background: var(--hz-surface);
    box-shadow: 0 0 0 8px rgba(18, 98, 255, .08), 0 0 28px rgba(18, 98, 255, .26);
    animation: hz-inner-node 3.8s ease-in-out infinite;
}

.hz-page-hero .hz-shell {
    position: relative;
}

.hz-page-hero p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hz-page-hero p::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: var(--hz-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(18, 98, 255, .09);
}

.hz-main--inner {
    position: relative;
    background:
        linear-gradient(var(--hz-inner-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--hz-inner-grid) 1px, transparent 1px),
        var(--hz-bg);
    background-size: 54px 54px;
}

.hz-main--inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0, rgba(18, 98, 255, .08), transparent 34%);
}

.hz-client-shell,
.hz-client-content {
    position: relative;
    z-index: 1;
}

.hz-client-content {
    overflow: hidden;
    backdrop-filter: blur(16px);
    background: color-mix(in srgb, var(--hz-surface) 95%, transparent);
}

.hz-client-content::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 260px;
    height: 260px;
    inset-block-start: -170px;
    inset-inline-end: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 98, 255, .14), transparent 70%);
    pointer-events: none;
}

.hz-main--inner .panel,
.hz-main--inner .card {
    color: var(--hz-ink);
    background: var(--hz-surface);
    border-color: var(--hz-line);
    border-radius: 18px;
    box-shadow: 0 15px 42px rgba(13, 34, 72, .07);
}

.hz-main--inner .panel-heading,
.hz-main--inner .card-header {
    color: var(--hz-ink);
    background: var(--hz-surface-soft);
    border-color: var(--hz-line);
    border-radius: 18px 18px 0 0;
}

.hz-main--inner .form-control,
.hz-main--inner select,
.hz-main--inner textarea {
    color: var(--hz-ink);
    background: var(--hz-surface);
    border-color: var(--hz-line);
    border-radius: 12px;
    box-shadow: none;
}

.hz-main--inner .form-control:focus,
.hz-main--inner select:focus,
.hz-main--inner textarea:focus {
    border-color: var(--hz-blue);
    box-shadow: 0 0 0 4px rgba(18, 98, 255, .11);
}

#order-standard_cart {
    font-family: inherit !important;
    color: var(--hz-ink);
}

#order-standard_cart .header-lined {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

#order-standard_cart .header-lined .section-heading,
#order-standard_cart .header-lined h2 {
    margin: 0;
    color: var(--hz-ink) !important;
    font-family: inherit !important;
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 800 !important;
    letter-spacing: -.035em;
    line-height: 1.12;
}

#order-standard_cart .header-lined p {
    margin: 14px 0 0;
    color: var(--hz-muted) !important;
    font-size: clamp(15px, 1.7vw, 19px);
}

/* Hostazi cart and checkout treatment on top of the Antler order-form layer. */
#order-standard_cart .view-cart-items,
#order-standard_cart .checkout-security-msg,
#order-standard_cart .checkout-form {
    color: var(--hz-ink);
    background: var(--hz-surface);
    border-color: var(--hz-line);
    border-radius: 20px;
    box-shadow: var(--hz-shadow-soft);
}

#order-standard_cart .view-cart-items .item {
    color: var(--hz-ink);
    background: color-mix(in srgb, var(--hz-blue-soft) 42%, var(--hz-surface));
    border-color: var(--hz-line);
}

#order-standard_cart .secondary-cart-sidebar .order-summary {
    position: relative;
    padding: clamp(24px, 3vw, 34px) !important;
    isolation: isolate;
    color: #fff !important;
    background:
        radial-gradient(circle at 12% 8%, rgba(104, 168, 255, .34), transparent 34%),
        linear-gradient(145deg, #0c2b68 0%, #071c46 62%, #061638 100%) !important;
    border: 1px solid rgba(126, 174, 255, .25) !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 60px rgba(7, 28, 70, .24) !important;
    overflow: hidden;
}

#order-standard_cart .secondary-cart-sidebar .order-summary::before {
    content: "";
    position: absolute;
    inset: -90px -70px auto auto;
    z-index: -1;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, .025);
    pointer-events: none;
}

#order-standard_cart .secondary-cart-sidebar .order-summary h2,
#order-standard_cart .secondary-cart-sidebar .order-summary .summary-container,
#order-standard_cart .secondary-cart-sidebar .order-summary .summary-container span,
#order-standard_cart .secondary-cart-sidebar .order-summary .total-due-today {
    color: #fff !important;
    font-family: inherit !important;
}

#order-standard_cart .secondary-cart-sidebar .order-summary h2 {
    margin: 0 0 24px !important;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: clamp(22px, 2.5vw, 30px) !important;
    font-weight: 800 !important;
}

#order-standard_cart .secondary-cart-sidebar .summary-container > div,
#order-standard_cart .secondary-cart-sidebar .bordered-totals > div {
    padding-block: 10px;
    border-color: rgba(255, 255, 255, .12) !important;
}

#order-standard_cart .secondary-cart-sidebar .total-due-today {
    margin: 18px 0 20px !important;
    padding: 20px 0 !important;
    border-block: 1px solid rgba(255, 255, 255, .14);
}

#order-standard_cart .secondary-cart-sidebar .total-due-today .amt {
    display: block;
    margin-bottom: 3px;
    color: #fff !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    font-weight: 800 !important;
    letter-spacing: -.025em;
}

#order-standard_cart a.btn-checkout,
#order-standard_cart #checkout,
#order-standard_cart button#btnCompleteOrder {
    width: 100%;
    min-height: 56px;
    padding: 14px 22px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff !important;
    background: linear-gradient(135deg, #1262ff 0%, #287cff 55%, #0b4fd6 100%) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 14px !important;
    box-shadow: 0 15px 34px rgba(18, 98, 255, .3) !important;
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
}

#order-standard_cart a.btn-checkout:hover,
#order-standard_cart a.btn-checkout:focus-visible,
#order-standard_cart button#btnCompleteOrder:hover,
#order-standard_cart button#btnCompleteOrder:focus-visible {
    color: #fff !important;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 19px 40px rgba(18, 98, 255, .36) !important;
}

#order-standard_cart a.btn-checkout.disabled,
#order-standard_cart button#btnCompleteOrder:disabled {
    cursor: not-allowed;
    filter: grayscale(.3);
    opacity: .58;
    transform: none;
}

.hz-rtl #order-standard_cart a.btn-checkout i,
.hz-rtl #order-standard_cart button#btnCompleteOrder i {
    transform: scaleX(-1);
}

#order-standard_cart .btn-continue-shopping {
    margin-top: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .78) !important;
    font-family: inherit !important;
    font-weight: 700;
}

#order-standard_cart .btn-continue-shopping:hover,
#order-standard_cart .btn-continue-shopping:focus-visible {
    color: #fff !important;
}

#order-standard_cart .sub-heading {
    margin-block: 28px 18px;
    border-color: var(--hz-line);
}

#order-standard_cart .sub-heading span.primary-bg-color {
    padding: 8px 16px;
    color: #fff !important;
    background: var(--hz-blue) !important;
    border-radius: 999px;
    font-family: inherit !important;
    font-weight: 800;
}

#order-standard_cart #totalDueToday.alert-success {
    padding: 18px 20px;
    color: var(--hz-ink);
    background: color-mix(in srgb, var(--hz-blue) 9%, var(--hz-surface));
    border: 1px solid color-mix(in srgb, var(--hz-blue) 24%, var(--hz-line));
    border-radius: 15px;
}

#order-standard_cart #paymentGatewaysContainer .radio-inline {
    min-height: 48px;
    margin: 5px !important;
    padding: 12px 16px 12px 38px !important;
    display: inline-flex;
    align-items: center;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 13px;
    box-shadow: none;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.hz-rtl #order-standard_cart #paymentGatewaysContainer .radio-inline {
    padding: 12px 38px 12px 16px !important;
}

#order-standard_cart #paymentGatewaysContainer .radio-inline:has(input:checked) {
    background: var(--hz-blue-soft);
    border-color: color-mix(in srgb, var(--hz-blue) 44%, var(--hz-line));
    box-shadow: 0 0 0 3px rgba(18, 98, 255, .08);
}

@media (max-width: 767px) {
    #order-standard_cart .secondary-cart-sidebar .order-summary {
        margin-top: 22px;
        padding: 24px 20px !important;
        border-radius: 19px !important;
    }

    #order-standard_cart a.btn-checkout,
    #order-standard_cart #checkout,
    #order-standard_cart button#btnCompleteOrder {
        min-height: 54px;
        font-size: 15px !important;
    }

    #order-standard_cart #paymentGatewaysContainer .radio-inline {
        width: 100%;
        margin: 5px 0 !important;
        justify-content: flex-start;
    }
}

#products.product {
    margin-top: 38px !important;
}

#products > .row {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

/* Managed announcements section */
.hz-news {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(18, 98, 255, .08), transparent 30%),
        var(--hz-bg);
}

.hz-news__heading {
    margin-bottom: 34px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.hz-news__heading p {
    margin: 0 0 9px;
    color: var(--hz-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hz-news__heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--hz-ink);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.hz-news__heading span {
    display: block;
    margin-top: 10px;
    color: var(--hz-muted);
    font-size: 16px;
}

.hz-news__heading > a,
.hz-news-card__link {
    color: var(--hz-blue);
    font-weight: 800;
    text-decoration: none;
}

.hz-news__heading > a {
    flex: 0 0 auto;
    padding-bottom: 7px;
    border-bottom: 2px solid color-mix(in srgb, var(--hz-blue) 30%, transparent);
}

.hz-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hz-news-card {
    --hz-spot-x: 50%;
    --hz-spot-y: 50%;
    min-height: 270px;
    position: relative;
    padding: 27px;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 22px;
    box-shadow: var(--hz-shadow-soft);
    overflow: hidden;
    transition: transform .35s var(--hz-ease-orbit), border-color .35s ease, box-shadow .35s ease;
}

.hz-news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(320px circle at var(--hz-spot-x) var(--hz-spot-y), rgba(18, 98, 255, .13), transparent 62%);
    transition: opacity .3s ease;
}

.hz-news-card:hover {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, var(--hz-blue) 32%, var(--hz-line));
    box-shadow: 0 24px 55px rgba(7, 27, 67, .12);
}

.hz-news-card:hover::before {
    opacity: 1;
}

.hz-news-card time {
    width: fit-content;
    margin-bottom: 23px;
    padding: 6px 10px;
    color: var(--hz-blue);
    background: var(--hz-blue-soft);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
}

.hz-news-card h3 {
    margin: 0 0 11px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
}

.hz-news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.hz-news-card p {
    margin: 0 0 24px;
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.8;
}

.hz-news-card__link {
    margin-top: auto;
    align-self: flex-start;
}

.hz-news__empty {
    min-height: 150px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: var(--hz-muted);
    background: var(--hz-surface);
    border: 1px dashed var(--hz-line);
    border-radius: 22px;
}

.hz-news__empty i {
    color: var(--hz-blue);
    font-size: 28px;
}

.hz-nav > a > i {
    margin-inline-end: 7px;
}

@media (max-width: 880px) {
    .hz-news {
        padding: 72px 0;
    }

    .hz-news__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .hz-news__grid {
        grid-template-columns: 1fr;
    }

    .hz-news-card {
        min-height: 0;
    }
}

#products > .row::before,
#products > .row::after {
    display: none;
    content: none;
}

#products > .row + .row {
    margin-top: 22px;
}

#products > .row.hz-single-product {
    grid-template-columns: minmax(280px, 430px);
    justify-content: center;
}

#products > .row.hz-empty-product-row {
    display: none;
}

#products .plan-content {
    width: auto;
    min-height: 0 !important;
    padding: 0;
    float: none;
}

#products .pricing > .product {
    position: relative;
    height: 100%;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(12, 38, 85, .10);
    transition: transform .42s var(--hz-ease-orbit), border-color .3s ease, box-shadow .3s ease;
}

#products .pricing > .product:hover {
    z-index: 2;
    transform: translateY(-10px);
    border-color: rgba(18, 98, 255, .36);
    box-shadow: 0 34px 78px rgba(12, 45, 104, .18);
}

#products .header-content {
    position: relative;
    min-height: 0 !important;
    padding: 28px 24px 24px !important;
    overflow: hidden;
    text-align: start;
    background:
        radial-gradient(circle at 86% 10%, rgba(18, 98, 255, .18), transparent 32%),
        linear-gradient(145deg, var(--hz-surface), var(--hz-blue-soft)) !important;
    border: 0 !important;
}

#products .header-content::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    inset-block-start: -100px;
    inset-inline-end: -70px;
    border: 1px solid rgba(18, 98, 255, .18);
    border-radius: 50%;
    animation: hz-card-orbit 7s linear infinite;
}

#products .header-content .title {
    color: var(--hz-ink) !important;
    font-family: inherit !important;
    font-size: 22px;
    font-weight: 800;
}

#products .product-pricing {
    margin: 18px 0 20px;
}

#products .product-pricing .price {
    display: block;
    color: var(--hz-ink) !important;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.04em;
}

#products .product-pricing .period {
    display: block;
    margin-top: 5px;
    color: var(--hz-muted) !important;
    font-size: 14px !important;
}

#products .btn-order-now {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: linear-gradient(135deg, #1262ff, #074bd5) !important;
    border: 0 !important;
    border-radius: 13px !important;
    box-shadow: 0 12px 28px rgba(18, 98, 255, .23);
    font-family: inherit;
    font-weight: 800;
}

#products .btn-order-now:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

#products .product-desc {
    min-height: 0 !important;
    padding: 22px 20px 24px !important;
    flex: 1 1 auto;
    color: var(--hz-ink) !important;
    background: var(--hz-surface) !important;
    border: 0 !important;
}

#products .prod-desc-div > br,
#products .prod-desc-div > .list-info > br {
    display: none;
}

#products .prod-desc-div {
    display: grid;
    gap: 10px;
}

#products .prod-desc-div > .list-info {
    min-height: 68px;
    padding: 12px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 2px 12px;
    text-align: start;
    color: var(--hz-ink);
    background: var(--hz-surface-soft);
    border: 1px solid color-mix(in srgb, var(--hz-line) 82%, transparent);
    border-radius: 14px;
}

#products .prod-desc-div > .list-info > .plans {
    grid-column: 1 / -1;
    width: max-content;
    margin: 0 0 5px;
    padding: 5px 9px;
    color: var(--hz-blue) !important;
    background: var(--hz-blue-soft) !important;
    border-radius: 999px;
    font-size: 10px;
}

#products .prod-desc-div > .list-info > i {
    grid-column: 1;
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--hz-blue);
    background: color-mix(in srgb, var(--hz-blue-soft) 78%, var(--hz-surface));
    border-radius: 11px;
    font-size: 22px;
}

#products .prod-desc-div > .list-info > .spec,
#products .prod-desc-div > .list-info > span:not(.spec) {
    grid-column: 2;
    margin: 0;
}

#products .prod-desc-div > .list-info > .spec {
    color: var(--hz-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

#products .prod-desc-div > .list-info > span:not(.spec) {
    color: var(--hz-ink);
    font-size: 13px;
    font-weight: 750;
}

/* Modern client login */
.hz-template-login .hz-main--inner {
    min-height: 100vh;
    padding: 0;
    background: #f6f9ff;
}

[data-hz-theme="dark"].hz-template-login .hz-main--inner {
    background: #081225;
}

.hz-auth {
    position: relative;
    min-height: 100vh;
    padding: 32px 24px 64px;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--hz-ink);
    background:
        radial-gradient(circle at 14% 16%, rgba(18, 98, 255, .13), transparent 26%),
        radial-gradient(circle at 88% 82%, rgba(77, 185, 71, .11), transparent 24%);
}

.hz-auth__orb {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(18, 98, 255, .18);
    border-radius: 50%;
    pointer-events: none;
}

.hz-auth__orb--one {
    width: 520px;
    height: 210px;
    inset-block-start: 3%;
    inset-inline-start: -120px;
    transform: rotate(22deg);
    animation: hz-auth-orbit 16s ease-in-out infinite alternate;
}

.hz-auth__orb--two {
    width: 360px;
    height: 360px;
    inset-block-end: -180px;
    inset-inline-end: -80px;
    border-style: dashed;
    animation: hz-card-orbit 22s linear infinite;
}

.hz-auth__route {
    position: absolute;
    z-index: -1;
    width: 62%;
    height: 1px;
    inset-block-start: 16%;
    inset-inline-start: 19%;
    background: linear-gradient(90deg, transparent, rgba(18, 98, 255, .35), transparent);
    transform: rotate(-7deg);
}

.hz-auth__shell {
    width: min(1120px, 100%);
}

.hz-auth__topbar {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hz-auth__brand img {
    width: 132px;
    height: auto;
}

[data-hz-theme="dark"] .hz-auth__brand img {
    filter: invert(1) saturate(0) brightness(2);
}

.hz-auth__register-link {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--hz-blue);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 999px;
    box-shadow: var(--hz-shadow-soft);
    font-weight: 800;
}

.hz-auth__card {
    --hz-pointer-x: 50%;
    --hz-pointer-y: 50%;
    position: relative;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(300px, .84fr) minmax(420px, 1.16fr);
    overflow: hidden;
    isolation: isolate;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 32px;
    box-shadow: 0 38px 100px rgba(13, 39, 91, .16);
}

.hz-auth__visual {
    position: relative;
    min-height: 100%;
    padding: 54px 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 64% 25%, rgba(90, 155, 255, .42), transparent 32%),
        linear-gradient(145deg, #0c2c6f, #071831 68%, #062963);
}

.hz-auth__visual::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    inset-block-start: 75px;
    inset-inline-start: 50%;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    transform: translateX(-50%) rotate(22deg) scaleY(.45);
    animation: hz-card-orbit 9s linear infinite;
}

.hz-auth__visual-ring {
    position: absolute;
    width: 190px;
    height: 190px;
    inset-block-start: 110px;
    inset-inline-start: 50%;
    border: 1px dashed rgba(255,255,255,.22);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: hz-card-orbit 16s linear infinite reverse;
}

.hz-auth__shield {
    position: absolute;
    width: 100px;
    height: 100px;
    inset-block-start: 150px;
    inset-inline-start: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #2476ff, #0a4ed3);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 28px;
    box-shadow: 0 26px 60px rgba(0, 63, 180, .45), inset 0 1px rgba(255,255,255,.3);
    font-size: 42px;
    transform: translateX(-50%) rotate(-5deg);
    animation: hz-auth-shield 4.6s ease-in-out infinite;
}

.hz-auth__visual-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #5fe65a;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(95, 230, 90, .8);
}

.hz-auth__visual-node--one { inset-block-start: 115px; inset-inline-start: 24%; animation: hz-inner-node 3s ease-in-out infinite; }
.hz-auth__visual-node--two { inset-block-start: 285px; inset-inline-end: 22%; animation: hz-inner-node 3s .8s ease-in-out infinite; }

.hz-auth__visual strong {
    position: relative;
    z-index: 1;
    max-width: 330px;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
}

.hz-auth__visual > span:last-child {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    color: #aebddd;
    line-height: 1.8;
}

.hz-auth__content {
    padding: clamp(42px, 6vw, 78px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hz-auth__eyebrow {
    width: max-content;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--hz-blue);
    background: var(--hz-blue-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hz-auth__content h1 {
    margin: 18px 0 10px;
    color: var(--hz-ink);
    font-size: clamp(34px, 4.4vw, 54px);
    font-weight: 800;
    letter-spacing: -.04em;
}

.hz-auth__content > p {
    margin: 0;
    color: var(--hz-muted);
    line-height: 1.8;
}

.hz-auth__form {
    margin-top: 32px;
    display: grid;
    gap: 19px;
}

.hz-auth__field {
    position: relative;
}

.hz-auth__field label {
    margin-bottom: 8px;
    display: block;
    color: var(--hz-ink);
    font-size: 13px;
    font-weight: 800;
}

.hz-auth__field .form-control {
    width: 100%;
    height: 54px;
    padding-inline-start: 46px;
    color: var(--hz-ink);
    background: var(--hz-surface-soft);
    border: 1px solid var(--hz-line);
    border-radius: 14px;
    box-shadow: none;
    font-family: inherit;
}

.hz-auth__field .form-control:focus {
    background: var(--hz-surface);
    border-color: var(--hz-blue);
    box-shadow: 0 0 0 4px rgba(18, 98, 255, .11);
}

.hz-auth__field-icon {
    position: absolute;
    inset-block-end: 17px;
    inset-inline-start: 16px;
    color: var(--hz-blue);
}

.hz-auth__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.hz-auth__options a,
.hz-auth__signup a {
    color: var(--hz-blue);
    font-weight: 800;
}

.hz-auth__remember {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--hz-muted);
    cursor: pointer;
}

.hz-auth__remember input {
    position: absolute;
    opacity: 0;
}

.hz-auth__remember span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 6px;
}

.hz-auth__remember input:checked + span {
    background: var(--hz-blue);
    border-color: var(--hz-blue);
    box-shadow: inset 0 0 0 5px var(--hz-blue);
}

.hz-auth__remember input:checked + span::after {
    content: "✓";
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.hz-auth__submit {
    min-height: 56px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: linear-gradient(135deg, #1262ff, #0750dc);
    border: 0;
    border-radius: 15px;
    box-shadow: 0 16px 36px rgba(18, 98, 255, .27);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .28s var(--hz-ease-orbit), filter .2s ease, box-shadow .2s ease;
}

.hz-auth__submit:hover {
    transform: translateY(-3px);
    filter: brightness(1.07);
    box-shadow: 0 20px 44px rgba(18, 98, 255, .34);
}

.hz-ltr .hz-auth__submit i { transform: rotate(180deg); }

.hz-auth__captcha {
    display: flex;
    justify-content: center;
}

.hz-auth__signup {
    margin-top: 22px !important;
    text-align: center;
    font-size: 13px;
}

/* Registration: the login experience expanded into a calm, guided workspace. */
.hz-template-clientregister .hz-main--inner {
    padding: 0;
    background: transparent;
}

.hz-register {
    align-items: start;
    padding-block-end: 90px;
}

.hz-register__shell {
    width: min(1240px, 100%);
}

.hz-register__card {
    --hz-pointer-x: 50%;
    --hz-pointer-y: 50%;
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.58fr);
    align-items: start;
    background: var(--hz-surface);
    border: 1px solid color-mix(in srgb, var(--hz-blue) 12%, var(--hz-line));
    border-radius: 32px;
    box-shadow: 0 38px 100px rgba(13, 39, 91, .16);
    overflow: hidden;
}

.hz-register__card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(500px circle at var(--hz-pointer-x) var(--hz-pointer-y), rgba(18, 98, 255, .08), transparent 42%);
    pointer-events: none;
}

.hz-register__visual,
.hz-register__content {
    position: relative;
    z-index: 1;
}

.hz-register__visual {
    position: relative;
    min-height: 100%;
    padding: 360px 38px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    background:
        radial-gradient(circle at 64% 25%, rgba(90, 155, 255, .46), transparent 30%),
        linear-gradient(155deg, #0c2c6f, #071831 66%, #063277);
    overflow: hidden;
}

.hz-register__visual::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    inset-block-start: 58px;
    inset-inline-start: 50%;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 48% 52% 45% 55%;
    transform: translateX(-50%) rotate(28deg);
    animation: hz-card-orbit 18s linear infinite;
}

.hz-register__visual .hz-auth__visual-ring {
    inset-block-start: 118px;
}

.hz-register__visual-icon {
    position: absolute;
    width: 108px;
    height: 108px;
    inset-block-start: 164px;
    inset-inline-start: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #2b78ff, #0b50dc);
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 30px;
    box-shadow: 0 28px 68px rgba(0, 55, 165, .5), inset 0 1px rgba(255,255,255,.36);
    font-size: 44px;
    transform: translateX(-50%) rotate(-5deg);
    animation: hz-auth-shield 4.8s ease-in-out infinite;
}

.hz-register__visual .hz-auth__eyebrow {
    color: #d9e7ff;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.16);
}

.hz-register__visual h2 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
    letter-spacing: -.035em;
}

.hz-register__visual p {
    margin: 0;
    color: #b8c8e6;
    line-height: 1.8;
}

.hz-register__visual ul {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.hz-register__visual li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e4edff;
    font-size: 13px;
    font-weight: 700;
}

.hz-register__visual li i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #071831;
    background: #69e966;
    border-radius: 50%;
    font-size: 9px;
}

.hz-register__content {
    padding: clamp(36px, 5vw, 70px);
}

.hz-register__intro {
    margin-bottom: 32px;
}

.hz-register__intro h1 {
    margin: 17px 0 10px;
    color: var(--hz-ink);
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.12;
    letter-spacing: -.045em;
}

.hz-register__intro p {
    margin: 0;
    color: var(--hz-muted);
    line-height: 1.8;
}

.hz-register__form {
    display: grid;
    gap: 22px;
}

.hz-register__section {
    padding: clamp(22px, 3vw, 30px);
    background: color-mix(in srgb, var(--hz-blue-soft) 46%, var(--hz-surface));
    border: 1px solid color-mix(in srgb, var(--hz-blue) 11%, var(--hz-line));
    border-radius: 22px;
    transition: transform .35s var(--hz-ease-orbit), border-color .25s ease, box-shadow .25s ease;
}

.hz-register__section:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--hz-blue) 30%, var(--hz-line));
    box-shadow: 0 18px 45px rgba(18, 98, 255, .08);
}

.hz-register__section-title {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.hz-register__section-title > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--hz-blue);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(13, 39, 91, .07);
}

.hz-register__section-title h2 {
    margin: 0;
    color: var(--hz-ink);
    font-size: 18px;
    font-weight: 800;
}

.hz-register__section-title p {
    margin: 4px 0 0;
    color: var(--hz-muted);
    font-size: 12px;
    line-height: 1.5;
}

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

.hz-register__field--wide,
.hz-register__feedback {
    grid-column: 1 / -1;
}

.hz-register__field {
    position: relative;
    min-width: 0;
}

.hz-register__field label {
    margin: 0 0 8px;
    display: block;
    color: var(--hz-ink);
    font-size: 12px;
    font-weight: 800;
}

.hz-register__field label small {
    color: var(--hz-muted);
    font-size: 10px;
    font-weight: 600;
}

.hz-register__field .form-control,
.hz-register__field .field,
.hz-register__field .control input,
.hz-register__field .control select,
.hz-register__field .control textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    color: var(--hz-ink);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 13px;
    box-shadow: none;
    font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hz-register__field textarea.form-control,
.hz-register__field .control textarea {
    min-height: 100px;
    padding-block: 12px;
}

.hz-register__field .form-control:focus,
.hz-register__field .field:focus,
.hz-register__field .control input:focus,
.hz-register__field .control select:focus,
.hz-register__field .control textarea:focus {
    background: var(--hz-surface);
    border-color: var(--hz-blue);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(18, 98, 255, .1);
}

.hz-register__field .iti {
    width: 100%;
}

.hz-register__field .field-help-text {
    margin-top: 6px;
    display: block;
    color: var(--hz-muted);
    font-size: 11px;
}

.hz-register__password .form-control {
    padding-inline-end: 52px;
}

.hz-register__password .generate-password {
    position: absolute;
    inset-block-start: 31px;
    inset-inline-end: 8px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--hz-blue);
    background: var(--hz-blue-soft);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}

.hz-register__password .password-strength-meter {
    margin-top: 8px;
}

.hz-register__password .progress {
    height: 5px;
    background: var(--hz-line);
    border-radius: 99px;
    overflow: hidden;
}

.hz-register__security-question {
    margin-top: 18px;
}

.hz-register__choice {
    position: relative;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--hz-muted);
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 16px;
    cursor: pointer;
}

.hz-register__choice input {
    position: absolute;
    opacity: 0;
}

.hz-register__choice > span {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    background: var(--hz-surface);
    border: 1px solid var(--hz-line);
    border-radius: 7px;
}

.hz-register__choice input:focus-visible + span {
    outline: 3px solid rgba(18, 98, 255, .2);
    outline-offset: 2px;
}

.hz-register__choice input:checked + span {
    color: #fff;
    background: var(--hz-blue);
    border-color: var(--hz-blue);
}

.hz-register__choice input:checked + span::after {
    content: "✓";
    font-size: 12px;
    font-weight: 900;
}

.hz-register__choice strong,
.hz-register__choice small {
    display: block;
}

.hz-register__choice strong {
    margin-bottom: 4px;
    color: var(--hz-ink);
}

.hz-register__choice small {
    line-height: 1.6;
}

.hz-register__choice a {
    color: var(--hz-blue);
    font-weight: 800;
}

.hz-register__captcha {
    display: flex;
    justify-content: center;
    min-height: 1px;
}

.hz-register__submit {
    width: 100%;
    font-size: 15px;
}

[data-hz-theme="dark"] .hz-register__section {
    background: rgba(18, 98, 255, .065);
}

[data-hz-theme="dark"] .hz-register__card {
    box-shadow: 0 38px 100px rgba(0, 0, 0, .34);
}

@keyframes hz-inner-orbit {
    to { transform: translate3d(28px, 12px, 0) rotate(2deg); }
}

@keyframes hz-inner-node {
    0%, 100% { transform: scale(.8); opacity: .62; }
    50% { transform: scale(1.22); opacity: 1; }
}

@keyframes hz-card-orbit {
    to { transform: rotate(360deg); }
}

@keyframes hz-auth-orbit {
    to { transform: translate3d(60px, 34px, 0) rotate(8deg); }
}

@keyframes hz-auth-shield {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-5deg); }
    50% { transform: translateX(-50%) translateY(-12px) rotate(3deg); }
}

@media (max-width: 980px) {
    #products > .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hz-auth__card {
        grid-template-columns: minmax(260px, .72fr) minmax(400px, 1.28fr);
    }

    .hz-auth__visual {
        padding: 42px 30px;
    }

    .hz-nav__currencies {
        margin-top: 10px;
        padding: 13px 8px 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        color: var(--hz-ink);
        border-top: 1px solid var(--hz-line);
        direction: inherit;
    }

    .hz-nav__currencies label {
        margin: 0;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 800;
    }

    .hz-nav__currencies label i {
        color: var(--hz-blue);
    }

    .hz-nav__currencies select {
        min-width: 100px;
        height: 38px;
        padding: 0 12px;
        color: var(--hz-ink);
        background: var(--hz-surface-soft);
        border: 1px solid var(--hz-line);
        border-radius: 11px;
        font-family: inherit;
        font-size: 12px;
        font-weight: 800;
        direction: ltr;
    }

    .hz-register__card {
        grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr);
    }

    .hz-register__visual {
        padding: 330px 28px 38px;
    }
}

@media (max-width: 760px) {
    .hz-page-hero {
        padding: 44px 0 40px;
    }

    .hz-main--inner {
        padding: 34px 0 64px;
    }

    .hz-client-content {
        padding: 18px;
        border-radius: 20px;
    }

    #products > .row {
        grid-template-columns: 1fr;
    }

    #order-standard_cart .header-lined {
        margin-bottom: 30px;
    }

    .hz-auth {
        padding: 22px 16px 44px;
    }

    .hz-auth__card {
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .hz-auth__visual {
        min-height: 190px;
        padding: 28px;
        justify-content: flex-end;
    }

    .hz-auth__visual strong {
        max-width: 72%;
        font-size: 25px;
    }

    .hz-auth__visual > span:last-child,
    .hz-auth__visual-ring,
    .hz-auth__visual-node {
        display: none;
    }

    .hz-auth__shield {
        width: 68px;
        height: 68px;
        inset-block-start: 44px;
        inset-inline-start: auto;
        inset-inline-end: 34px;
        font-size: 28px;
        transform: none;
        animation: hz-inner-node 4s ease-in-out infinite;
    }

    .hz-auth__content {
        padding: 34px 24px 38px;
    }

    .hz-register__card {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .hz-register__visual {
        position: relative;
        inset-block-start: auto;
        min-height: 255px;
        padding: 30px;
        justify-content: flex-end;
    }

    .hz-register__visual::before,
    .hz-register__visual .hz-auth__visual-ring,
    .hz-register__visual .hz-auth__visual-node,
    .hz-register__visual ul {
        display: none;
    }

    .hz-register__visual-icon {
        width: 70px;
        height: 70px;
        inset-block-start: 34px;
        inset-inline-start: auto;
        inset-inline-end: 30px;
        font-size: 28px;
        transform: none;
        animation: hz-inner-node 4s ease-in-out infinite;
    }

    .hz-register__visual h2 {
        max-width: 72%;
        font-size: 27px;
    }

    .hz-register__visual p {
        max-width: 82%;
        font-size: 13px;
    }

    .hz-register__content {
        padding: 34px 22px 40px;
    }
}

@media (max-width: 440px) {
    .hz-auth__register-link span {
        display: none;
    }

    .hz-auth__register-link {
        width: 42px;
        padding: 0;
        justify-content: center;
    }

    .hz-auth__options {
        align-items: flex-start;
        flex-direction: column;
    }

    .hz-auth__visual strong {
        max-width: 62%;
        font-size: 22px;
    }

    .hz-currency-switcher {
        min-width: 68px;
    }

    .hz-currency-switcher > .fa-coins {
        display: none;
    }

    .hz-currency-switcher select {
        padding-inline-start: 12px;
    }

    .hz-register__grid {
        grid-template-columns: 1fr;
    }

    .hz-register__field--wide,
    .hz-register__feedback {
        grid-column: auto;
    }

    .hz-register__visual h2,
    .hz-register__visual p {
        max-width: 68%;
    }

    .hz-register__section {
        padding: 20px 16px;
    }

    .hz-register__section-title {
        align-items: flex-start;
    }
}
