:root {
    --hzlp-bg: #0a0a0a;
    --hzlp-surface: #121212;
    --hzlp-surface-soft: #1b1b1b;
    --hzlp-border: #333333;
    --hzlp-primary: #5216b0;
    --hzlp-primary-strong: #4012a0;
    --hzlp-text: #ffffff;
    --hzlp-muted: #b3b3b3;
    --hzlp-shell: min(1240px, calc(100% - 48px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.hzlp-body {
    margin: 0;
    background: var(--hzlp-bg);
    color: var(--hzlp-text);
    font-family: "Manrope", sans-serif;
}

.hzlp-root {
    overflow-x: clip;
    background: var(--hzlp-bg);
}

.hzlp-shell {
    width: var(--hzlp-shell);
    margin: 0 auto;
}

.hzlp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(10, 10, 10, 0.82);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(20px);
}

.hzlp-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.hzlp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
}

.hzlp-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.hzlp-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.hzlp-brand strong,
.hzlp-brand span {
    display: block;
}

.hzlp-brand strong {
    font-size: 14px;
    letter-spacing: 0.28em;
}

.hzlp-brand span {
    margin-top: 4px;
    font-size: 12px;
    color: var(--hzlp-muted);
}

.hzlp-nav,
.hzlp-header__actions,
.hzlp-hero__cta,
.hzlp-tabs,
.hzlp-subtabs,
.hzlp-links,
.hzlp-cta__trust,
.hzlp-footer__bottom,
.hzlp-testimonials__controls {
    display: flex;
    align-items: center;
}

.hzlp-nav {
    gap: 28px;
}

.hzlp-nav a,
.hzlp-links a,
.hzlp-footer a {
    color: var(--hzlp-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.hzlp-nav a:hover,
.hzlp-links a:hover,
.hzlp-footer a:hover {
    color: var(--hzlp-text);
}

.hzlp-header__actions {
    gap: 12px;
}

.hzlp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hzlp-btn:hover {
    transform: translateY(-1px);
}

.hzlp-btn--primary {
    background: var(--hzlp-primary);
    color: #fff;
    box-shadow: 0 24px 60px rgba(82, 22, 176, 0.32);
}

.hzlp-btn--primary:hover {
    background: var(--hzlp-primary-strong);
}

.hzlp-btn--ghost,
.hzlp-btn--outline {
    border-color: var(--hzlp-border);
    color: #fff;
}

.hzlp-btn--outline:hover,
.hzlp-btn--ghost:hover {
    border-color: var(--hzlp-primary);
    background: rgba(255, 255, 255, 0.04);
}

.hzlp-btn--light {
    background: #fff;
    color: var(--hzlp-primary);
}

.hzlp-btn--lg {
    min-height: 58px;
    padding: 0 30px;
}

.hzlp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 72px;
}

.hzlp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(82, 22, 176, 0.22), transparent 24%),
        radial-gradient(circle at 78% 28%, rgba(82, 22, 176, 0.16), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(82, 22, 176, 0.1), transparent 30%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: auto, auto, auto, 28px 28px, 28px 28px;
    pointer-events: none;
}

.hzlp-hero__grid,
.hzlp-grid {
    display: grid;
    gap: 28px;
}

.hzlp-hero__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
}

.hzlp-kicker {
    margin: 0;
    color: var(--hzlp-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hzlp-kicker--center {
    text-align: center;
}

.hzlp-hero h1,
.hzlp-section-head h3,
.hzlp-cta h3 {
    margin: 16px 0 0;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hzlp-hero h1 {
    font-size: clamp(64px, 9vw, 96px);
    line-height: 0.94;
}

.hzlp-hero h2 {
    margin: 18px 0 0;
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--hzlp-muted);
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hzlp-lead,
.hzlp-card p,
.hzlp-demo-card p,
.hzlp-section-copy,
.hzlp-footer p,
.hzlp-footer li {
    color: var(--hzlp-muted);
    line-height: 1.8;
}

.hzlp-hero__cta {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.hzlp-hero__cta--center {
    justify-content: center;
}

.hzlp-hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 32px;
}

.hzlp-hero__glow {
    position: absolute;
    inset: 20px;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(82, 22, 176, 0.46), transparent 60%);
    filter: blur(40px);
}

.hzlp-hero__visual > img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid var(--hzlp-border);
}

.hzlp-hero__overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
}

.hzlp-surface,
.hzlp-live-card,
.hzlp-card,
.hzlp-plan,
.hzlp-demo-card,
.hzlp-stat-card,
.hzlp-quote,
.hzlp-accordion__item,
.hzlp-modal__dialog {
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid var(--hzlp-border);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
}

.hzlp-surface,
.hzlp-card,
.hzlp-plan,
.hzlp-stat-card,
.hzlp-quote {
    border-radius: 24px;
}

.hzlp-surface,
.hzlp-live-card,
.hzlp-card,
.hzlp-plan,
.hzlp-demo-card,
.hzlp-stat-card,
.hzlp-quote,
.hzlp-accordion__item {
    padding: 28px;
}

.hzlp-badge,
.hzlp-pill,
.hzlp-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hzlp-badge {
    padding: 10px 14px;
    background: rgba(82, 22, 176, 0.18);
    border: 1px solid rgba(82, 22, 176, 0.45);
    color: #d5beff;
}

.hzlp-live {
    padding: 48px 0;
    border-bottom: 1px solid #333333;
}

.hzlp-live__grid,
.hzlp-grid--three,
.hzlp-grid--four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hzlp-live__grid {
    display: grid;
    max-width: 820px;
    margin: 0 auto;
    gap: 18px;
}

.hzlp-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hzlp-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hzlp-live-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    min-height: 84px;
    padding: 18px 20px;
    background: #121212;
    border: 1px solid #333333;
    transition: border-color 0.25s ease;
}

.hzlp-live-card:hover {
    border-color: #5216b0;
}

.hzlp-live-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.hzlp-live-card__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.hzlp-live-card__icon.is-green {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
}

.hzlp-live-card__icon.is-primary {
    color: var(--hzlp-primary);
    background: rgba(82, 22, 176, 0.16);
}

.hzlp-live-card__icon.is-blue {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.14);
}

.hzlp-live-card p {
    margin: 0 0 8px;
    color: var(--hzlp-muted);
    font-size: 13px;
    line-height: 1.3;
}

.hzlp-live-card__value-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hzlp-live-card strong {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.hzlp-live-card__pulse {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: hzlp-pulse 1.8s infinite;
}

.hzlp-partners,
.hzlp-solution,
.hzlp-demo,
.hzlp-testimonials,
.hzlp-faq {
    padding: 96px 0;
}

.hzlp-section-head {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.hzlp-section-head h3 {
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.06;
}

.hzlp-partners {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hzlp-partners__track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: hzlp-marquee 24s linear infinite;
}

.hzlp-partners__item {
    min-width: 230px;
}

.hzlp-partners__logo {
    min-height: 104px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hzlp-border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    color: #d6d6d6;
    font-weight: 700;
}

.hzlp-problems {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.88)),
        url("https://images.unsplash.com/photo-1554985901-21d857dfc024?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.hzlp-problems__veil {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(82, 22, 176, 0.14), transparent 28%);
}

.hzlp-problems__content {
    position: relative;
    z-index: 1;
}

.hzlp-card,
.hzlp-plan,
.hzlp-demo-card,
.hzlp-quote,
.hzlp-accordion__item {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hzlp-card:hover,
.hzlp-plan:hover,
.hzlp-demo-card:hover,
.hzlp-quote:hover,
.hzlp-accordion__item:hover {
    transform: translateY(-4px);
    border-color: rgba(82, 22, 176, 0.95);
    box-shadow: 0 24px 80px rgba(82, 22, 176, 0.12);
}

.hzlp-card h4,
.hzlp-plan h4,
.hzlp-demo-card h4 {
    margin: 16px 0 10px;
    font-size: 24px;
}

.hzlp-card__mark {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(82, 22, 176, 0.28), rgba(82, 22, 176, 0.1));
}

.hzlp-tabs,
.hzlp-subtabs {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hzlp-tab,
.hzlp-subtab {
    border: 1px solid var(--hzlp-border);
    background: var(--hzlp-surface);
    color: #fff;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hzlp-tab.is-active,
.hzlp-subtab.is-active {
    background: var(--hzlp-primary);
    border-color: var(--hzlp-primary);
}

.hzlp-tab-panel,
.hzlp-subtab-panel {
    display: none;
}

.hzlp-tab-panel.is-active,
.hzlp-subtab-panel.is-active {
    display: block;
}

.hzlp-plan {
    position: relative;
    padding-top: 34px;
}

.hzlp-plan.is-featured {
    background: linear-gradient(180deg, #5216b0, #38106f);
    border-color: #6e36da;
}

.hzlp-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px 14px;
    background: #fff;
    color: var(--hzlp-primary);
}

.hzlp-plan__price {
    margin: 22px 0 18px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.05;
}

.hzlp-plan__price span {
    font-size: 18px;
    color: var(--hzlp-muted);
    font-weight: 500;
}

.hzlp-muted {
    margin: 0;
    color: var(--hzlp-muted);
}

.hzlp-plan ul,
.hzlp-card ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hzlp-plan li,
.hzlp-card li {
    color: var(--hzlp-muted);
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.hzlp-plan li::before,
.hzlp-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hzlp-primary);
}

.hzlp-card--package {
    position: relative;
}

.hzlp-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 12px;
    background: rgba(34, 197, 94, 0.18);
    color: #90f1af;
}

.hzlp-demo {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hzlp-demo-card {
    border-radius: 24px;
    cursor: pointer;
}

.hzlp-demo-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
}

.hzlp-demo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hzlp-demo-card:hover .hzlp-demo-card__media img {
    transform: scale(1.05);
}

.hzlp-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border: 0;
    border-radius: 999px;
    background: var(--hzlp-primary);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(82, 22, 176, 0.35);
}

.hzlp-metrics {
    padding: 80px 0;
}

.hzlp-performance,
.hzlp-features,
.hzlp-security,
.hzlp-quickstart {
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hzlp-performance {
    background:
        radial-gradient(circle at center, rgba(82, 22, 176, 0.08), transparent 38%),
        #121212;
}

.hzlp-performance__grid {
    gap: 0;
}

.hzlp-performance__item {
    padding: 8px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hzlp-performance__item:last-child {
    border-right: 0;
}

.hzlp-performance__item strong {
    display: block;
    font-size: 44px;
    font-weight: 800;
}

.hzlp-performance__item > span {
    display: block;
    margin-top: 10px;
    color: var(--hzlp-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.hzlp-features__layout,
.hzlp-security__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.hzlp-features__list {
    display: grid;
    gap: 14px;
}

.hzlp-feature {
    width: 100%;
    padding: 24px;
    text-align: left;
    border-radius: 24px;
    border: 1px solid var(--hzlp-border);
    background: var(--hzlp-surface);
    color: var(--hzlp-text);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hzlp-feature.is-active {
    border-color: var(--hzlp-primary);
    background: rgba(82, 22, 176, 0.12);
    box-shadow: 0 0 30px rgba(82, 22, 176, 0.12);
}

.hzlp-feature strong {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

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

.hzlp-features__visual {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--hzlp-border);
    background: var(--hzlp-surface);
}

.hzlp-features__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hzlp-features__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.88));
}

.hzlp-features__overlay h4 {
    margin: 0;
    font-size: 28px;
}

.hzlp-features__overlay p,
.hzlp-security__intro p,
.hzlp-quickstart__step p {
    color: var(--hzlp-muted);
    line-height: 1.8;
}

.hzlp-security__intro h3 {
    margin: 22px 0 16px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.hzlp-card--security h4,
.hzlp-quickstart__step h4 {
    margin: 18px 0 10px;
    font-size: 22px;
}

.hzlp-quickstart {
    background: #121212;
}

.hzlp-quickstart__line {
    height: 1px;
    margin: 0 auto -40px;
    max-width: 980px;
    background: var(--hzlp-border);
}

.hzlp-quickstart__grid {
    position: relative;
}

.hzlp-quickstart__step {
    text-align: center;
    position: relative;
}

.hzlp-quickstart__icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border-radius: 999px;
    display: block;
    background: #0a0a0a;
    border: 4px solid var(--hzlp-border);
    position: relative;
}

.hzlp-quickstart__icon::after {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 999px;
    background: var(--hzlp-primary);
}

.hzlp-stat-card {
    text-align: center;
}

.hzlp-stat-card strong {
    display: block;
    font-size: 52px;
    line-height: 1;
}

.hzlp-stat-card > span {
    display: block;
    margin-top: 14px;
    color: var(--hzlp-muted);
    font-size: 18px;
}

.hzlp-testimonials__controls {
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hzlp-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--hzlp-border);
    border-radius: 999px;
    background: var(--hzlp-surface);
    color: #fff;
    cursor: pointer;
}

.hzlp-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    transition: transform 0.35s ease;
}

.hzlp-quote__stars {
    margin: 0 0 20px;
    color: #facc15;
    letter-spacing: 0.18em;
}

.hzlp-quote blockquote {
    margin: 0;
    color: #d7d7d7;
    line-height: 1.8;
    min-height: 144px;
}

.hzlp-quote__person {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--hzlp-border);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hzlp-quote__person img {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(82, 22, 176, 0.8);
}

.hzlp-quote__person strong,
.hzlp-quote__person span,
.hzlp-quote__person small {
    display: block;
}

.hzlp-quote__person span {
    color: #d8c6ff;
}

.hzlp-quote__person small {
    color: #8f8f8f;
}

.hzlp-faq__wrap {
    max-width: 920px;
}

.hzlp-accordion {
    display: grid;
    gap: 18px;
}

.hzlp-accordion__item {
    border-radius: 22px;
}

.hzlp-accordion__item summary {
    cursor: pointer;
    list-style: none;
    font-size: 21px;
    font-weight: 700;
}

.hzlp-accordion__item summary::-webkit-details-marker {
    display: none;
}

.hzlp-accordion__item p {
    margin: 18px 0 0;
    color: var(--hzlp-muted);
    line-height: 1.75;
}

.hzlp-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.hzlp-cta {
    padding: 96px 0;
}

.hzlp-cta__box {
    position: relative;
    padding: 72px 48px;
    text-align: center;
    border-radius: 36px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, #5216b0, #6d32df);
    background-size: 38px 38px, 38px 38px, auto;
}

.hzlp-cta h3 {
    font-size: clamp(40px, 5vw, 58px);
}

.hzlp-cta p {
    max-width: 840px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 20px;
}

.hzlp-cta__trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.hzlp-footer {
    background: #000;
    border-top: 4px solid var(--hzlp-primary);
    padding: 72px 0 28px;
}

.hzlp-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
}

.hzlp-footer__logo {
    width: auto;
    height: 42px;
    margin-bottom: 16px;
}

.hzlp-footer h4 {
    margin: 0 0 16px;
    font-size: 18px;
}

.hzlp-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hzlp-footer__bottom {
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--hzlp-border);
}

.hzlp-footer__bottom div {
    display: flex;
    gap: 18px;
}

.hzlp-modal[hidden] {
    display: none;
}

.hzlp-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.hzlp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
}

.hzlp-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 32px));
    margin: 6vh auto 0;
    border-radius: 28px;
    overflow: hidden;
}

.hzlp-modal__screen {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(82, 22, 176, 0.34), rgba(10, 10, 10, 0.95));
}

.hzlp-modal__placeholder {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hzlp-modal__copy {
    padding: 28px;
}

.hzlp-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}


@keyframes hzlp-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes hzlp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 1120px) {
    .hzlp-hero__grid,
    .hzlp-grid--four,
    .hzlp-footer__grid,
    .hzlp-carousel,
    .hzlp-features__layout,
    .hzlp-security__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hzlp-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .hzlp-nav {
        display: none;
    }

    .hzlp-header__inner,
    .hzlp-header__actions,
    .hzlp-footer__bottom {
        flex-wrap: wrap;
    }

    .hzlp-shell {
        width: min(100% - 24px, 1240px);
    }

    .hzlp-hero {
        padding-top: 108px;
    }

    .hzlp-hero__grid,
    .hzlp-grid--two,
    .hzlp-grid--three,
    .hzlp-grid--four,
    .hzlp-footer__grid,
    .hzlp-carousel,
    .hzlp-features__layout,
    .hzlp-security__grid {
        grid-template-columns: 1fr;
    }

    .hzlp-performance__item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 18px 0;
    }

    .hzlp-performance__item:last-child {
        border-bottom: 0;
    }

    .hzlp-live__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-width: 100%;
    }

    .hzlp-live-card {
        padding: 14px;
        gap: 10px;
    }

    .hzlp-live-card__icon {
        width: 40px;
        height: 40px;
    }

    .hzlp-live-card__icon svg {
        width: 18px;
        height: 18px;
    }

    .hzlp-live-card p {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .hzlp-live-card strong {
        font-size: 16px;
    }

    .hzlp-live-card__pulse {
        width: 7px;
        height: 7px;
    }

    .hzlp-quickstart__line {
        display: none;
    }

    .hzlp-cta__box {
        padding: 52px 24px;
    }

    .hzlp-live-card strong,
    .hzlp-stat-card strong {
        font-size: 38px;
    }

    .hzlp-modal__placeholder {
        font-size: 30px;
    }
}
